/*
Theme Name: DIVA_Interior
*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


:root {
  --black: #181818;
  --black2: #21232E;
  --white: #FFFFFF;
  --yellow: #FFC107;
  --yellow_hover: #FFD147;
  --accente: #EA4C13;
  --accente_hover: #FF9235;
  --light_blue: #75D7F2;
  --blue: #3F4A75;
  --blue_light: #616C9A;
  --red: #C80A0A;
  --green: #23BC2D;
  --grey: #CDCFD1;
}

html {
	margin: 0%;
	padding: 0%;
    color: var(--black);
	background: var(--white);
}
body {
    position: relative;
    margin: 0%;
    padding: 0%;
    line-height: 135%;
    font-size: 16px;
    font-family: "Inter", "Calibri", "Verdana", sans-serif;
    font-weight: 500;
    overflow-x: hidden;
}
a {
	color: var(--text);
}
a:hover {
    color: var(--accente);
    text-decoration: underline;
}
section.pop_up .title,
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
    letter-spacing: 0px;
	position: relative;
	font-weight: 700;
    font-style: normal;
    line-height: normal;
    line-height: 120%;
}
h1 {
    font-size: 77px;
}
p.h2, h2 {
	font-size: 70px;
}
section.pop_up .title {
	font-size: 38px;
}
h3 {
	font-size: 35px;
}
h4 {
    font-size: 27px;
    margin: 20px 0;
}
h5, h6 {
    font-size: 21px;
}
img {
	max-width: 100%;
	height: auto;
}
input, select, textarea {
	outline: none;
}


/* center */
.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.center.content_none:after,
.content_none:after {
	content: none;
}
.flex.content_none.top {
    align-items: normal;
}
.center {
    margin: 0 auto;
    width: 92%;
    max-width: 1450px;
    box-sizing: border-box;
    position: relative;
}
.center:after {
	content: '';
	clear: both;
	display: block;
}
.clear {
	position: relative;
	clear: both;
}


/* others */
s {
    color: #EE2222;
}
section {
    padding: 15px 0;
    position: relative;
}
article {
    font-size: 21px;
    line-height: 135%;
}
article a {
	color: var(--red);
}
article a:hover {
	color: var(--accente_hover);
	text-decoration: none;
}


/*
	elements
*/
a.button,
input[type="submit"],
input[type="button"] {
    background-color: var(--yellow);
    color: var(--black);
    border: none;
    font-size: 14px;
    font-weight: 600;
    padding: 18px 30px;
    border-radius: 6px;
    cursor: pointer;
    transition: 1s;
    box-shadow: 0px 5px 12px 2px rgb(33 33 33 / 15%);
}
a.button:hover,
input[type="submit"]:hover,
input[type="button"]:hover {
    background-color: var(--yellow_hover);
    box-shadow: 0px 5px 12px 2px rgb(33 33 33 / 25%);
	color: var(--black);
}


/*
	header
*/
header {
	position: relative;
    background-color: var(--black);
    color: var(--white);
    height: 100%;
    min-height: auto;
    /*
	background-image: url('images/header.webp');
    */
	background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}
header:after {
    content: '';
    position: absolute;
    background-color: #1c1c1c;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0.6;
}
header:before {
    content: '';
    position: absolute;
    background: linear-gradient(356deg, rgb(51 51 51 / 0%), rgb(0 0 0));
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    opacity: 0.7;
}
header > * {
	position: relative;
	z-index: 1;
}
header a {
    color: var(--white);
	text-decoration: none;
}
header a:hover {
    color: var(--accente);
	text-decoration: underline;
}


/*
	warning
*/
section.warning {
    background-color: var(--blue);
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}
section.warning span {
    background-color: var(--blue_light);
    padding: 6px 13px;
    border-radius: 2px;
    margin-left: 20px;
    cursor: pointer;
}
section.warning span:hover {
    background-color: #556ABC;
}

