
@font-face {
	font-family: 'SuisseIntl';
	src: url('/assets/fonts/suisseintl-regular.woff2') format('woff2'), /* Super Modern Browsers */
		url('/assets/fonts/suisseintl-regular.woff') format('woff'), /* Firefox >= 3.6, any other modern browser */
		url('/assets/fonts/suisseintl-regular.ttf') format('truetype');
    font-weight:normal;
    font-style:normal;
}

@font-face {
    font-family: 'Circe';
    src: 
        url('/assets/fonts/Circe-Light.woff2') format('woff2'),
        url('/assets/fonts/Circe-Light.woff') format('woff'),
        url('/assets/fonts/Circe-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Circe';
    src: local('Circe'), local('Circe-Regular'),
        url('/assets/fonts/Circe-Regular.woff2') format('woff2'),
        url('/assets/fonts/Circe-Regular.woff') format('woff'),
        url('/assets/fonts/Circe-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Circe';
    src: local('Circe Bold'), local('Circe-Bold'),
        url('/assets/fonts/Circe-Bold.woff2') format('woff2'),
        url('/assets/fonts/Circe-Bold.woff') format('woff'),
        url('/assets/fonts/Circe-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
}
 

:root {
    --color-back: #383838;
    --color-a: #FF6600;
    --color-a-hover: #383838;
    --color: #fff;
    --gray: #eee;
    --rad: 4px;
    --menuhover: #999999;
    --swiper-navigation-color: #FF6600;
    --swiper-pagination-color: #f0f0f0;
	--font:Circe;
	--pad:4vw;
	
}


body {
    color: var(--color);
    background: var(--color-back);
    overflow-x: hidden;
    font-size: 1.125vw;
    font-family: 'SuisseIntl';
}
body.main-page{
	margin-top: 9em;
}
*::-webkit-scrollbar {
    width: .5em;
    background: #f3f3f3;
}

*::-webkit-scrollbar {
    width: 1em;
}

*::-webkit-scrollbar-thumb {
    background: var(--color-a);
}

*:hover::-webkit-scrollbar-thumb {
    background: var(--color-a);
}

.row {
     --bs-gutter-x: 1em;
}

.container {
    padding: 0px 4em;
    width: 100%;
    max-width: unset;
}

.flex-container {
    --bs-gutter-x: 2.5rem;
    padding-left: 6vw;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    width: 100%;
    max-width: unset;
    /* margin: 0 -15px; */
    margin-right: auto;
    margin-left: auto;
}

.aside {
    position: sticky;
    top: 2em;
    padding: 2em 4em;
}

.aside-gallery {
    position: sticky;
    top: 2em;
    /* padding-left: 1em; */
}

.aside h1 {
    font-size: 4em;
    text-align: center;
}

.home-img-parralax {
    width: 10em;
}

h1,h2,h3 {
    margin-bottom: 0.5em;
    line-height:1em;
}

h1 {
    font-weight: bold;
    line-height: 1.2em;
    font-size: 2.5em;
    font-family: var(--font);
    text-transform: uppercase;
}


.product h1,.product h2{
	font-size:1.5em;
	margin-bottom: 1em;
}

h2 {
    font-size: 2em;
    text-transform: uppercase;
    font-family: var(--font);
    font-weight: bold;
    margin-bottom: 0.5em;
}
.main-page h1 {
box-shadow: 0px 1px 17px 17px var(--color-back);
	background:var(--color-back);
}
.main-page h2 {
    font-size: 3em;
}

h3 {
    font-size: 1.5em;
    text-transform: uppercase;
    font-weight: bold;
    font-family: var(--font);
	margin-bottom:0rem;
}

h4 {
    font-size: 1.25em;
    font-weight: bold;
}

h5 {
    font-size: 1.25em;
    text-transform: initial;
}

h1+p{
	font-size:1.5em;
	margin-bottom: 1.5em;
}


.main-page .main-page-h2 {
    display: block;
    font-size: 5em;
    font-weight: 600;
    text-align: right;
    letter-spacing: 0.2em;
    margin-bottom: 0;
    font-style: italic;
}

p.subtitle-h2 {
    text-align: right;
    font-size: 1.25em;
    opacity: 0.8;
    letter-spacing: 0.1em;
}

section.main-about {
    background: var(--color-white);
    color: var(--color-black);
    position: relative;
}

section.main-about img {
    max-width: 27em;
    /* padding: 5em; */
    position: absolute;
    top: 15em;
    left: 0;
    /* z-index: 0; */
}


a {
     transition-duration: 0.2s; 
    color: var(--color);
    text-decoration: none;

}

a:hover {
    color: #fff;
}

p a {
    color: var(--color-a);
    text-decoration: underline;
    /* font-style:italic; */
    font-weight: bold;
}

p a:hover {
    color: var(--color-a-hover);
}

img {
    width: 100%;
}

.content-img {
    display: flex;
    align-items: center;
    max-width: 20em;
}

.menu-left,.submenu {
    list-style: none;
    padding: 0;
    counter-reset: section;
}

.menu-left>li {
    position: relative;
    padding: 0em 0em 0em 2em;
    list-style: none;
}

.menu-left>li:before {
    position: absolute;
    content: '0'counter(section);
    font-size: 1.5em;
    line-height: 1em;
    opacity: 0.25;
    font-weight: bold;
    padding: 0.5em 0;
    top: 0;
    display: block;
    left: 0;
    counter-increment: section;
}

.menu-left >li a {
    display: block;
    position: relative;
    text-transform: uppercase;
    font-weight: bold;
    opacity: 0.75;
    font-size: 1.25em;
    padding: 0.5em;
}


.menu-left>li.active>a {
    background: #ffffff1a;
    opacity: 1;
}

.menu-left>li+.submenu {
    display: none;
    padding-bottom: 0em;
    padding-left: 3em;
}

.menu-left>li.active+.submenu {
    display: block;
}

.menu-left>li.active+.submenu li {
    padding: 0.2em 0.5em;
}

button {
    border: none;
    padding: 0;
    background: transparent;
    margin: 0;
}

.hidden {
    display: none;
}

.rows {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.fancybox img {
    width: 100%;
}


.fixed-top {
    background: #fff;
    box-shadow: 0 4px 10px rgb(0 0 0 / 10%);
    padding: 0 20px;
    position: sticky;
    z-index: 1039;
    top: 0;
}

header {
    position: fixed;
    width: 100%;
    /* padding: 0.5em 0; */
    top: 0;
    left: 0;
    z-index: 10;
    margin: 0;
    /* background: #fff; */
    /* font-size: 0.85em; */
}

.header-contact {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    /* padding: 5px 0px; */
}

.header-tel {
    display: none;
}

.title-item {
    display: block;
    opacity: 0.5;
    text-transform: uppercase;
    font-style: italic;
    font-weight: bold;
    margin: 0.5em 0 0 0;
}

/* End Top Header */
/* Header */


/* End Header */
.top_wrapper {
    position: relative;
    /* padding-top: 61px; */
}

.border_top {
    border-top: 1px solid;
}

/* Footer */
footer {
    padding: 2vw 0 6vw;
    border-top: 1px solid #ffffff8c;
}
/* Footer */

.review {
    background: var(--white);
    padding: 50px;
    position: relative;
}

.review .rating {
    position: absolute;
    top: 50px;
    right: 50px;
}

.review .rating img {
    float: right;
    width: 23px;
    margin-left: 8px
}

.review h4 {
    margin-top: 0;
    margin-bottom: 10px;
}

.review .review_date {
    font-size: 12px;
}

.review a {
    font-size: 14px;
    display: none;
}


/* ------------------------------------------------------------------------------------------ */

.contact_form {
    /* color: #fff; */
    position: relative;
    background: #FBFBFB;
    padding: 2em 1em;
    height: 100%;
}


.contact_form h2 {
    text-align: center;
    color: var(--color-back);
    flex: 1;
    font-size: 2em;
    /* margin: 0; */
}

.form_radio_btn {
    display: inline-block;
    /* margin-right: 10px; */
    width: 33%;
}

.form_radio_btn input[type=radio] {
    display: none;
}

.form_radio_btn label {
    display: block;
    cursor: pointer;
    padding: 10px 10px 10px 10px;
    user-select: none;
    height: 100px;
    border: 1px solid #555;
    border-radius: 5px;
    text-align: center;
    min-width: 90px;
    color: #000;
}

.form_radio_btn label img {
    height: 100%;
}

.form_radio_btn label span {
    display: block;
    text-transform: uppercase;
    font-weight: bold;
    /* padding-top: 10px; */
    font-size: 2.8em;
    line-height: 1em;
}

/* Checked */
.form_radio_btn input[type=radio]:checked + label {
    background: #fff;
}

/* Hover */
.form_radio_btn label:hover {
    color: var(--color-a-hover);
}

/* Disabled */
.form_radio_btn input[type=radio]:disabled + label {
    opacity: 0.5;
}

.form-bg-gray:before {
    content: '';
    width: 100%;
    height: 100%;
    background: #0000008a;
    position: absolute;
    inset: 0;
    z-index: 0;
}

.contact-map {
    position: relative;
    /* height: 30em; */
    /* margin-right: -6vw; */
}

.contact-map [class*=ymaps-2][class*="-ground-pane"] {
    -webkit-filter: grayscale(100%);
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
}

.case-item {
    transition: 0.2s;
    position: relative;
}

.case-item:hover {
    opacity: 0.8;
}

.case-item a {
    display: block;
    font-weight: bold;
}

.case-item-img {
    margin-bottom: 0.5em;
}

.case-item-img img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    aspect-ratio: 0.75;
}

.close_icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 3px solid #fff;
    position: absolute;
    right: 70px;
    top: 100px;
}

.close_icon i {
    color: #fff;
    margin-top: 2px;
    margin-left: 6px;
    font-size: 40px;
}

.jGrowl {
    font-size: 14px!important;
    z-index: 999999!important;
}


.promo {
    padding: 2em 1em;
    height: 100%;
    /* border: 2px solid #03030378; */
    background: var(--color-a);
    display: flex;
    gap: 1em;
    align-items: center;
}

.promo >* {
    /* box-shadow: 0 0 20px 20px #00000052; */
    /* background: #00000057; */
    /* border-radius: 50%; */
    padding: 2em;
}

.promo >img {
    /* box-shadow: 0 0 20px 20px #0001e94d; */
    /* background: var(--color-a); */
    /* border-radius:50%; */
    padding: 1em;
}

.ico_small {
    width: 2em;
    /* padding: 4px; */
    margin: 0 0.2em;
    /* border: 2px solid var(--color-a); */
    /* border-radius: 50%; */
}

.ico_small:hover {
    /* transition:background 0.3s; */
    /* background:var(--color-a); */
}

.ico_big {
    width: auto;
    height: 6em;
    color: #fff;
    /* filter: invert(1); */
    opacity: 0.7;
    /* background: aquamarine; */
}

.contact-item .ico_big {
    width: auto;
    height: 40px;
    /* padding: 8px; */
    /* border: 0px solid var(--color-a); */
    /* border-radius: 50%; */
    margin-bottom: 0px;
}

.promo p {
    font-size: 0.9em;
    /* line-height: 1.5em; */
    margin: 0;
}


.breadcrumbs {
    padding: 0em 0 2em;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}

.breadcrumbs li {
    list-style-type: none;
    display: inline-block;
}

.breadcrumbs li:has(a) {
	background:url(/assets/img/Arrow3.svg) no-repeat 80% center / 1em;
	padding-right:4em;
}
.gray .breadcrumbs li:has(a) {
	background-image:url(/assets/img/Arrow3black.svg);
}

h1.h1-product {
    font-size: 2em;
}

table {
    width: 100%;
    table-layout: fixed;
}
table td, table th {
    padding: 0.5em;
}
.price-table table td, .price-table table th {
    padding: 0.5em;
    text-align: center;
    color:#fff;
    font-weight:normal;
    font-family: 'Circe';
}

.price-table table th {
     background-color: var(--color-a);
     text-align: center;
     word-wrap: break-word;
}

.price-table table td{
	background:var(--color-back);
    border:1px solid #ffffff5c;
}

.service_content_text td {
    padding: 0.25em 0.5em;
    font-size: 0.8em;
}

.service_content_text td:first-child {color:#898989;padding-left: 0;}


table.contacts-table p {
    margin-bottom: 0.2em;
}

.table-over-x {
    overflow-x: auto;
}


/* Side Nav */
.side-nav {
    float: left;
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid #ebebeb;
    border-bottom: none;
    width: 100%;
}

.side-nav li {
    color: #777777;
    padding-top: 13px;
    font-weight: 500;
    padding-bottom: 13px;
    font-size: 14px;
}

.side-nav i {
    line-height: 20px;
    color: #313131;
    -webkit-transition-duration: 0.4s;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -ms-transition-duration: 0.4s;
    transition-duration: 0.4s;
    width: 32px;
    height: 32px;
    border: 1px solid #d6d6d6;
    border-radius: 17px;
    padding-top: 7px;
    padding-bottom: 7px;
    background: #f3f3f3;
    padding-right: 8px;
    padding-left: 8px;
    font-size: 8px;
}

.side-nav i:hover {
    color: #fff;
}

.current_page_item .nav_arrow i {
    color: #fff;
}

.nav_arrow {
    position: relative;
    margin-left: 197px;
    margin-top: -22px;
}

.side-nav li a {
    color: #777777;
    font-weight: 500;
}

.side-nav li a:hover {
    text-decoration: none;
}

.side-nav li:last-child {
}

.side-nav li:first-child {
}

.side-nav li {
    padding-right: 50px;
    border-bottom: 1px solid #e1e1e1;
    padding-left: 20px;
}

.side-nav li.current_page_item {
    border-right: 1px solid #fff;
    font-weight: 500;
    background-color: #f7f7f7;
    background-position: 195px center;
    background-repeat: no-repeat;
}

.side-nav .icon {
    width: 32px;
    height: 32px;
    float: left;
    margin-right: 7px;
    margin-top: -7px;
}

.side-nav .page_item {
    position: relative;
}

.side-nav li:hover {
    background-color: #fafafa;
}

.side-nav .icon span {
    width: 100%;
    height: 100%;
    float: left
}

.white {
    position: relative;
    background: #fff;
    padding:0;
    color: var(--color-back);
}
.white a{
	color: var(--color-back);
}
.gray {
    background: #FBFBFB;
    color: var(--color-back);
}
.gray a{
	color: var(--color-back);
}

.product_title {
    /* text-align: center; */
    margin-bottom: 1em;
    color: var(--color-back);
    font-size: 0.85em;
    text-transform: uppercase;
}

.product_desc {
    background: #fff;
    color: var(--color-back);
    padding: 1em 1em 2em 1em;
    height: 100%;
}

.product_item {
    border: 1px solid #898989;
    border-radius: 5px;
    height: 100%;
    overflow: hidden;
}

.product_item img {
    width: 100%;
}

.product_title > *,.product_title > *:hover {
    color: var(--color-back);
    /* font-size: 0.85em; */
    /* text-transform: uppercase; */
}
.price {
    color: var(--color-a);
    padding: 1em 0;
    font-size: 1.1em;
}

.last-product-item {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    padding: 2em;
}

.last-product-item p {
    font-size: 1.2em;
    text-transform: uppercase;
    color: var(--color-a);
    font-family: var(--font);
    font-weight: bold;
}

.contact_form p.desc {
    margin-top: 0;
    margin-bottom: 20px;
}

.contact_form span.label {
    text-transform: uppercase;
    padding: 0;
    text-shadow: none;
    font-weight: normal;
    color: #999999;
    background: none;
    font-size: 10px;
    width: 100%;
}

.contact_info p:first-child {
    margin-top: 0;
}

.contact_info p {
    margin-bottom: 0px;
    margin-top: 5px;
}

.contact_info p.address {
    margin-bottom: 30px;
}

.social_icons {
    display: flex;
    justify-content: center;
    gap: 1em;
}

.form-header {
    color: var(--color-back);
    text-align: center;
    font-size: 1.15em;
    margin-bottom: 1em;
}

.contact_form input, .contact_form select, .contact_form textarea,.standard-form textarea {
    font-size: 0.85em;
    cursor: pointer;
    outline: none;
    padding: 1em;
    border: none;
    border-radius: 5px;
    width: 100%;
    /* margin-bottom: 1em; */
    transition: .3s;
}

.contact_form label:has(input[type="checkbox"]) {
    font-size: 0.75em;
    line-height: 1.2em;
}

.contact_form input[type=file] {
  top: 0;
  left: 0;
  /* opacity: 0; */
  /* width: 100%; */
  /* height: 100%; */
  cursor: pointer;
  /* position: absolute; */
  -webkit-appearance: none;
  width: 100%;
}

.close-form {
    width: 40px;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 500;
    transform: rotate(45deg);
    transition: 0.2s;
}

.close-form:hover {
    cursor: pointer;
    transform:rotate(135deg);
}

.contact_form label {
    display: flex;
    gap: 1rem;
    justify-content: start;
    color: #9d9d9d;
	align-items:center;
}
.contact_form label a{
    color:var(--color-back);
}
.contact_form label input{
	width:fit-content;
}
.contact_form .button-warp p {
    /* font-size: 0.6em; */
    line-height: 1.2em;
    /* max-width: 220px; */
    margin: 0;
}

.contact_me {
    padding: 15px;
    border: 1px solid var(--gray);
    /* outline: 2px solid #63c4f2; */
    border-radius: 5px;
    /* background: var(--gray); */
    text-align: center;
}

.contact_me img {
    width: 50px;
}

.contact_me h5 {
    font-weight: bold;
    margin: 10px 0;
}

.contact_me p {
    text-transform: uppercase;
    font-size: 0.8em;
}

.btn-center {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-center > * {
    margin: 15px;
}

span.wpcf7-list-item {
    margin-left: 0;
}

.wpcf7-list-item > label {
    display: flex;
}

.wpcf7-acceptance {
    font-size: 16px;
}

.wpcf7-acceptance {
    font-size: 0.8em;
	color:#9c9c9c;
}

.wpcf7-acceptance a {
    color: #323232;
    text-decoration: underline;
}

.wpcf7-acceptance a:hover {
    color: #038c52;
    text-decoration: none;
}

.wpcf7-acceptance input[type="checkbox"] {
    width: 1em;
    height: 1em;
    background-color: #fff;
    border: 1px solid #323232;
    border-radius: 3px;
    background-color: #fff;
    -webkit-appearance: none;
    -moz-appearance: none;
    position: relative;
    cursor: pointer;
    vertical-align: text-top;
    margin-right: 5px;
    flex: 0 0 auto;
}

.wpcf7-acceptance input[type="checkbox"]:checked:before {
    content: '';
    width: 1em;
    height: 1em;
    background: var(--color-a);
    position: absolute;
    top: calc(50%-0.25em);
    left: calc(50% - 0.5em);
}

form {
    counter-reset: numm;
}

label:hover {
    cursor: pointer;
}

.form-check-label {
    border: 1px solid #dddddd;
    padding: 0;
    height: 100%;
    width: 100%;
    background: #fff;
    position: relative;
    align-items: center;
    display: flex;
    color: var(--color-back);
    flex-direction: column;
    border-radius: 5px;
}

.form-check-label:has(input:checked) {
    border: 1px solid var(--color-a);
}

.quiz_category-item {
    height: 100%;
}

.form-check-label img {
	padding:2em;
	width: auto;
	height: 11em;
}
.form-check-label p{
    padding:1em 1em;
    margin: 0;
}
.form-check,.form-block {
    padding-left: 0;
    color: var(--color-back);
}
.slider_form input {
        width: 100%;
        max-width: 10em;
        color: var(--color);
        padding: 1em 1em;
        cursor: pointer;
        outline: none;
        background: #ffffff;
        border-radius: 5px;
}
ul.col2{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1em 2em;
	list-style: none;
	padding: 0;
}
ul.col2 li{
	/* margin-bottom:0.5em; */
}
label.form-check-label.label-color {
    flex-direction: row;
    /* border: 1px solid var(--color-a); */
    border-radius: 5px;
    gap: 1em;
    justify-content: start;
    padding: 0.5em 1em;
    margin-bottom: 1em;
}
label.form-check-label.label-color p{
    margin:0;
    padding:0;
}
.label-color span{
    font-size:0.8em;
    opacity:0.5;
    line-height: 1em;
    display: block;
}

.color-check {
    width: 4em;
    height: 2em;
    background: #444;
}

.ral8017{
    background:#45302B;
}
.ral3005{
    background:#581E29;
}


.tab_container,.tab_container_mat{
    display:none;
}
.tab_container.active,.tab_container_mat.active{
    display:block;
}

.calc-input {
    position: relative;
    width: 15em;
    margin-bottom: 1em;
}
.calc-input label{
    position:absolute;
    top: 0;
    left: 0;
    font-size:1em;
    width:100%;
    text-align:center;
    padding: 1em;
    opacity: 0.7;
    transition:0.2s;
    /* pointer-events: none; */
}
.calc-input input{
    max-width: 100%;
    border: 1px solid #dddddd;
    color: var(--color-back);
    padding: 2em 1em 1em 1em;
}
.calc-input label.active{
    font-size:0.65em;
    /* padding: 0.5em; */
    text-align:left;
    /* background: aqua; */
    z-index: 0;
    width: auto;
	border-color:var(--color-a);
}
.calc-input input:focus{
	background:#ebebeb;
	border-color:var(--color-a);
}
.calc-wrap {
    /* width: 50%; */
    background: #fff;
    padding: 2em;
    margin-top: 2em;
    line-height: 1.5em;
}
.calc-wrap>div{
	margin-bottom:1em;
	display: flex;
	justify-content: space-between;
}
@media (min-width: 768px) {
    .col-md-20 {
        flex: 0 0 auto;
        width: 20%;
    }
}

.slider-header {
    text-transform: uppercase;
    margin-bottom: 2em;
}

.form-block>div,.form-check>div {
    margin: 1vw 0;
}

.form-check-input {opacity:0;display: none;}

.form-check .form-check-input:checked,.form-check-input:checked {
    opacity:1;
    width: 2em;
    height: 2em;
    border: none;
    padding: 0;
    position: absolute;
    right: -1em;
    top: -1em;
    background: url(/assets/img/calc/check.svg) no-repeat center / contain;
    display:block;
}

.form-check-input[type=checkbox] {
    width: 2vw;
    height: 2vw;
    border-radius: 0;
    vertical-align: text-bottom;
}


#callme,#calc-tpl {
    width: 100%;
    max-width: 35em;
    background: #fff;
    /* color: var(--color-back); */
    position: relative;
    /* height: auto; */
    padding-top: 1em;
    padding-bottom: 0;
    /* border-radius: 20px; */
}
select {
    width: 100%;
    padding: 1em;
    border-radius: 5px;
}
#callme .ajax_form,,#calc-tpl .ajax_form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    align-items: center;
    padding: 1em 0;
}
#callme .contact_form,#calc-tpl .contact_form {
    background:unset;
}
.contact_form a {
    text-decoration: underline;
}

#callme .contact_form input ,#calc-tpl .contact_form input{
    background: #F9F9F9;
    padding: 2em 2em;
}

