/*
Theme Name: ArendaMiniEkskavatora
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

:root {
  --black: #323232;
  --white: #FFFFFF;
  --accente: #229D50;
  --accente_hover: #dba92a;
  --grey: #F3F3F3;
  --grey_dark: #E9E9E9;
  --red: #e52222;
  --yellow: #E7C241;
  --green: #46BA23;
  --green_light: #58DA30;
}

html {
	margin: 0%;
	padding: 0%;
	background: var(--white);
}
body {
	position: relative;
    margin: 0%;
    padding: 0%;
    line-height: 125%;
    font-size: 15px;
    font-family: "Montserrat", "Tahoma", "Verdana", sans-serif;
    color: var(--text);
	font-weight: 500;
    overflow-x: hidden;
}
body:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #25D366;
    background: linear-gradient(90deg,rgba(37, 211, 102, 1) 0%, rgba(219, 169, 42, 1) 68%, rgba(188, 131, 233, 1) 100%);
    z-index: 2;
}
body:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: #25D366;
    background: linear-gradient(90deg,rgba(37, 211, 102, 1) 0%, rgba(219, 169, 42, 1) 68%, rgba(188, 131, 233, 1) 100%);
    z-index: 2;
}

.seo-landing-page article {
    max-width: 1180px;
    margin: 0 auto;
}
.seo-hero,
.seo-block,
.seo-grid,
.seo-faq,
.seo-links,
.seo-bottom-cta {
    box-sizing: border-box;
}
.seo-hero {
    margin: 20px 0 30px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(34,157,80,.12), rgba(231,194,65,.18));
}
.seo-hero p {
    font-size: 18px;
    line-height: 160%;
}
.seo-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}
.seo-actions a,
.seo-actions input,
.seo-cta-box input {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 24px;
    border: 0;
    border-radius: 999px;
    background: var(--accente);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
}
.seo-actions a.secondary {
    background: var(--yellow);
    color: var(--black);
}
.seo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
}
.seo-card,
.seo-price-card,
.seo-cta-box {
    padding: 24px;
    border-radius: 20px;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.seo-card h2,
.seo-card h3,
.seo-price-card h3 {
    margin-top: 0;
}
.seo-price-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.seo-price-card strong {
    display: block;
    margin-top: 10px;
    color: var(--accente);
    font-size: 22px;
}
.seo-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
}
.seo-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.seo-table th,
.seo-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--grey_dark);
    text-align: left;
    vertical-align: top;
}
.seo-table th {
    background: var(--grey);
    font-weight: 800;
}
.seo-table tr:last-child td {
    border-bottom: 0;
}
.seo-note {
    padding: 18px 20px;
    border-left: 4px solid var(--accente);
    border-radius: 14px;
    background: rgba(34,157,80,.08);
}
.seo-photo-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 24px 0;
}
.seo-photo-card {
    overflow: hidden;
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 12px 40px rgba(0,0,0,.08);
}
.seo-photo-card img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.seo-photo-card figcaption {
    padding: 14px 16px;
    font-size: 14px;
    line-height: 145%;
}
.seo-faq details {
    margin: 12px 0;
    padding: 18px 20px;
    border-radius: 16px;
    background: var(--grey);
}
.seo-faq summary {
    cursor: pointer;
    font-weight: 700;
}
.seo-links ul {
    columns: 2;
}
.seo-bottom-cta {
    padding: 30px 0 55px;
}
.seo-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    background: var(--grey);
}
@media (max-width: 900px) {
    .seo-grid,
    .seo-price-list,
    .seo-photo-grid {
        grid-template-columns: 1fr;
    }
    .seo-cta-box {
        display: block;
    }
    .seo-links ul {
        columns: 1;
    }
    .seo-hero {
        padding: 22px;
    }
}
a {
	color: var(--text);
}
a:hover {
    color: var(--red);
    text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 {
    font-family: "Montserrat", "Tahoma", "Verdana", sans-serif;
	font-weight: normal;
    letter-spacing: 0px;
	position: relative;
	font-weight: 600;
    font-style: normal;
    line-height: normal;
    line-height: 120%;
}
h1 {
	font-size: 63px;
    text-align: center;
}
h2 {
	font-size: 45px;
    text-align: center;
}
h3 {
	font-size: 35px;
}
h4 {
    font-size: 27px;
}
h5, h6 {
    font-size: 21px;
}
img {
	max-width: 100%;
	height: auto;
}
input, select, textarea {
	outline: none;
}
.center {
    margin: 0 auto;
    width: 96%;
    max-width: 1400px;
    box-sizing: border-box;
    position: relative;
}
.center:after {
	content: '';
	clear: both;
	display: block;
}
.clear {
	position: relative;
	clear: both;
}
s {
    color: #EE2222;
}
section {
    padding: 20px 0;
}


/* button */
button, input[type="submit"], input[type="button"] {
    background: var(--accente);
    border: none;
    text-transform: uppercase;
    font-size: 16px;
    color: var(--white);
    padding: 18px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    transition: .5s;
    text-align: center;
    border-bottom: 2px solid var(--accente_hover);
}
button:hover, input[type="submit"]:hover, input[type="button"]:hover {
    background: var(--accente_hover);
    box-shadow: 4px 4px 8px 0px rgba(34, 60, 80, 0.2);
    border-bottom: 2px solid #fbca4e;
}
select,
input[type="text"],
input[type="email"],
input[type="tel"] {
    padding: 15px 20px;
    font-size: 19px;
    border: 2px solid #DADADA;
    border-radius: 12px;
	transition: .5s;
}
select:hover,
input[type="text"]:hover,
input[type="email"]:hover,
input[type="tel"]:hover {
    border: 2px solid #C8C8C8;
}


