/*File https://tvoydom-promo.ru/css/main.css*/
@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/FuturaPT-Medium.eot');
    src: url('../fonts/FuturaPT-Mediumd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Medium.woff') format('woff'), url('../fonts/FuturaPT-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/FuturaPT-Book.eot');
    src: url('../fonts/FuturaPT-Bookd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Book.woff') format('woff'), url('../fonts/FuturaPT-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/FuturaPT-Bold.eot');
    src: url('../fonts/FuturaPT-Boldd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Bold.woff') format('woff'), url('../fonts/FuturaPT-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/Gilroy-Light.eot');
    src: url('../fonts/Gilroy-Lightd41d.eot?#iefix') format('embedded-opentype'), url('../fonts/Gilroy-Light.woff') format('woff'), url('../fonts/Gilroy-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: fallback;
}

@font-face {
    font-family: 'Gilroy';
    src: url('../fonts/FuturaPT-Demi.eot');
    src: url('../fonts/FuturaPT-Demid41d.eot?#iefix') format('embedded-opentype'), url('../fonts/FuturaPT-Demi.woff') format('woff'), url('../fonts/FuturaPT-Demi.ttf') format('truetype');
    font-weight: 600;
    font-display:fallback;
    font-style: normal;
}

body {
    position: relative;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    font-family: 'Gilroy', sans-serif;
    padding-top: 94px;
    overflow-x: hidden;
}

* {
    outline: none!Important;
}

button {
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.nomob {
    display: block;
}

.onlymob {
    display: none;
}

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

.row.flex::before,
.row.flex::after {
    display: none
}

.flex.center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
@-webkit-keyframes pulse {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	70% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}
@keyframes pulse {
	0% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}

	70% {
		-webkit-transform: scale(1);
		transform: scale(1);
	}

	100% {
		-webkit-transform: scale(0.9);
		transform: scale(0.9);
	}
}
header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 4px 84px rgba(0, 0, 0, 0.05);
    padding: 5px 0;
}

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

.top_nav {
    text-align: center;
}

.top_nav li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 8px;
}
.logos a{
    font-size: 29px;
    color: #DD7422;
	vertical-align: center;
	line-height: 18px;
	font-weight: 600;
}

.top_nav li a {
    font-size: 16px;
    position: relative;
    line-height: 18px;
    color: #000000;
}

.top_nav li:first-child {
    margin-left: 0;
}

.top_nav li:last-child {
    margin-right: 0;
}

.container {
    max-width: 1290px;
    width: 100%;
}

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

.intro_section {
    border-bottom: 1px solid #ECECEC;
    position: relative;
    background-image: url(../img/bg1.png);
    background-repeat: no-repeat;
    z-index: 10;

}

.fullw {
    position: relative;
    background-position: center;
    background-size: cover;
    height: 700px;
    display: block;
}

.fullw::before {
    content: '';
    display: block;
    position: absolute;
    width: 186px;
    height: 186px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: calc(50% - 93px);
    left: calc(50% - 93px);
    -webkit-animation: pulse 2s infinite;
    animation: pulse 2s infinite;
}

.fullw:hover::before {
    -webkit-animation: none;
    animation: none;
    -webkit-transform: scale(0.85);
    transform: scale(0.85)
}

h1 {
    margin: 0;
    margin-bottom: 40px;
    font-weight: 900;
    font-size: 50px;
    line-height: 50px;
    color: #323232;
}

h1 span {
    position: relative;
	font-weight: 600;
    font-size: 40px;
	line-height: 20px;
}

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

