/*
Theme name: Makarovnet
Description: Makarovnet
Author: 
Author URI: 
*/


:root {
	--white: #fff;
	--black: #0F0F0F;
}



*, *::before, *::after {
	margin: 0;
	padding: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
	display: block;
}
html {
	font-size: 20px;
}
body {
	/*background: var(--black);*/
	/*color: var(--white);*/
	color: var(--black);
	font: 0.7rem/1.5 'Roboto', Arial, sans-serif;

}
.wrapper,
body.nav-active {
	overflow: hidden;
}
.box {
	width: 100%;
	min-width: 320px;
	position: relative;
}
.container {
	width: 100%;
	min-width: 320px;
	max-width: 1560px;
	max-width: 1240px;
	max-width: 920px;
	padding-left: 1rem;
	padding-right: 1rem;
	margin: 0 auto;
	position: relative;
	border-top: 0 solid transparent;
}
.container::after {
	content: '';
	display: block;
	clear: both;
	width: 100%;
	height: 0;
}
.flx {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}


a {
	/*color: var(--white);*/
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}

input, 
textarea, 
select,
button {
}
input.error {
	color: #f00 !important;
	border: 1px solid #f00 !important;
}
input.valid {
	border: 1px solid #339e36 !important;
}
input:focus {
	color: #9CA3AF;
}
input::-webkit-input-placeholder {
	color: #9CA3AF;
}
input::-moz-placeholder {
	color: #9CA3AF;
}
input:-moz-placeholder {
	color: #9CA3AF;
}
input:-ms-input-placeholder {
	color: #9CA3AF;
}






.text {
	overflow: hidden;
}
.text p {
	margin-bottom: 1.2rem;
}
.text h2, 
.text h3, 
.text h4, 
.text h5 {
	margin-bottom: 1.2rem;
	color: #000;
	font-size: 1.5rem;
	line-height: 1.3rem;
}
.text h3 {
	font-size: 1.2rem;
}
.text h4, .text h5 {
	font-size: 1rem;
}
.text table {
	width: 100%;
	border-collapse: collapse;
}
.text table tr td {
	border: 1px solid var(--black);
	padding: 10px;
	margin-bottom: 1.2rem;
}
.text ul, .text ol {
	margin: 0 0 1rem 1.2rem;
}
.text li {
	margin-bottom: 8px;
}
.text img {
	display: block;
	max-width: 100%;
	height: auto;
}



.alignleft {display: inline;float: left;margin: 5px 15px 5px 0;}
.alignright {display: inline;float: right;margin: 5px 0 5px 15px;}
.aligncenter {clear: both;display: block;margin: 5px auto;}




.button {
	display: inline-flex;
	flex-wrap: wrap;    flex-wrap: initial;
	justify-content: center;
	align-items: center;
	min-width: 80px;
	min-height: 52px;
	padding: 12px 25px;
	border: 2px solid var(--black);
	background: var(--black);
	outline: none;
	border-radius: 8px;
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3;
	text-align: center;
	text-decoration: none;
	transition: all .3s ease;
}
.button:hover {
	background: var(--white);
	color: var(--black);
}





/* Header ----------------------------------------------------------------------------- */
.header {
	padding-top: 1.6rem;
	padding-bottom: 1.2rem;

	/*background-color: #d0b084; /*ral 1001*/
    /*background-color: #e6d2b5; /*ral 1015*/
}
.header .container {
	align-items: center;
}
.header__slogan {
	max-width: 128px;
}
.header__logo {
	display: block;
	width: 220px;
	height: 40px;
	background: url('i/bg-logo.svg') center no-repeat;
	mask: url('i/bg-logo.svg') center no-repeat;
    /*-webkit-mask-size: contain;*/
    /*mask-size: contain;*/
	-webkit-background-size: contain;
	background-size: contain;
	background: #272727;
}
.header__nav-btn {
	display: block;
	width: 33px;
	height: 33px;
	border: none;
	background: #363636;
	border-radius: 18px;
	outline: none;
	cursor: pointer;
}
.header__nav-btn span {
	display: inline-block;
	vertical-align: top;
	width: 15px;
	height: 1px;
	background: #fff;
	margin: 7px auto 0;
	position: relative;
}
.header__nav-btn span::before, 
.header__nav-btn span::after {
	content: "";
	position: absolute;
	left: 0;
	width: 15px;
	height: 1px;
	background: #fff;
	transition: all 0.4s ease;
}
.header__nav-btn span::before {
	top: -5px;
}
.header__nav-btn span::after {
	bottom: -5px;
}
.nav-active .header__nav-btn span {
	background: transparent;
}
.nav-active .header__nav-btn span::before {
	top: 0;
	-webkit-transform: rotate(45deg);
}
.nav-active .header__nav-btn span::after {
	bottom: 0;
	-webkit-transform: rotate(-45deg);
}