/* center */
.center.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.center.content_none:after {
	content: none;
}
.center.flex.content_none.top {
    align-items: normal;
}



/*
	header
*/
header {
    height: auto;
}
header {
    background-color: var(--black);
    color: var(--white);
    position: relative;
    background-size: cover;
    background-position: center center;
    -moz-transition: background-image 0.8s ease-in-out;
    -webkit-transition: background-image 0.8s ease-in-out;
    -o-transition: background-image 0.8s ease-in-out;
}
body.home header {
    height: 100vh;
}
header:before {
    content: '';
    background: #000;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    opacity: 0.65;
    transition: 2s;
    z-index: 1;
}
header:after {
    content: '';
    -webkit-box-shadow: 0px 0px 52px 20px #1D1D1D inset;
    -moz-box-shadow: 0px 0px 52px 20px rgba(0, 0, 0, 0.2) inset;
    box-shadow: 0px 0px 92px 40px hsl(0deg 0% 11.37% / 63%) inset;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 0;
    opacity: 1;
}
header > * {
	position: relative;
	z-index: 1;
}
header a {
    text-decoration: none;
}
header a:hover {
    text-decoration: underline;
	color: var(--accente_hover);
}
header span.arrow {
	display: none;
}	
header ul.pag {
	display: none;
}

/*
	nav
*/
nav.main {
}
nav.main > .center {
    padding: 30px 0;
    border-bottom: 2px solid rgb(255 255 255 / 15%);
}
ul.main.flex.flex_center {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style-type: none;
    gap: 4%;
    width: 100%;
    text-transform: uppercase;
}
ul.main.flex.flex_center a {
	text-decoration: none;
}
ul.main.flex.flex_center a:hover {
	text-decoration: underline;
}

/*
	top
*/
.top .address {
    width: 17%;
	position: relative;
	padding-left: 35px;
}
.top .address:before {
    content: url('images/location.svg');
    position: absolute;
    left: 0;
}
a.tel {
    font-size: 22px;
    text-decoration: none;
	position: relative;
}
a.tel:before {
    opacity: 1;
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: var(--green_light);
    position: absolute;
    display: block;
    left: -20px;
    top: -3px;
    transition: .5s;
}
body.online a.tel:before {
    opacity: 0;
}
.top .phone_block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.phone_block .time {
    font-size: 12px;
}
a.mess.whatsapp {
    content: url('images/whatsapp.svg');
}
a.mess.telegram {
    content: url('images/telegram.svg');
}

/*
	title
*/
section.title {
    text-align: center;
    padding: 20px 0 100px;
}
section.title h2 {
    color: #D7D7D7;
    font-size: 32px;
    max-width: 100%;
    width: 920px;
    margin-left: auto;
    margin-right: auto;
}
input.dinamic {
    position: fixed;
    bottom: 0;
    left: 3%;
    border-radius: 4px 4px 0 0;
    z-index: 3;
}
input.yellow {
	background-color: var(--yellow);
	color: var(--black);
	border: none;
}
input.yellow:hover {
    background-color: var(--accente);
    color: var(--white);
    border: none;
}