.intro_flex div {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    min-height: 194px;
    position: relative;
    top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(65.22%, #F5F5F5), color-stop(112.89%, rgba(254, 254, 254, 0)));
    background: linear-gradient(180deg, #F5F5F5 65.22%, rgba(254, 254, 254, 0) 112.89%);
    border-radius: 9px;
    padding: 23px;
    position: relative;
    margin-right: 15px;
}

.intro_flex div:hover {
    top: -5px;
}

.intro_flex div:last-child {
    margin-right: 0;
}

.intro_flex div p {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.intro_icn {
    margin-bottom: 25px;
    display: inline-block;
}

button {
    padding: 0;
    margin: 0;
    display: inline-block;
    vertical-align: middle;
    background: none;
    border: none
}

.normb {
    width: 100%;
    height: 90px;
    background: #DD7422;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    padding-top: 5px;
}

.normb img {
    margin-left: 15px;
    position: relative;
    left: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: -4px;
}

.normb:hover img {
    left: 5px;
}

.normb::before {
    content: '';
    display: block;
    border-radius: 10px;
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 2px solid #000;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.normb:hover::before {
    opacity: 1
}
.hedbut {
    width: 50%;
    height: 50px;
    background: #DD7422;
    border-radius: 10px;
    font-weight: bold;
    font-size: 12px;
    position: relative;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    padding-top: 5px;
	opacity: 1
}

.hedbut::before {
    content: '';
    display: block;
    border-radius: 10px;
    position: absolute;
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    border: 2px solid #000;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.hedbut:hover::before {
    opacity: 1
}

.intro_bot {
    margin-top: 45px;
}

.intro_bot button {
    max-width: 285px;
}

.intro_bot p {
    margin-bottom: 0;
    width: calc(100% - 289px);
    padding-left: 25px;
    font-size: 22px;
    line-height: 25px;
    color: #000000;
    display: inline-block;
    vertical-align: middle;
}

h2 {
    margin: 0;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 51px;
    line-height: 52px;
    color: #000000;
}

.after_h2 {
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
    font-size: 24px;
    line-height: 40px;
    color: #000000;
}

.secure_section {
    padding-top: 94px;
    position: relative;
}

.secure_section .container {
    position: relative;
    z-index: 100;
}

.secure_section::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    background-position: center;
    background-size: cover;
    background-image: url(../img/bg_secure.jpg);
    max-height: 466px;
    height: 100%;
}

.secure_section h2 {
    margin-bottom: 15px;
    color: #fff;
}

.secure_section .after_h2 {
    color: #fff;
    margin-bottom: 40px;
}

.secure_panel_wrp {
    position: relative;
    background: #FFFFFF;
    -webkit-box-shadow: 10px 14px 160px rgba(0, 0, 0, 0.08);
    box-shadow: 10px 14px 160px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    z-index: 10;
}

.secure_item::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../img/ps_secure2.svg);
    background-repeat: no-repeat;
    height: 4px;
    width: calc(100% - 70px);
    top: 34px;
    left: calc(50% - 30px);
    z-index: -1;
}

.secure_item:last-child::before {
    display: none
}

.secure_item {
    position: relative;
}

.secure_item div {
    margin-bottom: 14px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    width: 70px;
    height: 70px;
    border: 2px solid #DD7422;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 15px;
    background-color: #fff;
}

.secure_item:hover div {
    background-color: #DD7422;
}

.secure_item p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.way_section {
    padding: 80px 0;
}

.way_section h2 {
    margin-bottom: 35px;
}

.way_img {
    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;
    padding: 15px;
    background-position: center;
    background-size: cover;
    height: 100%;
    min-height: 484px;
    border-radius: 20px;
}

.way_info {
    position: relative;
    z-index: 10;
    padding-right: 15px;
}

.way_ttle {
    margin-bottom: 1px;
    font-weight: bold;
    font-size: 35px;
    line-height: 37px;
    color: #000000;
}

.way_subttle {
    margin-bottom: 40px;
    font-weight: normal;
    font-size: 26px;
    line-height: 29px;
    color: #000000;
}

.way_list {}

.way_list li {
    margin-bottom: 25px;
    font-size: 21px;
    line-height: 24px;
    color: #000000;
    position: relative;
    padding-left: 48px;
}

.way_list li:last-child {
    margin-bottom: 0;
}

.way_list li::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../img/way_list.svg);
    background-repeat: no-repeat;
    width: 28px;
    height: 28px;
    left: 0;
    top: 2px;
}

