@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Book.eot');
    src: url('../fonts/FuturaPT-Book.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FuturaPT-Book.woff2') format('woff2'),
        url('../fonts/FuturaPT-Book.woff') format('woff'),
        url('../fonts/FuturaPT-Book.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Medium.eot');
    src: url('../fonts/FuturaPT-Medium.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FuturaPT-Medium.woff2') format('woff2'),
        url('../fonts/FuturaPT-Medium.woff') format('woff'),
        url('../fonts/FuturaPT-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Demi.eot');
    src: url('../fonts/FuturaPT-Demi.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FuturaPT-Demi.woff2') format('woff2'),
        url('../fonts/FuturaPT-Demi.woff') format('woff'),
        url('../fonts/FuturaPT-Demi.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Futura PT';
    src: url('../fonts/FuturaPT-Heavy.eot');
    src: url('../fonts/FuturaPT-Heavy.eot?#iefix') format('embedded-opentype'),
        url('../fonts/FuturaPT-Heavy.woff2') format('woff2'),
        url('../fonts/FuturaPT-Heavy.woff') format('woff'),
        url('../fonts/FuturaPT-Heavy.ttf') format('truetype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
:root{
	--white: #FFFFFF;
	--black: #4b4b4b;
	/*--black: #222222;*/
	--gray: #c3c3c3;
	--red: #dc2b22;
	--red2: linear-gradient(90deg, rgba(220, 43, 34, 0.6), rgb(220 43 34));
	--green2: linear-gradient(90deg, rgba(0, 106, 78, 0.6), rgb(0 106 78));
	--green: #006a4e;
}
.lexus {
	--red: var(--green);
}
/************************* reset *************************/
html{
	height: 100%;
	margin: 0;
	padding: 0;width: 100%;
	background: var(--white);
	font-size: 0.052vw;
}
body{
	height: 100%;
	width: 100%;
	position: relative;
	margin: 0;
	padding: 0;
	color: var(--black);
	font-size: 18px;
	font-weight: 400;
	font-family: 'Futura PT', Arial, Helvetica, sans-serif;
	line-height: 130%;
	min-width: 320px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
h1, h2, h3, h4, h5, h6, p, ul, li, a, span, div, input, textarea, select, form, fieldset, button, dl, dd, dt, figure, figcaption, blockquote, caption, aside, section {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	box-sizing: border-box;
}
img {
	margin: 0;
	padding: 0;
	border-style: none;
	vertical-align: bottom;
}
input, textarea, select, button {
	font-weight: 400;
	font-family: 'Futura PT', Arial, Helvetica, sans-serif;
	vertical-align:middle;
	border: 0;
	outline: 0;
	background: none;
}
input::placeholder {
  color: #a7a7a7;
}
a:hover {text-decoration: none;}
ul li {list-style: none;}
/************************* common styles *************************/
.holder {
	padding: 0 15px;
}
@media (min-width: 375px){
	.holder {
		padding: 0 20px;
	}
}
@media (min-width: 576px){
	.holder {
		max-width: 560px;
		margin: auto;
	}
}
@media (min-width: 768px){
	.holder {
		max-width: 760px;	
	}
}
@media (min-width: 1024px) {
	.holder {
		max-width: 1000px;
	}
}
@media (min-width: 1300px){
	.holder {
		max-width: 1200px;
		padding: 0 40px;
	}
}
@media (min-width: 1360px){
	.holder {
		max-width: 1340px;
	}
}
.holder:after {
	display: block;
	content: '';
	clear: both;
}
a {transition: all .3s linear;}
p {margin: 0 0 24px;}
p:last-child {
	margin: 0;
}
.center {text-align: center;}
.upper {text-transform: uppercase;}
.button-holder {text-align: center;}
.button {
	position: relative;
	display: inline-block;
	padding: 9px 30px;
	color: var(--white);
	font-weight: 500;
	font-size: 16px;
	line-height: 130%;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	cursor: pointer;
	background: var(--red);
	box-shadow: 0 4px 4px 0 rgba(228, 143, 138, 0.25);
	border-radius: 8px;
	transition: all .3s linear;
}
.lexus .button {
	box-shadow: 0 4px 4px 0 rgba(0, 106, 78, 0.25);
}
.button:hover {
	background: #b31d15;
}
.lexus .button:hover {
	background: #004e39;
}
/************************* form-block *************************/
.input {
	display: block;
	width: 100%;
	height: 62px;
	padding: 0 20px;
	margin: 0 0 18px;
	font-size: 16px;
	font-weight: 600;
	color: #000;
	border-radius: 10px;
	border: 1px solid #C4D0E3;
	background: #FFF;
}
.textarea {
	display: block;
	width: 100%;
	height: 110px;
	padding: 17px 20px;
	margin: 0 0 11px;
	font-size: 13px;
	resize: vertical;
	color: #261421;
	background: #F4F2F1;
	box-shadow: inset 2px 2px 5px 2px rgba(38, 20, 33, 0.05);
	border-radius: 6px;
}
::-webkit-input-placeholder {color: #000;}
:-moz-placeholder {color: #000; opacity: 1;}
::-moz-placeholder {color: #000; opacity: 1;}
:-ms-input-placeholder {color: #000;}
.form-button {padding: 9px 0 0;}
.check-item {
	position: relative;
	margin: 0 0 10px;
}
.check-input {
	position: absolute;
	left: 0;
	width: 1px;
	height: 1px;
	opacity: 0;
}
.check-label {
	display: block;
	padding: 0 0 0 27px;
	color: #807A7E;
	font-size: 14px;
	line-height: 20px;
	cursor: pointer;
}
.check-label a {color: #fff;}
.check-label:before {
	position: absolute;
	top: 3px;
	left: 0;
	display: block;
	content: '';
	width: 12px;
	height: 12px;
	box-sizing: border-box;
	background: #fff;
	border-radius: 2px;
}
.check-label:after {
	position: absolute;
	top: 3px;
	left: 0;
	display: block;
	content: '';
	width: 12px;
	height: 12px;
	background: url(../images/check.svg) 50% 50% no-repeat;
	background-size: 8px;
	opacity: 0;
}
.check-input:checked + .check-label:after {opacity: 1;}
.check-input:checked + .check-label {color: #D57056;}
/************************* wrapper *************************/
#wrapper {
	position: relative;
	overflow: hidden;
	padding-left: 120px;
	/*padding-left: 180px;*/
}
/************************* header *************************/
.header {
	position: absolute;
	top: 0;
	left: 120px;
	/*left: 180px;*/
	right: 0;
	padding: 38px 0 0;
}
.header-block {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-logo {
	/*width: 151px;*/
	width: 215px;
}
.header-logo img {
	width: 100%;
}
.header-right {
	display: flex;
	align-items: flex-end;
	gap: 45px;
}

.header-phone {
	font-weight: 900;
	font-size: 22px;
	line-height: 130%;
	letter-spacing: 0.02em;
	color: var(--black);
	text-decoration: none;
}
.header-phone:hover {
	color: var(--red);
}
.header-right .button {
	min-width: 171px;
}
.header-info {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.header-address {
	padding: 0 0 3px;
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
	border-bottom: 1px solid var(--red);
}
.header-time {
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
}

.header-nav {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 300;
	display: flex;
	flex-direction: column;
	width: 120px;
	/*width: 180px;*/
	background: var(--white);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.header-nav-mob {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	z-index: 300;
	display: flex;
	display: none;
	flex-direction: column;
	width: 180px;
	background: var(--white);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.nav-item {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 12px 10px;
	color: var(--black);
	text-decoration: none;
	text-align: center;
	border-bottom: 1px solid var(--black);
	max-height: 150px;
}
.nav-item:last-child {
	border-bottom: 0;
}
.nav-toyota svg, .nav-lexus svg {
	width: 50px;
	height: 50px;
}
.nav-toyota path {
	fill: var(--red);
}
.nav-toyota.vis path {
	fill: var(--white);
}
.nav-lexus path {
	fill: var(--red);
}
.nav-lexus.vis path {
	fill: var(--white);
}
.lexus .nav-toyota {
	--red: #dc2b22;
}
.nav-toyota.vis {
	color: var(--white);
	background: var(--red);
}
.nav-lexus.vis {
	color: var(--white);
	background: var(--red);
}
.nav-icon {
	margin: auto 0;
}
.nav-icon img {
	width: 100%;
}
.nav-red {
	display: block;
}
.nav-green {
	display: none;
}
.lexus .nav-green {
	display: block;
}
.lexus .nav-red {
	display: none;
}
/*.icon-1 {width: 30px;}
.icon-2 {width: 25px;}
.icon-3 {width: 37px;}
.icon-4 {width: 33px;}
.icon-5 {width: 50px;}
.icon-6 {width: 39px;}*/
.icon-1 {width: 35px;}
.icon-2 {width: 35px;}
.icon-3 {width: 35px;}
.icon-4 {width: 35px;}
.icon-5 {width: 35px;}
.icon-6 {width: 35px;}
.nav-text {
	font-weight: 500;
	font-size: 14px;
	line-height: 130%;
	text-transform: uppercase;
}
/************************* popups ***********************/
.popup {
    display: none;
}
.popup.fancybox-content {
    padding: 48px 40px 72px;
    box-shadow: 8px 8px 24px rgba(24, 57, 64, 0.16);
    border-radius: 24px;
}
.popup-title {
    font-weight: 400;
    font-size: 32px;
    line-height: 130%;
    text-align: center;
}
.popup-content {
    margin: 25px 0 -20px;
    max-width: 320px;
}
.popup-content form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.popup-content form input {
    width: 100%;
}

/************************* hero *************************/
.hero {
	padding: 180px 0 0;
	background: url(../images/hero-bg.jpg) 50% 0 no-repeat;
	background-size: cover;
}
.hero-title {
	margin: 0 0 25px;
	font-weight: 500;
	font-size: 60px;
	/*font-size: 80px;*/
	line-height: 128%;
	text-transform: uppercase;
	text-align: center;
}
.hero-block {
	display: flex;
	align-items: center;
	gap: 20px;
}
.hero-side {
	width: 434px;
	min-width: 434px;
}
.hero-img {
	text-align: center;
}
.hero-img img {
	width: 80%;
	/*width: 100%;*/
}
.car-lexus {
	display: none;
}
.lexus .car-toyota {
	display: none;
}
.lexus .car-lexus {
	display: block;
	position: relative;
	right: -90px;
}
.hero-text {
	margin: 0 0 22px;
	font-size: 20px;
	line-height: 128%;
}
.hero-buttons {
	display: flex;
}
.hero-button {
	padding: 12px 0 10px;
	flex: 1;
	font-weight: 700;
	font-size: 20px;
	/*font-size: 32px;*/
	line-height: 100%;
	color: var(--red);
	text-decoration: none;
	text-transform: uppercase;
	text-align: center;
	border-bottom: 2px solid var(--red);
}
.hero-button.nav-lexus {
	color: var(--green);
	border-bottom: 2px solid var(--green);
}
.hero-button.vis {
	color: var(--white);
	background: var(--red);
	border-radius: 8px;
}





/************************* section *************************/
.section {
	margin: 0 0 100px;
}
.section-post {
    margin: 160px 0 100px;
}
.title-block {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 12px;
	margin: 0 0 40px;
	text-align: center;
}
.title {
	font-weight: 400;
	font-size: 42px;
	line-height: 130%;
}
.title-text {
	font-weight: 400;
	font-size: 18px;
	line-height: 130%;
	letter-spacing: 0.03em;
}

/************************* serv *************************/
.serv {
	display: flex;
	gap: 73px;
}
.serv-side {
	width: 252px;
	min-width: 252px;
}
.serv-mob {
	display: none;
}
.serv-list {
	display: flex;
	flex-direction: column;
}
.serv-item {
	padding: 14px 16px;
	margin: -1px 0 0;
	font-size: 18px;
	line-height: 130%;
	color: var(--black);
	text-decoration: none;
	border-left: 4px solid transparent;
	border-bottom: 1px solid var(--gray);
}
.serv-item:last-child {
	border-bottom: 0;
}
.serv-item.active {
	position: relative;
	background: #e6e6e6;
	border-left-color: var(--red);
	border-bottom-color: #e6e6e6;
}
.serv-content {
	flex: 1;
}
.serv-tab {
	display: none;
}
.serv-tab.vis {
	display: block;
}
.serv-top {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	position: relative;
	overflow: hidden;
	min-height: 227px;
	padding: 26px;
	color: var(--white);
	background: url(../images/serv-banner.jpg) 50% 50% no-repeat;
	background-size: cover;
	border-radius: 20px 20px 0 0;
	filter: grayscale(100%);
}
.serv-top::before {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	content: '';
	width: 550px;
	background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}
.serv-title {
	position: relative;
	margin: 0 0 8px;
	padding: 0 0 2px;
	font-weight: 400;
	font-size: 28px;
	line-height: 130%;
	border-bottom: 2px solid var(--white);
}
.serv-price-text {
	position: relative;
	margin: 0 0 8px;
	font-size: 14px;
	line-height: 130%;
}
.serv-price {
	position: relative;
	margin: 0 0 8px;
	font-size: 24px;
	line-height: 130%;
}
.serv-top .button {
	position: relative;
	padding: 5px 36px;
}
.serv-main {
	display: flex;
}
.serv-info {
	width: 50%;
	padding: 24px 0 0;
}
.serv-img {
	width: 50%;
	position: relative;
}
.serv-img img {
	width: 100%;
	/*width: 113%;*/
	margin: -113px 0 0;
}
.serv-about {
	margin: 0 0 24px;
	font-size: 20px;
	line-height: 130%;
}
.serv-about h3 {
	margin: 0 0 6px;
	font-weight: 400;
	font-size: 28px;
}
.serv-about p {
    margin: 0 0 14px;
}
.serv-about a {
    color: var(--red);
}
.serv-buttons {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}
.serv-phone {
	width: 200px;
	padding: 6px 10px;
	font-weight: 500;
	font-size: 20px;
	color: var(--black);
	text-decoration: none;
	text-align: center;
	background: var(--white);
	border: 1px solid var(--gray);
	border-radius: 12px;
}
.serv-buttons .button {
	/*width: 200px;*/
}


/************************* action-slider *************************/
.action-slider {
	margin: -10px -10px 0;
	padding: 0 0 40px;
}
.slick-arrow {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 30px;
	height: 30px;
	cursor: pointer;
	font-size: 0;
	background: url(../images/arrow.svg) 50% 50% no-repeat;
}
.slick-prev {
	margin-left: -37px;
	transform: scale(-1, 1);
}
.slick-next {
	margin-left: 7px;
}
.action-slide {
	padding: 10px;
}
.lexus .slick-arrow {
	background: url(../images/arrow-green.svg) 50% 50% no-repeat;
}
.slick-arrow.slick-disabled {
	background: url(../images/arrow-grey.svg) 50% 50% no-repeat;
}
.action-item {
	overflow: hidden;
	background: var(--gray);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	border-radius: 12px;
}
.action-img {
	height: 162px;
}
.action-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: grayscale(100%);
}
.action-title {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 64px;
	padding: 10px;
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
	background: var(--red);
}
.action-text {
	padding: 11px 8px 9px;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: -0.02em;
}
.action-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 0 10px 10px;
}
.action-price {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 18px;
	line-height: 130%;
}
.price-old {
	position: relative;
}
.price-old::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background: var(--red);
	transform: rotate(-19deg);
	transform-origin: 50% 50%;
}
.action-bottom .button {
	padding: 9px 13px;
}

/************************* specialist-slider *************************/
.specialist-slider {
	margin: -10px -10px 0;
	padding: 0 0 40px;
}
.slick-arrow {
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 30px;
	height: 30px;
	cursor: pointer;
	font-size: 0;
	background: url(../images/arrow.svg) 50% 50% no-repeat;
}
.slick-prev {
	margin-left: -37px;
	transform: scale(-1, 1);
}
.slick-next {
	margin-left: 7px;
}
.specialist-slide {
	padding: 10px 9px;
}
.lexus .slick-arrow {
	background: url(../images/arrow-green.svg) 50% 50% no-repeat;
}
.slick-arrow.slick-disabled {
	background: url(../images/arrow-grey.svg) 50% 50% no-repeat;
}
.specialist-item {
	overflow: hidden;
	/*background: var(--gray);*/
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	border-radius: 12px;
	position: relative;
	height: 280px;
}
.specialist-img {
	height: 100%;
	/*height: 162px;*/
}
.specialist-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.specialist-title-line {
    position: absolute;
    width: 100%;
    bottom: 22.5px;
    background: var(--red2);
    opacity: .8;
}
.specialist-title {
    position: absolute;
    width: 100%;
    bottom: 22.5px;
	display: flex;
	align-items: center;
	justify-content: space-around;
	min-height: 48px;
	padding: 10px;
	font-weight: 600;
	font-size: 18px;
	line-height: 130%;
	text-align: center;
	text-transform: uppercase;
	color: var(--white);
	background: var(--red2);
}
.lexus .specialist-title {
    background: var(--green2);
}
.specialist-title span {
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    text-transform: none;
    line-height: 128%;
}

.specialist-text {
	padding: 11px 8px 9px;
	font-size: 16px;
	line-height: 130%;
	letter-spacing: -0.02em;
}
.specialist-bottom {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	padding: 0 10px 10px;
}
.specialist-price {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	font-size: 18px;
	line-height: 130%;
}
.price-old {
	position: relative;
}
.price-old::after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 1px;
	content: '';
	background: var(--red);
	transform: rotate(-19deg);
	transform-origin: 50% 50%;
}
.specialist-bottom .button {
	padding: 9px 13px;
}

/************************* about *************************/
.about {
	padding: 0;
	/*padding: 130px 0 0*/
}
.about-wrap {
	display: flex;
	flex-direction: row-reverse;
	position: relative;
	background: #fff;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	border-radius: 20px;
}
.about-img {
	overflow: hidden;
	width: 61.5%;
	margin: 0px 0 100px 0%;
	/*margin: -130px 0 12px -15%;*/
	border-radius: 20px;
}
.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.about-content {
	position: relative;
	width: 53.5%;
	padding: 6px 20px 46px 20px;
	/*padding: 46px 20px;*/
	background: #fff;
	border-radius: 20px;
}
.about-content .about-logo {
    width: 240px;
    padding: 0 0 10px;
}
.about-content h3 {
	margin: 0 0 32px;
	font-weight: 400;
	font-size: 32px;
	line-height: 130%;
}
.about-content p {
	margin: 0 0 12px;
}
.about-content p:last-child {
	margin: 0;
}
.about-stat {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	width: 46.5%;
	background: #fff;
	border-radius: 0 20px 20px 0;
}
.about-stat-item {
	flex: 1;
	padding: 12px 15px;
	border-left: 2px solid var(--gray);
}
.about-stat-item:first-child {
	border-left: 0;
}
.about-stat-num {
	margin: 0 0 -3px;
	font-size: 42px;
	line-height: 130%;
	color: var(--red);
}
.about-stat-text {
	width: 105%;
	font-size: 16px;
	line-height: 130%;
}

/************************* pros *************************/
.pros {
	padding: 100px 50px 46px;
	color: var(--white);
	background: url(../images/pros-bg.jpg) 50% 50% no-repeat;
	background-size: cover;
	border-radius: 12px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.pros-block {
	display: flex;
	justify-content: space-between;
	/*flex-wrap: wrap;*/
	gap: 70px;
	/*max-width: 470px;*/
	margin: 0 auto 40px;
}
.pros-item {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 6px;
	width: 110px;
	height: 107px;
	/*width: 194px;
	height: 194px;*/
	border: 6px solid var(--red);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	background: #fff;
	border-radius: 15px;
	/*border-radius: 50%;*/
}
.pros-icon {
	width: 40px;
}
.pros-icon img {
	width: 100%;
}
.pros-icon-red {
	display: block;
}
.pros-icon-green {
	display: none;
}
.pros-text {
	font-weight: 500;
	font-size: 12px;
	line-height: 111%;
	letter-spacing: -0.02em;
	color: var(--black);
	text-align: center;
}
.pros .button {
	width: 100%;
	max-width: 348px;
}

.prems-mob-block {
    padding: 10px 10px;
}
.prem-brands {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.brand-item {
    max-height: 92px;
    color: #fff;
    font-size: 24px;
    display: flex;
}
.brand-img {
    width: 100px;
    background-color: rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 20px;
}
.brand-img img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.brand-card {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 92px;
    padding-left: 20px;
    padding-right: 10px;
    background: var(--red);
}
.brand-header {
    font-size: 18px;
    font-weight: bold;
}

.lexus .pros-icon-green {
	display: block;
}
.lexus .pros-icon-red {
	display: none;
}

/************************* comfort *************************/
.comfort {
	position: relative;
	display: flex;
}
.comfort-img {
	width: 100%;
	/*width: 50%;*/
	height: 440px;
	object-fit: cover;
}
.comfort-mob-slider {
    display: none;
}
.comfort-block {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 28px;
	display: flex;
	justify-content: space-between;
	max-width: 786px;
	margin: 0 auto;
}
.comfort-item {
	width: 100%;
	max-width: 150px;
}
.comfort-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 112px;
	height: 112px;
	margin: 0 auto 8px;
	border: 6px solid var(--red);
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	background: #fff;
	border-radius: 50%;
}
.comfort-icon svg {
	width: 50px;
	height: 50px;
}
.comfort-icon path {
	fill: var(--red);
}
.comfort-text {
	font-weight: 500;
	font-size: 18px;
	line-height: 120%;
	letter-spacing: -0.04em;
	text-align: center;
	color: var(--white);
	text-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

/************************* review *************************/
.review {
	display: flex;
	gap: 40px;
	flex-wrap: wrap;
    flex-direction: row;
    justify-content: left;
}
.review-side {
	width: 418px;
	min-width: 418px;
	padding: 40px 24px 20px;
	color: var(--white);
	border-radius: 13px;
	background: var(--red);
}
.review-side-title {
	max-width: 300px;
	padding: 0 0 32px 20px;
	font-weight: 600;
	font-size: 32px;
	line-height: 128%;
	text-transform: uppercase;
}
.review-side-item {
	max-width: 312px;
	padding: 20px 0;
	font-weight: 600;
	font-size: 24px;
	line-height: 128%;
	text-transform: uppercase;
	border-top: 2.65px solid #fff;
}
.review-content {
	/*flex: 1;*/
	width: 30%;
	margin: 0 auto;
}
.review-line {
	display: flex;
	align-items: center;
	gap: 37px;
	margin: 0 0 10px;
}
.review-ava {
    width: 60px;
    min-width: 60px;
    height: 60px;
	/*width: 88px;
	min-width: 88px;
	height: 88px;*/
}
.review-ava img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.review-info {
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.review-name {
	font-weight: 600;
	font-size: 20px;
	/*font-weight: 900;
	font-size: 29px;*/
	line-height: 130%;
}
.review-date {
	font-weight: 400;
	font-size: 17px;
	/*font-size: 21px;*/
	line-height: 130%;
}
.rating {
	display: flex;
	gap: 6px;
	margin: 0 0 40px;
}
.star {
	width: 30px;
	height: 28px;
	background: url(../images/star.svg) 0 0 no-repeat;
	background-size: contain;
}
.star-half {
	width: 30px;
	height: 28px;
	background: url(../images/star-half.svg) 0 0 no-repeat;
	background-size: contain;
}
.review-content .star {
    width: 20px;
    height: 20px;
    background: url(../images/star.svg) 0 0 no-repeat;
    background-size: contain;
}
.review-content .star-half {
	width: 20px;
	height: 20px;
	background: url(../images/star-half.svg) 0 0 no-repeat;
	background-size: contain;
}
.review-text {
	margin: 0 0 35px;
	font-size: 21px;
	line-height: 132%;
}
.review-text a {
	color: #2490f8;
}
.review-button {
	text-align: center;
}
.review-button .button {
	width: 100%;
	max-width: 265px;
	/*max-width: 465px;*/
	padding: 12px 30px 13px;
	font-size: 18px;
	/*font-size: 21px;*/
}
.review-other {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
    justify-content: center;
	gap: 40px;
	padding: 0px 0 50px;
}
.review-block {
    width: 22.5%;
	display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.25);
    padding: 10px 20px;
}
.review-block .review-ava {
    width: 120px;
    min-width: 88px;
    height: 88px;
}
.review-block .review-ava img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.review-block .review-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}
.review-block .rating {
    display: flex;
    gap: 6px;
    margin: 0 0 10px;
}
.review-block .review-text {
    margin: 0;
    font-size: 21px;
    line-height: 132%;
}

/************************* our works ***********************/
.ourworks .swiper-container {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 50px;
    margin: 0 auto;
    overflow: hidden;
}
.ourworks .swiper-slide {
    background-position: center;
    background-size: cover;
    overflow: hidden;
    /* background: var(--gray); */
    box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    border-radius: 20px;
    position: relative;
    height: 350px;
}
.ourworks .swiper-button-next, .ourworks .swiper-button-prev {
    color: #dc2b22;
}
.ourworks .swiper-button-next:hover, .ourworks .swiper-button-prev:hover {
    color: #b31d15;
}
.ourworks .swiper-pagination-bullet-active {
    background: #dc2b22;
    opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.lexus .ourworks .swiper-button-next, .lexus .ourworks .swiper-button-prev {
    color: #006a4e;
}
.lexus .ourworks .swiper-button-next:hover, .lexus .ourworks .swiper-button-prev:hover {
    color: #004e39;
}
.lexus .ourworks .swiper-pagination-bullet-active {
    background: #006a4e;
    opacity: var(--swiper-pagination-bullet-opacity, 1);
}
/************************* address *************************/
.address-block {
	display: flex;
	margin: 0 0 12px;
	padding: 20px 10px;
	box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
	background: var(--white);
}
.address-block:last-child {
	margin: 0;
}
.address-info {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 18px;
	width: 303px;
	min-width: 303px;
	padding: 0 20px;
}
.address-map, .address-img {
	flex: 1;
}
.address-map img, .address-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.address-text {
	font-size: 22px;
	line-height: 130%;
}
.address-text span {
	font-size: 16px;
}
.address-text a {
	color: var(--black);
	text-decoration: none;
}
.address-phone {
	font-weight: 600;
	letter-spacing: 0.02em;
}
.address-info .button {
    width: 100%;
	max-width: 207px;
	margin: 0 auto;
    padding: 4px 30px 6px;
	font-weight: 400;
	font-size: 18px;
	text-transform: none;
}

/************************* footer *************************/
.footer {
	padding: 10px 0;
	color: var(--white);
	background: var(--black);
}
.footer-block {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.footer-logo {
	width: 215px;
	margin: 0;
}
.footer-logo img {
	width: 100%;
}
.footer-info {
	margin: 0 0 8px;
	font-size: 14px;
}
.footer-policy {
	font-size: 10px;
}
.footer-policy a {
	color: var(--white);
	text-decoration: none;
}
.footer-policy a:hover {
	color: var(--red);
}
.footer-nav {
	display: flex;
	gap: 50px;
}
.footer-nav-col {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 12px;
}
.footer-nav a {
	font-size: 16px;
	text-transform: uppercase;
	color: #fff;
	text-decoration: none;
}
.footer-nav a:hover {
	color: var(--red);
}
.footer-call {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 14px;
}
.footer-phone {
	font-weight: 900;
	font-size: 22px;
	line-height: 130%;
	letter-spacing: 0.02em;
	color: #fff;
	text-decoration: none;
}
.footer-phone:hover {
	color: var(--red);
}
.footer-call .button {
	min-width: 207px;
}
.footer-right {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.footer-address {
	padding: 0 0 3px;
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
	border-bottom: 1px solid var(--red);
}
.footer-time {
	font-weight: 500;
	font-size: 18px;
	line-height: 130%;
}


.desk-view-none {
    display: none;
}
/************************* media *************************/
@media screen and (max-width: 1400px) {
	#wrapper {
		padding-left: 120px;
	}
	.header {
		left: 120px;
	}
	.header-nav {
		width: 120px;
	}
	.nav-text {
		font-size: 13px;
	}
	.serv {
		gap: 40px;
	}
}
@media screen and (max-width: 1300px) {
	.serv-side {
		width: 220px;
		min-width: 220px;
	}
	.serv-info {
		width: 60%;
	}
	.serv-img {
		width: 40%;
	}
	.serv-about {
		font-size: 18px;
	}
	.about-stat-num {
		font-size: 30px;
	}
	.review-side {
		width: 280px;
		min-width: 280px;
	}
	.review-side-title {
		padding: 0 0 32px;
		font-size: 28px;
	}

}
@media screen and (max-width: 1024px) {
	#wrapper {
		padding-left: 0;
	}
	.header {
		left: 0;
	}
	.header-info {
		display: none;
	}
	.header-right {
		align-items: center;
		gap: 30px;
	}
	.header-nav {
		top: auto;
		right: 0;
		flex-direction: row;
		width: auto;
		height: 50px;
	}
	.nav-item {
		border-bottom: 0;
	}
	.nav-text {
		display: none;
	}
	.nav-icon {
		max-width: 30px;
		max-height: 30px;
	}
	.nav-icon img {
		max-height: 100%;
	}
	.nav-toyota svg, .nav-lexus svg {
		width: 30px;
		height: 30px;
	}
	/* Mob new */
	.header-nav-mob {
		top: auto;
		right: 0;
		flex-direction: row;
		width: auto;
		height: 75px;
	}
	.header-nav-mob .nav-item {
		border-bottom: 0;
	}
	.header-nav-mob .nav-text {
		display: block;
        font-size: 7px;
        line-height: 130%;
	}
	.header-nav-mob .nav-icon {
		max-width: 30px;
		max-height: 30px;
		margin: 5px 0;
	}
	.header-nav-mob .nav-icon img {
		max-height: 100%;
	}
	.header-nav-mob .nav-toyota svg, .header-nav-mob .nav-lexus svg {
		width: 30px;
		height: 30px;
	}
	.header-nav-mob .icon-2 {
        width: 30px;
    }
	/* Mob new end */
	.hero-title {
		margin: 0 0 40px;
		font-size: 60px;
		line-height: 130%;
	}
	.title-block {
		gap: 12px;
		margin: 0 0 30px;
	}
	.title {
		font-size: 30px;
	}
	.title-text {
		font-size: 16px;
	}
	body {
		font-size: 16px;
	}
	.about {
		padding: 0;
	}
	.about-wrap {
		flex-direction: column;
		background: none;
		box-shadow: none;
	}
	.about-img {
		width: 100%;
		margin: 0;
	}
	.about-content {
		width: 100%;
		padding: 30px 0;
	}
	.about-content h3 {
		margin: 0 0 20px;
		font-size: 24px;
	}
	.about-stat {
		position: static;
		width: 100%;
	}
	.pros {
		padding: 60px 20px;
	}
	.pros-block {
		flex-direction: column;
		align-items: center;
		gap: 30px;
		margin: 0 auto 40px;
	}
	.comfort-block {
		justify-content: center;
		gap: 30px;
	}
	.review {
		flex-direction: column;
	}
	.review-side {
		width: auto;
		min-width: 1px;
		padding: 40px 20px 20px;
	}
	.review-side-title {
		max-width: none;
		padding: 0 0 20px;
		font-size: 28px;
	}
	.review-side-item {
		max-width: none;
		padding: 20px 0;
		font-size: 21px;
		border-top: 1px solid #fff;
	}
	.address-block {
		flex-direction: column;
		padding: 10px;
		gap: 30px;
	}
	.address-info {
		align-items: center;
		gap: 14px;
		width: auto;
		min-width: 1px;
		text-align: center;
	}
	.address-text {
		font-size: 20px;
	}
	.serv-img {
		display: none;
	}
	.serv-info {
		width: 100%;
	}
	.footer {
		padding: 20px 0 90px;
	}
	.footer-block {
		flex-direction: column;
		gap: 20px;
	}
	.footer-nav {
		flex-direction: column;
		gap: 12px;
	}
	.footer-nav-col {
		align-items: center;
	}
	.footer-side {
		text-align: center;
	}
	
}
@media screen and (max-width: 767px) {
    #wpadminbar {
        top: -46px;
    }
    #block3 {
        display: none;
    }
    #block7 {
        display: none;
    }
	.header {
		padding: 20px 0 0;
	}
	.header-logo {
        width: 101px;
    }
	.header-right {
		flex-direction: row;
		/*flex-direction: column;*/
		align-items: center;
		gap: 5px;
	}
	.header-phone {
		font-size: 14px;
		/*font-size: 18px;*/
	}
	.header-right .button {
		min-width: 80px;
        padding: 9px 15px;
        font-weight: 500;
        font-size: 12px;
	}
	.header-nav-mob {
	    display: flex;
	}
	.hero-title {
        font-size: 48px;
        line-height: 130%;
    }
    .hero-block {
		flex-direction: column;
		align-items: stretch;
		gap: 40px;
	}
	.hero-side {
		width: auto;
		min-width: 1px;
	}
	.hero-text {
		text-align: center;
	}
	.lexus .car-lexus {
        display: block;
        position: relative;
        right: -40px;
    }
	.section {
		margin: 0 0 70px;
	}
	.section {
		margin: 120 0 70px;
	}
	.about-stat {
		flex-direction: column;
	}
	.about-stat-item {
		padding: 12px 0;
		border-left: 0;
	}
	.review-side {
        padding: 30px 20px 10px;
    }
	.review-side-title {
        padding: 0 0 20px;
        font-size: 21px;
    }
	.review-side-item {
		font-size: 18px;
	}
	.review-block {
        width: 43%;
    }
    .review {
        flex-wrap: nowrap;
    }
	.pros {
		margin: 0 -20px;
		border-radius: 0;
	}
    .pros-block {
        flex-wrap: wrap;
        flex-direction: row;
        gap: 10px;
    }
	.pros-item {
        width: 110px;
        height: 107px;
	}
	.pros .button {
		width: 100%;
		max-width: 465px;
		padding: 12px 30px 13px;
		font-size: 21px;
	}
	.comfort {
		flex-direction: column;
	}
	.comfort img {
		width: 100%;
		height: 260px;
	}
	.comfort-desk-img {
	    display: none;
	}
	.comfort-mob-slider {
        display: block;
        margin: 0 0 43px;
    }
    .comfort-mob-slider .slick-arrow {
        bottom: -43px;
    }
	.comfort-block {
		position: static;
		flex-direction: row;
		/*flex-direction: column;*/
		align-items: start;
		/*align-items: center;*/
		gap: 30px;
		padding: 40px 0 0;
	}
	.comfort-item {
        width: 100%;
        max-width: 100px;
    }
    .comfort-icon {
        width: 58px;
        height: 58px;
    }
    .comfort-icon svg {
        width: 24px;
        height: 24px;
    }
	.comfort-text {
		color: var(--black);
		text-shadow: none;
	}
	.review-line {
		gap: 20px;
		margin: 0 0 16px;
	}
	.review-ava {
		width: 80px;
		min-width: 80px;
		height: 80px;
	}
	.review-info {
		gap: 10px;
	}
	.review-name {
		font-size: 24px;
	}
	.review-date {
		font-size: 18px;
	}
	.rating {
		margin: 0 0 30px;
	}
	.star {
		width: 24px;
		height: 23px;
	}
	.star-half {
        width: 23px;
        height: 23px;
	}
	.review-text {
		margin: 0 0 30px;
		font-size: 18px;
		line-height: 130%;
	}
	.serv {
        flex-direction: column;
		gap: 20px;
    }
	.serv-side {
	    display: none;
        width: auto;
        min-width: 1px;
		position: relative;
		z-index: 20;
    }
	.serv-mob {
		position: relative;
		display: block;
		padding: 10px 16px;
		font-size: 18px;
		color: var(--black);
		text-decoration: none;
		background: var(--white);
		border: 1px solid var(--gray);
		border-radius: 12px;
	}
	.serv-mob::after {
		position: absolute;
		right: 10px;
		top: 50%;
		margin-top: -11px;
		width: 24px;
		height: 24px;
		content: '';
		background: url(../images/chevron-right.svg) 50% 50% no-repeat;
		background-size: contain;
	}
	.serv-list {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		display: none;
		background: var(--white);
	}
	.serv-list.vis {
		display: flex;
	}
	.serv-item {
		padding: 10px 16px;
	}
	.serv-top {
		padding: 26px 20px;
		min-height: 25px;
	}
	.serv-content .slick-arrow {
        bottom: -25px;
	}
	.serv-buttons {
	    margin-top: 20px;
	    /*flex-wrap: nowrap;*/
	}
	.wpcf7-form-control-wrap {
        position: relative;
        width: 100%;
    }
	.serv-phone {
        width: 100%;
        /*width: 160px;*/
        font-size: 16px;
        padding: 8px 3px;
	}
	.serv-buttons .button {
        width: 100%;
    }
	.review .slick-arrow {
        bottom: -45px;
	}
    .mob-view-none {
        display: none;
    }
    .mob-view-block {
        display: block;
    }
    .footer-side {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        text-align: center;
        width: 100%;
    }
    .footer-logo {
        width: 50%;
        margin: 0 0 26px;
    }
    .footer-logo .footer-time {
        font-weight: 500;
        font-size: 14px;
        line-height: 130%;
    }
    .footer-info {
        width: 50%;
        margin: 0 0 8px;
        font-size: 14px;
    }
    .footer-info .footer-time {
        font-size: 14px;
    }
    .footer-policy {
        width: 100%;
        font-size: 14px;
    }
    .footer-nav {
        width: 100%;
        flex-direction: row;
        gap: 12px;
        justify-content: space-evenly;
    }
    .footer-address {
        display: none;
    }

}
@media screen and (max-width: 576px) {
	.header-block {
		flex-direction: row;
		gap: 0px;
		/*flex-direction: column;
		gap: 20px;*/
	}
	.header-logo {
        width: 91px;
    }
	.hero {
		padding: 85px 0 0;
		/*padding: 60px 0 0;*/
	}
	.hero-title {
        margin: 0 0 30px;
		font-size: 36px;
        line-height: 130%;
    }
}


/* Форма */

    .form-one-container {
      position: relative;
      height: 490px;
      margin: 45px auto;
      overflow: hidden;
    }

    .form-one-bg {
    position: absolute;
    width: 97%;
    height: 100%;
    background: url(../images/form/bg_forms.jpg) center center;
    background-size: auto;
    background-repeat: no-repeat;
    border-radius: 20px;
    }

    .form-one-headline {
    position: absolute;
    top: 50px;
    left: 8%;
    font-weight: 700;
    font-size: 23px;
    line-height: 28px;
    color: #FFFFFF;
	border-bottom: 3px solid #DC2B22;
    padding-bottom: 10px;
    }

    .form-one-fields {
    position: absolute;
    top: 50px;
    right: 50px;
    display: flex;
    flex-direction: column;
    gap: 10px;
	width: 360px;
    }

    .form-one-input-row,
    .form-one-textarea-row,
    .form-one-upload-row {
      display: flex;
      align-items: center;
      padding: 10px 10px 10px 15px;
      gap: 10px;
      background: #FFFFFF;
      border: 1px solid #9A9A9A;
      border-radius: 12px;
    }

 .form-one-upload-row {
	  justify-content: center;
	  border: 1px solid #DC2B22;
    }
	
	.form-one-file-input {
  display: none;
}

.form-one-upload-trigger {
 display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    cursor: pointer;
}

	
    .form-one-textarea-row {
      align-items: flex-start;
      padding: 14px 10px 10px 15px;
      border-radius: 15px;
    }

    .form-one-icon {
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .form-one-upload-icon {
      position: relative;
      width: 24px;
      height: 24px;
      flex-shrink: 0;
    }

    .form-one-label {
      width: 117px;
      font-weight: 700;
      font-size: 20px;
      line-height: 24px;      
	  text-align: center;
      color: #A7A7A7;
      flex-shrink: 0;
    }

    .form-one-label-comment {
      width: 150px;
    }

    .form-one-label-upload {
      width: 165px;
      color: #DC2B22;
    }

    .form-one-field,
    .form-one-textarea {
      flex: 1;
      border: none;
      outline: none;
      font-weight: 700;
      font-size: 20px;
      line-height: 24px;
      color: #A7A7A7;
    }
.form-one-textarea::placeholder {
  color: #A7A7A7;
  
}
.form-one-textarea {
      height: 70px;
    }

.form-one-file-name {
  margin-top: 8px;
  font-size: 16px;
  color: #333;
  word-break: break-all;
}
    .form-one-submit {
      padding: 10px;
      height: 61px;
      background: #DC2B22;
      box-shadow: 4px 4px 7px rgba(220, 43, 34, 0.15);
      border-radius: 12px;
      border: none;
      cursor: pointer;
	  font-weight: 700;
      font-size: 20px;
      line-height: 24px;
      text-align: center;
      color: #FFFFFF;
	  width: 100%;
    }

.sms-validation-step-verification .wpcf7-form .col-lg-4:not(.form__submit):not(:has(input[name='acceptance-97'])),
.sms-validation-step-verification .wpcf7-form .col-12.form__policy {
    opacity: 0;
    pointer-events: none; 
    position: absolute; 
}


.sms-code-input-container {
    display: none; 
    margin-top: 15px;
    width: 100%;
}

.sms-validation-step-verification .sms-code-input-container {
    display: block; 
}

.sms-code-input {
   width: 100%;
    padding: 10px;
    box-sizing: border-box;
    margin-bottom: 10px;
    width: 100%;
    height: 55px;
    background-color: #fff;
    border: 1px solid #d5d5d5;
    border-radius: 7px;
    font-size: 18px;
    font-weight: 500;
    color: #838383;
}

.sms-code-input.error {
    border-color: red;
}

.sms-code-input.success {
    border-color: green;
}

.sms-code-submit-btn {
	padding: 10px;
    height: 61px;
    background: #DC2B22;
    box-shadow: 4px 4px 7px rgb(220 43 34 / 15%);
    border-radius: 12px;
    border: none;
    cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    color: #FFFFFF;
    width: 100%;
	
}

.sms-message {
    margin-top: 10px;
    padding: 10px;
    border-radius: 4px;
    display: none; 
}

.sms-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
	z-index: 999;
    position: absolute;
    bottom: 25px;
    right: 15px;
}

.sms-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    z-index: 999;
    position: absolute;
    bottom: 25px;
    right: 15px;
}

.sms-message.info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

#sms-form {
position:relative;	
}

#sms-form.sms-validation-step-verification > .form-all {
    display: none;
}

#sms_code_input_container_wrapper {
width: 300px;
    position: absolute;
    top: 50px;
    right: 15%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.form__policy .policy {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: left;
}

.form__policy .policy .checkbox {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 10px;
    position: relative;
    border: 1px solid #4d4d4d;
    width: 20px;
    height: 20px;
    border-radius: 3px;
}

.form__policy .policy .checkbox input {
    position: absolute;
    opacity: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: block;
    z-index: 1000;
}

.form__policy .policy .checkbox input:checked ~ .wpcf7-list-item-label {
    background-color: #fff;
}
.form__policy .policy .checkbox span.wpcf7-list-item-label {
    position: absolute;
    top: 0;
    left: 0;
    width: 0 !important;
    color: transparent;
}

.form__policy .policy .checkbox input:checked ~ .wpcf7-list-item-label:after {
    display: block;
}
.form__policy .policy .checkbox span.wpcf7-list-item-label:after {
    content: "";
    position: absolute;
    display: none;
    left: 5px;
    top: 2px;
    margin: auto;
    width: 7px;
    height: 9px;
    border: solid #d11a27;
    border-width: 0 1.5px 1.5px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#whatsapp-button {
    position: fixed;
    z-index: 200;
    bottom: 30px;
    right: 20px;
}
#whatsapp-button:before, #whatsapp-button:after {
    content: " ";
    display: block;
    position: absolute;
    border: 50%;
    border: 1px solid #25d366;
    left: -20px;
    right: -20px;
    top: -20px;
    bottom: -20px;
    border-radius: 50%;
    -webkit-animation: animate 1.5s linear infinite;
    animation: animate 1.5s linear infinite;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

#whatsapp-button a {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-decoration: none;
    transition: 0.25s all;
    position: relative;
    display: block;
    z-index: 2;
}
#whatsapp-button a:hover {
    opacity: 0.8;
}


#whatsapp-button a img{
    width: 55px;
    height: 55px;
	border-radius: 50%;
}

#whatsapp-button img {
    transition: opacity 0.3s ease;
}