/*
	article
*/
article {
    font-size: 18px;
    line-height: 140%;
}
article.middle {
    text-align: center;
    width: 900px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}


/*
	services
*/
section.services {
    position: relative;
}
section.services:before {
    content: '';
    background-color: var(--black);
    bottom: 0;
    left: 0;
    right: 0;
    width: 98%;
    max-width: 1600px;
    border-radius: 4px;
    height: 30%;
    position: absolute;
    margin: 0 auto;
}
.services_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-flow: row dense;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    margin: 40px auto;
}
.services_list .one {
    position: relative;
    background-color: var(--black);
    color: var(--white);
    height: 350px;
    border-radius: 4px;
    overflow: hidden;
}
.services_list .one:before {
    opacity: 0.7;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0,0,0);
    background: linear-gradient(360deg, rgb(0 0 0 / 94%) 0%, rgba(0, 0, 0, 0) 64%);
    transition: 1s;
    z-index: 1;
}
.services_list .one:hover:before {
    opacity: 1;
}
.services_list .one img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    object-fit: cover;
    height: 100%;
    z-index: 0;
    width: 100%;
}
.services_list .one .content {
    position: absolute;

}
.services_list .one .content {
    position: absolute;
    z-index: 1;
    padding: 0 30px;
    box-sizing: border-box;
    top: 110px;
}
.services_list .one .content h3 {
    font-size: 24px;
    margin: 20px 0 10px;
}
.services_list .one input[type="button"] {
    z-index: 1;
    position: absolute;
    bottom: 30px;
    left: 30px;
}
article.middle.bottom {
    color: var(--white);
    margin-bottom: 40px;
}
.phone_block.middle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}


/*
	about
*/
section.about {
    padding: 40px 0 20px;
}


/*
	white
*/
.white {
    position: relative;
}
.white:before {
    content: '';
    background-color: var(--white);
    top: -30px;
    left: 0;
    right: 0;
    width: 98%;
    max-width: 1600px;
    border-radius: 4px;
    height: 110%;
    position: absolute;
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
    border-radius: 4px;
    z-index: 0;
    margin: 0 auto;
}
section.price .white {
    margin-top: 60px;
}
.white > * {
	position: relative;
	z-index: 1;
}
table {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    border-spacing: 0;
}
table tr td {
    padding: 17px 20px;
    min-width: 200px;
    vertical-align: top;
    border-bottom: 1px solid #ddd;
    border-right: 2px solid #ddd;
}
table tr:fist-child td {
	padding-top: 0;
}
table tr td img {
    float: left;
    max-width: 100px;
    border-radius: 4px;
    margin: 0 15px 0 0;
}
table tr td:first-child {
	padding-left: 0;
}
table tr td:last-child {
	padding-right: 0;
	border-right: none;
}
table tr:last-child td {
	border-bottom: none;
}