.ways_wrp_all > .row:nth-child(odd) > div:nth-child(2) {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.ways_wrp_all > .row:nth-child(odd) > div:nth-child(1) {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding-left: 0;
}

.ways_wrp_all > .row:nth-child(even) > div:nth-child(1) {
    padding-right: 0;
}

.ways_wrp_all > .row:nth-child(even) .way_info {
    padding-left: 15px;
    padding-right: 0;
}

.ways_wrp_all > .row::before {
    content: '';
    display: block!important;
    position: absolute;
    width: 80px;
    height: 80px;
    z-index: 100;
    left: calc(50% - 39px);
    bottom: -39px;
    background-size: 80px;
}

.ways_wrp_all > .row {
    position: relative;
}

.ways_wrp_all > .row:last-child::before {
    display: none!important
}

.go_prev,
.go_next {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url(../img/prev.svg);
    background-color: #F5F2F0;
    display: inline-block;
    cursor: pointer;
    vertical-align: middle;
}

.go_prev:hover,
.go_next:hover {
    background-color: #DD7422;
}

.go_next {
    background-image: url(../img/next.svg);
}

.stat_nav {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    vertical-align: middle;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 160px;
}

.stat_num {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0;
    margin-left: 30px;
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
    text-align: center;
    color: #000000;
}

.line_stat {
    display: inline-block;
    vertical-align: middle;
    width: 60px;
    height: 2px;
    background-color: black;
    margin: 0 5px;
}

.stat_nav_wrp {
    margin-top: 50px;
    position: relative;
    z-index: 100;
}

.stat_num span {
    vertical-align: middle;
}

.quiz_section {
    background-position: center;
    background-size: cover;
    padding: 85px 0;
    background-image: url(../img/bg_quiz.jpg);
}

.quiz_section h2 {
    color: #fff;
}

.quiz_section .after_h2 {
    margin-bottom: 12px;
    margin-bottom: 45px;
    color: #fff;
}

.quiz_ttle {
    margin-bottom: 30px;
    font-weight: bold;
    font-size: 42px;
    line-height: 52px;
    color: #FFFFFF;
}

.quiz_inner {
    min-height: 237px;
}

.quiz_inner .flex {
    margin-bottom: -25px;
}

.quiz_inner .flex > div {
    margin-bottom: 25px;
}

.check_item_quiz {
    height: 100%;
    min-height: 92px;
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 4px solid transparent;
    background-color: #fff;
    background: #FFFFFF;
    border-radius: 10px;
    padding-left: 84px;
    padding-top: 15px;
    padding-right: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
    padding-bottom: 15px;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.check_item_quiz::before {
    background-image: url(../img/check1.svg);
    background-repeat: no-repeat;
    content: '';
    display: block;
    position: absolute;
    width: 24px;
    height: 24px;
    left: 30px;
    top: calc(50% - 12px);
}
.check_item_quiz:hover {
    border-color: #DD7422;
}

.control_flex {
    margin-bottom: -15px;
}

.control_flex > div {
    margin-bottom: 15px;
}

.step_prev {
    height: 90px;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    display: none;
    color: #FFFFFF;
}

.step_prev:hover {
    background-color: #000
}

.step_next {}

.quiz_item {
    display: none
}

.quiz_item:first-child {
    display: block
}

input {
    height: 90px;
    width: 100%;
    background: #fff;
    border: none;
    padding: 0 1px;
    font-weight: normal;
    border: 1px solid transparent;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}
.adres_object {
    max-width: 410px;
}

::-moz-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
}

:-ms-input-placeholder {
    color: #000;
}

input[type=number] {
    -moz-appearance: textfield;
}

.quiz_item form {
    max-width: 712px;
    display: -webkit-box;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: -ms-flexbox;
    display: flex;
}

.quiz_item form input {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    padding: 0 35px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.quiz_item form button {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

.quiz_item .pressing {
    text-align: center
}

.pressing {
    margin-top: 20px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 17px;
    color: #FFFFFF;
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.pressing a {
    color: #DD7422;
}

.pressing a:hover {
    text-decoration: underline;
}

:focus::-moz-placeholder {
    color: transparent
}

:focus:-moz-placeholder {
    color: transparent
}

:focus:-ms-input-placeholder {
    color: transparent
}

.cases_wrp_section h2 {
    margin-bottom: 30px;
}

.cases_wrp_section {
    padding-top: 40px;
    padding-bottom: 124px;
    overflow: hidden;
    background-repeat: no-repeat;
    background-image: url(../img/bg_cases.png);
    background-position: calc(50% + 421px) 0;
}

.case_item {
    position: relative;
    z-index: 100;
    background-color: #fff;
    border-radius: 15px;
    padding: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cases_carousel {
    z-index: 1;
    border-radius: 15px;
    -webkit-box-shadow: 10px 14px 160px rgba(0, 0, 0, 0.08);
    box-shadow: 10px 14px 160px rgba(0, 0, 0, 0.08);
    position: relative;
}

.case_descript {
    width: 55%;
    padding-left: 70px;
    padding-right: 70px;
    padding-top: 62px;
    padding-bottom: 80px;
}

.case_button {
    max-width: 290px;
}

.cases_wrp {
    position: relative;
}

.cases_wrp::before {
    content: '';
    display: block;
    position: absolute;
    top: 50px;
    left: 50px;
    background: #F7FFFFF;
    -webkit-box-shadow: 10px 14px 40px rgba(0, 0, 0, 0.04);
    box-shadow: 10px 14px 40px rgba(0, 0, 0, 0.04);
    border-radius: 19px;
    width: 100%;
    height: 100%;
}

.cases_wrp::after {
    content: '';
    display: block;
    position: absolute;
    top: 25px;
    left: 25px;
    background: #FFFFFF;
    -webkit-box-shadow: 10px 14px 40px rgba(0, 0, 0, 0.04);
    box-shadow: 10px 14px 40px rgba(0, 0, 0, 0.04);
    border-radius: 19px;
    width: 100%;
    height: 100%;
}

.cases_wrp .stat_nav_wrp {
    margin: 0;
    position: absolute;
    bottom: 50px;
    right: 40px;
    z-index: 100;
}

.owl-prev {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-image: url(../img/prev22.svg);
    width: 73px;
    height: 73px;
    position: absolute;
    top: calc(50% - 36px);
    left: -120px;
}

.owl-next {
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-image: url(../img/next22.svg);
    width: 73px;
    height: 73px;
    position: absolute;
    top: calc(50% - 36px);
    right: -120px;
}

.owl-prev:hover,
.owl-next:hover {
    opacity: .6
}

.faq_section {
    padding-top: 34px;
	margin-bottom: 40px;
}

.faq_item {
    position: relative;
    cursor: pointer;
    margin-bottom: 10px;
    padding: 35px 40px;
    background: #FFFFFF;
    -webkit-box-shadow: 10px 14px 160px rgba(0, 0, 0, 0.08);
    box-shadow: 10px 14px 160px rgba(0, 0, 0, 0.08);
    border-radius: 15px
}

.faq_item::before {
    background-image: url(../img/faq_ar.svg);
    content: '';
    display: block;
    position: absolute;
    -webkit-filter: brightness(0);
    filter: brightness(0);
    width: 23px;
    height: 23px;
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: 35px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    right: 40px;
}

.faq_header {
    padding-right: 25px;
    font-weight: bold;
    font-size: 22px;
    line-height: 27px;
    color: #000000;
}

.faq_body {
    border-left: 5px solid #DD7422;
    padding-left: 15px;
    margin-top: 25px;
    font-weight: normal;
    font-size: 16px;
    line-height: 26px;
    display: none;
    color: #000000;
}

.contact_section {
    padding-top: 70px;
    position: relative;
}

.map_wrp {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.map_wrp iframe {
    width: 100%;
    height: 100%;
}

.contact_wrp {
    position: relative;
    z-index: 100;
    max-width: 690px;
    padding-top: 60px;
    padding-bottom: 60px;
    padding-left: 60px;
    padding-right: 60px;
    background: #FFFFFF;
    border-radius: 20px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.contact_wrp h2 {
    margin-bottom: 50px;
}

.cont_list {}

.cont_list li {
    margin-bottom: 16px;
    position: relative;
    padding-left: 32px;
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #000000;
}

.cont_list li a {
    font-weight: bold;
    color: black;
}

.cont_list li a:hover {
    text-decoration: underline;
}

.cont_list li > img {
    position: absolute;
    left: 0;
    top: 0;
}

footer {
    padding: 18px 0;
    background-color: #DCDCDC;
}

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

.foott {
    margin-bottom: 0;
    font-weight: normal;
    font-size: 16px;
    line-height: 19px;
    color: #000000;
}

a.foott:hover {
    text-decoration: underline;
}

@-webkit-keyframes line_hover_in {
    0% {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }
    100% {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes line_hover_in {
    0% {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
    }
    100% {
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@-webkit-keyframes line_hover_out {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
    }
    100% {
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
    }
}

@keyframes line_hover_out {
    0% {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
    }
    100% {
        -webkit-transform: scale(0, 1);
        transform: scale(0, 1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0;
    }
}

.top_nav li a::after {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    bottom: -7px;
    width: 100%;
    height: 2px;
    background: #DD7422;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition: all 0.6s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    -webkit-animation: line_hover_out 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
    animation: line_hover_out 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
}

.top_nav li a:hover::after {
    -webkit-animation: line_hover_in 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
    animation: line_hover_in 0.5s cubic-bezier(0.785, 0.135, 0.15, 0.86) both;
}

.normb {
    overflow: hidden;
}

@-webkit-keyframes blink {
    from {
        left: -85px;
    }
    to {
        left: 120%
    }
}

@keyframes blink {
    from {
        left: -85px;
    }
    to {
        left: 120%
    }
}

.step_next::after {
    display: none
}

.modal-dialog {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    padding: 15px;
    margin-top: 40px;
}

.modal_wrp {
    position: relative;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 14px 230px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 14px 230px rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 40px;
    padding-bottom: 30px;
}

.closemod {
    position: absolute;
    cursor: pointer;
    z-index: 100;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    top: 11px;
    right: 11px;
}

.closemod:hover {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

.modal_wrp .flex {
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: -10px;
}

.modal_wrp .flex > div {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 10px;
}

.modal_wrp .flex input {
    height: 70px;
    background-color: #F6F6F6;
    padding: 0 30px
}

.modal_wrp form .flex button {
    max-width: 100%;
    width: 100%;
}

.modal_wrp form .pressing {
    margin-top: 20px;
    color: black;
    max-width: 380px;
}

.mt1 {
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 37px;
    line-height: 46px;
    color: #000000;
}

.mt2 {
    margin-bottom: 40px;
    font-weight: normal;
    font-size: 22px;
    line-height: 26px;
    color: #000000;
}

#politika .modal-dialog {
    max-width: 1200px;
}

.owl-dots {
    text-align: center;
    margin-top: 25px;
    display: none;
}

.owl-dot {
    background-color: #dedede;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    margin: 0 6px;
}

.owl-dot.active {
    background-color: #DD7422
}

.open_nav {
    display: none
}
.wa_call {
    max-height: 50px
}
.wa_call_mob {
    display: none
}
.pressing {
    padding-left: 32px;
}
.pressing::before {
    position: absolute;
    content: '';
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    left: 0;
    border: 2px solid #fff;
    border-radius: 4px;
    top: -1px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.pressing.pressed::before {
    
border-color: #DD7422;
    
border-width: 5px;
}
form > div:not(.flex) {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
    text-align: center;
}
.cases_carousel  .owl-stage {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.cases_carousel .item {
    height: 100%;
}

.cases_carousel .case_item {
    height: 100%;
}

::-moz-placeholder {
    color: #000000;
}

:-moz-placeholder {
    color: #000000;
}

:-ms-input-placeholder {
    color: #000000;
}

[name="phone"] {
    background-repeat: no-repeat!important;
}

.head_cont {
    width: 335px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.toptel {
    font-weight: bold;
    font-size: 17px;
    line-height: 22px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    text-align: right;
    color: #000000;
}

.toptel:hover {
    color: #DD7422
}
.pressing span {
    text-decoration: underline;
}
.pressing span:hover {
    text-decoration: none
}
.pressing {
    position: relative;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    margin-bottom: 0;
    padding-left: 29px;
    font-weight: normal;
    font-size: 14px;
    line-height: 17px;
    color: rgba(50, 50, 50, 0.44);
    margin-bottom: 10px;
    display: inline-block;
}

.pressing::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0px;
    width: 18px;
    height: 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 6px solid rgba(50, 50, 50, 0.44);
}

.pressing.pressed::before {
    border-color: #DD7422;
}
.company_section h2 {
    margin-bottom: 30px;
}

.company_section {
    padding-bottom: 60px;
    padding-top: 95px;
}
.company1 {
    float: right;
    margin-right: 40px;
	border-radius: 10px;
	max-width: 120%;
}
.use_wrp {}

.use_wrp p {
    margin-bottom: 15px;
    font-weight: normal;
    font-size: 20px;
    line-height: 25px;
    color: #310D0C;
}

.use_wrp p:last-child {
    margin-bottom: 0;
}

.use_wrp p span {
    width: 24px;
    height: 4px;
    background: #DD7422;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}

.company_section h2 {
    margin-bottom: 30px;
}
.proekt_section {
	margin-top: 1px;
    padding-top: 95px;
    z-index: 10;
    position: relative;
    padding-bottom: 20px;
	
}

.proekt_section::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 533px;
    background-repeat: no-repeat;
    background-position: calc(50% + 840px) 0;
    top: -50px;
    -webkit-animation: float 5s ease-in-out infinite;
    animation: float 5s ease-in-out infinite;
}

.five h2 {
    font-size: 40px;
	color: #40372E;
}
.container_flex {
    margin-bottom: -40px;
    padding-bottom: 24px;
}

.container_flex > div {
    margin-bottom: 40px;
}

.contain_item {
    position: relative;
    height: 100%;
    padding-top: 34px;
    padding-bottom: 34px;
    padding-left: 40px;
    padding-right: 40px;
    -webkit-box-shadow: 0px 5px 10px rgba(217, 217, 223, 0.4);
    box-shadow: 0px 5px 10px rgba(217, 217, 223, 0.4);
    background: #FFFFFF;
    border-radius: 6px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-line-pack: justify;
    align-content: space-between;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
}

.contain_item::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    left: -5px;
    top: 5px;
    background: #DD7422;
    opacity: 0.1;
    border-radius: 6px;
    -webkit-transform: rotate(-1.54deg);
    transform: rotate(-1.54deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    z-index: -1;
}

.contain_item:hover::before {
    background: #DD7422;
    opacity: 1;
}

.contain_ttle {
	text-align: center;
    font-weight: 500;
    font-size: 22px;
    line-height: 22px;
    color: #40372E;
    width: 100%;
}
.zakaz_but {
	text-align: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 22px;
    color: #DD7422;
    width: 100%;
	text-decoration: underline dotted;
}
.zakaz_but {
    background: -webkit-gradient(linear, left top, left bottom, color-stop(-329.83%, #FFFFFF), color-stop(173.39%, rgba(0, 0, 0, 0))), #DD7422;
    background: linear-gradient(180deg, #FFFFFF -329.83%, rgba(0, 0, 0, 0) 173.39%), #DD7422;
    background-blend-mode: soft-light, normal;
    -webkit-box-shadow: inset 0px 4px 14px rgba(255, 255, 255, 0.25);
    box-shadow: inset 0px 4px 14px rgba(255, 255, 255, 0.25);
    border-radius: 80px;
    font-weight: bold;
    font-size: 13px;
    line-height: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #FFFFFF;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.zakaz_but:hover {
     color: #000;
	border: 2px solid grey;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}

.zakaz_but:active {
     color: #000;
	border-top: 2px solid grey;
    text-shadow: 0px 1px 2px rgba(0, 0, 0, 0.15);
}
.look_more {
    width: 100%;
    max-width: 360px;
    height: 65px;

}

.cont_img {
    height: 180px;
    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;
    padding: 5px;
    margin-bottom: 10px;
    width: 100%;
}

.cont_img img {
    max-width: 100%;
    max-height: 100%;
}
.mod_wrp {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    width: 100%;
    max-width: 600px;
    background: #FFFFFF;
    -webkit-box-shadow: 7px 26px 66px rgba(48, 48, 60, 0.24);
    box-shadow: 7px 26px 66px rgba(48, 48, 60, 0.24);
    border-radius: 6px;
    padding-top: 55px;
    padding-left: 60px;
    padding-right: 60px;
    padding-bottom: 55px;
}

.mod_wrp::before {
    content: '';
    display: block;
    position: absolute;
    top: 10px;
    left: 10px;
    opacity: 0.2;
    border: 1px solid #DD7422;
    border-radius: 3px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
}
.modal-lg {
    max-width: 1160px;
    width: 100%;
}

.modal-lg .mod_wrp {
    max-width: 100%
}
.modal_in {
    position: relative;
    z-index: 100;
}

.case_ttle_modal {
    margin-bottom: 40px;
    font-weight: 500;
    font-size: 28px;
    line-height: 30px;
    color: #40372E;
}

.case_img_item {
    display: block;
    background-position: center;
    background-size: cover;
    position: relative;
    height: 340px;
    margin-bottom: 10px;
}

.case_img_item::before {
    content: '';
    display: block;
    position: absolute;
    top: 5px;
    left: 5px;
    border: 1px solid #fff;
    border-radius: 3px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
}

.owl-nav > div {
    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;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
    background-color: #fff;
    width: 50px;
    height: 50px;
    -webkit-box-shadow: 0px 5px 10px rgba(217, 217, 223, 0.4);
    box-shadow: 0px 5px 10px rgba(217, 217, 223, 0.4);
    cursor: pointer;
    position: absolute;
}

.owl-nav > div:hover {
    background-color: #DD7422;
}

.owl-nav > div:hover::before {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.owl-prev::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../img/prev.svg);
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.owl-next::before {
    content: '';
    display: block;
    position: absolute;
    background-image: url(../img/next.svg);
    background-repeat: no-repeat;
    background-position: center;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}

.owl-next {
    top: calc(50% - 25px);
    right: -25px
}

.owl-prev {
    top: calc(50% - 25px);
    left: -25px;
}

.target_item {
    display: block;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    position: relative;
    border-radius: 6px;
}

.target_item::before {
    padding-top: 64%;
    content: '';
    display: block;
}

.target_item::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border: 2px solid #DD7422;
    border-radius: 6px;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.car_targets {
    margin-left: -7px;
    margin-right: -7px;
    margin-bottom: -14px;
}

.car_targets > div {
    padding-left: 7px;
    padding-right: 7px;
    margin-bottom: 14px;
}
.case_media_area_wrp {
    padding-right: 15px;
}
.cat_ttle {
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 24px;
    line-height: 30px;
    color: #40372E;
}

.normt {
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 20px;
    line-height: 22px;
    color: #40372E;
}

.norm_list {
    margin-bottom: 30px;
}

.norm_list li {
    margin-bottom: 8px;
    position: relative;
    padding-left: 36px;
    font-weight: 400;
    font-size: 20px;
    line-height: 22px;
    color: #40372E;
}

.norm_list li:last-child {
    margin-bottom: 0;
}

.norm_list li::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    background-image: url(../img/norm_list.svg);
    width: 22px;
    height: 22px;
}
.norm_list li::before {
	display: block;
	position: absolute;
	left: 0;
	height: 2px;
	width: 16px;
	background-color: #DD7422;
	top: 10px;
}
.over_forma_t {
    font-weight: normal;
    font-size: 20px;
    line-height: 28px;
    color: #40372E;
    margin-bottom: 5px;
    border-left: 4px solid #DD7422;
    padding-left: 30px;
}

.over_forma_t p {
    font-weight: bold;
    margin-bottom: 0;
}
.in_item {
    position: relative;
    margin-bottom: 1px;
}

.in_item input {
    background: none;
    border: none;
    padding-bottom: 1px;
    width: 100%;
    font-weight: 500;
    font-size: 17px;
    line-height: 1px;
    padding-right: 30px;
    color: #40372E;
    border-bottom: 1px solid #40372E;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.in_item span {
    position: absolute;
    top: 0;
    right: 0;
    font-weight: bold;
    font-size: 12px;
    line-height: 35px;
    text-align: right;
    color: #DD7422;
	
}

.in_item input:focus {
    border-bottom-color: #DD7422;
}
form .zakaz_but {
    width: 100%;
    max-width: 100%;
    margin-top: 25px;
    height: 70px;
    margin-bottom: 15px;
    font-size: 14px;
}
.photo_section h2 {
    font-size: 55px;
    margin-bottom: 30px;
}

.photo_section {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #FFFFFF
}

.ex_item {
    display: block;
    text-align: center;
    margin-bottom: 50px;
}

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

.ex_item > div {
    margin-bottom: 30px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5%;
    background-position: center;
    background-size: cover;
}

.ex_item > div::before {
    content: '';
    display: block;
    padding-top: 100%;
}

.ex_item > div::after {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 5%;
    background-repeat: no-repeat;
    background-position: center;

    transition: 0.3s;
    opacity: 0;
    background-color: rgba(178, 139, 102, 0.7);
    background-size: calc(100% - 20px);
}

.ex_item:hover > div::after {
    opacity: 1;
}

.owlex_wrp {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 10px;
}

.owlex_wrp .owl-prev,
.owlex_wrp .owl-next {
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.owlex_wrp .owl-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 110px;
    order: 2;
}
.photo_section {
    position: relative;
}

.photo_section::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 926px;
    background-repeat: no-repeat;
    bottom: -740px;
    background-position: calc(50% + 750px) 0;
}
.block2 {
    padding-bottom: 45px;
    background-repeat: no-repeat;
    background-position: right;
    background-image: url(../img/bg5.png);
	background-color: #f4f4f6
	
}

.block2 h2 {
    font-size: 40px;
	color: #40372E;
    text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

.block2 .flex > div {
    margin-bottom: 30px;
}

.ideal_wrp {
    height: 100%;
    position: relative;
    background: -webkit-gradient(linear, left top, left bottom, from(#FFFFFF), to(rgba(255, 255, 255, 0))), #F8F8F8;
    background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%), #F8F8F8;
    -webkit-box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 4px 11px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding-top: 16px;
    padding-left: 30px;
    overflow: hidden;
    padding-right: 25px;
    padding-bottom: 23px;
}

.ideal_wrp div {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.ideal_wrp div::before {
    content: '';
    display: block;
    position: absolute;
    top: 7px;
    left: 7px;
    width: calc(100% - 14px);
    height: calc(100% - 14px);
    opacity: 0.2;
    border: 1px solid #FFFFFF;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
}

.ideal_wrp i {
    margin-bottom: 9px;
    font-style: normal;
    font-weight: normal;
    font-size: 42px;
    line-height: 46px;
    color: #FFA800;
    display: block;
    position: relative;
    z-index: 100;
}

.ideal_wrp p {
    padding-bottom: 13px;
    margin-bottom: 13px;
    font-weight: bold;
    font-size: 20px;
    line-height: 22px;
    color: #20203F;
    border-bottom: 1px solid rgba(86, 87, 104, 0.15);
    position: relative;
    z-index: 100;
}

.ideal_wrp span {
    position: relative;
    z-index: 100;
    font-weight: normal;
    font-size: 18px;
    line-height: 20px;
    color: #565768;
}

.ideal_wrp:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.ideal_wrp:hover div {
    opacity: 1
}

.ideal_wrp:hover p {
    color: #fff;
    border-bottom-color: rgba(255, 255, 255, 0.67)
}

.ideal_wrp:hover span {
    color: #fff;
}
.block4 {
    background-position: bottom center;
    background-size: cover;
    background-image: url(../img/bg4.jpg);
    padding-top: 70px;
    padding-bottom: 100px;
}

.block4 h2 {
    font-weight: normal;
    font-size: 40px;
    line-height: 25px;
    text-align: center;
    color: #FFFFFF;
}

.plus_minus_t {
    min-height: 120px;
    margin-bottom: 22px;
    font-weight: normal;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    padding-top: 40px;
}

.plus_minus_t span {
    display: inline-block;
    vertical-align: middle;
    padding-left: 19px;
    width: calc(100% - 50px);
}

.plus_minus_t b {
    font-weight: bold
}

.pr_list {
    max-width: 510px;
}

.pr_list > li {
    margin-bottom: 25px;
}

.pr_list > li:last-child {
    margin-bottom: 0;
}

.pr_list > li > p {
    font-weight: normal;
    font-size: 20px;
    line-height: 26px;
    color: #FFFFFF;
    opacity: 0.9;
    margin-bottom: 15px;
}

.pr_list > li > p > span {
    padding-left: 19px;
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 50px);
}

.pr_list > li > span {
    font-weight: normal;
    font-size: 18px;
    line-height: 22px;
    color: #DBDBDB;
    opacity: 0.8;
}

.good_wrp {
    position: relative;
    background: linear-gradient(205.26deg, rgba(255, 255, 255, 0.54) -18.72%, rgba(255, 255, 255, 0) 120.81%), #434758;
    background-blend-mode: soft-light, normal;
    opacity: 0.9;
    -webkit-box-shadow: 5px 29px 80px rgba(0, 0, 0, 0.2);
    box-shadow: 5px 29px 80px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding-bottom: 40px;
    padding-left: 80px;
    padding-right: 70px;
}

.good_wrp::before {
    content: '';
    display: block;
    position: absolute;
}
.good_arror {
    background-image: url(../img/good.svg)!important;
    display: inline-block;
    vertical-align: middle;
    width: 50px;
    height: 50px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40px;
    position: relative;
    top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.case_descript_in {
    max-width: 490px
}
.case_ttle {
    font-weight: normal;
    font-size: 24px;
    line-height: 28px;
    color: #000000;
    padding-bottom: 22px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(196, 196, 196, 0.3);
}
.case_descript_text {
    margin-bottom: 20px;
    font-weight: normal;
    font-size: 16px;
    line-height: 22px;
    color: #565768;
}
.case_chars {
    margin-bottom: 40px;
    max-width: 370px;
}

.case_chars li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    margin-bottom: 4px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.case_chars li:last-child {
    margin-bottom: 0;
}

.case_chars li span:first-child {
    position: relative;
    font-style: normal;
    font-weight: bold;
    font-size: 12px;
    line-height: 22px;
    letter-spacing: 0.05em;
    z-index: 100;
    text-transform: uppercase;
    background-color: #fff;
    color: #20203F;
    padding-right: 14px;
}

.case_chars li::before {
    content: '';
    display: block;
    position: absolute;
    opacity: 0.21;
    border: 1px solid #C4C4C4;
    width: 100%;
}

.case_chars li span:last-child {
    font-weight: bold;
    font-size: 12px;
    line-height: 22px;
    position: relative;
    z-index: 100;
    background-color: #fff;
    text-transform: uppercase;
    color: #565768;
    padding-left: 14px;
}
.case_imgs {
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    display: block;
     -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
.case_main_img {
    background-position: center;
    background-size: cover;
    margin-bottom: 12px;
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    border-radius: 15px;
	
}
.warning {
	position: fixed;
	bottom: 0;
	right: 0;
	display: none;
	justify-content: right;
	width: 100%;
	padding: 10px;
	box-sizing: border-box;
	background-color: white;
	z-index: 120;
	border: 1px solid black;
	height: 150px;
	width: 400px;
	border-radius: 10px;
	margin: 20px;
	text-align: center;
	align-items: center; 
}

.warning--active {
	display: flex;
}

.warning__text {
	margin-right: 30px;
}
.warning__apply {
	padding: 10;
    margin: 10;
    display: inline-block;
    vertical-align: middle;
    background: none;
    border: none
	
}

.normb2 {
	margin: 10px;
    width: 100%;
    height: 35px;
    background: #fff;
    border-radius: 10px;
	border: thin solid black;
    font-weight: bold;
    font-size: 12px;
    position: relative;
    line-height: 1;
    text-transform: uppercase;
    color: #000;
    padding-top: 5px;
}