@charset "utf-8";
/* CSS Document */
/* Сброс стилей браузеров */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {display: block;}
body {line-height: 1; box-sizing: border-box;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after,
q:before, q:after {content: '';content: none;}
table {border-collapse: collapse; border-spacing: 0;}
a {color: inherit; text-decoration: none;}
/* Конец сброса стилей браузеров */
/* ************************************************* */

body {
	font-family: Tahoma;
	color: #333;
	position: relative;
}

strong {
	font-weight: bold;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
}

/* Хэдер */
.top-line {
	background-color: #fff;
	width: 100%;
	height: 120px;
	position: absolute;
	left: 0;
	top: 0;
}
.top-line .container {
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.top-line_phone-block {
	display: flex;
	flex-direction: column;
	text-align: center;
}
.top-line_phone-block a {
	display: block;
	font-size: 22px;
	padding: 3px;
}
.top-line_phone-block a:hover {
	color: red;
}
.top-line_call-order {
	font-size: 20px;
	color: red;
}
.top-line_call-order:hover {
	cursor: pointer;
	color: #ff5a00;
}

/* Лист1 с большим изображением */
.main-list {
	background-color: lightblue;
	width: 100%;
	height: 100vh;
	background-image: url("/images/main_page_pic.jpg");
	background-position: bottom right;
	background-attachment: fixed;
	background-size: cover;
	color: #fff;
	text-transform: uppercase;
}
.main-list .container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.main-list h1 {
	color: red;
	font-size: 60px;
	font-weight: bold;
	margin-bottom: 40px;
	padding-top: 120px;
}
.main-list_phrase-1 {
	font-size: 30px;
	margin-bottom: 40px;
}
.main-list_phrase-2 {
	font-size: 30px;
	margin-bottom: 40px;
}
.main-list_phrase-2 span {
	color: #ff9000;
	font-weight: bold;
	/*-webkit-text-stroke: 0.5px #fff;*/
}
.main-list_phrase-3 {
	font-size: 30px;
	font-weight: bold;
	margin-bottom: 40px;
}
.main-list_button {
	display: inline-block;
	width: 330px;
	padding: 13px;
	background-color: red;
	border-radius: 3px;
	text-align: center;
	font-weight: bold;
	transition: .3s;
}
.main-list_button:hover {
	opacity: .8;
}

/* Лист 2 */
.list-2 {
	text-align: center;
	padding: 50px 0 100px;
}
.list-2 h2 {
	font-size: 30px;
	margin-bottom: 30px;
}
.list-2_text {
	line-height: 1.7;
}

/* Лист-3 Товары */
.items-block {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}
.items-block_element {
	display: block;
	width: 385px;
	margin-right: 22px;
	margin-bottom: 22px;
	background-color: #fff;
	position: relative;
	z-index: 1;
}
.items-block_element:nth-child(3n) {
	margin-right: 0;
}
.items-block_element_item-pic {
	box-sizing: border-box;
	width: 385px;
	height: 385px;
	padding: 30px;
	position: relative;
}
.items-block_element_item-pic img {
	display: block;
	width: auto;
	max-width: 100%;
	height: auto;
	max-height: 100%;
	transition: .3s;
}
.items-block_element_sale-percent {
	position: absolute;
	right: 0;
	top: -10px;
/*	color: red;
	font-size: 40px;
	font-weight: bold;  */
	transition: .3s;
}
.items-block_element_sale-percent img {
	display: block;
	width: 115px;
}
.items-block_element_item-header {
	background-color: #4ba0b5;
	padding: 5px 10px;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	text-align: center;
	line-height: 1.2;
	height: 75px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	position: relative;
	transition: 0.5s;
}
.items-block_element_item-header-txt {
	position: relative;
	z-index: 2;
}
.items-block_element_item-header-txt .parameters {
	font-weight: normal;
	text-transform: lowercase;
	font-size: .8em;
}

.items-block_element:hover .items-block_element_item-header,
.items-block_element:hover .items-block_element_decor {
	background-color: black;
}
.items-block_element_decor {
	width: 50px;
	height: 50px;
	background-color: #4ba0b5;
	position: absolute;
	left: 30px;
	top: -3px;
	transform: rotate(45deg);
	z-index: 1;
	transition: 0.5s;
}
.items-block_element_item-description {
	line-height: 1.4;
	padding: 20px 10px;
	min-height: 325px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.items-block_element_short-description {
	font-size: 14px;
	margin-bottom: 20px;
}
.items-block_element_charcteristics {
	font-size: 12px;
	padding-left: 10px;
}
.items-block_element_item-price {
	display: flex;
	justify-content: space-around;
	padding-bottom: 20px;
}
.items-block_element_item-price div {
}
.items-block_element_old-price {
	text-align: right;
	font-size: 30px;
	color: #999;
	text-decoration: line-through;
	margin-bottom: 15px;
}
.items-block_element_new-price {
	font-size: 40px;
	font-weight: bold;
	color: red;
}
.items-block_element_button {
	background-color: red;
	color: #fff;
	text-transform: uppercase;
	padding: 20px;
	margin-bottom: 20px;
	border-radius: 3px;
	text-align: center;
	font-weight: bold;
	transition: 0.5s;
}
.items-block_element:hover .items-block_element_button,
.items-block_element:hover .items-block_element_sale-percent,
.items-block_element:hover .items-block_element_item-pic img {
	opacity: .7;
}

/* Лист 4. Описание */
.list-4 .container {
	margin: 100px auto;
}
.description-block_pic-1 {
	width: 23%;
	float: left;
	padding: 0 50px 10px 0;
}
.description-block_1 {
}
.description-block_1 h2 {
	font-size: 24px;
	margin-bottom: 20px;
	line-height: 1.2;
}
.description-block_1 p {
	margin-bottom: 20px;
	color: #666;
	line-height: 1.5;
}
.description-block_1 p:last-child {
	margin-bottom: 0;
}


/* Лист 5. Карта */

/* Футер */
footer {
	background-color: #DCF7FF;
	padding: 50px 0;
	margin-top: -2px;
}
footer .container {
	display: flex;
}
footer .container div {
	flex: 0 0 49%;
}
.footer_left-bl-txt {
	margin-top: 40px;
	padding-right: 40px;
}
.footer_left-bl-txt p {
	font-size: 12px;
	margin-bottom: 20px;
	line-height: 1.4;
}
.footer_left-bl-txt p:last-child {
	margin-bottom: 0;
}
.footer_right-bl {
	padding-left: 60px;
}
.footer_right-bl_phone a {
	display: inline-block;
	font-size: 22px;
	padding: 3px 0;
}
.footer_right-bl-txt p {
	margin-top: 32px;
	font-size: 14px;
	line-height: 1.4;
}
.footer_right-bl-txt a:hover,
.footer_right-bl_phone a:hover {
}

/* всплывающее окно по нажатию кнопки заказа звонка */
.modal {
	background-color: #fff;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 410px;
	max-width: 90%;
	height: 412px;
	max-height: 90%;
	z-index: 1010;
	border-radius: 3px;
	visibility: visible;
	opacity: 1;
	transition: opacity 0.4s ease-in;
	font-size: 0.9em;
}
.modal.order {
	height: 707px;
}
.modal-guts {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 30px;
	overflow: auto;
	box-sizing: border-box;
}
.modal-header {
	color: #ff5a00;
	font-size: 20px;
	font-weight: bold;
}
.modal-header .note {
	margin-top: 10px;
	color: #4ba0b5;
	font-size: 14px;
	font-weight: normal;
}
.modal .phone-block {
	margin-top: 20px;
}
.modal .phone-block div {
	color: #ff5a00;
	font-weight: bold;
	margin-bottom: 5px;
}
.modal .phone-block a {
	display: block;
	padding: 3px 0;
	color: #4ba0b5;
}
.modal .item-name {
    line-height: 1.2;
    margin-bottom: 20px;
    font-size: 13px;
}
.modal .item-name-title {
	margin-bottom: 5px;
}
.close_but {
	position: absolute;
	top: 0;
	right: 0;
	cursor: pointer;
	padding: 10px;
}
.modal-form {
	width:100%;
	margin-top: 30px;
}
.modal-form_name span,
.modal-form_phone span {
	color: #ff5a00;
}
.modal-form form input,
.modal-form_text textarea {
	width: -webkit-fill-available;
	border: none;
	background-color: #f4f4f4;
	border-radius: 3px;
	outline: none;
	font: inherit;
	padding: 10px;
	margin-top: 5px;
}
.modal-form_phone,
.modal-form_text,
.modal-form_submit {
	margin-top: 20px;
}
.modal-form_text textarea {
	height: 50px;
}
.modal-form form button {
	background-color: red;
	color: #fff;
	border-radius: 3px;
	border: none;
	padding: 10px;
	text-align: center;
	font-weight: bold;
	font-family: inherit;
	cursor: pointer;
}
.modal-form form button:hover {
	opacity: .7;
}
.modal.modal_2 {
	height: 90px;
	font-size: 16px;
	font-weight: normal;
}
.modal_2 .modal-header {
    font-size: 16px;
    font-weight: normal;
}
.modal_2 .modal-guts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    overflow: auto;
    box-sizing: border-box;
}
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1000;
	background-color: #000000;
	opacity: 0.7;
	transition: opacity 0.4s ease-in;
}
.modal.closed, .modal-overlay.closed {
	visibility: hidden;
	opacity: 0;
	transition: all 0.4s ease-in;
}

.profits-block {
	position: absolute;
	right: 5px;
	bottom: 91px;
	z-index: 2;
	height: 150px;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: center;
	cursor: auto;
	opacity: 0;
	transition: .5s;
}
.items-block_element:hover .profits-block {
	opacity: 1;
}
.profits-block_title {
	text-align: center;
	font-size: 12px;
	text-transform: uppercase;
	color: #4ba0b5;
}
.profits-block_image {
	width: 65px;
	height: 65px;
	border: solid 1px rgba(0, 0, 0, .2);
}
.profits-block_image:hover {
	cursor: pointer;
}
.profits-block_image img {
	display: block;
	width: 100%;
}

.empty-line {
	margin-bottom: 20px;
}


.items-block_element_button{
	cursor: pointer;
}


/***************************************************************************************************/
/* АДАПТИВНЫЙ ДИЗАЙН */

@media (max-width: 1240px) {
.container {
	max-width: 980px;
}

.items-block_element {
	width: 311px;
}
.items-block_element_item-pic {
	width: 311px;
	height: 311px;
}
.items-block_element_sale-percent {
    right: 20px;
    bottom: 20px;
    font-size: 35px;
}
.items-block_element_item-header {
    font-size: 15px;
    line-height: 1.3;
    height: 75px;
}
.items-block_element_short-description {
    font-size: 13px;
    margin-bottom: 15px;
}
.items-block_element_charcteristics {
    font-size: 11px;
}

.profits-block {
    width: 65px;
    height: 140px;
}
.profits-block_title {
    font-size: 11px;
}
.profits-block_image {
    width: 45px;
    height: 45px;
}

}

@media (max-width: 1023px) {

.container {
	max-width: 725px;
}
.top-line {
    height: 85px;
}
.top-line_logo img {
	width: 200px;
}
.top-line_phone-block a {
    font-size: 20px;
    padding: 6px;
}
.top-line_call-order {
    font-size: 18px;
}
.main-list h1 {
    font-size: 40px;
    margin-bottom: 15px;
    padding-top: 75px;
}
.main-list_phrase-1 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
}
.main-list_phrase-2 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
}
.main-list_phrase-3 {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.4;
}
.main-list_button {
    width: 225px;
    padding: 8px 5px;
    font-size: 12px;
}