/*
	about
*/
section h2 {
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
article img.alignright {
    float: right;
    max-width: 55%;
    margin: 0 0 10px 40px;
    border-radius: 4px;
    background-color: var(--black);
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
}
article ul {
    display: flow-root;
    list-style-type: none;
    padding: 0;
}
article ul li {
    margin: 0 0 16px 0;
    position: relative;
    padding-left: 40px;
}
article ul li:before {
    content: url('images/list.svg');
    position: absolute;
    left: 0;
}

/*
	video
*/
section.video {
	position: relative;
	padding: 20px 0 60px;
}
section.video:before {
    content: '';
    background-color: var(--yellow);
    bottom: 0;
    left: 0;
    right: 0;
    width: 98%;
    max-width: 1600px;
    border-radius: 4px;
    height: 50%;
    position: absolute;
    margin: 0 auto;
}
section.video .center {
    border-top: 1px dashed #ddd;
    padding-top: 30px;
}
section.video iframe {
    background-color: var(--black);
    border-radius: 4px;
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border: none;
    height: 530px;
    box-shadow: 0px 0px 8px 3px rgb(94 94 95 / 39%);
}
section.video .title {
    text-align: center;
    font-size: 23px;
    line-height: 140%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 0 20px;
}
section.video .title span {
    color: #898989;
}


.photos_gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-auto-flow: row dense;
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin: 30px auto;
}
.photos_gallery a {
    background-color: var(--black);
    display: block;
    overflow: hidden;
}
.photos_gallery a img {
    display: block;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/*
	contact_bottom
*/
section.contact_bottom .content {
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
    border-radius: 4px;
    display: flex;
    align-items: normal;
    justify-content: space-between;
    overflow: hidden;
    border-bottom: 2px solid var(--yellow);
}
section.contact_bottom address {
    width: 35%;
    text-align: left;
}
address {
    font-style: normal;
    padding: 30px 40px;
    box-sizing: border-box;
}
address h2 {
    text-align: left;
    margin: 0 0 20px 0;
}
section.contact_bottom iframe {
    width: 65%;
    border: none;
    background-color: var(--black);
}
address > div {
	padding: 11px 0;
}
address > div span {
    display: block;
    font-size: 16px;
    margin: 0 0 7px 0;
}
address input[type="button"] {
    margin: 10px 0;
}
address .geo {
    font-size: 22px;
    line-height: 125%;
}
address a.tel {
    font-size: 32px;
    display: table;
    text-decoration: none;
    margin: 15px 0 0;
}
address .mess {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: left;
    margin: 15px 0 0;
}
address .mess a.mess {
    margin: 0;
}


/*
	footer
*/
footer {
    background-color: var(--black);
    color: var(--white);
    padding: 30px 0;
    font-size: 13px;
    color: #979797;
}
footer a:hover {
	color: var(--white);
	text-decoration: none;
}
body.home footer {
    padding: 115px 0 30px;
    margin-top: -100px;
}



/*
	callback_block
*/
form .visibility {
	display: none;
}
section.callback_block {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    right: 0;
    bottom: 0;
    height: 100%;
    z-index: 5;
    background-color: rgb(0 0 0 / 82%);
    max-width: 100%;
    min-width: 100%;
    color: #323232;
    animation: callback .6s forwards;
}
section.callback_block.active {
	display: block;
}
section.callback_block .content {
    background: var(--white);
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    display: block;
    top: 20%;
    margin: 0 auto;
    width: 420px;
    box-sizing: border-box;
    box-shadow: 0 0 32px 12px rgb(0 0 0 / 44%);
    border-radius: 4px;
    padding: 80px 60px;
    border-bottom: 3px solid var(--yellow);
}
section.pop_up .title {
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    margin: 10px 0 20px;
}
section.pop_up .politic {
    padding: 10px 0;
    font-size: 13px;
}
section.pop_up .politic input[type="checkbox"] {
    width: 20px;
    height: 20px;
    float: left;
    margin: 0 10px 0 0;
}
section.callback_block .content input[type="text"],
section.callback_block .content input[type="email"],
section.callback_block .content input[type="tel"] {
    width: 100%;
    box-sizing: border-box;
    margin: 7px 0;
    font-size: 19px;
    padding: 14px 25px;
    box-sizing: border-box;
    border-radius: 6px;
    border: 2px solid #c3c3c3;
    line-height: 125%;
    font-family: "Montserrat", "Tahoma", "Verdana", sans-serif;
}
section.callback_block .content input[type="submit"] {
    width: 100%;
    box-sizing: border-box;
    margin: 5px 0;
}
form input.error {
    border: 2px solid #efa3a3;
}
form input.good {
	
}
form .icon-check.complete {
    right: 20px;
    top: 45%;
}
span.close {
    content: url('images/close.svg');
    background-color: var(--accente);
    border-radius: 100%;
    padding: 15px;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    position: absolute;
    right: -12px;
    top: -12px;
	cursor: pointer;
	transition: .5s;
}
span.close:hover {
	background-color: var(--accente_hover);
}
form a.politic {
    font-size: 13px;
    display: table;
    margin: 20px 0 10px;
}
form a.politic:hover {
	color: var(--red);
}

/*
	answer service back
*/
.notification.notification_accept {
    position: absolute;
    background: var(--green);
    color: var(--white);
    padding: 20px;
    box-sizing: border-box;
    border-radius: 12px;
    z-index: 2;
    width: 86%;
    text-align: center;
    left: 0;
    right: 0;
    display: block;
    margin: 0 auto;
    top: 33%;
}
.notification.notification_accept strong {
    display: block;
    margin: 5px 0;
}
section.pop_up form.ready {
    opacity: 0.4;
}



/* popup__toggle */
#popup__toggle {
	bottom: 8%;
    right: 10px;
    position: fixed;
    z-index: 9;
	cursor: pointer;
	transition: 0.5s;
}
#popup__toggle.dinamic {
	bottom: 10%;
	transition: 0.5s;
}
.img-circle{
	background-color: var(--green);
	box-sizing: ontent-box;
	-webkit-box-sizing: content-box;
	transition: 1s;
}
#popup__toggle:hover .img-circle {
	background-color: var(--green_light);
}
.circlephone {
	box-sizing:content-box;
	-webkit-box-sizing:content-box;
	border: 2px solid var(--green);
	width:150px;
	height:150px;
	bottom:-25px;
	right:10px;
	position:absolute;
	-webkit-border-radius:100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	opacity: .5;
	-webkit-animation: circle-anim 2.4s infinite ease-in-out !important;
	-moz-animation: circle-anim 2.4s infinite ease-in-out !important;
	-ms-animation: circle-anim 2.4s infinite ease-in-out !important;
	-o-animation: circle-anim 2.4s infinite ease-in-out !important;
	animation: circle-anim 2.4s infinite ease-in-out !important;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all 0.5s;
}
#popup__toggle:hover .circlephone {
	border: 2px solid var(--green_light);
}
.circle-fill {
	box-sizing:content-box;
	-webkit-box-sizing:content-box;
	background-color: var(--green);
	width:100px;
	height:100px;
	bottom:0px;
	right:35px;
	position:absolute;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid transparent;
	-webkit-animation: circle-fill-anim 2.3s infinite ease-in-out;
	-moz-animation: circle-fill-anim 2.3s infinite ease-in-out;
	-ms-animation: circle-fill-anim 2.3s infinite ease-in-out;
	-o-animation: circle-fill-anim 2.3s infinite ease-in-out;
	animation: circle-fill-anim 2.3s infinite ease-in-out;
	-webkit-transition: all .5s;
	-moz-transition: all .5s;
	-o-transition: all .5s;
	transition: all 0.5s;
}
.img-circle {
	box-sizing:content-box;
	-webkit-box-sizing:content-box;
	width:72px;
	height:72px;
	bottom: 14px;
	right: 49px;
	position:absolute;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	border: 2px solid transparent;
	opacity: 1;
	transition: 0.5s;
}
.img-circleblock {
	box-sizing: content-box;
	-webkit-box-sizing: content-box;
	width: 72px;
	height: 72px;
	background-image: url(images/callme.svg);
	background-position: center center;
	background-repeat: no-repeat;
	animation-name: tossing;
	-webkit-animation-name: tossing;
	animation-duration: 1.5s;
	-webkit-animation-duration: 1.5s;
	animation-iteration-count: infinite;
	-webkit-animation-iteration-count: infinite;
	transition: 0.5s;
}
.img-circle:hover {
	opacity: 1;
}
@keyframes pulse {0% {transform: scale(0.9);opacity: 1;}
  50% {transform: scale(1); opacity: 1; }   
  100% {transform: scale(0.9);opacity: 1;}}
 @-webkit-keyframes pulse {0% {-webkit-transform: scale(0.95);opacity: 1;}
  50% {-webkit-transform: scale(1);opacity: 1;}   
  100% {-webkit-transform: scale(0.95);opacity: 1;}}