/*
	top
*/
section.top {
    padding: 25px 0;
    background-color: var(--black);
}
section.top a {
	text-decoration: none;
}
section.top a:hover {
	color: var(--yellow);
	text-decoration: underline;
}
.top .delivery {
    position: relative;
    display: flex;
    gap: 20px;
    max-width: 200px;
    font-size: 13px;
    line-height: 125%;
    min-width: 300px;
    cursor: pointer;
}
.top .delivery:hover {
	color: var(--yellow);
}
.top .delivery:before {
    content: url('images/location.svg');
    opacity: 0.5;
}
.top a.email {
    font-size: 12px;
}
.top .phone {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
}
.top .phone a.tel {
    font-size: 22px;
}
.top .mess {
    display: flex;
    gap: 0px;
}
.top .mess a.mess {
    left: -10px;
    position: relative;
    background-color: var(--black);
    border-radius: 100%;
    padding: 5px;
}
.top .mess a.mess:first-child {
	left: 0;
	border-radius: 0;
    background-color: transparent;
}
.top .mess a.mess:last-child {
    left: -20px;
}
a.mess.viber {
    content: url('images/viber.svg');
}
a.mess.whatsapp {
    content: url('images/whatsapp.svg');
}
a.mess.telegram {
    content: url('images/telegram.svg');
}


/*
	nav
*/
nav.main ul {
    justify-content: center;
    gap: 8%;
    margin: 30px 0 0;
    list-style-type: none;
    padding: 0;
    text-align: center;
    border-bottom: 1px solid rgb(255 255 255 / 20%);
    padding-bottom: 25px;
}

/*
	title
*/
section.title {
    padding: 15px 0 70px;
}
section.title .content {
    max-width: 800px;
}
section.title .content h1 span {
	color: var(--yellow);
}
section.title article {
    font-size: 24px;
}
section.title article ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
section.title article li {
    position: relative;
    margin: 0 0 12px 0;
    display: flex;
    gap: 20px;
    align-items: center;
}
section.title article li a {
    border-bottom: 3px solid var(--yellow);
	text-decoration: none;
}
section.title article li:before {
	content: '+';
}
section.title article li a:hover {
	color: var(--yellow);
}
section.title article li:hover:before {
	color: var(--yellow);
}

/*
	triggers
*/
section.triggers {
    position: relative;
    padding: 25px 0;
    background-color: var(--yellow);
    color: var(--black);
    text-transform: uppercase;
    font-weight: 600;
    overflow: hidden;
    pointer-events: none;
}
.regular.visible .slick-list {
    overflow: visible;
}
.triggers_list .one {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    font-size: 21px;
    float: left;
    margin: 0 40px 0;
    padding: 10px 0 0;
}
.triggers_list .one img {
    height: 43px;
    width: auto;
}
.triggers_list .one .image {
    float: left;
    margin: -10px 15px 0 0;
}

/*
	photos
*/
section.photos {
	
}
ul.navi {
    margin: 0 0 30px 0;
    padding: 0;
    list-style-type: none;
    border-bottom: 2px solid rgb(255 255 255 / 18%);
}
ul.navi li {
    display: inline-block;
    margin: 0 40px 20px 0;
	cursor: pointer;
}
ul.navi li:hover {
	color: var(--accente);
}
ul.navi li.active {
	color: var(--light_blue);
}
.photos_list {
    display: grid;
    grid-template-columns: repeat(5, 20%);
}
.photos_list a {
    height: 220px;
    background-color: var(--black);
}
.photos_list a img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
	step
*/
.step_list {
    gap: 200px;
    font-size: 19px;
    line-height: 123%;
    counter-reset: list 0;
}
.step_list .one {
	position: relative;
}
.step_list .one:before {
    position: absolute;
    counter-increment: list;
    content: counter(list);
    font-size: 333px;
    font-weight: 700;
    color: var(--yellow);
    top: 26%;
    left: 47%;
    z-index: 0;
}
.step_list .one:after {
    position: absolute;
    content: '+';
    color: #E84D14;
    font-size: 100px;
    font-weight: 700;
    top: 40%;
    right: -35%;
}
.step_list .one > * {
	position: relative;
	z-index: 1;
}
.step_list .one:last-child:after {
	content: none;
}
.step_list .one img {
    display: block;
    margin-bottom: 10px;
}

/*
	section.design
*/
.design_list {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    font-size: 21px;
    font-weight: 600;
}
.design_list .one {
    margin: 0 10px 0 0;
}
.design_list .one .image {
    height: 222px;
    margin-bottom: 20px;
    background-color: var(--black);
}
.design_list .one .image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}