#callme p,#calc-tpl p {
    margin: 1em 0;
    padding: 0;
    line-height: 1.5em;
    /* text-align: center; */
    color: #0000007a;
    /* font-size: 0.8em; */
}

.contact {
    margin: 60px 0;
}

.contact-box {
    background: rgb(255 255 255 / 80%);
    padding: 20px 45px 0px 45px;
    max-width: 400px;
    margin-top: 60px;
    position: absolute;
    left: 45px;
    z-index: 1;
    /* color: var(--color-back); */
    border-radius: 30px;
    backdrop-filter: blur(5px);
}
.footer-logo {
    width: 9em;
	margin-bottom:var(--pad);
}
.footer_text{
	color:#A89999;
}
ul.footer_ul_contact{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2em;
    justify-content: space-between;
}
ul.footer_ul_contact ul {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size:0.7em;
	margin-top: 1em;
}
ul.footer_ul_contact ul li a{
	color:#A89999;
}

ul.footer_ul_contact li {
    /* padding-bottom: 1em; */
    /* font-size: 1.1em; */
    /* color: #7B7B7D; */
}

ul.footer_ul_contact li span {
    display: block;
    opacity: 0.5;
}

footer a {
    display: block;
    /* font-style: italic; */
    /* font-weight: bold; */
    /* text-transform: uppercase; */
    /* letter-spacing: 1px; */
}