@keyframes tossing {
  0% {transform: rotate(-8deg);}
  50% {transform: rotate(8deg);}
  100% {transform: rotate(-8deg);}}
@-webkit-keyframes tossing {
  0% {-webkit-transform: rotate(-8deg);}
  50% {-webkit-transform: rotate(8deg);}
  100% {-webkit-transform: rotate(-8deg);}}
@-moz-keyframes circle-anim {
  0% {-moz-transform: rotate(0deg) scale(0.5) skew(1deg);opacity: .1;-moz-opacity: .1;-webkit-opacity: .1;-o-opacity: .1;}
  30% {-moz-transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .5;-moz-opacity: .5;-webkit-opacity: .5;-o-opacity: .5;}
  100% {-moz-transform: rotate(0deg) scale(1) skew(1deg);opacity: .6;-moz-opacity: .6;-webkit-opacity: .6;-o-opacity: .1;}}
@-webkit-keyframes circle-anim {
  0% {-webkit-transform: rotate(0deg) scale(0.5) skew(1deg);-webkit-opacity: .1;}
  30% {-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);-webkit-opacity: .5;}
  100% {-webkit-transform: rotate(0deg) scale(1) skew(1deg);-webkit-opacity: .1;}}
@-o-keyframes circle-anim {
  0% {-o-transform: rotate(0deg) kscale(0.5) skew(1deg);-o-opacity: .1;}
  30% {-o-transform: rotate(0deg) scale(0.7) skew(1deg);-o-opacity: .5;}
  100% {-o-transform: rotate(0deg) scale(1) skew(1deg);-o-opacity: .1;}}