/*
	products_list
*/
section.products {
	padding-bottom: 60px;
}
section.products:before {
	content: '';
	left: 0;
	right: 0;
	bottom: 0;
	height: 50%;
	background-color: var(--black);
	position: absolute;
	width: 100%;
}
.products_list {
    font-size: 19px;
    color: var(--white);
}
.products_list .one {
    float: left;
    width: 300px;
    margin: 0 20px 0 0;
}
.products_list .one .image {
    height: 300px;
    margin-bottom: 20px;
    background-color: var(--yellow);
}
.products_list .one .image img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    display: block;
}

/*
	plus
*/
.plus_content {
    display: flex;
    gap: 0;
    margin-bottom: 30px;
    align-items: flex-start;
    justify-content: start;
    width: 100%;
}
.plus_content > img {
    margin-left: -10%;
    width: auto;
}
.plus_content .plus_list {
    width: inherit;
}
.plus_list .one {
    padding: 20px 0;
    border-bottom: 1px solid var(--grey);
}
.plus_list .one article {
    display: none;
    margin: 30px 0 0;
}
.plus_list .one.active article {
	display: block;
}
.plus_list .one .name {
    font-size: 36px;
    font-weight: 600;
    margin: 15px 0;
	cursor: pointer;
}
.plus_list .one .name:hover {
	color: var(--accente);
}


/*
	calculator
*/
section.calculator {
    background-color: #f1f1f1;
    padding-bottom: 90px;
}
.calculator_content {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: space-between;
}
.calculator_content .result {
    min-width: fit-content;
    font-size: 37px;
    font-weight: 600;
}
.calculator_content .step .title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}
.calculator_content .step .desc {
    margin: 10px 0 0;
}
.calculator_content .step .content {
    font-size: 26px;
    margin: 20px 0;
}
.calculator_content .step.step1 {
    max-width: 29%;
}
.calculator_content .step.step2 .content {
    display: flex;
    gap: 30px;
}
.calculator_content .step label {
    display: flex;
    gap: 10px;
    min-width: fit-content;
}
.calculator_content .step input[type="radio"] {
    width: 25px;
    height: 25px;
    margin: 0;
    position: relative;
    top: -2px;
}
input[type="tel"], input[type="text"] {
    border: none;
    border-bottom: 2px solid var(--black);
    font-size: 28px;
    background-color: transparent;
    padding: 0 0 10px 0;
}
.calculator_content .step input[type="text"] {
    text-align: center;
    width: 160px;
    font-size: 40px;
}
.calculator_content .rovno {
    color: #E84D14;
    font-size: 50px;
}

/*
	section.about
*/
.about_content {
    display: flex;
    gap: 50px;
    align-items: normal;
    justify-content: space-between;
}
.about_content article {
	width: 40%;
}
.about_content article img {
    height: 100px;
    max-width: 50%;
    width: auto;
}
.media_content {
    width: 60%;
    display: flex;
    align-items: normal;
    justify-content: space-between;
    height: 600px;
}
.media_content .video_block {
	position: relative;
    width: 50%;
    background-color: var(--black);
}
.media_content .video_block video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.media_content .photos {
    width: 60%;
    background-color: var(--black);
    flex-wrap: wrap;
    display: flex;
    height: 600px;
}
.media_content .photos .one {
    width: 50%;
    position: relative;
    height: 300px;
}
.media_content .photos .one:first-child {
    width: 100%;
}
.media_content .photos .one a {
    object-fit: cover;
    height: 100%;
    width: 100%;
}
.media_content .photos .one img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