/* Mob-nav ----------------------------------------------------------------------------- */
.mob-nav {
	position: absolute;
	top: 20px;
	left: 50%;
	width: 96%;
	max-width: 980px;
	max-height: calc(96vh - 104px);
	overflow: hidden;
	overflow-y: visible;
	padding: 1rem;
	background: var(--black);
	opacity: 0;
	pointer-events: none;
	transform: translateX(-50%);
	transition: all .3s ease;
	z-index: 80;
}
.nav-active .mob-nav {
	top: 104px;
	opacity: 1;
	pointer-events: auto;
	border-radius: 12px;
}
.mob-nav-search {
	margin-bottom: 2rem;
}
.mob-nav-search__wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	min-height: 42px;
	padding: 0px;
	background: #262626;
	border-radius: 8px;
}
.mob-nav-search__input {
	width: calc(100% - 251px);
	height: 42px;
	padding-left: 8px;
	padding-right: 8px;
	border: none;
	background-color: transparent;
	outline: none;
	color: #9CA3AF;
	font-size: 16px;
}
.mob-nav-search__submit {
	display: block;
	width: 40px;
	height: 40px;
	background: #898989;
	border: none;
	outline: none;
	-webkit-mask: url("i/bg-search.svg") center no-repeat;
	mask: url("i/bg-search.svg") center no-repeat;
	-webkit-background-size: 18px 18px;
	background-size: 18px 18px;
	transition: all .3s ease;
	cursor: pointer;
}
.mob-nav-search__submit:hover {
	background: var(--white);
}

.mob-nav__wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: flex-start;
}
.mob-nav__side {
	width: 28%;
	max-width: 200px;
}
.mob-nav__side-head {
	margin-bottom: 1rem;
	color: #898989;
	font-size: 16px;
	line-height: 1.3;
}
.mob-nav__side ul {
	list-style: none;
	padding-bottom: 2.4rem;
}
.mob-nav__side ul li {
	margin-bottom: 0.5rem;
}
.mob-nav__side ul li a {
	color: var(--white);
	font-size: 16px;
	line-height: 1.3;
	text-decoration: none;
}
.mob-nav__side ul li a:hover {
	text-decoration: underline;
}

.mob-nav__content {
	width: 72%;
	max-width: 600px;
	padding-top: 0.5rem;
}
.mob-nav__box {
	margin-bottom: 0.4rem;
	padding: 1.6rem;
	border-radius: 12px;
	background: #262626;
}
.mob-nav__box-head {
	margin-bottom: 1.2rem;
	color: var(--white);
	font-size: 24px;
	font-weight: 500;
	line-height: 1.3;
}
.mob-nav__text {
	min-height: 120px;
	padding-top: 12px;
	padding-bottom: 24px;
	color: #898989;
	font-size: 16px;
	line-height: 1.3;
}
.mob-nav__more {
	display: block;
	width: 24px;
	height: 24px;
	border: 2px solid transparent;
	border-radius: 4px;
	margin-left: auto;
	position: relative;
	font-size: 0;
	transition: all .3s ease;
}
.mob-nav__more:hover {
	border-color: var(--white);
}
.mob-nav__more::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 16px;
	height: 12px;
	background: var(--white);
	-webkit-mask: url("i/bg-icon-arrow.svg") center no-repeat;
	mask: url("i/bg-icon-arrow.svg") center no-repeat;
	-webkit-mask-size: contain;
	mask-size: contain;
	transform: translate(-50%, -50%);
}


.mob-nav__contact-head {
	margin-bottom: 1rem;
	color: var(--white);
	font-size: 16px;
	line-height: 1.4;
}
.mob-nav__contact-subhead {
	max-width: 200px;
	margin-bottom: 1rem;
	color: #898989;
	font-size: 16px;
	line-height: 1.4;
}
.mob-nav__contact-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
}
.mob-nav__email {
	color: var(--white);
	font-size: 26px;
	font-weight: bold;
	line-height: 1.3;
	text-decoration: none;
}
.mob-nav__contact-link {

}





/* Middle ----------------------------------------------------------------------------- */
.content {
	min-height: 80vh;
}
/* notes ----------------------------------------------------------------------------- */
.notes{}
.container p{
	padding: 10px;
}
.container img{
	border-radius: 5px;
    background-color: #f0f0f0;
    padding: 10px;
}
/* ecMessages ----------------------------------------------------------------------------- */
.box_ecMessages{
	background-color: #f7f7f0;
}

/* Footer ----------------------------------------------------------------------------- */
.footer {
	background-color: #f7f7f0;
}
.footer-top {
	padding-top: 10px;
	padding-bottom: 80px;
}
.footer__logo {
	display: block;
	width: 185px;
	height: 40px;
	background: url('i/bg-logo.svg') center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}
.footer__menu {
	padding: 0 1rem;
}
.footer__menu-head {
	margin-bottom: 0.8rem;
	color: #898989;
	font-size: 16px;
	line-height: 1.3;
}
.footer__menu ul {
	list-style: none;
}
.footer__menu ul li {
	margin-bottom: 8px;
}
.footer__menu ul li a {
	display: block;
	color: var(--white);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
}
.footer__menu ul li a:hover {
	text-decoration: underline;
}

