a {
    text-decoration: none;
}

ul, ol {
    padding-left: 0;
    margin: 0;
}

li {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

body {
    font-family: Roboto;
}

.el-button {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    z-index: 20;
    position: relative;
    padding: 17px 38px 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #57a035;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    display: inline-block;
}

.el-button:hover {
    background: #dd2734;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.el-button.hide {
    display: none;
}

.global-wrapper {
    overflow: hidden;
}

.header {
    background: #fff;
    -webkit-box-shadow: 0px 5px 15px -6px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: 0px 5px 15px -6px rgba(0, 0, 0, 0.75);
    box-shadow: 0px 5px 15px -6px rgba(0, 0, 0, 0.75);
    padding: 18px 0 8px;
    z-index: 10;
    position: fixed;
    width: 100%;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

.header.fancybox-margin {
    margin-left: -8px;
}

.header .mbox {
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

.header .header-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
}

.header .header-content .logo {
    text-align: center;
}

.header .header-content .burger {
    display: none;
    padding: 11px 7px;
    border: 1px solid #ff1414;
    width: 37px;
    position: relative;
    z-index: 10;
}

.header .header-content .burger.active span {
    background: #fff;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.header .header-content .burger.active span:before {
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    top: 0px;
    left: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.header .header-content .burger.active span:after {
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    bottom: 0px;
    left: 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.header .header-content .burger span {
    width: 100%;
    height: 2px;
    background: #231f20;
    position: relative;
    display: block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.header .header-content .burger span:before {
    content: '';
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    position: absolute;
    top: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #231f20;
}

.header .header-content .burger span:after {
    content: '';
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #231f20;
}

.header .header-content menu {
    width: 48%;
    padding-left: 0;
    position: relative;
    z-index: 5;
}

.header .header-content menu ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header .header-content menu ul li {
    list-style: none;
}

.header .header-content menu ul li a {
    border-bottom: 1px dotted #000;
    font-weight: 400;
    font-size: 16px;
    color: #000;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.header .header-content menu ul li a:hover {
    border-bottom: 1px solid #000;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.header .header-content .tel {
    text-align: right;
    width: 23%;
}

.header .header-content .tel a {
    font-size: 24px;
    color: #909295;
}

.header .header-content .tel a:hover {
    opacity: .7;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.header .header-content .tel a span {
    width: 20px;
    position: relative;
    display: inline-block;
    height: 15px;
}

.header .header-content .tel a span img {
    position: absolute;
    top: 0;
    left: 0;
}

.header .header-content .tel a b {
    color: #000;
}

.header .header-content .tel .city {
    font-size: 16px;
    color: #ea1c24;
    border-bottom: 1px dotted #ea1c24;
}

.header .header-content .tel .city:hover {
   border-bottom: 1px solid #ea1c24;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.fixed-footer {
    display: none;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    transform: translateZ(0);
    text-align: center;
    position: fixed;
    z-index: 50;
    bottom: 0;
    background: #fff;
    left: 0;
    width: 100%;
    padding: 10px 0 10px;
}

.fixed-footer.fancybox-margin {
    margin-left: -9px;
}

.fixed-footer .fixed-content {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-family: Din;
    font-weight: 300;
    color: #898a8c;
    font-size: 14px;
}

.fixed-footer .fixed-content p {
    width: 28%;
}

.fixed-footer .fixed-content .el-button {
    width: 393px;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 14px;
    padding: 15px 5px 14px;
}

.fixed-footer .fixed-content .el-button span {
    text-transform: none;
    display: block;
}

.fixed-footer .fixed-content .business-popup {
    width: 393px;
}

.fixed-footer .fixed-content .business-popup form {
    max-width: 393px;
}

.fixed-footer .fixed-content .business-popup form .form-field {
    width: 49%;
    display: inline-block;
}

.fixed-footer .fixed-content .el-button {
    width: 49%;
}

.fixed-footer .fixed-content .form-field .tel {
    width: 100%;
    text-align: center;
}

.fixed-footer .fixed-content .business-popup form .form-field:before {
    left: 10px;
}

.fixed-footer .fixed-content .tel {
    text-align: right;
    width: 230px;
}

.fixed-footer .fixed-content .tel a {
    font-size: 26px;
    color: #909295;
}

.fixed-footer .fixed-content .tel a:hover {
    opacity: .7;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.fixed-footer .fixed-content .tel a span {
    width: 20px;
    position: relative;
    display: inline-block;
    height: 15px;
}

.fixed-footer .fixed-content .tel a span img {
    position: absolute;
    top: 0;
    left: 0;
}

.fixed-footer .fixed-content .tel a b {
    color: #000;
}

.fixed-footer .fixed-content .tel .city {
    font-size: 16px;
    color: #ea1c24;
    border-bottom: 1px dotted #ea1c24;
}

.fixed-footer .fixed-content .tel .city:hover {
    border-bottom: 1px solid #ea1c24;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.fixed-footer .fixed-content #footer_close_item {
    position: absolute;
    top: 1px;
    right: -60px;
    cursor: pointer;
    width: 30px;
    height: 30px;
}

.fixed-footer .fixed-content #footer_close_item:hover:before, .fixed-footer .fixed-content #footer_close_item:hover:after {
    background: #009d09;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.fixed-footer .fixed-content #footer_close_item:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 3px;
    width: 100%;
    background: #a4a6a9;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.fixed-footer .fixed-content #footer_close_item:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    height: 3px;
    width: 100%;
    background: #a4a6a9;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.footer {
    text-align: center;
    font-size: 14px;
    color: #000;
    padding: 40px 0 80px;
}

.footer .socials {
    padding: 22px 0 15px;
}

.footer .socials a {
    text-decoration: none;
    border-bottom: 0;
}

.footer .socials a:hover {
    opacity: .7;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    border-bottom: 0;
}

.footer a {
    color: #000;
    border-bottom: 1px dotted #000;
}

.footer a:hover {
    border-bottom: 1px solid #000;
}

.footer p {
    margin: 6px 0 0px;
}

.footer .payment {
    padding-top: 35px;
}

.additional {
    height: 74px;
}

.wrap-main {
    background: url("../images/screen1_bg.jpg") no-repeat;
    background-position: 50% 100%;
    padding: 47px 0 41px;
}

.wrap-main .top-content {
    margin: 0 22px 0 auto;
    width: 47%;
}

.wrap-main .top-content.mobile {
    display: none;
}

.wrap-main .top-content .price {
    font-size: 60px;
    color: #dd2734;
    font-weight: 700;
    text-align: center;
    letter-spacing: -1px;
    padding-bottom: 10px;
}

.wrap-main .top-content .price span {
    font-size: 85px;
}

.wrap-main .top-content .delay {
    position: relative;
    text-align: center;
    padding-bottom: 10px;
}

.wrap-main .top-content .delay span {
    display: inline-block;
    padding: 4px 15px 5px;
    background: #fff;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    border: 1px solid #ced0d1;
    font-family: Din;
    font-weight: 400;
    font-size: 14px;
    text-transform: uppercase;
    color: #000;
    margin: 0 auto;
    z-index: 10;
    position: relative;
    letter-spacing: 1px;
}

.wrap-main .top-content .delay:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 389px;
    height: 7px;
    background: #fff;
    border: 1px solid #ced0d1;
    border-bottom: 0;
    z-index: 2;
}

.wrap-main .top-content .first-pay {
    text-align: center;
    font-weight: 700;
    font-size: 26px;
    color: #231f20;
    font-family: Din;
    padding-bottom: 3px;
}

.wrap-main .top-content .first-pay span {
    display: block;
    text-align: center;
    font-weight: 400;
    font-size: 18px;
    color: #909295;
    padding-top: 5px;
}

.wrap-main .top-content h2 {
    font-family: Din;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 38px;
    color: #000;
    text-transform: uppercase;
    padding: 30px 0 51px;
}

.wrap-main .top-content .consult {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.wrap-main .top-content .consult .get-consult {
    font-family: Din;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    text-transform: uppercase;
    padding: 17px 38px 16px;
    letter-spacing: .4px;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background: #57a035;
    display: inline-block;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.wrap-main .top-content .consult .get-consult:hover {
    background: #dd2734;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.wrap-main .top-content .consult .get-consult.hide {
    display: none;
}

.wrap-main .top-content .consult span {
    display: inline-block;
    position: relative;
    height: 45px;
    width: 68px;
    margin-left: 27px;
}

.wrap-main .top-content .consult span img {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.wrap-legal {
    background: #efeff0;
    padding: 26px 0 17px;
}

.wrap-legal h5 {
    display: none;
}

.wrap-legal .legal-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-left: 30px;
}

.wrap-legal .legal-content .pic {
    padding: 0 22px;
}

.wrap-legal .legal-content .desc {
    font-size: 14px;
    font-family: Din;
    font-weight: 400;
    line-height: 16px;
    letter-spacing: -.1px;
}

.wrap-legal .legal-content .desc h3 {
    text-transform: uppercase;
    letter-spacing: -1px;
    font-family: Din;
    font-weight: 700;
    font-size: 32px;
    color: #ae1e2e;
    padding-bottom: 14px;
    line-height: 32px;
}

.wrap-legal .legal-content .desc p {
    margin: 0;
    padding-bottom: 16px;
}

.wrap-legal .legal-content .desc b {
    font-size: 16px;
}

.wrap-full {
    background: url("../images/bg-hands.png") no-repeat center center/contain;
    position: relative;
    font-family: Din;
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    padding: 52px 0 44px;
    line-height: 27px;
}

.wrap-full .overlay {
    background: rgba(126, 35, 80, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wrap-full h3 {
    font-weight: 700;
    font-size: 45px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding-bottom: 15px;
    line-height: 45px;
}

.wrap-full h3 span {
    display: block;
    font-weight: 400;
    padding-top: 5px;
}

.wrap-full p {
    margin: 0;
}

.wrap-full ul {
    padding-top: 36px;
    padding-bottom: 32px;
}

.wrap-full ul li {
    padding: 15px 44px;
    font-weight: 600;
    font-size: 34px;
    line-height: 34px;
    color: #fff;
    text-align: left;
    border: 1px solid #fff;
    width: 590px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.wrap-full ul li:not(:last-child) {
    margin-bottom: 72px;
}

.wrap-full ul li:not(:last-child):before {
    content: '';
    position: absolute;
    bottom: -65px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 18px;
    height: 55px;
    background: url("../images/arr.png") no-repeat center bottom;
}

.wrap-full ul li span {
    margin-right: 34px;
}

.wrap-full .business-popup {
    margin: 0 auto;
}

.wrap-way-mobile {
    position: relative;
    font-family: Din;
    text-align: center;
    font-weight: 600;
    font-size: 22px;
    color: #fff;
    padding: 20px 0 30px;
    line-height: 27px;
    display: none;
}

.wrap-way-mobile h3 {
    font-weight: 700;
    font-size: 31px;
    color: #000;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding-bottom: 15px;
    line-height: 45px;
}

.wrap-way-mobile ul {
    padding-top: 30px;
    padding-bottom: 35px;
}

.wrap-way-mobile ul li {
    padding: 15px 44px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 34px;
    color: #000;
    text-align: left;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 0 auto;
    position: relative;
    text-align: center;
}

.wrap-way-mobile ul li:not(:last-child) {
    margin-bottom: 20px;
}

.wrap-way-mobile ul li:not(:last-child):before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 18px;
    height: 55px;
    background: url("../images/arr-b.png") no-repeat center bottom;
}

.wrap-way-mobile ul li span {
    padding-bottom: 20px;
    text-transform: uppercase;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 10px;
    border: 2px solid #dd2734;
    width: 72px;
    margin: 0 auto;
    height: 72px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wrap-video {
    background: url("../images/bg-video.png") no-repeat center center/contain;
    padding: 51px 0 64px;
    text-align: center;
}

.wrap-video h3 {
    font-family: Din;
    font-weight: 700;
    font-size: 45px;
    padding-bottom: 68px;
    line-height: 57px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wrap-video .video {
    padding: 35px 0 52px;
    position: relative;
    height: 490px;
    margin-bottom: 62px;
}

.wrap-video .video iframe {
    z-index: 10;
    position: relative;
    height: 100%;
    width: 645px;
}

.wrap-video .video .mac {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 1;
    height: 110%;
    width: 100%;
}

.wrap-video .video .mac img {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
}

.wrap-video .el-button {
    padding: 21px 80px 19px;
    letter-spacing: 1px;
}

.wrap-video .business-popup {
    margin: 0 auto;
}

.wrap-prison {
    background: url("../images/bg-prison.png") no-repeat center center/cover;
    text-align: center;
    padding: 116px 0 158px;
    font-family: Din;
}

.wrap-prison.mobile {
    display: none;
    background: #1a2640;
}

.wrap-prison.mobile .mistakes .mistake-item .mis-title .mis-num {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #dd2734;
}

.wrap-prison.mobile .mistakes .mistake-item .mis-title span {
    display: block;
}

.wrap-prison h4 {
    text-transform: uppercase;
    line-height: 50px;
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: 45px;
    padding-bottom: 70px;
    letter-spacing: 1px;
}

.wrap-prison .mistakes {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-bottom: 42px;
}

.wrap-prison .mistakes .mistake-item {
    width: 30%;
    font-family: Roboto;
    font-weight: 400;
    color: #fff;
    font-size: 15px;
    line-height: 20px;
    text-align: left;
}

.wrap-prison .mistakes .mistake-item .mis-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-bottom: 11px;
}

.wrap-prison .mistakes .mistake-item .mis-title .pic {
    min-height: 99px;
    min-width: 99px;
    background: #dd2734;
    position: relative;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-right: 15px;
}

.wrap-prison .mistakes .mistake-item .mis-title .pic .static, .wrap-prison .mistakes .mistake-item .mis-title .pic .hover {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
}

.wrap-prison .mistakes .mistake-item .mis-title .pic .hover {
    opacity: 0;
}

.wrap-prison .mistakes .mistake-item .mis-title .pic:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 110%;
    height: 110%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid #dd2734;
}

.wrap-prison .mistakes .mistake-item .mis-title:hover .pic {
    background: #fff;
}

.wrap-prison .mistakes .mistake-item .mis-title:hover .pic:before {
    border: 2px solid #fff;
}

.wrap-prison .mistakes .mistake-item .mis-title:hover .pic .static {
    opacity: 0;
}

.wrap-prison .mistakes .mistake-item .mis-title:hover .pic .hover {
    opacity: 1;
}

.wrap-prison .mistakes .mistake-item .mis-title span {
    text-transform: uppercase;
    color: #fff;
    font-weight: 700;
    font-family: Din;
    font-size: 22px;
    line-height: 22px;
}

.wrap-prison .mistakes .mistake-item .el-button {
    padding: 20px 40px 20px;
}

.wrap-prison .mistakes .mistake-item p {
    margin-bottom: 0;
    padding-bottom: 5px;
}

.wrap-prison .mistakes .mistake-item b {
    color: #dd2734;
}

.wrap-prison .business-popup {
    margin: 0 auto;
}

.wrap-believe {
    padding: 73px 0 40px;
    text-align: center;
    font-family: Din;
}

.wrap-believe h4 {
    font-weight: 700;
    font-size: 45px;
    color: #000;
    text-transform: uppercase;
    padding-bottom: 54px;
    letter-spacing: .8px;
}

.wrap-believe .statistic {
    padding-bottom: 110px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -moz-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: left;
}

.wrap-believe .statistic .number {
    position: relative;
    width: 360px;
    text-transform: uppercase;
}

.wrap-believe .statistic .number .counter {
    position: relative;
    width: 404px;
    height: 300px;
    margin-top: 98px;
    float: left;
}

.wrap-believe .statistic .number .counter .digits {
    position: relative;
    margin-top: 115px;
    text-align: center;
    font-family: Din, sans-serif;
    font-weight: 700;
    font-size: 145px;
    line-height: 160px;
    text-transform: uppercase;
    color: #5d2437;
    -webkit-text-fill-color: transparent;
    background: -webkit-linear-gradient(transparent, transparent), url("../images/linear_bg.jpg") repeat;
    background: -o-linear-gradient(transparent, transparent);
    -webkit-background-clip: text;
    z-index: 20;
}

.wrap-believe .statistic .number .counter .slider_top_1 {
    background: url("../images/linear_circle_top_1.png") no-repeat 4px 4px;
    width: 260px;
    height: 260px;
    position: absolute;
    top: -7px;
    right: -21px;
    z-index: 11;
}

.wrap-believe .statistic .number .counter .slider_top_2 {
    background: url("../images/linear_circle_top_2.png") no-repeat 4px 4px;
    width: 260px;
    height: 260px;
    position: absolute;
    top: -7px;
    right: -21px;
    z-index: 12;
}

.wrap-believe .statistic .number .counter .slider {
    background: url("../images/linear_circle.png") no-repeat 4px 4px;
    width: 260px;
    height: 260px;
    position: absolute;
    top: -7px;
    right: -21px;
    z-index: 10;
}

.wrap-believe .statistic .number .people {
    font-family: Din;
    font-weight: 600;
    background: -webkit-linear-gradient(left, #b61e2d, #1d203d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 155px;
    text-transform: uppercase;
    position: relative;
    z-index: 10;
}

.wrap-believe .statistic .statistic-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    width: 620px;
    padding-left: 57px;
}

.wrap-believe .statistic .statistic-content .desc {
    font-size: 14px;
    font-family: Din;
    font-weight: 400;
    line-height: 16px;
    padding-left: 22px;
    width: 490px;
    letter-spacing: -.1px;
}

.wrap-believe .statistic .statistic-content .desc h5 {
    text-transform: uppercase;
    font-family: Din;
    font-weight: 700;
    font-size: 32px;
    color: #ae1e2e;
    padding-bottom: 13px;
    line-height: 32px;
}

.wrap-believe .statistic .statistic-content .desc p {
    margin: 0;
    padding-bottom: 16px;
}

.wrap-believe .statistic .statistic-content .desc b {
    font-size: 16px;
}

.wrap-believe .statistic .statistic-content .num-item {
    font-size: 14px;
    color: #000;
    font-family: Din;
    font-weight: 400;
    width: 187px;
    padding-top: 8px;
    text-transform: uppercase;
    line-height: 16px;
}

.wrap-believe .statistic .statistic-content .num-item:last-child span b {
    text-shadow: #030303 0px 0px 9px;
    color: #fff;
}

.wrap-believe .statistic .statistic-content .num-item span {
    font-size: 23px;
    color: #a4a6a9;
    padding-bottom: 1px;
    display: inline-block;
}

.wrap-believe .statistic .statistic-content .num-item span b {
    font-size: 132px;
    color: #636363;
    font-weight: 400;
    line-height: 132px;
}

.wrap-believe .statistic .statistic-content .num-item p {
    margin: 0;
}

.wrap-believe .el-button {
    padding: 19px 40px 20px;
}

.wrap-believe .business-popup {
    margin: 0 auto;
}

.wrap-mass {
    background: url("../images/micro.png") no-repeat center bottom/cover;
    text-align: center;
    padding: 99px 0 157px;
}

.wrap-mass h4 {
    font-family: Din;
    font-weight: 700;
    font-size: 45px;
    color: #000;
    padding-bottom: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wrap-mass .videos {
    padding-bottom: 23px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.wrap-mass .videos .video-item {
    width: 477px;
    padding: 0 27px;
    font-size: 18px;
    font-family: Roboto;
    font-weight: 400;
    line-height: 19px;
}

.wrap-mass .videos .video-item .video {
    padding: 7px;
    border: 2px solid #dd2734;
    margin-bottom: 10px;
}

.wrap-mass .videos .video-item .video iframe {
    width: 400px;
    height: 222px;
}

.wrap-mass .videos p b {
    display: block;
}

.wrap-mass .el-button {
    padding: 21px 35px 19px;
}

.wrap-mass .business-popup {
    margin: 0 auto;
}

.wrap-reviews {
    background: url("../images/bg-couple.png") no-repeat center/cover;
    padding: 87px 0 108px;
    margin-top: -110px;
    text-align: center;
    font-family: Roboto;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

.wrap-reviews .reviews-title {
    text-align: left;
    font-family: Din;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-bottom: 50px;
    width: 90%;
    margin: 0 auto;
}

.wrap-reviews .reviews-title .left, .wrap-reviews .reviews-title .right {
    font-weight: 600;
    font-size: 19px;
    color: #fff;
    line-height: 22px;
}

.wrap-reviews .reviews-title .left span, .wrap-reviews .reviews-title .right span {
    font-weight: 700;
    font-size: 100px;
    color: #fff;
    display: block;
    line-height: 100px;
    padding-bottom: 5px;
}

.wrap-reviews .reviews-title .left {
    text-transform: uppercase;
    position: relative;
    padding-right: 25px;
}

.wrap-reviews .reviews-title .left:before {
    content: '';
    position: absolute;
    top: 18px;
    right: 0;
    width: 3px;
    height: 78px;
    background: #fff;
}

.wrap-reviews .reviews-title .right {
    font-size: 22px;
    padding-left: 20px;
    padding-top: 12px;
    line-height: 25px;
}

.wrap-reviews .reviews-title .right span {
    padding-bottom: 20px;
    font-size: 42px;
    text-transform: uppercase;
    line-height: 42px;
    letter-spacing: .8px;
}

.wrap-reviews .wrap-slider {
    padding-bottom: 70px;
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wrap-reviews .wrap-slider .prev {
    height: 57px;
    width: 57px;
    background: url("../images/ar.png") no-repeat center/contain;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    text-decoration: none;
    display: inline-block;
}

.wrap-reviews .wrap-slider .prev:hover {
    background: url("../images/arh.png") no-repeat center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
    cursor: pointer;
}

.wrap-reviews .wrap-slider .next {
    height: 57px;
    width: 57px;
    background: url("../images/ar.png") no-repeat center/contain;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
    text-decoration: none;
    display: inline-block;
}

.wrap-reviews .wrap-slider .next:hover {
    background: url("../images/arh.png") no-repeat center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    cursor: pointer;
}

.wrap-reviews .wrap-slider .slider {
    width: 89%;
    display: inline-block;
    padding: 0 20px;
}

.wrap-reviews .wrap-slider .slider .slide {
    width: 375px;
}

.wrap-reviews .wrap-slider .slider .slide .person {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.wrap-reviews .wrap-slider .slider .slide .person .pic {
    min-width: 130px;
    width: 130px;
    max-width: 130px;
    height: 130px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    padding: 10px;
    border: 1px solid #3b4255;
    overflow: hidden;
}

.wrap-reviews .wrap-slider .slider .slide .person .pic img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.wrap-reviews .wrap-slider .slider .slide .person .name {
    font-family: Din;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

.wrap-reviews .wrap-slider .slider .slide .person .name span {
    font-weight: 400;
    font-size: 14px;
    color: #9494a8;
    display: block;
}

.wrap-reviews .wrap-slider .slider .slide .reshenie {
    font-family: Din;
    font-weight: 400;
    font-size: 15px;
    color: #dd2734;
    line-height: 22px;
    padding-left: 5px;
}

.wrap-reviews .wrap-slider .slider .slide .reshenie ol li {
    color: #fff;
}

.wrap-reviews .wrap-slider .slider .slide .reshenie ol li span {
    color: #dd2734;
    font-weight: 600;
}

.wrap-reviews .wrap-slider .slick-dots {
    bottom: -60px;
}

.wrap-reviews .wrap-slider .slick-dots li {
    width: 12px;
    height: 12px;
}

.wrap-reviews .wrap-slider .slick-dots li.slick-active button, .wrap-reviews .wrap-slider .slick-dots li:hover button {
    background: transparent;
    border: 2px solid #fff;
    height: 10px;
    width: 10px;
    -webkit-transform: .3s;
    -moz-transform: .3s;
    -ms-transform: .3s;
    -o-transform: .3s;
    transform: .3s;
}

.wrap-reviews .wrap-slider .slick-dots li button {
    background: #fff;
    border: 2px solid transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: initial;
    width: 8px;
    height: 8px;
    -webkit-transform: .3s;
    -moz-transform: .3s;
    -ms-transform: .3s;
    -o-transform: .3s;
    transform: .3s;
}

.wrap-reviews .wrap-slider .slick-dots li button:before {
    display: none;
}

.wrap-reviews .el-button {
    padding: 21px 35px 19px;
    margin-bottom: 25px;
}

.wrap-reviews p {
    margin: 5px 0 0;
}

.wrap-reviews .business-popup {
    margin: 0 auto;
}

.wrap-reviews-mobile {
    background: url("../images/bg-couple-mob.png") no-repeat center/cover;
    padding: 30px 0 20px;
    text-align: center;
    font-family: Roboto;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    display: none;
}

.wrap-reviews-mobile .reviews-title {
    text-align: left;
    font-family: Din;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding-bottom: 50px;
    width: 90%;
    margin: 0 auto;
}

.wrap-reviews-mobile .reviews-title .left {
    text-transform: uppercase;
    position: relative;
    padding-right: 25px;
    padding-bottom: 15px;
    font-weight: 400;
    font-size: 25px;
    color: #fff;
    line-height: 26px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wrap-reviews-mobile .reviews-title .left span:first-child {
    display: inline-block;
    font-weight: 700;
    font-size: 100px;
    color: #fff;
    line-height: 100px;
    padding-bottom: 5px;
}

.wrap-reviews-mobile .reviews-title .left:before {
    content: '';
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 200px;
    height: 3px;
    background: #fff;
}

.wrap-reviews-mobile .reviews-title .right {
    font-size: 22px;
    padding-left: 0px;
    padding-top: 12px;
    line-height: 25px;
}

.wrap-reviews-mobile .reviews-title .right span {
    display: block;
    padding-bottom: 20px;
    font-size: 42px;
    text-transform: uppercase;
    line-height: 42px;
    letter-spacing: .8px;
}

.wrap-reviews-mobile .wrap-slider {
    padding-bottom: 107px;
    text-align: left;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.wrap-reviews-mobile .wrap-slider .prev {
    position: absolute;
    bottom: 30px;
    left: 50px;
    height: 57px;
    width: 57px;
    background: url("../images/ar.png") no-repeat center/contain;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    text-decoration: none;
    display: inline-block;
}

.wrap-reviews-mobile .wrap-slider .prev:hover {
    background: url("../images/arh.png") no-repeat center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
    cursor: pointer;
}

.wrap-reviews-mobile .wrap-slider .next {
    position: absolute;
    bottom: 30px;
    right: 50px;
    height: 57px;
    width: 57px;
    background: url("../images/ar.png") no-repeat center/contain;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-transform: rotateZ(180deg);
    -moz-transform: rotateZ(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotateZ(180deg);
    transform: rotateZ(180deg);
    text-decoration: none;
    display: inline-block;
}

.wrap-reviews-mobile .wrap-slider .next:hover {
    background: url("../images/arh.png") no-repeat center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    cursor: pointer;
}

.wrap-reviews-mobile .wrap-slider .mobile-slider {
    width: 100%;
    display: inline-block;
    padding: 0 20px;
}

.wrap-reviews-mobile .wrap-slider .mobile-slider .slide {
    width: 375px;
}

.wrap-reviews-mobile .wrap-slider .mobile-slider .slide .person {
    text-align: center;
    padding-bottom: 20px;
}

.wrap-reviews-mobile .wrap-slider .mobile-slider .slide .person .pic {
    width: 130px;
    height: 130px;
    padding: 7px;
    background: #fff;
    overflow: hidden;
    margin: 0 auto;
}

.wrap-reviews-mobile .wrap-slider .mobile-slider .slide .person .pic img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.wrap-reviews-mobile .wrap-slider .mobile-slider .slide .person .name {
    font-family: Din;
    font-weight: 700;
    font-size: 22px;
    color: #fff;
}

.wrap-reviews-mobile .wrap-slider .mobile-slider .slide .person .name span {
    font-weight: 400;
    font-size: 14px;
    color: #9494a8;
    display: block;
}

.wrap-reviews-mobile .wrap-slider .slick-dots {
    bottom: -85px;
    width: 95%;
}

.wrap-reviews-mobile .wrap-slider .slick-dots li {
    width: 15px;
    height: 15px;
}

.wrap-reviews-mobile .wrap-slider .slick-dots li.slick-active button, .wrap-reviews-mobile .wrap-slider .slick-dots li:hover button {
    background: transparent;
    border: 3px solid #fff;
    height: 13px;
    width: 13px;
    -webkit-transform: .3s;
    -moz-transform: .3s;
    -ms-transform: .3s;
    -o-transform: .3s;
    transform: .3s;
}

.wrap-reviews-mobile .wrap-slider .slick-dots li button {
    background: #fff;
    border: 3px solid transparent;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: initial;
    width: 10px;
    height: 10px;
    -webkit-transform: .3s;
    -moz-transform: .3s;
    -ms-transform: .3s;
    -o-transform: .3s;
    transform: .3s;
}

.wrap-reviews-mobile .wrap-slider .slick-dots li button:before {
    display: none;
}

.wrap-reviews-mobile .el-button {
    padding: 21px 35px 19px;
    margin-bottom: 25px;
}

.wrap-reviews-mobile p {
    margin: 5px 0 0;
}

.wrap-reviews-mobile .business-popup {
    margin: 0 auto;
}

.wrap-support {
    padding: 10px 0 0;
}

.wrap-support .support-content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 80px 0 0 15px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wrap-support .support-content .ramka {
    position: absolute;
    height: 100%;
    width: 95%;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.wrap-support .support-content .ramka:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 28px;
    width: 12px;
    height: 95%;
    background: #dd2734;
}

.wrap-support .support-content .ramka:after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 10px;
    width: 12px;
    height: 100%;
    background: #dd2734;
}

.wrap-support .support-content .ramka .rrr {
    content: '';
    position: absolute;
    top: 12px;
    right: 10px;
    width: 96%;
    height: 12px;
    background: #dd2734;
    -webkit-transform: rotate(-2.3deg);
    -moz-transform: rotate(-2.3deg);
    -ms-transform: rotate(-2.3deg);
    -o-transform: rotate(-2.3deg);
    transform: rotate(-2.3deg);
}

.wrap-support .support-content .pic {
    position: relative;
    z-index: 10;
    width: 32%;
}

.wrap-support .support-content .pic img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
}

.wrap-support .support-content .desc, .wrap-support .support-content .test_panel_wrapper {
    font-weight: 400;
    font-size: 28px;
    color: #6d6e71;
    padding-bottom: 10px;
    position: relative;
    z-index: 10;
    padding-left: 20px;
    width: 66%;
    padding-top: 20px;
}

.wrap-support .support-content .desc.hidden, .wrap-support .support-content .test_panel_wrapper.hidden {
    display: none;
}

.wrap-support .support-content .desc h5, .wrap-support .support-content .test_panel_wrapper h5 {
    font-family: Din;
    font-weight: 400;
    color: #000;
    font-size: 62px;
    text-transform: uppercase;
    line-height: 72px;
    padding-bottom: 12px;
}

.wrap-support .support-content .desc h5 span, .wrap-support .support-content .test_panel_wrapper h5 span {
    font-weight: 700;
    display: block;
    letter-spacing: .7px;
}

.wrap-support .support-content .desc p, .wrap-support .support-content .test_panel_wrapper p {
    margin: 0;
    padding-bottom: 5px;
}

.wrap-support .support-content .desc .test, .wrap-support .support-content .test_panel_wrapper .test {
    font-weight: 700;
    margin-top: 65px;
    text-transform: uppercase;
    font-size: 31px;
    color: #fff;
    padding: 27px 88px 26px;
    text-transform: uppercase;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #57a035;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    display: inline-block;
}

.wrap-support .support-content .desc .test:hover, .wrap-support .support-content .test_panel_wrapper .test:hover {
    background: #dd2734;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.wrap-questions {
    background: url("../images/bg-quest.jpg") no-repeat center/cover;
    padding: 126px 0 100px;
    text-align: center;
}

.wrap-questions .quest-content {
    width: 745px;
    margin: 0 auto;
}

.wrap-questions .quest-content h5 {
    font-family: Din;
    font-weight: 700;
    font-size: 45px;
    color: #000;
    padding-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wrap-questions .quest-content ul {
    padding-bottom: 38px;
}

.wrap-questions .quest-content ul li {
    text-align: left;
    padding-bottom: 3px;
}

.wrap-questions .quest-content ul li a {
    font-family: Din;
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 4px;
    color: #004781;
    border-bottom: 1px dashed #004781;
    margin-bottom: 14px;
    display: inline-block;
    position: relative;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.wrap-questions .quest-content ul li a.active:before {
    background: url("../images/tick-h.png") no-repeat center center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.wrap-questions .quest-content ul li a:hover {
    border-bottom: 1px solid #004781;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.wrap-questions .quest-content ul li a:hover:before {
    background: url("../images/tick-h.png") no-repeat center center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.wrap-questions .quest-content ul li a:before {
    content: '';
    position: absolute;
    top: 2px;
    left: -40px;
    height: 23px;
    width: 23px;
    background: url("../images/tick.png") no-repeat center center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.wrap-questions .quest-content ul li .answer {
    padding: 20px 26px 0;
    display: block;
    background: #e8eaec;
    border-left: 2px solid #c4c6ca;
    font-family: Roboto;
    font-weight: 400;
    font-size: 15px;
    color: #414042;
    position: relative;
    display: none;
    line-height: 18px;
    letter-spacing: .5px;
    margin-bottom: 32px;
}

.wrap-questions .quest-content ul li .answer p {
    margin: 0;
    padding-bottom: 17px;
}

.wrap-questions .quest-content ul li .answer ul {
    padding-left: 40px;
    padding-bottom: 20px;
}

.wrap-questions .quest-content ul li .answer li {
    list-style: disc;
}

.wrap-questions .quest-content ul li .answer .close {
    position: absolute;
    top: 10px;
    right: 10px;
    height: 20px;
    width: 20px;
}

.wrap-questions .quest-content ul li .answer .close:hover:before, .wrap-questions .quest-content ul li .answer .close:hover:after {
    background: #009d09;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    cursor: pointer;
}

.wrap-questions .quest-content ul li .answer .close:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    height: 3px;
    width: 100%;
    background: #a4a6a9;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.wrap-questions .quest-content ul li .answer .close:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg);
    height: 3px;
    width: 100%;
    background: #a4a6a9;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.wrap-questions .quest-content .el-button {
    padding: 20px 20px 20px;
}

.wrap-questions .quest-content .business-popup {
    margin: 0 auto;
}

.wrap-map {
    padding-top: 5px;
}

.wrap-map .mobile-map {
    display: none;
    text-align: center;
}

.wrap-map .mobile-map .content {
    padding: 20px 15px;
}

.wrap-map .mobile-map .content h6 {
    text-transform: uppercase;
    font-family: Din;
    font-weight: 600;
    font-size: 25px;
    line-height: 30px;
}

.wrap-map .mobile-map .content h6 span {
    color: #dd2734;
    display: block;
}

.wrap-map .mobile-map .content .pic {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    padding: 40px 0;
}

.wrap-map .mobile-map .red-tel {
    background: #dd2734;
    padding: 20px 0;
    text-transform: uppercase;
    font-family: Din;
    color: #fff;
    font-weight: 700;
}

.wrap-map .mobile-map .red-tel a {
    font-size: 31px;
    color: #fff;
}

.wrap-map .mobile-map .red-tel a span {
    color: #e9727b;
    font-size: 26px;
}

.wrap-map .map-content {
    margin: 0 auto;
    width: 100%;
    height: 325px;
    position: relative;
}

.wrap-map .map-content .map {
    width: 100%;
    height: 100%;
    background: #ccc;
}

.wrap-map .map-content .address {
    position: absolute;
    /* top: 50%;*/
    top: 40px;
    right: 300px;
    /*-webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);*/
    padding: 20px 50px 15px 70px;
    font-family: Roboto;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    background: #fff;
    width: 392px;
}

.wrap-map .map-content .address h6 {
    text-transform: uppercase;
    font-family: Din;
    font-weight: 700;
    font-size: 20px;
    color: #000;
    line-height: 22px;
    padding-bottom: 15px;
}

.wrap-map .map-content .address .address-title {
    text-transform: uppercase;
    font-family: Din;
    font-weight: 700;
    font-size: 22px;
    color: #000;
    position: relative;
    line-height: 22px;
    padding-bottom: 15px;
}

.wrap-map .map-content .address .address-title:before {
    content: '';
    position: absolute;
    top: 0;
    left: -35px;
    background: url("../images/home.png") no-repeat center center;
    width: 29px;
    height: 28px;
}

.wrap-map .map-content .address p {
    margin: 0;
    padding-bottom: 15px;
}

.wrap-map .map-content .address .el-button {
    padding: 17px 25px 16px;
    font-size: 14px;
    margin-top: 20px;
}

.wrap-map .map-content .business-popup form {
    margin: 0;
}

.wrap-map .map-content .address .el-button {
    margin-top: 0;
}

.big-mobile {
    display: none;
}

.big-mobile .more-title {
    padding: 30px 0 40px;
    background: #dd2734;
    text-align: center;
}

.big-mobile .more-title h5 {
    text-transform: uppercase;
    font-family: Din;
    font-weight: 700;
    font-size: 31px;
    color: #000;
    padding-bottom: 20px;
}

.big-mobile .wrap-steps {
    padding-top: 40px;
    padding-bottom: 30px;
    text-align: center;
}

.big-mobile .wrap-steps .steps-title {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    font-family: Din;
    font-weight: 700;
    font-size: 31px;
    color: #000;
    text-align: left;
}

.big-mobile .wrap-steps .steps-title span {
    margin-right: 20px;
}

.big-mobile .wrap-steps .steps-title p {
    width: 250px;
    margin: 0;
}

.big-mobile .wrap-steps .steps-title p span {
    color: #dd2734;
}

.big-mobile .wrap-steps ul {
    width: 100%;
    border: 3px solid #dd2734;
    padding: 20px 0 15px;
    margin: 0;
}

.big-mobile .wrap-steps ul li {
    font-weight: 600;
    font-size: 25px;
    line-height: 34px;
    color: #dd2734;
    position: relative;
    text-align: center;
    text-transform: uppercase;
}

.big-mobile .wrap-steps ul li:not(:last-child) {
    margin-bottom: 20px;
}

.big-mobile .wrap-steps ul li:not(:last-child):before {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 10px;
    height: 19px;
    background: url("../images/arr-mob.png") no-repeat center bottom;
}

.big-mobile .detail-way {
    padding: 15px 0 20px;
    text-align: center;
    font-family: Din;
    font-weight: 400;
    font-size: 16px;
    color: #000;
}

.big-mobile .detail-way h5 {
    text-transform: uppercase;
    font-family: Din;
    font-weight: 700;
    font-size: 25px;
    color: #000;
    padding-bottom: 15px;
}

.big-mobile .detail-way p {
    margin: 0;
}

.big-mobile .detail-way ul {
    padding-top: 30px;
}

.big-mobile .detail-way ul li {
    z-index: 5;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    font-family: Din;
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 30px;
    min-height: 71px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-transform: uppercase;
}

.big-mobile .detail-way ul li.disable {
    border: 1px solid #ced0d1;
    color: #a4a6a9;
    position: relative;
}

.big-mobile .detail-way ul li.disable .step-number {
    border: 2px solid #ced0d1;
}

.big-mobile .detail-way ul li.disable:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-style: solid;
    border-width: 12px 5px 0 5px;
    border-color: #ced0d1 transparent transparent transparent;
}

.big-mobile .detail-way ul li.active {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -moz-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border: 2px solid #dd2734;
    color: #000;
    padding-left: 20%;
    position: relative;
}

.big-mobile .detail-way ul li.active .step-number {
    border: 2px solid #dd2734;
}

.big-mobile .detail-way ul li.active span {
    margin-right: 25px;
}

.big-mobile .detail-way ul li.active:not(:last-child):before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: -12px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-style: solid;
    border-width: 12px 5px 0 5px;
    border-color: #dd2734 transparent transparent transparent;
}

.big-mobile .detail-way ul li .step-number {
    position: absolute;
    z-index: 10;
    top: -15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    height: 31px;
    width: 31px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    text-align: center;
    font-family: Din;
    font-weight: 700;
    font-size: 17px;
    color: #000;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.big-mobile .detail-way ul .sublist {
    padding-left: 20%;
    margin: 0;
    padding-top: 0;
    position: relative;
}

.big-mobile .detail-way ul .sublist:before {
    content: '';
    position: absolute;
    top: -30px;
    left: 5%;
    height: 135%;
    width: 16px;
    background: url("../images/ul-arr.png") repeat center center;
}

.big-mobile .detail-way ul .sublist:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 4%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    background: url("../images/class.png") no-repeat center center;
    height: 31px;
    width: 31px;
}

.fancybox-skin {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.main-site-popup {
    text-align: center;
    width: 400px;
    height: 230px;
    padding-top: 30px;
}

.main-site-popup .pop-title {
    font-family: Din;
    font-size: 18px;
    line-height: 20px;
}

.main-site-popup .button {
    display: block;
    border: 2px solid #57a035;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
    float: left;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 16px;
    line-height: 25px;
    font-weight: 700;
    text-align: center;
    font-family: Arial, sans-serif;
    background: #57a035;
    width: 60px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    text-decoration: none;
    margin: 50px 20px 0 87px;
    padding: 5px 0px 5px;
}

.main-site-popup .button:hover {
    background: #fff;
    color: #57a035;
    -webkit-transition: .3s;
    -o-transition: .3s;
    -moz-transition: .3s;
    transition: .3s;
}

.test_panel {
    padding: 0 50px 0 0px;
    font-family: Din;
    font-weight: 400;
    color: #000;
    font-size: 16px;
}

.test_panel h2 {
    font-family: Din;
    font-size: 24px;
    line-height: 22px;
    text-align: center;
    color: #000;
    padding-bottom: 20px;
}

.test_panel h2 span {
    font-family: Din;
    font-size: 14px;
    text-align: center;
    display: block;
}

.test_panel form {
    text-align: center;
}

.test_panel .progress_bar {
    margin-top: 100px;
    padding-right: 20px;
  position: absolute;
  left: 50%;
  margin-left: -110px}
.test_panel .progress_bar .progress_percent {
    width: 200px;
    text-align: center;
    float: right;
    color: #8f2332;
    font-weight: bold;
}

.test_panel .progress_bar .progress_1 {
    width: 200px;
    background: url("../images/linear_bg.jpg") repeat 0 0 transparent;
    height: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    top: 30px;
  left: 0;
  z-index: 11; }
.test_panel .progress_bar .progress_2 {
    width: 200px;
    background-color: #e0e0e0;
    height: 8px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    position: absolute;
    top: 30px;
  left: 0;
  z-index: 10; }

#ALT_ERROR {
    color: #ff1414;
    margin: 20px 0;
    clear: both;
}

#ALT_FORM_BUTTON_Y, #ALT_FORM_BUTTON_N {
    display: block;
    width: 150px;
    color: #ffffff;
    font-family: Din;
    font-size: 18px;
    line-height: 40px;
    text-transform: uppercase;
    margin-top: 24px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background: #57a035;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    border: 2px solid #57a035;
    margin-right: 30px;
    float: left;
}

#ALT_FORM_BUTTON_Y {
    margin-left: 100px;
}

#test_result {
    width: 630px;
    height: 240px;
    overflow: hidden;
}

.scroll-wrapper {
    height: 240px !important;
    line-height: 24px;
}

#test_result_button {
    display: block;
    text-transform: uppercase;
    color: #ffffff;
    font-size: 17px;
    line-height: 20px;
    font-weight: bold;
    text-align: center;
    font-family: Arial, sans-serif;
    background: #57a035;
    width: 400px;
    -webkit-border-radius: 8px 8px;
    -moz-border-radius: 8px 8px;
    border-radius: 8px 8px;
    text-decoration: none;
    margin: 50px auto;
    padding: 14px 10px 13px;
}

#test_result_button.hide {
    display: none;
}