.nopk {
	 display: none;
}
/*#whatsapp-button:hover img {
    content: url('/wp-content/uploads/wa2.svg');
}
*/

@-webkit-keyframes animate {
    0% {
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .sms-code-input-container {
        width: 100%;
    }
	
#sms_code_input_container_wrapper {
width: 100%;	
}
#whatsapp-button {
    bottom: 100px;
}

}

    /* === Мобильная версия (max-width: 768px) === */
    @media (max-width: 768px) {
		
	.footer-time.desk-view-none.mob-view-block {
	display:none;		
	}
	.footer-phone {
    font-size: 17px;
	}	
      .form-one-container {
        width: 100%;
        height: auto;
        padding: 20px;
        min-height: 600px;
      }

      .form-one-bg,
      .form-one-car {
        display: none;
      }

      .form-one-headline {
        position: static;
        width: 100%;
        margin-bottom: 24px;
        font-size: 20px;
        line-height: 26px;
        text-align: center;
      }

      .form-one-fields {
        position: static;
        width: 100%;
        gap: 16px;
        background: #fff;
        padding: 24px;
        border-radius: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
      }

      .form-one-input-row,
      .form-one-upload-row {
        height: 52px;
        padding: 12px 12px 12px 16px;
      }

      .form-one-textarea-row {
        height: auto;
        padding: 14px 12px 12px 16px;
      }

      .form-one-label {
        width: auto;
        font-size: 16px;
        line-height: 20px;
        text-align: left;
        margin-right: 12px;
      }

      .form-one-label-comment {
        width: auto;
      }

      .form-one-label-upload {
        width: auto;
        font-size: 16px;
        line-height: 20px;
      }

      .form-one-field,
      .form-one-textarea {
        font-size: 16px;
        line-height: 20px;
      }

      .form-one-textarea {
        min-height: 80px;
      }

      .form-one-submit {
        width: 100%;
        height: 52px;
        padding: 0;
      }

      .form-one-submit-text {
        font-size: 18px;
        line-height: 22px;
        width: auto;
      }

      .form-one-icon,
      .form-one-upload-icon {
        display: none;
      }
 #sms_code_input_container_wrapper {
    right: 0;
   
}
.nomob {
	 display: none;
}

.nopk {
	 display: block;
}

    }
	
	
	