.footer__contact {
	text-align: right;
}
.footer__phone {
	display: block;
	margin-bottom: 8px;
	color: var(--white);
	font-size: 30px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
}
.footer__email {
	display: block;
	color: var(--white);
	font-size: 30px;
	font-weight: 500;
	line-height: 1.3;
	text-decoration: none;
}


.footer-bottom {
	padding-top: 20px;
	padding-bottom: 20px;
	color: #898989;
	font-size: 16px;
	line-height: 1.3;
}
.footer-bottom .container {
	align-items: center;
	gap: 16px;
}






/* Всплывающие окна */
.overlay {
	display: none;
	background-color: #000;
	opacity: .7;
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 999
}
.overlay.active {
	display: block;
}

.popup {
	display: none;
	position: relative;
	width: 100%;
	max-width: 400px;
	padding: 25px;
	background: #fff;
	text-align: center;
	z-index: 9999;
}
.popup__close {
	width: 24px;
	height: 24px;
	-webkit-border-radius: 100%;
		  border-radius: 100%;
	position: absolute;
	background: #000;
	color: #FFF;
	font-size: 12px;
	line-height: 20px;
	text-align: center;
	border: 1px solid #363636;
	top: -11px;
	right: -11px;
	cursor: pointer;
}
.popup__close:hover {
	background: #FFF;
	color: #000;
}
.popup__title {
	margin-bottom: 5px;
	font-size: 30px;
	font-weight: 300;
	line-height: 34px;
	color: #000;
}
.popup__subtitle {
	margin-bottom: 20px;
	font-size: 13px;
	line-height: 21px;
	text-align: center;
	color: #000;
}
.popup__label {
	position: relative;
}
.popup__body input,
.popup__body textarea {
	width: 100%;
	height: 40px;
	margin-top: 12px;
	padding-left: 12px;
	border: 1px solid #eee;
	background-color: #FFF;
	outline: none;
}
.popup-body textarea {
	height: 120px;
	resize: none;
	padding-top: 5px;
}
.popup-body input[type="submit"] {
	height: 46px;
	padding-left: 0;
	background-color: #FC0;
	border: 1px solid #FC0;
	color: #000;
	font-size: 17px;
	font-weight: bold;
	line-height: 44px;
	cursor: pointer;
}



/* Форма */


input.hide_input {
	display: none;
}
span.wpcf7-not-valid-tip, div.wpcf7-validation-errors {
	display: none !important;
}
.popup-body input.wpcf7-not-valid {
	border: 1px solid #c00;
}

.popup-thy {
	position: fixed;
	top: calc(50% - 160px);
	left: calc(50% - 200px);
}




/* ==============================================================
   ========================  MEDIA  =============================
   ============================================================== */
@media screen and (max-width:1300px) {

	.footer__phone {
		font-size: 25px;
	}
	.footer__email {
		font-size: 22px;
	}


	.footer__copyright {
		max-width: 240px;
	}
	.footer__inn {
		max-width: 250px;
		text-align: center;
	}
	.footer__urid-info {
		max-width: 320px;
	}


}











@media screen and (max-width:1050px) {

	.footer__email {
		font-size: 20px;
	}

}












@media screen and (max-width:900px) {

	html {
		font-size: 18px;
	}


	.mob-nav__text {
		min-height: 80px;
	}


	.mob-nav__email {
		font-size: 24px;
	}


	.footer-top {
		padding-bottom: 40px;
	}
	.footer__logo {
		order: -5;
		width: 100%;
		margin-bottom: 40px;
	}
	.footer__menu {
		padding: 0;
	}
	.footer__contact {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		order: -4;
		width: 100%;
		padding-bottom: 40px;
	}

	.footer__copyright,
	.footer__inn,
	.footer__urid-info {
		width: 100%;
		max-width: 100%;
		text-align: center;
	}

}












@media screen and (max-width:750px) {

	html {
		font-size: 16px;
	}


	.mob-nav__side {
		width: 100%;
		max-width: 100%;
		padding-bottom: 20px;
	}
	.mob-nav__content {
		width: 100%;
		max-width: 100%;
	}

}












@media screen and (max-width:600px) {

	.footer__phone,
	.footer__email {
		width: 100%;
		text-align: center;
	}

}












@media screen and (max-width:450px) {

	.header__slogan {
		display: none;
	}


	.mob-nav__box {
		padding: 1rem;
		border-radius: 24px;
	}
	.mob-nav__email {
		font-size: 20px;
	}
	.mob-nav__contact-link {
		margin: 16px auto;
	}


	.footer__menu {
		width: 100%;
		padding-bottom: 32px;
	}

	.footer-bottom {
		padding-top: 8px;
		padding-bottom: 8px;
		font-size: 14px;
	}

}












/* END ============================================================= */