.footer-title {
    margin-bottom: 1em;
    font-weight: bold;
    opacity: 0.5;
    font-size: 1.5em;
    font-style: italic;
}

.contact-item {
    /* display: flex; */
    /* align-items: center; */
    /* line-height: 1.2; */
    /* margin: 15px; */
    text-align: center;
}

.contact-item > * {
}

.contact-item p {
    margin: 1em;
    /* line-height: 1.2em; */
}

.contact-item img {
    padding: 1em;
    max-width: 7em;
}

a.underline {
    text-decoration: underline;
}

.customSelect {
    display: none !important
}

.image-desaturate {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: gray;
}

.boxed_layout {
    width: 1200px;
    -webkit-box-shadow: 0 5px 19px 2px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 5px 19px 2px rgba(0, 0, 0, 0.1);
    box-shadow: 0 5px 19px 2px rgba(0, 0, 0, 0.1);
    margin: 0 auto
}

.boxed_layout header#header {
    margin-top: 0px
}

.boxed_layout {
    margin-bottom: 0px;
    background: #fff;
    position: relative;
}

.boxed_layout .header_content .fullshadow {
    background: url('img/header_shadow.png') center no-repeat
}

#page-bg {
    position: fixed;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: -1;
}

#page-bg img {
    position: absolute;
    height: 100%;
    width: 100%
}

.pagination ul {
    padding: 0
}

.pagination ul li {
    margin-right: 5px
}

.pagination ul li:last-child {
    margin-right: 0
}

.pagination ul li a {
    color: #444;
}

.pagination ul li a:hover {
    text-decoration: none;
}

.pagination ul li.active a, .pagination ul li a:hover {
    color: #444
}

.standard-form {
    padding: 15px 0px;
    /* width: 500px; */
}

.standard-form textarea {
    padding: 1em;
    font-size: 1em;
    height: 10em;
    display: none;
}