.items-block_element {
    width: 354px;
	margin-right: 15px;
	margin-bottom: 15px
}
.items-block_element:nth-child(3n) {
	margin-right: 15px;
}
.items-block_element:nth-child(2n) {
	margin-right: 0;
}
.items-block_element_item-description {
    min-height: 369px;
}
.list-5 iframe {
	height: 500px;
}

.profits-block {
    width: 70px;
    height: 150px;
}
.profits-block_title {
    font-size: 12px;
}
.profits-block_image {
    width: 50px;
    height: 50px;
}


}

@media (max-width: 1023px) and (orientation: portrait) {

.main-list {
	height: auto;
	background-attachment: inherit;
	background-position: 35%;
}
.main-list .container {
	padding: 20px 0;
}
}

@media (max-width: 768px) {

.container {
	width: 95%;
}
.top-line_logo img {
    width: 150px;
}
.top-line_phone-block a {
    font-size: 18px;
    padding: 5px;
}
.top-line_call-order {
    font-size: 16px;
}
.top-line {
    height: 84px;
}
.main-list h1 {
    font-size: 30px;
    margin-bottom: 8px;
    padding-top: 70px;
}
.main-list_phrase-1 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.6;
}
.main-list_phrase-2 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}
.main-list_phrase-2 span {
	font-size: 20px;
}
.main-list_phrase-3 {
    font-size: 14px;
    margin-bottom: 5px;
    line-height: 1.4;
}
.main-list_button {
    width: 225px;
    padding: 8px 5px;
    font-size: 12px;
}
.items-block_element {
    width: 100%;
    margin-right: 0;
}
.items-block_element_item-pic {
    width: 100%;
    height: auto;
}
.items-block_element_item-description {
    min-height: auto;
}
.list-4 .container {
	margin: 50px auto;
}
.list-5 iframe {
    height: 370px;
}
.description-block_pic-1 {
    width: 100%;
    float: left;
    padding: 10px 10px 15px 10px;
    box-sizing: border-box;
}