/*
	contact_content
*/
section.contact {
    padding: 15px 0 70px;
}
.contact_content {
    gap: 0;
    align-items: normal;
    justify-content: space-between;
}
.contact_content address {
    width: 35%;
}
address {
    font-style: normal;
    font-weight: 500;
}
address span {
	font-size: 15px;
}
address a {
	text-decoration: none;
}
address a:hover {
	text-decoration: underline;
}
address a.tel {
    font-size: 27px;
    display: table;
    margin: 14px 0 20px;
}
address .messenger {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    font-size: 13px;
    color: var(--white);
}
.messenger > a.mess {
    position: relative;
    padding: 8px 21px;
    box-sizing: border-box;
    border-radius: 4px;
    background-color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.messenger > a.mess:hover {
	color: var(--white);
}
.messenger > a.mess:after {
    position: relative;
    bottom: -5px;
}
.messenger > a.mess.telegram_big {
	background-color: #229ED9;
}
a.mess.telegram_big:after {
	content: url('images/telegram_white.svg');
}
.messenger > a.mess.whatsapp_big {
	background-color: #25D366;
}
a.mess.whatsapp_big:after {
	content: url('images/whatsapp_white.svg');
}
.messenger > a.mess.viber_big {
	background-color: #7360F2;
}
a.mess.viber_big:after {
	content: url('images/viber_white.svg');
}
.contact_content .photo {
    position: relative;
    width: 25%;
    background-color: var(--blue);
    max-height: 450px;
}
.contact_content .photo img {
    height: 100%;
    display: block;
    object-fit: cover;
}
.contact_content .map {
    position: relative;
    width: 40%;
}
.contact_content .map iframe {
    border: none;
    background-color: var(--black2);
    width: 100%;
    height: 100%;
    min-height: -webkit-fill-available;
}
address .locations {
    padding: 10px 0 20px;
}
address .locations strong {
    display: table;
    font-size: 21px;
    margin: 10px 0;
    font-weight: 600;
}
address a.email {
    display: table;
    margin: 25px 0;
}

/*
	footer
*/
footer {
    font-size: 13px;
    padding: 20px 0;
    background-color: #FFCA2A;
    color: var(--black);
}
footer a {
    color: var(--black);
}
footer a:hover {
    color: #fff;
}
footer span.pay {
    content: url('images/pay.svg');
    opacity: 0.6;
}
.social_network {
    display: flex;
    gap: 26px;
}
.social_network > a {
	transition: .5s;
}
.social_network > a:hover {
	opacity: 1;
}
a.youtube {
    content: url('images/youtube.svg');
}
a.vk {
    content: url('images/vk.svg');
}
a.tiktok {
    content: url('images/tiktok.svg');
}
a.instagram {
    content: url('images/instagram.svg');
}
a.facebook {
    content: url('images/facebook.svg');
}

/*
	callback_form
*/
section.cform {
    background-color: var(--yellow);
    padding-bottom: 100px;
}
section.cform form {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: left;
}
section.cform input[type="submit"] {
    background-color: var(--black);
    color: var(--white);
}
.notification.notification_accept {
    background-color: #4da33c;
    display: block;
    padding: 20px 40px;
    box-sizing: border-box;
    margin-bottom: 10px;
    border-radius: 6px;
    color: var(--white);
    max-width: 100%;
    position: relative;
    margin-top: 0;
    text-align: center;
    width: 100%;
    font-size: 14px;
    line-height: 120%;
}
.notification.notification_accept strong {
    display: block;
}
span.close {
    content: url('images/close.svg');
    background-color: var(--yellow);
    border-radius: 100%;
    padding: 15px;
    box-sizing: border-box;
    width: 60px;
    height: 60px;
    position: absolute;
    right: -12px;
    top: -12px;
    cursor: pointer;
    transition: .5s;
    z-index: 1;
}
span.close:hover {
	background-color: var(--accente);
}


span.white.top.arrow.slick-arrow {
    content: url('images/arrow_left.svg');
    position: absolute;
    z-index: 1;
    top: -120px;
    width: 50px;
    height: 50px;
    box-sizing: border-box;
    padding: 13px;
    background-color: var(--yellow);
    cursor: pointer;
}
span.white.top.arrow.slick-arrow:hover {
    background-color: var(--yellow_hover);
}
span.prev.white.top.arrow.slick-arrow {
    right: 70px;
}
span.next.white.top.arrow.slick-arrow {
    right: 0px;
    transform: rotate(180deg);
    position: absolute;
}


/* 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;}
}



/*
	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 / 14%);
    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);
    background-image: url('images/watermark_services.png');
    background-position: right -50px bottom -50px;
    background-repeat: no-repeat;
    position: fixed;
    z-index: 30;
    left: 0;
    right: 0;
    display: block;
    top: 18%;
    margin: 0 auto;
    width: 410px;
    border-radius: 4px;
    box-sizing: border-box;
    box-shadow: 0 0 32px 12px rgb(0 0 0 / 2%);
    border-radius: 12px;
    padding: 60px 50px 70px;
}
section.callback_block .content .title {
    padding: 1px 0 15px;
    font-size: 30px;
}
section.callback_block textarea,
section.callback_block input[type="text"],
section.callback_block input[type="tel"],
section.callback_block input[type="email"] {
    width: 100%;
    box-sizing: border-box;
    margin: 10px 0;
    border: 2px solid #d9d9d9;
    font-weight: 500;
    font-size: 19px;
    padding: 15px 20px;
    box-sizing: border-box;
    border-radius: 6px;
}
section.callback_block input[type="submit"] {
	width: 100%;
}
form input.error {
    border: 2px solid #efa3a3;
}
form input.good {
	
}
form.callback_form div.politic {
    display: table;
    margin: 5px 0 20px;
    font-size: 14px;
}


@media(max-width: 1400px) {
	.top a.email {
		display: none;
	}
	.plus_list .one .name {
		font-size: 33px;
	}
	.calculator_content .step.step2 .content {
		display: block;
	}
	.calculator_content .step label {
		display: inline-flex;
		gap: 10px;
		min-width: fit-content;
		margin: 10px 20px 0 0;
	}


}

@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: 92%;
		min-width: 92%;
		max-width: 92%;
	}
	h1 {
		font-size: 43px;
		font-style: normal;
		line-height: normal;
	}
	h2 {
		font-size: 35px;
		line-height: 120%;
		position: relative;
		letter-spacing: 0;
	}
	h3 {
		font-size: 30px;
		line-height: 130%;
	}
	h4, h5, h6 {
		font-size: 26px;
		line-height: 130%;
	}
	
	section {
		padding: 5px 0;
		position: relative;
	}	
	article {
		font-size: 17px;
		line-height: 135%;
	}

	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%;
	}
	
	/*
		header
	*/	
	header {
		height: 100vh;
		min-height: 100%;
	}	
	
	/*
		top
	*/
	section.top > .center {
		gap: 10%;
	}	
	.top img.logo {
		width: 20%;
		max-width: 20%;
		height: auto;
	}
	.top .delivery {
		display: none;
	}
	.top input[type="button"] {
		display: none;
	}
	.top .phone {
		gap: 10px;
	}	
	.top .phone a.tel {
		font-size: 14px;
		width: max-content;
	}
	.top .mess a.mess {
		height: 25px;
	}

	/* 
		default
	*/
	.center.flex.mobile_block {
		display: block;
	}
	section.title {
		padding: 0 0 30px;
	}
	section.title h1 {
		margin-top: 10px;
	}
	section.title article {
		font-size: 21px;
	}
	section.title article li a {
		border-bottom: none;
		text-decoration: underline;
	}



	/* 
		photos
	*/
	.photos_list {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 4px;
	}
	.photos_list a {
		height: 160px;
		background-color: var(--black);
		box-sizing: border-box;
	}	
	.photos_list a:nth-child(odd) {
		width: 49.5% !important;
	}
	.photos_list a:nth-child(even) {
		width: 49% !important;
	}
	.photos_list a:nth-child(4n+1) {
		width: 40.5% !important;
	}
	.photos_list a:nth-child(4n+2) {
		width: 58% !important;
	}
	.photos_list a:last-child {
		width: 100% !important;
	}

	/* 
		step
	*/
	.step_list {
		gap: 120px;
		font-size: 19px;
		line-height: 123%;
		counter-reset: list 0;
		display: grid;
	}
	.step_list .one:after {
		top: inherit;
		right: inherit;
		bottom: -50px;
		left: 0;
		right: 0;
		display: block;
		margin: 0 auto;
		width: fit-content;
	}
	.step_list .one:before {
		left: 37%;
	}
	
	/* 
		design
	*/
	.design_list.regular div.one {
		margin: 0 10px 0 0;
	}	
	.regular ul.slick-dots {
		bottom: -40px;
		text-align: left;
	}
	.slick-dots li button {
		background: var(--yellow);
		border-radius: 100%;
	}	
	.slick-dots li.slick-active button {
		background: var(--accente);
	}	
	
	/* 
		products
	*/	
	section.products {
		padding-bottom: 60px;
		padding-top: 30px;
	}	
	
	
	/* 
		plus
	*/		
	.plus_content {
		display: block;
		display: flex;
        flex-wrap: wrap;
	}		
	.plus_content .plus_list {
		order: 0;
		width: 100%;
	}	
	.plus_content > img {
		order: 1;
		margin-left: -60%;
		width: 170%;
		max-width: 170%;
		margin-bottom: -140px;
	}
	.plus_list .one .name {
		font-size: 20px;
		line-height: 125%;
		margin: 1px 0;
	}	
	
	/* 
		calculator
	*/		
	section.calculator {
		padding-bottom: 50px;
	}	
	.calculator_content {
		flex-wrap: wrap;
	}	
	.calculator_content > * {
		width: 100%;
		min-width: 100%;
		max-width: 100%;
	}	
	.calculator_content .step input[type="text"] {
		text-align: center;
		width: 160px;
		font-size: 40px;
		max-width: fit-content;
		min-width: auto;
	}	
	.calculator_content .step label {
		display: inline-flex;
		gap: 10px;
		min-width: auto;
		margin: 20px 20px 10px 0;
	}
	.calculator_content .rovno {
		font-size: 70px;
		text-align: center;
	}	
	.calculator_content .result {
		font-size: 42px;
		text-align: center;
	}
	
		
	/* 
		about
	*/	
	.about_content {
		display: block;
	}	
	.about_content article {
		width: 100%;
	}
	.media_content {
		width: 100%;
		height: auto;
		flex-wrap: wrap;
	}	
	.media_content .video_block {
		position: relative;
		width: 100%;
        height: 500px;
		background-color: var(--black);
	}	
	.media_content .photos {
		width: 100%;
		background-color: var(--black);
		flex-wrap: wrap;
		display: flex;
		height: auto;
	}
	.media_content .photos .one {
		height: 200px;
	}	
		
	/* 
		contact_content
	*/	
	.contact_content {
		display: block;
	}	
	.contact_content address {
		width: 100%;
		margin-bottom: 30px;
	}
	address .messenger {
		font-size: 11px;
	}	
	.messenger > a.mess:after {
		content: none;
	}	
	.messenger > a.mess.telegram_big {
		content: url('images/telegram_white.svg');
	}
	.messenger > a.mess.whatsapp_big {
		content: url('images/whatsapp_white.svg');
	}
	.messenger > a.mess.viber_big {
		content: url('images/viber_white.svg');
	}
	address .locations strong {
		display: table;
		font-size: 18px;
		margin: 5px 0;
		font-weight: 600;
	}	
	.contact_content .photo {
		position: relative;
		width: 100%;
		max-height: 350px;
		height: 350px;
	}
	.contact_content .map {
		position: relative;
		width: 100%;
		height: 400px;
	}	
		
	/* 
		callback_form
	*/		
	section.cform {
		padding: 20px 0 50px;
	}	
	form.callback_form {
		display: flex;
		flex-wrap: wrap;
		gap: 40px;
		align-items: center;
		justify-content: left;
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}
	input[type="tel"], input[type="text"] {
		font-size: 23px;
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}	
	
	/* 
		footer
	*/		
	footer > .center {
		display: block;
	}	
	footer > .center > * {
		display: block;
		margin: 10px 0;
	}
	footer a.autor {
		display: none;
	}
	
	/*
		callback_block
	*/
	section.callback_block .content {
		left: 0;
		right: 0;
		display: block;
		top: 0;
		bottom: 0;
		margin: 0 auto;
		width: 100%;
		box-sizing: border-box;
		box-shadow: none;
		border-radius: 0;
		padding: 21% 15% 0 15%;
	}	
	section.callback_block .content form.callback_form {
		display: flex;
		flex-wrap: wrap;
		gap: 2px;
		align-items: center;
		justify-content: left;
		width: 100%;
		max-width: 100%;
		min-width: 100%;
	}	
	span.close {
		content: url('images/close.svg');
		background-color: var(--accente);
		border-radius: 100%;
		padding: 20px;
		box-sizing: border-box;
		width: 70px;
		height: 70px;
		position: absolute;
		right: -10px;
		top: -10px;
		cursor: pointer;
		transition: .5s;
		z-index: 1;
	}	
	.notification.notification_accept {
		background-color: #4da33c;
		display: block;
		padding: 10px;
		box-sizing: border-box;
		margin-bottom: 10px;
		border-radius: 6px;
		color: var(--white);
		max-width: 100%;
		position: relative;
		margin-top: 0;
		text-align: center;
		width: 100%;
		max-width: 100%;
		min-width: 100%;
		font-size: 14px;
		line-height: 120%;
	}
	
}