.standard-form input::placeholder,.standard-form textarea::placeholder {

}

.standard-form select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.standard-form select::-ms-expand {
    display: none;
}

.slider-item {
    padding-top: 3vw;
}

.input-box {
    border: 0;
    /* border: 2px solid #fff; */
    -webkit-transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-transition: all 0.3s cubic-bezier(1, 0.03, 0, 0.99);
    -o-transition: all 0.3s cubic-bezier(1, 0.03, 0, 0.99);
    transition: all 0.3s cubic-bezier(1, 0.03, 0, 0.99);
    position: relative;
    width: 100%;
    backdrop-filter: blur(10px);
}

#form-modal .input-box {
    margin-bottom: 1em;
}

.form-icon {
    left: 1em;
    /* right: auto; */
    top: 1em;
    /* z-index: 2; */
    /* font-size: 1.5em; */
    color: var(--gray);
    fill: var(--gray);
    position: absolute;
    height: 1.5em;
}

.post_page_cont iframe {
    width: 100%;
    height: 250px;
    border-radius: 6px;
    -moz-border-radius: 6px;
    /* Firefox */
    -webkit-border-radius: 6px;
}

/*popup*/
.popup {
    padding: 0;
    position: relative;
    background: var(--color-back);
    width: 80vw;
}

.popup h3 {
    font-size: 2em;
    font-family: var(--font);
    color: var(--color-a);
    margin-bottom: 0.5em;
}
.popup p {
	font-size:1.2em;
}
.popup-wrapper > div:first-child {
    padding: 2em 0;
    background: #FBFBFB;
	width:50%;
}
.popup-wrapper > div:last-child {
    padding: 4em 2em;
}
.popup-img {
    transform: scale(1.1);
}

/* Sections */
section {
    padding-top: var(--pad);
}

section:last-child {
     padding-bottom: var(--pad);
}
section.top {
    padding: 12em 0 2em;
    background: url(/assets/img/catalog/header-metalloch.jpg) no-repeat center / cover;
}
section.section-padding{
	padding:var(--pad) 0;
}

section.delivery {
    background: url(/assets/img/delivery.png) no-repeat right 140%/32%;
}
.page_title {
    font-family: var(--font);
    font-size: 2em;
    line-height:1.2em;
    text-transform: uppercase;
}

section.thanks {
    padding: 10vw 0;
    background: url(/assets/img/back-thanks.jpg) no-repeat center / cover;
}

.thank-wrapper {
    width: 40em;
    background: #fff;
    color: var(--color-back);
    padding: 3em;
    text-align: center;
}
.thanks h1 {
    font-size: 4em;
}
.thanks .btn{
    background:var(--color-a);
    color:#fff;    
}

.about-more {
    border-top: 1px solid #ffffff8c;
    padding-top: 3em;
}



.page_content h2 {
    font-size: 2em;
    margin: 1em 0 0.5em;
}
.page_content h3 {
    font-size: 1.5em;
    margin: 1em 0 0.5em;
}
.slider .swiper-pagination-progressbar, .post_slider .swiper-pagination-progressbar {
    top: calc(100% - .2rem);
    height: .2rem;
    width: calc(100% - 3rem);
    background: rgba(217, 217, 217, 0.5);
}

.post_slider .swiper-pagination-progressbar {
    width: 100%;
}

.slider .swiper-pagination-progressbar-fill {
    background: #fff
}

.post_slider .swiper-pagination-progressbar-fill {
    background: var(--color-a)
}

section#slider {
    position: relative;
    z-index: 0;
    padding: 0;
    /* box-shadow: 0 1em 1em #00000024; */
}

.slider-home .swiper-wrapper div {
    width: 100vw;
    height: 49vw;
}

.slider-home {
    position: relative;
    overflow: hidden;
    /* opacity: 0.15; */
    /* background: linear-gradient(359deg, #003365, #00336663); */
}

#slider:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    right: 0%;
    z-index: 2;
    background: url(/img/slider-line.svg) no-repeat right / contain;
    background: linear-gradient(359deg, #003365f7, #003366ad), url(/img/slider-line.svg) no-repeat right / contain;
}
.img-base {
    float: left;
    width: 50%;
    padding: 0 1em 1em 0;
}
.also {
    background: linear-gradient(260deg, #002245, transparent);
}

.also h2 {
    text-align: right;
    margin: 0;
}

.console-container {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    font-size: 3em;
}

.console-underscore {
    display: inline-block;
    position: relative;
    top: -0.0em;
    left: 00px;
}

section#main-2 {
}

section.pochemu {
    /* background: aliceblue; */
}

.vk-block {
    background: url(/img/home/vk.jpg);
    background-size: contain;
    border-radius: 40px;
    color: #fff;
    padding: 30px 0;
}

.vk-block h2 {
    margin: 0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 23%);
    /* clear: both; */
    gap: 1rem;
    margin-bottom: 3em;
    counter-reset: section;
}

.menu-grid .menu-item {
    position: relative;
    border: 1px solid #ffffff36;
    text-align: center;
    padding: 1em;
    /* clip-path: polygon(15% 0, 100% 0, 100% 0, 100% 100%, 100% 100%, 0 100%, 0 100%, 0 10%); */
    /* display: flex; */
    /* justify-content: center; */
    /* align-items: center; */
    /* flex-direction: column; */
}

.menu-grid .menu-item.menu-item-aspect1 {
    aspect-ratio: 1;
}

.menu-grid .menu-item-img {
    aspect-ratio: 1;
    padding: 1em;
}

.menu-grid .menu-item-img img {
    object-fit: contain;
    height: 100%;
    width: 100%;
}

.menu-grid .menu-item>a {
    /* position: absolute; */
    /* font-size: 1.2em; */
    /* text-transform: uppercase; */
    text-align: center;
    /* width: 100%; */
    /* height:100%; */
    /* z-index: 1; */
}

.menu-grid .menu-item:hover {
    box-shadow: 0 0 5px 5px #00000014;
    transition: 0.2s;
}

.menu-grid .menu-item:hover a {
    color: var(--color);
}

.menu-grid .menu-item .menu-item-text {
    position: absolute;
    bottom: 0;
    background: #dfdfdfe3;
    width: 100%;
    padding: 0.5em;
}

.menu-grid .menu-item .introtext {
    font-size: 0.8em;
    margin: 0;
}

.menu-grid .menu-item .tag {
    position: absolute;
    right: 0;
    top: 0;
}

.tag {
    padding: 0.4em 1em;
    background: var(--color-a-hover);
    display: inline-block;
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    width: 100%;
    counter-reset: section;
}

.service-grid img {
    width: 3em;
}

.service-grid >div {
    /* padding: 1em; */
    /* display: flex; */
    /* margin-bottom: 4px; */
    align-items: center;
    background: #ffffff1a;
    position: relative;
}

.service-grid >div>a {
    /* overflow:hidden; */
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 1em;
    /* text-transform: uppercase; */
    /* font-weight: bold; */
}

.service-grid .menu-item .price {
    text-align: center;
    margin-bottom: 1em;
}

.kp-grid {
    grid-template-columns: 1fr 1fr 1fr;
}

.kp-grid .menu-item a {
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1em;
    height: 100%;
}

.kp-grid .menu-item a img {
    width: 100%;
    /* aspect-ratio: 1; */
    /* width: 100%; */
    /* object-fit: contain; */
    /* height: 100%; */
}

.menu-item .custom_btn {
    white-space: break-spaces;
}

.options {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    overflow: hidden;
    /* min-width: 600px; */
    /* max-width: 900px; */
    width: 100%;
    height: 30em;
    gap: 1em;
}

.options .option {
    position: relative;
    overflow: hidden;
    width: 15em;
    /* margin: 0 1em; */
    /* background: var(--optionBackground, var(--defaultBackground, #E6E9ED)); */
    background-size: auto 120%;
    background-position: center;
    background-size: cover;
    cursor: pointer;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    padding: 1em;
}

.options .option.active {
    flex-grow: 10000;
    max-width: 55em;
    margin: 0px;
    /* border-radius: 2em; */
    /* background-size: auto 100%; */
}

.options .option:not(.active) {
    flex-grow: 1;
    /* border-radius: 2em; */
}

.option img {
    width: 100%;
}

.options .option .label {
    position: absolute;
    /* left: -2em; */
    bottom: 0em;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
}

.options a {
    color: #fff;
}

.options a:hover {
    color: var(--color-a-hover);
}

.options ul {
    list-style: none;
    margin: 0;
    padding: 0;
    text-transform: uppercase;
}

.option .title {
    /* transform:rotate(-90deg); */
    margin-bottom: 1em;
    transition: 0.5s;
    text-transform: uppercase;
    /* letter-spacing: 4px; */
}

.option.active .title {
    transform: none;
    /* margin: 0; */
}

.option .title a {
    color: #fff;
    font-size: 1.5em;
}