.footer_left-bl-txt {
    margin-top: 20px;
    padding-right: 20px;
}
.footer_right-bl {
    padding-left: 20px;
}

.profits-block {
    width: 65px;
    height: 140px;
    opacity: 1;
    bottom: 81px;
    right: 0;
}
.profits-block_title {
    font-size: 11px;
}
.profits-block_image {
    width: 45px;
    height: 45px;
}

}

@media (max-width: 570px) {

.top-line_logo img {
    width: 130px;
    padding: 30px 0;
}
.top-line .container {
    display: block;
}
.top-line_logo {
	display: inline-block;
	float: left;
}
.top-line_phone-block {
    display: inline-block;
    float: right;
}
.top-line_phone-block a {
    font-size: 16.5px;
	padding: 6px 0;
}
.top-line_call-order {
    display: inline-block;
    font-size: 16.2px;
    float: right;
    clear: right;
    padding: 6px 0;
}
footer .container {
    display: block;
}
.footer_left-bl-txt {
    padding-right: 0;
}
.footer_right-bl {
    padding-left: 0;
    margin-top: 30px;
}
}



.custom-modal-container {
	display: none; /* Hidden by default */
	position: fixed;
	z-index: 1;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: hidden;
	background-color: rgb(0,0,0);
	background-color: rgba(0,0,0,0.4);
}