@keyframes circle-anim {
  0% {transform: rotate(0deg) scale(0.5) skew(1deg);opacity: .1;}
  30% {transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .5;}
  100% {transform: rotate(0deg) scale(1) skew(1deg);
opacity: .1;}}
@-moz-keyframes circle-fill-anim {
  0% {-moz-transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;}
  50% {-moz-transform: rotate(0deg) -moz-scale(1) skew(1deg);opacity: .2;}
  100% {-moz-transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;}}
@-webkit-keyframes circle-fill-anim {
  0% {-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;  }
  50% {-webkit-transform: rotate(0deg) scale(1) skew(1deg);opacity: .2;  }
  100% {-webkit-transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;}}
@-o-keyframes circle-fill-anim {
  0% {-o-transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;}
  50% {-o-transform: rotate(0deg) scale(1) skew(1deg);opacity: .2;}
  100% {-o-transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;}}
@keyframes circle-fill-anim {
  0% {transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;}
  50% {transform: rotate(0deg) scale(1) skew(1deg);opacity: .2;}
  100% {transform: rotate(0deg) scale(0.7) skew(1deg);opacity: .2;}
}

/*
	404
*/
section.error404 {
    text-align: center;
    padding: 20px 0 40px;
}
section.error404 h1 {
    margin: 20px 0 0;
}


@media(max-width: 1600px) {



}

@media(max-width: 1100px) {

	
}