.options .option.active .label {
    bottom: 2em;
    left: 2em;
}

.options .option:not(.active) .info {
    /* opacity:0; */
    /* display: none; */
    height: 0;
    overflow: hidden;
    transition: 0.5s;
}

.options .option.active .info {
    /* opacity:1; */
    height: 16em;
    transition: 0.5s;
}

.options .option .shadow {
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 15em;
    transition: 0.5s cubic-bezier(0.05, 0.61, 0.41, 0.95);
    background: linear-gradient(0deg, #151515f0, transparent);
}

.options .option.active .shadow {
    height: 100%;
}

.item-grid svg.svg {
    fill: var(--color-a);
    height: 100%;
    position: absolute;
    left: calc(50% - 8em);
    width: 13em;
}

.home-grid2 {
    display: grid;
    /* flex-direction: column; */
    grid-template-columns: 1fr;
    gap: 4em;
    /* border-radius: 50px; */
    /* overflow: hidden; */
    width: 100%;
    counter-reset: section;
    margin-top: -6em;
}

.home-grid2 img {
    /* position: absolute; */
    /* top: 50%; */
    height: 8em;
    /* margin-bottom: 4em; */
    /* object-fit: cover; */
    width: auto;
    /* border-radius: 2em; */
    /* clip-path: polygon(15% 0, 100% 0, 100% 70%, 85% 100%, 0 100%, 0 30%); */
    transform: skew(5deg, 0);
}

.home-grid2 .item-grid {
    position: relative;
    aspect-ratio: 2;
    display: flex;
    width: 100%;
    border: 2px solid rgb(255 255 255 / 72%);
    background: linear-gradient(266deg, #00172f, #003366);
    /* transition: 0.2s; */
    transform: skew(-5deg, 0);
    box-shadow: 16px 20px 6px 2px #0000004a;
}

.home-grid2 .item-grid:hover {
    background: linear-gradient(266deg, #0358ad, #003366);
    /* opacity: 1; */
}

.item-grid:before {
    position: absolute;
    content: '0'counter(section);
    font-size: 3em;
    opacity: 0.25;
    /* color: #c5c5c5; */
    font-weight: bold;
    top: 0.5rem;
    display: block;
    right: 1rem;
    counter-increment: section;
    /* z-index: 1; */
}

.item-grid:after {
    /* position: absolute; */
    /* content: '000'; */
    font-size: 1em;
    font-style: italic;
    font-weight: 300;
    /* opacity: 0.75; */
    color: #c5c5c5;
    bottom: 1rem;
    display: block;
    right: 1rem;
}

.home-grid2 .title {
    position: absolute;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: bold;
    line-height: 1.2em;
    left: 1em;
    bottom: 1em;
}

.home-grid2 .item-grid>a {
    overflow: hidden;
    display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    align-items: center;
    justify-content: center;
    color: var(--color);
}

#contact ul {
    padding: 5px 20px;
}

#contact ul li {
    padding: 2px 0;
}

#contact ul li::marker {
    color: #50a2d2;
}

.gallery_item {
    position: relative;
    aspect-ratio: 3/2;
}

.gallery_item img {
   object-fit:cover;
	height:100%;
	width:100%;
}
figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    background: #383838bf;
    padding: 1em;
    transform: translateY(5em);
    transition: 0.5s;
	font-size:0.8em;
}

.gallery_item:hover figcaption {
    transform: translateY(0px);
}

/* End Sections */
.neighbors {
    gap: 1em;
    flex-direction: column;
    border-left: 1px solid #ffffff42;
    padding-left: 2em;
}

/** End Shortcode Testimonials */

.navbar {
    padding: 0;
    /* width: 100%; */
}

nav>ul {
    list-style: none;
    display: flex;
    width: 100%;
    padding: 0;
}

nav>ul li {
    margin: 0;
}

.side-menu .navbar-light .navbar-nav .nav-link, header .navbar-light .navbar-nav>.nav-item>.nav-link {
    color: var(--color);
    padding: 0.75em 1em;
    font-size: 0.9em;
    line-height: 1em;
    white-space: nowrap;
    position: relative;
    /* font-weight: 500; */
    border: 1px solid var(--color-a);
    border-radius: 5px;
    /* border: 2px solid transparent; */
    /* letter-spacing: 0; */
}

.side-menu .navbar-light .navbar-nav .nav-link:hover {
    color: var(--color-a);
}

.navbar-light .navbar-nav a.nav-link:hover {
    color: #fff;
	background:var(--color-a);
}

@media(min-width: 992px) {
    .dropdown-menu {
        -webkit-box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
        -moz-box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
        box-shadow: 7px 7px 14px 0px rgb(50 50 50 / 34%);
        background-color: #ffffffde;
        padding: 0;
        margin: 0;
        overflow: hidden;
        height: 0;
        opacity: 0;
        transition: 0.2s;
        display: block;
        backdrop-filter: blur(6px) saturate(180%);
        border: 1px solid rgb(93 93 93 / 27%);
        min-width: 13em;
        top: 100%;
        font-size: 1em;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        transition: 0.3s;
        height: auto;
        border-radius: 0;
        border: 1px solid #ffffff47;
        background: var(--color-back);
    }

    li.nav-item:not(:last-child) {
        position: relative;
    }

    li.nav-item:not(:last-child):after {
        position: absolute;
        line-height: 1em;
        font-size: 1em;

    }

    .nav-item.level-2.dropdown>.dropdown-menu, .nav-item.level-3.dropdown>.dropdown-menu {
        display: none;
    }

    .nav-item.level-2.dropdown:hover>.dropdown-menu, .nav-item.level-3.dropdown:hover>.dropdown-menu {
        display: block;
        top: 0;
        left: 100%;
        margin-top: -6px;
        margin-left: -1px;
        -webkit-border-radius: 6px;
        -moz-border-radius: 6px;
        border-radius: 6px;
    }
}

.side-menu .navbar-light .navbar-nav .active>.nav-link {
    color: var(--color-a-hover);
}

.side-menu .navbar-nav li {
    text-align: center;
}

.navbar-toggler {
    display: none;
}

.navbar-toggler.collapsed {
    outline: none;
    background: url(/template/content/img/menu.svg) no-repeat center;
    background-size: contain;
    padding: 0.5em;
}

.navbar-toggler:focus {
    outline: none;
}

.menu_btn {
    display: block;
    padding: 10px;
    text-transform: uppercase;
    text-align: center;
    background: #047174;
    font-weight: bold;
    color: #fff;
}

.nav_top_1 nav .menu {
    position: absolute;
    z-index: 10000;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
    text-align: center;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: 0.5em;
    background-repeat: no-repeat;
    transition: all 0.1s ease;
    color: var(--color);
}

.dropdown-item span {
    display: block;
    width: 2em;
    height: 2em;
    aspect-ratio: 1;
}

.dropdown-item.no-image {
    padding: 0.5em;
}

.dropdown-item.active, .dropdown-item:active {
    color: #000000;
    background-color: #ffffff;
}

.dropdown-item:focus, .dropdown-item:hover, .nav-item.level-2:focus, .nav-item.level-2:hover, .nav-item.level-3:focus, .nav-item.level-3:hover {
    background-color: transparent;
    color: var(--color-a);
    /* border-left: 3px solid #047174; */
}

.navbar-nav {
    justify-content: center;
    flex: 1;
    gap: 1em;
}
.navbar-nav .nav-item:last-child{
	display:none;
}

footer .top-menu-wrapper nav>ul {
    /* justify-content: space-evenly; */
    flex-direction: column;
    /* margin-bottom: 30px; */
}

footer .top-menu-wrapper .nav-link {
    /* color: var(--color); */
    padding: 0;
    margin-bottom: 5px;
}

footer .top-menu-wrapper .nav-link:hover {
    color: var(--color-a);
}


.side-menu ul {
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: center;
}

.side-menu ul li {
    padding: 4px 0;
}

.side-menu li.last.level-1 {
    padding-bottom: 10px;
}

.side-menu ul.submenu {
    /* padding-left: 20px; */
    display: none;
    counter-reset: initial;
}

.side-menu li.parent.active ul.submenu {
    display: block;
}

.side-menu ul.submenu li {
    padding: 0px 0;
    position: relative;
    display: block;
    /* width: fit-content; */
    margin: 0 auto;
}

