

/* Start:/local/templates/istochnik/css/fonts.css?17743529541554*/
@font-face {
    font-family: 'Involve';
    src: url('/local/templates/istochnik/css/../fonts/Involve-SemiBold.woff2') format('woff2'),
        url('/local/templates/istochnik/css/../fonts/Involve-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Involve';
    src: url('/local/templates/istochnik/css/../fonts/Involve-Bold.woff2') format('woff2'),
        url('/local/templates/istochnik/css/../fonts/Involve-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('/local/templates/istochnik/css/../fonts/rubik-cyrillic-400-normal.woff2') format('woff2'),
        url('/local/templates/istochnik/css/../fonts/rubik-cyrillic-400-normal.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('/local/templates/istochnik/css/../fonts/rubik-cyrillic-500-normal.woff2') format('woff2'),
        url('/local/templates/istochnik/css/../fonts/rubik-cyrillic-500-normal.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('/local/templates/istochnik/css/../fonts/rubik-cyrillic-600-normal.woff2') format('woff2'),
        url('/local/templates/istochnik/css/../fonts/rubik-cyrillic-600-normal.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Rubik';
    src: url('/local/templates/istochnik/css/../fonts/rubik-cyrillic-700-normal.woff2') format('woff2'),
        url('/local/templates/istochnik/css/../fonts/rubik-cyrillic-700-normal.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
/* End */


/* Start:/local/templates/istochnik/css/base.css?177445350511635*/
:root {
	--font-family: "Rubik", sans-serif;
	--font-family-second: "Involve", sans-serif;

    --colors-primary-50: rgb(236, 243, 249);
    --colors-primary-100: rgb(216, 231, 243);
    --colors-primary-200: rgb(177, 207, 231);
    --colors-primary-300: rgb(139, 182, 218);
    --colors-primary-400: rgb(100, 158, 206);
	--colors-primary-500: rgb(58, 127, 184);
    --colors-primary-600: rgb(49, 107, 155);
    --colors-primary-700: rgb(37, 80, 116);
    --colors-primary-800: rgb(24, 54, 78);
    --colors-primary-900: rgb(12, 27, 39);
	--colors-primary-950: rgb(6, 13, 19);
    
    --colors-secondary-50: rgb(239, 246, 239);    
    --colors-secondary-100: rgb(224, 237, 222);
    --colors-secondary-200: rgb(192, 219, 189);
    --colors-secondary-300: rgb(161, 201, 156);
    --colors-secondary-400: rgb(129, 183, 123);
	--colors-secondary-500: rgb(63, 106, 58);
    --colors-secondary-600: rgb(78, 132, 72);
    --colors-secondary-700: rgb(59, 99, 54);
    --colors-secondary-800: rgb(39, 66, 36);
    --colors-secondary-900: rgb(20, 33, 18);
	--colors-secondary-950: rgb(10, 16, 9);

    --colors-neutral-0: rgb(255, 255, 255);
    --colors-neutral-50: rgb(242, 242, 242);
    --colors-neutral-100: rgb(230, 230, 230);
    --colors-neutral-200: rgb(204, 204, 204);
    --colors-neutral-300: rgb(194, 194, 194);
    --colors-neutral-400: rgb(179, 179, 179);
    --colors-neutral-500: rgb(153, 153, 153);
    --colors-neutral-600: rgb(102, 102, 102);
    --colors-neutral-700: rgb(77, 77, 77);
    --colors-neutral-800: rgb(51, 51, 51);
    --colors-neutral-900: rgb(26, 26, 26);
    --colors-neutral-950: rgb(13, 13, 13);
    --colors-neutral-1000: rgb(0, 0, 0);

    --colors-functional-success100: rgb(16, 255, 24);
    --colors-functional-error100: rgb(255, 7, 7);
    --colors-functional-warning100: rgb(255, 231, 72);

    --colors-ui-background: rgb(237, 246, 244);

	--colors-transparent-background: rgba(63, 106, 58, 0.4);
}
* {
	box-sizing: border-box;
	outline: none;
}
::-webkit-scrollbar {
	height: 0.3125rem;
	width: 0.3125rem;
}
::-webkit-scrollbar-track {
	background: var(--colors-neutral-50);
}
::-webkit-scrollbar-thumb {
	background: var(--colors-primary-600);
	border-radius: 1.875rem;
}
html {
	font-size: 16px;
}
html.active,
html.modal-open {
	overflow: hidden;
}
body {
	font-family: var(--font-family);
	font-size: 1rem;
	font-variant-numeric: lining-nums;
	line-height: 1.2;
	letter-spacing: 0;
	color: var(--colors-neutral-600);
	background-color: var(--colors-ui-background);
	margin: 0;
	padding-top: 8.5rem;
}
body.no-top-padding {
    padding-top: 0;
}
.container {
	/* width: min(87rem, 100%); */
	margin-inline: auto;
	padding-inline: 2.5rem;
}
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex-nowrap {
	flex-wrap: nowrap;
}
.flex-column {
	flex-flow: column nowrap;
}
.jcs {
	justify-content: flex-start;
}
.jcc {
	justify-content: center;
}
.jce {
	justify-content: flex-end;
}
.jcsb {
	justify-content: space-between;
}
.ais {
	align-items: flex-start;
}
.aic {
	align-items: center;
}
.aie {
	align-items: flex-end;
}
.grid {
	display: grid;
}
.w-full {
	flex: 1 1 100%;
	max-width: 100%;
	width: 100%;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 0;
}
b,
h1,
h2,
h3,
h4,
h5,
h6,
strong {
	font-weight: 700;
}
a {
	color: var(--colors-primary-400);
	text-decoration: none;
}
a.hover:hover {
	text-decoration: underline;
}
picture {
	display: flex;
}
img {
	height: auto;
	max-width: 100%;
}
input[type="text"],
input[type="email"],
textarea,
input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
	font-family: var(--font-family);
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 1.2;
	color: var(--colors-primary-100);
}
input[type="text"],
input[type="datetime-local"],
input[type="email"],
textarea {
	width: 100%;
	padding: .75rem 1rem;
	color: var(--colors-primary-600);
	background-color: var(--colors-neutral-0);
	border: 0;
	border-radius: 1.5rem;
}
input[type="text"]:hover,
input[type="text"]:active,
input[type="text"]:focus,
input[type="datetime-local"]:hover,
input[type="datetime-local"]:active,
input[type="datetime-local"]:focus,
input[type="email"]:hover,
input[type="email"]:active,
input[type="email"]:focus,
textarea:hover,
textarea:active,
textarea:focus {
	border: 0;
}
input:-webkit-autofill,
input:-webkit-autofill:active,
input:-webkit-autofill:focus,
input:-webkit-autofill:hover,
select:-webkit-autofill,
select:-webkit-autofill:active,
select:-webkit-autofill:focus,
select:-webkit-autofill:hover,
textarea:-webkit-autofill,
textarea:-webkit-autofill:active,
textarea:-webkit-autofill:focus,
textarea:-webkit-autofill:hover {
	-webkit-text-fill-color: var(--colors-primary-600);
	-webkit-box-shadow: inset 0 0 0 1000px var(--colors-neutral-0);
	-webkit-transition: background-color 5000s ease-in-out 0s;
	transition: background-color 5000s ease-in-out 0s;
}
input[type="text"],
input[type="email"] {
	background-color: var(--colors-neutral-0);;
}
input[type="date"],
input[type="datetime-local"] {
	position: relative;
}

.btn-primary {
    font-size: 1.25rem;
    border-radius: 2.5rem;
    background-color: var(--colors-secondary-500);
    color: var(--colors-neutral-0);
    transition: .3s;
    font-family: var(--font-family-second);
    font-weight: 600;
    height: 3.625rem;
    display: inline-flex;
    align-items: center;
    padding-inline: 2.75rem;
}
.btn-primary:hover{
	background-color: var(--colors-secondary-600);
}
.btn-small{
	font-size: 1rem;
	height: 2.5rem;
}
.btn-icon {
    gap: .5rem;
}
.btn-catalog {
    background-color: var(--colors-primary-500);
    padding-inline: 1.5rem;
}
.btn-catalog:hover{
	background-color: var(--colors-primary-600);
}
.btn-light {
    color: var(--colors-primary-600);
    background-color: var(--colors-neutral-0);
}
.btn-light:hover{
	color: var(--colors-neutral-0);
    background-color: var(--colors-primary-700);
}
.h1 {
	font-family: var(--font-family-second);
	font-weight: 700;
	font-size: 3.375rem;
	line-height: 1.2;
}
.h2 {
	font-family: var(--font-family-second);
	font-weight: 700;
	font-size: 2.5rem;
	line-height: 1.2;
}
.h3 {
	font-family: var(--font-family-second);
	font-weight: 700;
	font-size: 2rem;
	line-height: 1.2;
}
.h4 {
	font-family: var(--font-family-second);
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1.2;
}
.h4-1 {
	font-family: var(--font-family-second);
	font-weight: 500;
	font-size: 1.5rem;
	line-height: 1.2;
}
.h5 {
	font-family: var(--font-family-second);
	font-weight: 500;
	font-size: 1.25rem;
	line-height: 1.2;
}
.h6 {
	font-family: var(--font-family-second);
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1;
}
.h7 {
	font-family: var(--font-family-second);
	font-weight: 700;
	font-size: 1rem;
	line-height: 1;
}
.color-primary-100 {
    color: var(--colors-primary-100);
}
.fs24{
	font-size: 1.5rem;
}
.fs20{
	font-size: 1.25rem;
}
.text-b1 {
	font-weight: 400;
	font-size: 1.25rem;
	line-height: 1.2;
}
.text-b2 {
	font-weight: 400;
	font-size: 1.125rem;
	line-height: 1.2;
}
.text-b3 {
	font-weight: 400;
	font-size: 1rem;
	line-height: 1.2;
}
.text-b4 {
	font-weight: 400;
	font-size: 0.875rem;
	line-height: 1.2;
}
/*------------------------------*/

.u-i-button {
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 1.125rem;
	line-height: 1.2;
}
.u-i-button-2 {
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	font-size: 1.125rem;
	line-height: 1.2;
}
.fl {
	font-weight: 300;
}
.fn {
	font-weight: 400;
}
.fm {
	font-weight: 500;
}
.fsb {
	font-weight: 600;
}
.fb {
	font-weight: 700;
}
.color600 {
	color: var(--colors-primary-600);
}
.hidden {
	display: none;
}
.loading {
	align-items: center;
	display: none;
	height: 100vh;
	justify-content: center;
	left: 50%;
	position: fixed;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100vw;
	z-index: 99;
}
.loading.active {
	display: flex;
}
.loading img {
	height: 5.625rem;
	width: 5.625rem;
}
.content {
    min-height: 100vh;
    position: relative;
    border-bottom-left-radius: 2.75rem;
    border-bottom-right-radius: 2.75rem;
    z-index: 2;
    background-color: var(--colors-ui-background);
}
.mb {
	margin-bottom: 6.25rem;
}
.mt {
	margin-top: 6.25rem;
}
.mb24 {
	margin-bottom: 1.5rem;
}
.mb20 {
	margin-bottom: 1.25rem;
}
.mb12 {
	margin-bottom: 0.75rem;
}
/* .btn-hover,
input[type="submit"] {
	display: inline-flex;
	justify-content: center;
	font-family: "Montserrat", sans-serif;
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	color: var(--colors-neutral-0);
	background-color: var(--colors-primary-600);
	border: 0.0625rem solid var(--colors-primary-600);
	border-radius: 6.25rem;
	transition: all 0.3s ease;
	cursor: pointer;
}
.btn-hover:hover,
input[type="submit"]:hover {
	background-color: var(--colors-primary-400);
	border-color: var(--colors-primary-400);
}
.btn-hover:disabled .btn-hover.btn-transparent:disabled,
.btn-hover.btn-light:disabled,
input[type="submit"]:disabled {
	color: var(--colors-neutral-0);
	border-color: var(--colors-primary-600);
	opacity: 0.5;
}
.btn-hover.btn-transparent:disabled {
	color: var(--colors-primary-600);
}
.btn-hover.btn-transparent,
.btn-hover.btn-light {
	color: var(--colors-primary-600);
	background-color: transparent;
}
.btn-hover.btn-transparent:hover,
.btn-hover.btn-light:hover {
	color: var(--colors-neutral-0);
	background-color: var(--colors-primary-600);
}
.btn-hover.btn-transparent:active,
.btn-hover.btn-transparent:focus {
	color: var(--colors-neutral-0);
}
.btn-hover.btn-light {
	background-color: var(--colors-u-i-u-i);
	border-color: var(--colors-u-i-u-i);
}
.btn-hover:active,
.btn-hover:focus,
.btn-hover.btn-transparent:active,
.btn-hover.btn-transparent:focus,
.btn-hover.btn-light:active,
.btn-hover.btn-light:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	background-color: var(--colors-primary-500);
	border-color: var(--colors-primary-500);
}
.btn-small {
	padding: 0.5rem 1rem;
}
.btn-large {
	padding: 1rem 2rem;
}
.btn-medium {
	padding: 0.8125rem 2rem;
}
.btn-icon {
	gap: 1.5rem;
} */
.visually-hidden {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
	overflow: hidden;
	white-space: nowrap;
}
.stylized-list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 1rem;
}
.stylized-list li {
    position: relative;
    padding-left: 1.625rem;
}
.stylized-list li:before {
	content: '';
	width: 1.125rem;
	height: 1.125rem;
	position: absolute;
	top: 0;
	left: 0;
	background-image: url(/bitrix/templates/aestetica/img/stylized-list-img.svg);
}

@media screen and (max-width: 1200px) {
	body {
		font-size: 1rem;
	}
	.mb {
		margin-bottom: 3rem;
	}
	.mt {
		margin-top: 3rem;
	}
	.pb {
		padding-bottom: 3rem;
	}
	.pt {
		padding-top: 3rem;
	}
	.title {
		font-size: 2rem;
	}
}

@media screen and (max-width: 1000px) {
	.content {
		min-height: auto;
	}
}

@media screen and (max-width: 768px) {
	.h2 {
		font-size: 2rem;
	}
}

@media screen and (max-width: 500px) {
	.title {
		font-size: 1.5rem;
	}
}

/* End */


/* Start:/local/templates/istochnik/components/bitrix/menu/top/style.css?1774450060535*/
.header-menu-wrapper {
    padding: 1rem;
    background-color: var(--colors-transparent-background);
    border-radius: 1.5rem;
    gap: 1.25rem;
}
.top-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}
.top-menu a {
    font-weight: 500;
    color: var(--colors-neutral-0);
    padding: .5rem .75rem;
    border-radius: 2.5rem;
    transition: .3s;
}
.top-menu a:hover{
    background-color: var(--colors-secondary-500);
}
.top-menu a.selected {
    background-color: var(--colors-secondary-700);
}
/* End */


/* Start:/local/templates/istochnik/components/bitrix/breadcrumb/breadcrumb/style.css?1774444949598*/
.breadcrumb-wrapper {
    background-color: var(--colors-neutral-0);
    display: inline-block;
    padding: .75rem 1rem;
    border-radius: 2.5rem;
    margin: 2.5rem 0;
}
.breadcrumb-item a span {
    color: var(--colors-neutral-400);
    font-size: 18px;
	transition: .3s;
}
.breadcrumb-item a:hover span{
	color: var(--colors-primary-600);
}
.breadcrumb-item span {
    color: var(--colors-primary-500);
    font-size: 18px;
}
.breadcrumb-delimiter {
    width: .5625rem;
    height: .5625rem;
    background-color: var(--colors-neutral-400);
    border-radius: 50%;
    margin-inline: .5rem;
}
/* End */


/* Start:/local/templates/istochnik/components/bitrix/menu/footer/style.css?1774450785394*/
.footer-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}
.footer-menu a {
    font-size: 1.25rem;
    font-family: var(--font-family-second);
    color: var(--colors-neutral-0);
    padding: .5rem .75rem;
    display: inline-block;
    border-radius: 2.5rem;
	transition: .3s;
}
.footer-menu a:hover{
	background-color: var(--colors-neutral-0);
	color: var(--colors-primary-500);
}
/* End */


/* Start:/local/templates/istochnik/template_styles.css?17744535542002*/
/*Header*/
.header-phones-wraper.grid {
    background-color: var(--colors-transparent-background);
    border-radius: 1.5rem;
    padding: 1rem 1.5rem;
    gap: .125rem;
}
.header-phone {
    font-size: 15px;
    font-weight: 600;
    color: var(--colors-neutral-0);
    transition: .3s;
}
.header-phone:hover{
    color: var(--colors-secondary-500);
}
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    padding-inline: 2.5rem;
    padding-top: 4rem;
    transition: .3s;
}
.header-wrapper.header-fixed {
    padding-top: 1rem;
}
/*END Header*/

/*Footer*/
footer {
    background-color: var(--colors-primary-300);
    padding-top: 5.875rem;
    padding-bottom: 4rem;
    margin-top: -2.75rem;
    position: relative;
    z-index: 1;
}
.footer-logo {
    width: 14.875rem;
}
.footer-btn {
    margin: 3.125rem 0;
}
.footer-contact-title {
    color: var(--colors-neutral-50);
    padding-bottom: 1.125rem;
}
.footer-right-block {
    gap: 1.125rem;
    padding-right: 2.75rem;
}
.footer-contact-value {
    color: var(--colors-neutral-0);
    transition: .3s;
}
a.footer-contact-value:hover{
    color: var(--colors-primary-600);
}
.footer-privacy-policy {
    transition: .3s;
    display: block;
    padding-top: .25rem;
}
.footer-privacy-policy:hover{
    color: var(--colors-neutral-0);
}
/*END Footer*/

/*Main*/
.main-banner {
    position: relative;
    height: 836px;
    background-image: url(/local/templates/istochnik/img/main-banner.jpg);
    background-position: center center;
    background-size: cover;
    border-bottom-left-radius: 2.75rem;
    border-bottom-right-radius: 2.75rem;
}
.main-banner-h1 {
    padding-top: 15.625rem;
    color: var(--colors-neutral-0);
    max-width: 52rem;
    padding-bottom: 1.5rem;
}
.main-banner-text {
    max-width: 27.5rem;
    padding-bottom: 5.25rem;
    color: var(--colors-neutral-0);
}
/*END Main*/
/* End */
/* /local/templates/istochnik/css/fonts.css?17743529541554 */
/* /local/templates/istochnik/css/base.css?177445350511635 */
/* /local/templates/istochnik/components/bitrix/menu/top/style.css?1774450060535 */
/* /local/templates/istochnik/components/bitrix/breadcrumb/breadcrumb/style.css?1774444949598 */
/* /local/templates/istochnik/components/bitrix/menu/footer/style.css?1774450785394 */
/* /local/templates/istochnik/template_styles.css?17744535542002 */