@media(max-width: 900px) {
	html.main {
		margin-top: 0 !important;
		overflow-x: hidden;
	}
	html #wpadminbar {
		display: none !important;
		height: 0px !important;
		max-height: 0px !important;
	}	
	
	.center {
		width: 90%;
		min-width: 90%;
		max-width: 90%;
	}
	h1 {
		font-size: 31px;
		font-style: normal;
		font-weight: 600;
		line-height: normal;
		text-align: center;
	}
	h2 {
		font-size: 31px;
		line-height: 120%;
		position: relative;
		font-weight: 600;
		letter-spacing: 0;
	}
	p.h3, h3 {
		font-size: 18px;
		line-height: 16pt;
		font-weight: 600;
	}
	h4, h5, h6 {
		font-size: 16px;
		line-height: 16pt;
	}
	span.bmenu {
		display: block;
	}


	html {
		background: #fff;
	}

	#popup__toggle {
		bottom: 8%;
		right: 3px;
		position: fixed;
		z-index: 15;
	}
	.circlephone {
		max-width: 70px;
		max-height: 70px;
	}
	.circle-fill {
		max-width: 45px;
		max-height: 45px;
		bottom: -12px;
		right: 23px;
	}
	.img-circle {
		width: 25px;
		height: 25px;
		right: 33px;
		top: -27px;
	}
	.img-circleblock {
		width: 20px;
		height: 20px;
		right: 3px;
		top: 2px;
		position: absolute;
		background-size: 65%;
	}
	
	/*
		.button
	*/	
	button, input[type="submit"], input[type="button"] {
		font-size: 14px;
		font-weight: 600;
	}	
	section {
		padding: 5px 0;
	}

	/*
		nav
	*/
	nav.main {
		display: none;
	}

	/*
		top
	*/
	section.top {
		border-bottom: 2px solid rgb(255 255 255 / 18%);
		padding: 25px 0;
	}
	.top .center.flex {
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.top img.logo {
		content: url('images/logo_mobile.svg');
	}
	.top input[type="button"] {
		display: none;
	}
	.top .phone_block .time {
		display: none;
	}
	.top .address {
		display: none;
	}
	.top a.email {
		display: none;
	}	
	.top .phone_block {
		gap: 30px;
	}
	a.tel {
		font-size: 20px;
	}
	section.title h2 {
		font-size: 17px;
	}
	section.title h2 br {
		display: contents;
	}
	section.title input[type="button"] {
		margin: 15px 0 0;
	}
	input.dinamic {
		font-size: 12px;
		padding: 16px 25px;
	}
header span.arrow {
    position: absolute;
    bottom: 90px;
    left: 0;
    right: 0;
    display: table;
    margin: 0 auto;
}	
	header span.arrow:before {
		opacity: 1;
		content: url('images/arrow.svg');
		position: absolute;
		left: 0;
		right: 0;
		top: -50px;
		margin: 0 auto;
		display: table;
		transition: 1s;
	}
	body.online header span.arrow:before {
        top: -60px;
		opacity: .8;
	}
	
		
	/*
		price
	*/	
	table tr td {
		padding: 10px 0;
		min-width: 100%;
		vertical-align: top;
        border-bottom: none;
		border-right: none;
		display: block;
	}
	table tr td:first-child {
        padding-top: 20px;
		padding-bottom: 0;
	}
	table tr td:nth-child(2) {
		padding-top: 5px;
		color: var(--red);
		font-weight: 600;
	}
	table tr td:last-child {
		border-bottom: 2px solid #ddd;
        padding-bottom: 20px;
	}
	article {
		font-size: 15px;
		line-height: 140%;
	}
	.services_list {
		display: grid;
		grid-template-columns: repeat(1, 1fr);
		grid-auto-flow: row dense;
		grid-column-gap: 0;
		grid-row-gap: 5px;
		margin: 20px auto;
	}
	.services_list .one {
		height: 250px;
		border-radius: 0;
        width: 100vw;
        margin-left: calc(-50vw + 50%);
        min-width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
	}
	.services_list .one .content {
		top: 30px;
	}
	.services_list .one .content h3 {
		font-size: 24px;
		margin: 15px 0;
		line-height: 130%;
	}
	section.services:before {
		width: 100%;
		max-width: 100%;
		border-radius: 0;
		height: 16%;
	}
	
	article.middle.bottom {
		color: var(--white);
		margin: 30px 0 40px;
	}	
	article.middle.bottom h2 {
		font-size: 25px;
	}
	.phone_block.middle a.tel {
		font-size: 25px;
		border-bottom: 2px solid var(--accente_hover);
	}
	.white:before {
		content: none;
	}
	section.price .white {
		margin-top: 0;
	}
	table tr td img {
		float: right;
		max-width: 40%;
		border-radius: 4px;
		margin: 0 0 5px 10px;
		display: block;
	}



	/*
		about
	*/
	section.about {
		padding: 1px 0 20px;
	}
	section.about input[type="button"] {
		width: 100%;
	}
	article img.alignright {
		float: none;
		max-width: 100%;
		margin: 0;
		border-radius: 4px;
	}
	.photos_gallery {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		grid-auto-flow: row dense;
		grid-column-gap: 3px;
		grid-row-gap: 3px;
		margin: 15px auto;
	}

	/*
		contact_bottom
	*/
	section.contact_bottom {
		padding: 1px 0 30px;
	}
	section.contact_bottom .content {
		display: block;
		box-shadow: none;
		border-radius: 0;
	}
	section.contact_bottom address {
		width: 100%;
		text-align: center;
		font-style: normal;
		padding: 10px 0 20px;
		box-sizing: border-box;
	}
	address h2 {
		text-align: center;
		margin: 0 0 20px 0;
	}
	address a.tel {
		font-size: 32px;
		display: table;
		text-decoration: none;
		margin: 15px auto 0;
	}
	address .mess {
		align-items: center;
		justify-content: center;
	}	
	address .geo {
		font-size: 18px;
		line-height: 125%;
	}
	section.contact_bottom iframe {
		width: 100%;
		border: none;
		background-color: var(--black);
		height: 250px;
	}

	/*
		footer
	*/
	body.home footer {
		padding: 100px 0 70px;
		margin-top: -100px;
	}
	footer .center.flex.content_none {
		display: block;
	}
	footer .center.flex.content_none > * {
		padding: 2px 0;
		display: block;
	}
	footer .center.flex.content_none > a.autor {
		display: none;
	}

	/*
		callback_block
	*/
	section.callback_block .content {
		top: 0;
		bottom: 0;
		margin: 0 auto;
		width: 100%;
		box-sizing: border-box;
		box-shadow: none;
		border-radius: 0;
		padding: 25% 15% 0;
		border-bottom: 3px solid var(--yellow);
	}
	section.pop_up .title {
		font-size: 28px;
		margin: 10px 0 18px;
	}
	span.close {
		padding: 25px;
		width: 80px;
		height: 80px;
		right: -12px;
		top: -12px;
	}
}