.side-menu>ul>li>a {
    font-weight: bold;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.side-menu ul.submenu li a {
    /* font-weight: bold; */
    /* letter-spacing: 2px; */
    line-height: 1em;
    display: inline-block;
}

.side-menu>ul>li.active>a {
    color: var(--color-a);
    font-weight: bold;
}

.side-menu li.level-2.active a {
    color: var(--color-a);
}

.side-menu>ul>li.active+.submenu {
    display: block;
}

.small {
    opacity: 0.75;
    /* padding-left: 1em; */
    font-weight: 200;
}

.header_wrapper {
    position: relative;
    z-index: 100;
    /* background: var(--color-back); */
}

.header_left {
    display: flex;
    height: 100%;
    align-items: center;
    max-width: 11em;
}


.header_contacts {
    display: flex;
    justify-content: space-between;
}



.header_phone a {
    font-size: 0.9em;
}

.header_phone a:hover {
    text-decoration: none;
}

a.btn,.btn {
    /* display: block; */
    background: var(--color-a);
    border-radius: 5px;
    color: #fff;
    line-height: 0.9em;
    padding: 1em 2em;
    font-size: 0.9em;
    cursor: pointer;
    white-space: nowrap;
    border:1px solid var(--color-a);
    min-width: 12em;
}

.btn:hover,a.btn:hover {
    background: var(--color-back);
    color: #fff;
    text-decoration:none;
	border:1px solid var(--color-a);
}

.btn.btn-arrow 
{padding: 0.5em 1em;color: var(--color-back);background: #fff;display: inline-flex;align-items: center;justify-content: space-evenly;gap: 1em;border: 1px solid #fff;}
.btn.btn-arrow:after {
    content:'';
    /* padding: 0.5em 1em; */
    background:var(--color-a) url(/assets/img/Arrow1.svg) no-repeat center;
    border-radius:5px;
    color: #fff;
    aspect-ratio: 1;
    width: 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn.btn-arrow.black:after {
    content:'';
    /* padding: 0.5em 1em; */
    background:var(--color-back) url(/assets/img/Arrow1.svg) no-repeat center;
    border-radius:5px;
    color: #fff;
    aspect-ratio: 1;
    width: 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.btn.btn-arrow-orange 
{padding: 0.5em 1em;color: #fff;background: var(--color-a);display: inline-flex;align-items: center;justify-content: space-evenly;gap: 1em;border: 1px solid #fff;}
.btn.btn-arrow-orange:after {
    content:'';
    /* padding: 0.5em 1em; */
    background: #fff url(/assets/img/Arrow2.svg) no-repeat center;
    border-radius:5px;
    color: #fff;
    aspect-ratio: 1;
    width: 2em;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.header_top {
    /* border-bottom: 1px solid #d0d0d0; */
    padding: 1em 0;
}

.table-text-center td, .table-text-center th {
    text-align: center !important;
}


.form_main_index {
    margin-bottom: 25px;
}



div#successmodal {
    background: url(/img/success.jpg) no-repeat center;
    background-size: cover;
}

.success {
    /* color: #fff; */
    padding: 30px;
    min-height: 400px;
}

.success h3 {
    font-size: 3em;
    padding-top: 2em;
}

.success p {
    font-size: 2em;
    text-align: left!important;
}

.success-black {
    color: var(--color);
}


.menu-close {
    display: none;
}



/*ARTI*/
.main_banner {
    background-image: url(assets/img/main-back.png);
    background-size: cover;
    background-position: 0 100%;
    background-repeat: no-repeat;
    color: #fff;
    padding: 0em 0 0em;
    position: relative;
    height: 49vw;
}


.main_banner_btn {
    margin-top: 1em;
}
img.ya-otzyv {
    width: 15em;
}
section.main-catalog {
    background: url(/assets/img/Group78.png) no-repeat 90% 0% /25%;
    padding-top: 6Vw;
}
.section_title {
    font-size: 2.5em;
    line-height: 1.2em;
    position: relative;
    text-transform: uppercase;
    margin-bottom: 0.5em;
    font-family: var(--font);
}
.section_title span{
	display:block;
	font-size:0.5em;
	color:#F9F9F9;
}


.service_img img {
    background: var(--color-back);
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* border: 1px solid var(--color-a); */
    padding: 4em;
    aspect-ratio: 4/3;
}

.about-count p {
    font-size: 3em;
    color: var(--color-a);
    display: block;
}

.about-count {
    font-family: var(--font);
    text-transform: uppercase;
    padding: 2em 1em 0 1em;
}

.about-count span {
    font-size: 1em;
}

.main-page .advantages {
    position: relative;
    margin-top: -12em;
}

.advantages_wrapper {
    padding: 10px 0;
}

.advantage_item {
    /* text-align: center; */
    /* margin-bottom: 2em; */
    background: #fff;
    color: var(--color-back);
    padding: 2rem 1rem;
    height: 100%;
}

.advantage_icon {
    border-radius: 50%;
    background: #fff;
    margin-bottom: 1em;
    display: inline-block;
    padding: 0em;
    aspect-ratio: 1;
    width: 2em;
}

.advantage_title {
    font-size: 1.1em;
    font-family: var(--font);
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 0.5em;
}

ul.ul-num {
    column-count: 2;
    padding: 0;
    margin: 0;
    list-style: none;
}
ul.ul-num li{
	position:relative;
    padding:0.5em 0em;
	counter-increment: num;
}
ul.ul-num li:before{
    content:'0'counter(num);
	background:#fff;
	color:var(--color-a);
	border-radius:50%;
	width:2em;
	aspect-ratio:1;
	text-align:center;
	line-height:2em;	
	font-size:0.8em;
	padding:0.5em;
	margin-right:1em;

}

.num{
	position:relative;
	counter-increment: numm;
	margin-bottom: 1.5em;
}
.num:before{
    content: '0'counter(numm);
    background:var(--color-back);
    color:#fff;
    border-radius:50%;
    width:2em;
    aspect-ratio:1;
    text-align:center;
    line-height:2em;
    font-size:0.8em;
    padding:0.5em;
    margin-right:1em;
}


.prim_icon {
    width: 1.5em;
}

.prim_title {
    font-size: 0.8em;
    line-height: 1em;
    text-transform: lowercase;
}

.main_services {
    padding: 80px 0 50px;
}

.main_services_wrapper {
    padding: 10px 0;
}

.main_service_item {
    position: relative;
    aspect-ratio: 0.5;
    transition:0.3s;
    color:var(--color-back);
    counter-increment: num;
    border: 1px solid #38383873;
}

.main_service_img {
    height: 100%;
}
.main_service_img:before,.main_service_img:after {
	position:absolute;	
	width:100%;
	height:100%;
	inset:0;
	content:'';
	transition:0.5s;
}
.main_service_img:after {
	background: #fff;
	opacity:0.9;
}
.main_service_img:before {
    background: linear-gradient(1deg, black, transparent);
	opacity:0;
}



.main_service_img img {
    /* border-radius: 5px; */
    /* aspect-ratio: 1.5; */
    object-fit: cover;
    height: 100%;
}
.main_service_txt {
	position:absolute;
	top: 13rem;
	left:0;
	/* z-index:10; */
	padding: 1em;
	font-size:0.85em;
}
.main_service_txt:before {
	content:'0'counter(num);
	position:absolute;
	inset: -1.5em 1em;
	background:var(--color-back);
	color:#fff;
	/* z-index:2; */
	border-radius:50%;
	width:2em;
	aspect-ratio:1;
	text-align:center;
	line-height:2em;
	transition:0.2s;
}
.main_service_title {
	text-transform: uppercase;
	font-size: 1.5em;
	font-family: var(--font);
	color: var(--color-a);
}

.main_service_title a {
    color: var(--color-a);
    font-weight: 500;
}
.main_service_item .btn {
    opacity: 0;
    transition:0.2s;
}

.main_service_item:hover .btn {
    opacity: 1;
    transition:0.2s;
}
.main_service_item:hover {
transform:scale(1.05);
color:#fff;
z-index:2;
}
.main_service_item:hover .main_service_img:before {
  opacity:1;	
}
.main_service_item:hover .main_service_img:after {
  opacity:0;	
}
.main_service_item:hover .main_service_txt:before {
	background:#fff;
	color:var(--color-a);
}
.action_item {
    position: relative;
    border: 1px solid #fff;
    height: 100%;
    padding: 3em 2em;
    aspect-ratio: 0.8;
    overflow: hidden;
}

.action_item img {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    width: 100%;
}

.action_item > * {
    position: relative;
}

.action_item_title {
    font-family: var(--font);
    text-transform: uppercase;
    font-size: 1.8em;
    line-height: 1.2em;
    color: var(--color-a);
}

.action_item .option1 {
    color: var(--color-back);
}
.action_item .btn.option1{
    background:var(--color-back);
    color:#fff;
}

.about-tag {
    border: 1px solid #FD934C;
    border-radius: 5px;
    padding: 1em 2em;
    display: flex;
    gap: 1em;
}
.about_item {
    padding: 1em 3em 1em 0em;
}

.main_cat {
    display: grid;
    gap: 1em 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    background: var(--color-back);
}

.clients {
    background-image: url(/assets/img/clients.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #fff;
    /* padding: 85px 0 100px; */
    overflow: hidden;
}

.clients .section_title {
    margin-bottom: 50px;
}

.clients_slider {
    margin-right: -30px;
}

.clients_slider_item img {
    border-radius: 5px;
}

.clients_list {
    display: flex;
    gap: 2em;
}

.promo_item img {
    width: 3em;
    margin-bottom: 1rem;
}
.promo_item {
    padding-right: 3em;
}

.review_item {
    padding: 1em 1em;
    background: url(/assets/img/quotas.svg) no-repeat right bottom;
    height: 100%;
}
.review-swiper{
	/* padding: 1em 0 3em; */
	position: relative;
	/* overflow: hidden; */
}
.review-swiper .swiper-slide {
    width: 40%;
    height: 100%;
}

.review_item img {
    width: 5em;
    border-radius: 50%;
}
.swiper-pagination-bullet {
    width: 1em;
    height: 1em;
    border-radius: var(--rad);
}
.review_title {
    color: #C5C6C6;
    font-size: 0.8em;
}
.rating{
	display:flex;
}
star{
        display: block;
        width: 1em;
        height: 1em;
        background: url(/assets/img/Star.svg) no-repeat center/contain;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: unset;
    top: 0em;
    text-align: right;
    /* padding-right: 5em; */
    /* z-index: 10; */
}

.main_contacts .section_title {
    margin-bottom: 1em;
}

.main_contacts_item {
    font-weight: 500;
    font-size: 1.1em;
    margin-bottom: 1em;
}
.main_contacts_item_subheader {
    color: var(--color-a);
    font-size: 0.8em;
    padding-bottom: 0.5em;
}

.orange {
    color: var(--color-a);
}
.main_contacts_item a {
    display: block;
}


.main_contacts_map {
     width: 100%;
     height: 100%;
     position: relative;
     z-index: 1;
}
.main_contacts_map iframe {
	/* position:absolute; */
	width:100%;
	height: 100%;
	inset:0;
}
.main_contacts_map ymaps {
    border-radius: 5px;
}

.main_contacts_form {
    position: relative;
    /* background: url(/assets/img/cf7.png) no-repeat left bottom /40%; */
}


.main_contacts_form .section_title {
    text-align: center;
    font-size: 2.5em;
}

.main_contacts_form .section_title:before {
    left: calc(50% - 355px);
}

.main_contacts_form .wpcf7 form .wpcf7-response-output {
    margin-top: 25px;
    margin-left: 90px;
}

.main_contacts_form .wpcf7 form.sent .wpcf7-response-output {
    display: none;
}

.logistics_list_num {
    font-size: 64px;
    width: 90px;
}

.mobile-contacts {
    text-align: center;
}

.header_callback {
    /* padding: 1em 3.5em; */
    /* font-size: 0.8em; */
}

.mobile-contacts {
    padding-bottom: 15px;
}
.Calc-button {
    position: fixed;
    transform: translateY(-50%);
    right: 0;
    top: 50%;
    width: 8%;
    /* height: 8em; */
    z-index: 10;
    background: var(--color-a);
    border-radius: 5px 0 0 5px;
}
.Calc-button a{
    display: flex;
    flex-direction: column;
    gap: 1em;
    font-size: 0.7em;
    line-height: 1.2em;
    padding: 1em;
}
.Calc-button .close {
    position: absolute;
    top: -1em;
    left: calc(50% - 1em);
    background: url(/assets/img/close-calc.svg) no-repeat center / contain;
    width: 2em;
    height: 2em;
    z-index:20;
	border-radius:50%;
}
.Calc-button .close:hover {
	box-shadow:0 0 5px #000;
}

/***********************************/
@media (max-width: 768px) {
 :root{
	--pad:30px; 
 }
    body {
        /* padding-top: 70px; */
        font-size: 14px;
        /* margin-top: 4em; */
    }

    .row {
        --bs-gutter-x: 30px;
    }

    .aside {
        text-align: center;
        position: relative;
        top: 0;
        padding: 15px;
    }

    .container {
        padding: 0 15px;
    }

    .not-mobile,img.ya-otzyv {
        display: none;
    }

    .header_logo img {
        width: 27vw;
    }

    h1 {
        font-size: 1.18em;

    }
h1+p{
	font-size:1.1em;
	margin-bottom: 1.5em;
}


    h2 ,.main-page h2 {
        font-size: 1.4em;
        /* text-align: center; */
    }

.product h1, .product h2{
	font-size:1.25em;
}

    .also h2 {
        text-align: center;
        margin-bottom: 1em;
    }

    p.subtitle-h2 {
        text-align: center;
        font-size: 1.25em;
    }

    h3 {
        margin: 10px 0;
        /* font-size: 1.2em; */
        /* text-align: center; */
    }

    .slider_h2 {
        letter-spacing: 0.3em;
        /* text-transform: uppercase; */
        /* margin-bottom: 2em; */
        /* margin-top: 0em; */
        font-size: 0.7em;
    }

    .razdel-flex img {
        width: 50px;
    }

    section.main-about img {
        max-width: 50%;
    }

    .home-grid2 .title {
        font-size: 1.2em;
        line-height: 1.2em;
        /* left: 1em; */
        /* top: 1em; */
    }

    .header-ico {
        /* margin: 2px; */
        border: 2px solid var(--color-a);
        width: 50px;
        height: 50px;
        margin: 0;
    }

    .header-contact a.big {
        font-size: 1em;
    }

    .header-contact-wrap {
        /* align-items: baseline; */
        width: 100%;
        background: transparent;
    }

    .header-contact-wrap > div:first-child {
        /* display: flex; */
        justify-content: end;
    }

    header .header_callback {
        display: none;
    }

    .header-tel {
        display: block;
        background: var(--color-a-hover) url(/img/icon/smartphone.svg) no-repeat center/70%;
        width: 40px;
        height: 40px;
        /* border-radius: 50%; */
    }

    .header-zakaz {
        display: block;
        background: var(--color-a-hover) url(/img/icon/email.svg) no-repeat center/70%;
        width: 40px;
        height: 40px;
        /* border-radius: 50%; */
    }

    .header_page {
        padding: 0 0 10px 0;
        /* border-radius: 0; */
    }

    .btn-mobile-menu {
        z-index: 100;
        cursor: pointer;
        background: var(--color-a);
        padding: 12px 12px;
        border-radius: var(--rad);
    }

    .btn-mobile-menu span {
        background: #ffffff;
        display: block;
        width: 26px;
        height: 3px;
        margin-bottom: 6px;
        /* border-radius: 2px; */
    }

    .btn-mobile-menu span:first-child {
        position: relative;
        top: 0;
        -webkit-transition: top .3s .3s,transform .3s 0s;
        -webkit-transition: top .3s .3s,-webkit-transform .3s 0s;
        transition: top .3s .3s,-webkit-transform .3s 0s;
        transition: top .3s .3s,transform .3s 0s;
        transition: top .3s .3s,transform .3s 0s,-webkit-transform .3s 0s;
    }

    .btn-mobile-menu span:nth-child(2) {
        opacity: 1;
        -webkit-transition: opacity .3s;
        transition: opacity .3s;
    }

    .btn-mobile-menu span:last-child {
        margin-bottom: 0;
        position: relative;
        top: 0;
        -webkit-transition: top .3s .3s,transform .3s 0s;
        -webkit-transition: top .3s .3s,-webkit-transform .3s 0s;
        transition: top .3s .3s,-webkit-transform .3s 0s;
        transition: top .3s .3s,transform .3s 0s;
        transition: top .3s .3s,transform .3s 0s,-webkit-transform .3s 0s;
    }

    .btn-mobile-menu.open span:first-child {
        top: 9px;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: top .3s 0s,transform .3s .3s;
        -webkit-transition: top .3s 0s,-webkit-transform .3s .3s;
        transition: top .3s 0s,-webkit-transform .3s .3s;
        transition: top .3s 0s,transform .3s .3s;
        transition: top .3s 0s,transform .3s .3s,-webkit-transform .3s .3s;
    }

    .btn-mobile-menu.open span:nth-child(2) {
        opacity: 0;
    }

    .btn-mobile-menu.open span:last-child {
        top: -10px;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: top .3s 0s,transform .3s .3s;
        -webkit-transition: top .3s 0s,-webkit-transform .3s .3s;
        transition: top .3s 0s,-webkit-transform .3s .3s;
        transition: top .3s 0s,transform .3s .3s;
        transition: top .3s 0s,transform .3s .3s,-webkit-transform .3s .3s;
    }

    .btn-mobile-menu.open span {
        /* background: #fff; */
    }

    .grid-chess {
        /* grid-template-columns: 1fr; */
        width: 100%;
    }

    .grid-chess > div {
        aspect-ratio: unset;
        font-size: 0.8em;
    }

    .grid-chess .grid-chess-2image img {
        height: 150px;
        transition: 0.2s;
    }

    .ico_small {
        width: 35px;
        margin: 0;
    }

    .footer-logo {
        /* padding: 0 20%; */
        margin: 2em 0;
        width: 150px;
    }


	
    .service-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .home-grid2 {
        grid-template-columns: 1fr;
        gap: 15px;
        margin: 0;
    }

    .home-grid2 .item-grid {
        box-shadow: none;
    }

    .item-grid:before {
        font-size: 2em;
    }

    .home-grid2 img {
        height: 70px;
    }

    .navbar-toggler {
        padding: 19px;
        /* margin-top: 5px; */
        outline: none;
        background: var(--color-a) url(/template/content/img/menu-close.svg) no-repeat center;
        background-size: 50%;
        height: 40px;
        width: 40px;
        display: block;
    }

    .navbar-toggler:focus {
        outline: none;
    }

    .collapse.show {
        z-index: 1000;
    }

    header .logo {
        max-width: 70px;
        padding: 5px 0;
    }


    .menu-close {
        position: fixed;
        right: 30px;
        top: 30px;
        width: 20px;
        height: 20px;
        background: url(/template/content/img/menu-close.svg) no-repeat;
        background-size: 100%;
        cursor: pointer;
        z-index: 10;
        display: block;
    }


    .menu-back {
        background: #015ca9c7;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0;
        width: 100%;
        backdrop-filter: blur(10px);
    }

    .menu-wrap {
        display: none;
        background: var(--color-back);
        z-index: 1000;
        position: absolute;
        /* overflow: auto; */
        top: 60px;
        left: 0;
        width: 100%;
        /* height: 90vh; */
        -webkit-box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
        -moz-box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
        box-shadow: 7px 7px 14px 0px rgba(50, 50, 50, 0.28);
    }

    .navbar-nav {
        padding-top: 15px;
    }

    header .navbar-light .navbar-nav>.nav-item>.nav-link {
        /* color: #fff; */
        text-align: center;
        /* padding: 15px; */
        font-size: 1.5em;
    }

    .dropdown-menu {
        background: var(--header);
        border-color: transparent;
    }

    .menu-contact {
        text-align: center;
        padding: 0 15px 15px;
        /* color: #fff; */
    }

    .menu-contact .menu-contact-text {
        /* font-weight:bold; */
        margin: 15px 0px 5px;
        opacity: 0.5;
        /* text-transform:uppercase; */
        /* font-size:0.8em; */
        /* letter-spacing:1px; */
    }

    .left-sidebar {
        display: none;
        width: 80%;
    }

    .left-sidebar.active {
        display: block;
        background: #fff;
    }

    .main_banner {
        height: 100vh;
    }
.section_title{
    font-size: 1.5em;
}
    section#slider {
        overflow: hidden;
        /* padding-bottom: 5em; */
    }

.Calc-button{
	display:none;
}
    table {
        font-size: 0.9em;
        table-layout: auto;
    }

    .faq {
        font-size: 1em;
    }

    .faq-header .faq_text {
        padding-right: 20px;
        font-size: 1em;
    }

    .promo {
        text-align: center;
        /* padding: 10px; */
        flex-direction: column;
        gap: 15px;
    }

.clients_list{
    flex-wrap:wrap;
}
    
    .promo >div {
    }

    .promo h3 {
        /* color:#fff; */
        font-size: 1em;
        /* padding-bottom: 10px; */
        /* margin: 0; */
    }

    .promo strong {
        font-family: prata;
        font-size: 4em;
        color: var(--color-a);
        padding: 0px 0;
    }

    .menu-grid {
        grid-template-columns: 1fr 1fr;
        grid-gap: 15px;
        /* margin: 0px 15px; */
    }

    .gallery-column-3c {
        gap: 15px;
    }

    .gallery-column-3c .gallery_item {
        width: calc(50% - 8px);
        min-width: auto;
    }

    .gallery-text {
        display: none;
    }

    .contact_form .header {
        text-align: center;
    }

    .contact-map {
        height: auto;
    }

    .contact-box {
        padding: 20px 50px;
        max-width: 100%;
        position: relative;
        left: 0px;
        top: 0;
        margin: 0;
        background: transparent;
        color: var(--color);
        text-align: center;
    }


    .contact-item.contact-map {
        height: auto;
    }

    .price_block {
        flex-direction: column;
        /* max-height: none; */
        flex: 1 0 100%;
    }

    .fancybox-slide {
        padding: 5px;
    }

    .footer-contact {
        margin: 1em 0;
        text-align: center;
    }

    footer .logo {
        text-align: center;
        margin: 0 auto 30px auto;
    }

    #callme_main {
        padding: 0;
    }

    .contact_form .button-warp > div:last-child {
        padding: 15px 30px;
        text-align: center;
    }

    .mobile-center {
        display: flex;
        justify-content: center;
    }

    .online-yc {
        position: fixed;
        bottom: 63px;
        right: 16px;
    }

    img.img-right {
        max-width: 50%;
        float: none;
        clear: both;
        display: block;
        margin: 15px auto;
    }

    .success {
        padding: 15px;
    }

    .success h3 {
        font-size: 2em;
        padding-top: 2em;
    }

    .success p {
        font-size: 1em;
    }

    .standard-form {
        /* padding: 20px; */
        width: 100%;
    }

    .contact_form input, .contact_form select,.contact_form .custom_btn {
        width: 100%;
    }

    .form_radio_btn label {
        font-size: 0.7em;
        padding: 5px;
        height: 70px;
        min-width: 50px;
    }

    .container-fluid {
        padding: 0 15px;
    }

    .footer_contacts {
        position: inherit;
    }

    .spec-item {
        /* display: block; */
        flex-direction: column;
    }

    .slider-home .swiper-wrapper div {
        width: 100vw;
        height: 50vh;
    }

    .slick-news-item .spec-item {
        flex-direction: column;
        height: auto;
    }

    .slider-nav-product-wrap {
        position: relative;
        top: 0em;
        width: 100%;
        box-shadow: 4px 6px 6px 3px #0000004f;
    }

    #back-top {
        right: 9px;
        bottom: -10px;
        z-index: 99;
    }

    #back-top span {
        width: 40px;
        height: 40px;
    }


    .more-block {
        padding: 25px;
    }


    .footer-wrap {
        /* display:flex; */
        /* background: var(--color-a-hover); */
        /* width: 100%; */
        /* overflow: hidden; */
        flex-direction: column;
    }

    .footer-wrap>div {
        flex: 1 1 50%;
    }

    .footer-wrap>div:first-child {
        padding: 15px;
        /* padding-top: 2em; */
    }

    .content-text .price {
        text-align: center;
    }

    .swiper-thumbs img {
        height: 100%;
    }
	
.main_cat {
    grid-template-columns: 1fr;
    gap: 15px;
    background: #fff;
}

  .service_img {
    margin: 0 -15px;
}
section.top{
	padding-top: 100px;
}  
.page_title{
	font-size:1.25em;
}
.main_contacts_map	{
	height:100vw;
}
.main_service_title{
	color:var(--color-a);
}
.main_service_item {
    aspect-ratio: 0.85;
}
a.main_service_item {
	color:#fff;
}
.main_service_item .btn{
	opacity:1;
}	
.main_service_img:after{
	opacity:0;
}	
.main_service_img:before{
	opacity:1;
	background: linear-gradient(1deg, black, #00000059);
}	
.main_service_txt{
	top:30%;
	font-size: 1em;
}	
.review-swiper{
	 overflow: hidden;
}	
.action_item{
	aspect-ratio:0.9;
}
.main-page .advantages {
    margin-top: -190px;
}	
.advantage_item{
	padding:15px;
	border-bottom: 5px solid;
}	
.advantage_icon{
	float:left;
}
.advantage_title{
	padding-left:50px;
	height:3em;
}
a.btn, .btn,.btn.btn-arrow{
	padding: 15px 15px;
	min-width: 200px;
	font-size: 1em;
	height: 60px;
	/* display: flex; */
	/* justify-content: center; */
	 line-height: 2em; 
}	
.main_banner_btn .btn{
	width:70%;
}
ul.ul-num{
	column-count:1;
	margin-bottom: 1em;
}	
.about-count p{
	line-height:1em;
	margin:0;
}
.last-product-item{
	aspect-ratio:0.5;
}	
.service_content_text td{
	font-size:1em;
}
	ul.col2.form-check {
    display: flex;
    overflow: auto;
    padding: 1em 0;
}
label.form-check-label.label-color{
	width:180px;
	/* padding: 5px; */
}
	section.main-catalog{
		background:none;
	}
.popup{
	width:100%;
}	
.popup-wrapper{
	flex-direction:column;
	text-align: center;
}
.popup-wrapper > div:first-child {
	order:2;
	width:100%;

}
.popup-wrapper > div:last-child {
	order:1;
}
.popup-img{margin-top:-5em;transform:scale(1);}	
.popup h3{
	font-size:2em;
	text-align: center;
}
#callme{
	padding: 2em 1em;
}
.product_title {
     text-align: center; 
}	
.navbar-nav .nav-item:last-child{
	display:block;
}	
label.form-check-label img{
	padding:15px;
	height: auto;
}	
}