.custom-modal-content {
	background-color: #fefefe;
	margin: 7% auto;
	padding: 20px;
	border: 1px solid #888;
	width: 80%;
	max-width: 600px;
}

.custom-modal-close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.custom-modal-close:hover,
.custom-modal-close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.custom-form-title {
	margin-bottom: 20px;
	font-size: 24px;
	color:red;
	text-align: center;
}

.custom-form-question {
	margin: 20px 0;
	font-weight: bold;
}

.custom-form-options {
	margin-bottom: 30px;
	margin-top: 10px;
}

.custom-form-options-row {
	display: flex; /* Arrange items in a row */
	align-items: center; /* Vertically center-align items */
}

.custom-form-options-column {
	display: flex; /* Arrange items in a column */
	flex-direction: column; /* Stack items vertically */
	margin-bottom: 30px;
}

.custom-form-option {
	display: flex; /* Arrange radio and label horizontally */
	align-items: center; /* Vertically center-align items */
	margin-bottom: 10px; /* Space between options */
}

.custom-form-radio {
	margin-right: 10px; /* Space between radio and label */
}

.custom-form-label {
	margin: 0; /* Remove default margins */
	display: inline-block; /* Ensure the label text is inline */
}




.custom-form-select {
	width: 100%;
	padding: 10px;
	margin-bottom: 30px;
	margin-top: 15px;
}

.custom-form-submit {
	background-color: #f60;
	color: white;
	border: none;
	padding: 15px 20px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
	margin: 4px 2px;
	cursor: pointer;
	border-radius: 4px;
}

.custom-form-input {
	width: 96%;
	padding: 10px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
}

.custom-form-select {
	width: 100%;
	padding: 10px;
	margin-bottom: 30px;
	margin-top: 15px;
}
html{
	scroll-behavior: smooth;

}