/* ===== IMPORTED STYLE ===== */
@import url("jquery.fancybox.min.css");
@import url("select2.min.css");

@font-face {
	font-family: 'Epilogue';
	src: url('../fonts/epilogue/Epilogue-Medium.woff') format('woff');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Epilogue';
	src: url('../fonts/epilogue/Epilogue-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: 'Epilogue';
	src: url('../fonts/epilogue/Epilogue-Bold.woff') format('woff');
	font-weight: bold;
	font-style: normal;
	font-display: swap;
}
/* ===== IMPORTED STYLE END ===== */

/* ===== RESET STYLE ===== */
* {box-sizing: border-box; -webkit-box-sizing: border-box; -moz-box-sizing: border-box; margin:0; padding:0;}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, a, cite, code, img, strong, sub, sup, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tr, th, td, article, aside, canvas, figure, figcaption, footer, header, main, menu, nav, section, audio, video  {
	font: inherit; border: 0px currentColor; border-image: none; vertical-align: baseline; font-size-adjust: inherit; font-stretch: inherit;}
article, aside, figcaption, figure, footer, header, menu, nav, section, body, main, section, picture {display: block;}
sub, sup {font-size:75%; line-height:0; position:relative;} sup {top: -0.5em;} sub {bottom: -0.25em;}
ol[class], ul[class], ol li[class], ul li[class] {list-style:none;}
blockquote {quotes: none; } blockquote::before, blockquote::after {content:none;}
table {border-collapse:collapse; border-spacing:0;}
a {text-decoration:none;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-tap-highlight-color: transparent;outline:none!important;}
a:hover, a:focus, .nd-btn:hover, .nd-btn:focus, button:hover, button:focus {text-decoration: none;outline: none;}
body {-webkit-text-size-adjust:none;-webkit-overflow-scrolling: touch;-webkit-font-smoothing: antialiased;-webkit-text-size-adjust: 100%;	}
input, button, select {border:none;outline:none;-webkit-appearance:none;-moz-appearance:none;appearance:none;}
select::ms-expand {display:none;}
input::-ms-clear {display:none;}
img {display:block; max-width:100%;}
/* ===== RESET STYLE END ===== */

/* ===== Theme default ===== */
:root {
	--black: #1F2933;
	--white: #fff;
	--main-color: #0F766E;
	--blue: #0E7490;
	--light-blue:#DCFCE7;
	--gray:#D7E3E0;
	--main-font:'Epilogue';
}
html {font-size:10px;height:100%;}
body {
    background: #F5FAF8;
    font-weight: 500;
	font-family: var(--main-font);
	font-size: 1.8rem;
    letter-spacing: 0.1px;
    line-height: 1.5;
    overflow-x: hidden;
	color: var(--black);
    height:100%;
}
.nd-page-wrapper {display:flex;flex-direction: column;justify-content: space-between;height:100%;}

svg {width:100%;height:100%;display:block;}

input, textarea {width:100%;border:1px solid transparent;outline:none;resize:none;display:block;}
input:-webkit-autofill {transition: all 5000s ease-in-out 0s;}
/* Убираем стрелочки в input type="number"
input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {-webkit-appearance: none;}
input[type='number'], input[type="number"]:hover, input[type="number"]:focus {appearance: none;-moz-appearance: textfield;}
*/
a {position:relative;color:inherit;transition:0.25s;}
a:hover {transition:0.25s;}

b, strong {font-weight:bold;}
p:not(:last-child) {margin-bottom: 1em;}
ul:not([class]) li, ol:not([class]) li {margin-bottom: 1em;}
ul:not([class]),
ol:not([class]) {padding-left: 20px;margin-bottom: 20px;}

p a:hover, ul:not([class]) li a:hover, ol:not([class]) li a:hover {text-decoration: none;}
p a, ul:not([class]) li a, ol:not([class]) li a {color: var(--main-color);text-decoration: underline;}

table {width: 100%;margin:3rem 0;}
table tr {border: 1px solid #ddd;}
table th, table td {padding: 1rem;text-align: center;border-right: 1px solid #ccc;}
table th {text-transform: uppercase;background: rgba(0, 0, 0, 0.12);font-weight: bold;}

/* Flexbox */
.nd-flex {display: flex;}
.nd-inline-flex {display: inline-flex;}
.nd-flex-wrap {flex-wrap: wrap;}
.nd-flex-column {flex-direction: column;}
.nd-align-center {align-items: center}
.nd-align-end {align-items: flex-end;}
.nd-align-start {align-items: flex-start;}
.nd-justify-center {justify-content: center;}
.nd-justify-end {justify-content: flex-end;}
.nd-justify-start {justify-content: flex-start;}
.nd-justify-between {justify-content: space-between;}
/* // Flexbox */

/* CSS Grid */
.nd-grid {display:grid;}
.nd-col-2 {grid-template-columns: repeat(2, 1fr);}
.nd-col-3 {grid-template-columns: repeat(3, 1fr);}
.nd-col-4 {grid-template-columns: repeat(4, 1fr);}
.nd-col-5 {grid-template-columns: repeat(5, 1fr);}
.nd-col-6 {grid-template-columns: repeat(6, 1fr);}
.nd-grid-col-1 {grid-column: span 1;}
.nd-grid-row-1 {grid-row: span 1;}
.nd-grid-col-2 {grid-column: span 2;}
.nd-grid-row-2 {grid-row: span 2;}
.nd-grid-col-3 {grid-column: span 3;}
.nd-grid-row-3 {grid-row: span 3;}
.nd-grid-col-4 {grid-column: span 4;}
.nd-grid-row-4 {grid-row: span 4;}
.nd-grid-col-5 {grid-column: span 5;}
.nd-grid-row-5 {grid-row: span 5;}

.nd-gap-1 {gap:1rem;}
.nd-gap-2 {gap:2rem;}
.nd-gap-3 {gap:3rem;}
.nd-gap-4 {gap:4rem;}
.nd-gap-5 {gap:5rem;}
/* // CSS Grid */

.nd-container {
	width: 100%;
	max-width:1760px;
	margin:0 auto;
	padding:0 15px;
	position:relative;
}
.nd-container--sm {
	max-width:1230px;
}

.nd-red {border:1px solid red;}
.nd-blue {border:1px solid blue;}
.nd-green {border:1px solid green;}

.nd-mobile-btn {display:none;}
.nd-noscroll {overflow: hidden;}
.nd-mobile-menu__content {display:none;}

.nd-text--uppercase {text-transform:uppercase;}
.nd-text--center {text-align:center;}
.nd-text--left {text-align:left;}
.nd-text--right {text-align:right;}
.nd-text--black {color:var(--black);}
.nd-text--white {color:var(--white);}
.nd-text--colored {color:var(--main-color);}
.nd-verification-message {
	text-align: center;
}
.nd-verification-message.nd-is-success {
	color: #04AB46;
}
.nd-verification-message.nd-is-error {
	color: var(--main-color);
}
.nd-text--bold {font-weight: bold;}
.nd-bg--main-color {background: var(--main-color);}
.nd-resp--img img {width: 100%;height:100%;object-fit: cover;}

.nd-position-relative {position: relative;}
.nd-position-absolute {position: absolute;}

.nd-sm-show, .nd-svg-library {display:none;}

.nd-section {padding:max(6vw, 40px) 0;}
.nd-section-title {margin-bottom:1em;}

.nd-input-wrapper input {
	display:block;
	font-size: 1.8rem;
	font-weight: 500;
	font-family: var(--main-font);
	color:var(--black);
	background: transparent;
	height:3rem;
}
.nd-input-wrapper textarea {
	display:block;
	font-size: 1.8rem;
	height: 15rem;
	font-family: var(--main-font);
	font-weight: 500;
	background: transparent;
	padding-top:1rem;
}
.nd-input-wrapper input::placeholder, .nd-input-wrapper textarea::placeholder {
	font-size: 2rem;
	color:rgba(0,0,0,0.25);
	font-family: var(--main-font);
	font-weight: 500;
}
.nd-input__area label {
	font-size: 1.4rem;
	width: 100%;
	display: block;
}
.nd-input__area {
	padding: 1.5rem 1.5rem 1rem;
	border:1px solid var(--gray);
	border-radius: 15px;
}

.nd-w-5 {width:5%;}
.nd-w-10 {width:10%;}
.nd-w-15 {width:15%;}
.nd-w-20 {width:20%;}
.nd-w-25 {width:25%;}
.nd-w-30 {width:30%;}
.nd-w-33 {width:33.33%;}
.nd-w-35 {width:35%;}
.nd-w-40 {width:40%;}
.nd-w-45 {width:45%;}
.nd-w-50 {width:50%;}
.nd-w-55 {width:55%;}
.nd-w-60 {width:60%;}
.nd-w-65 {width:65%;}
.nd-w-70 {width:70%;}
.nd-w-75 {width:75%;}
.nd-w-80 {width:80%;}
.nd-w-85 {width:85%;}
.nd-w-90 {width:90%;}
.nd-w-95 {width:95%;}
.nd-w-100 {width:100%;}
.nd-h-100 {height:100%;}

.nd-pt-0 {padding-top:0;}
.nd-pt-1 {padding-top:1rem;}
.nd-pt-2 {padding-top:2rem;}
.nd-pt-3 {padding-top:3rem;}
.nd-pt-4 {padding-top:4rem;}
.nd-pt-5 {padding-top:5rem;}
.nd-pb-0 {padding-bottom:0;}
.nd-pb-1 {padding-bottom:1rem;}
.nd-pb-2 {padding-bottom:2rem;}
.nd-pb-3 {padding-bottom:3rem;}
.nd-pb-4 {padding-bottom:4rem;}
.nd-pb-5 {padding-bottom:5rem;}

.nd-mt-0 {margin-top:0;}
.nd-mt-1 {margin-top:1rem;}
.nd-mt-2 {margin-top:2rem;}
.nd-mt-3 {margin-top:3rem;}
.nd-mt-4 {margin-top:4rem;}
.nd-mt-5 {margin-top:5rem;}
.nd-mb-0 {margin-bottom:0;}
.nd-mb-1 {margin-bottom:1rem;}
.nd-mb-2 {margin-bottom:2rem;}
.nd-mb-3 {margin-bottom:3rem;}
.nd-mb-4 {margin-bottom:4rem;}
.nd-mb-5 {margin-bottom:5rem;}

/* Buttons */
.nd-btn {
	font-family: var(--main-font);
	font-size: 1.8rem;
	font-weight: bold;
	display:inline-flex;
	padding:2rem 3rem;
	background: var(--main-color);
	position:relative;
	text-align:center;
	transition: all 0.25s;
	justify-content: center;
	align-items: center;
	border:1px solid var(--main-color);
	cursor:pointer;
	color:#fff;
	border-radius: 10px;
	line-height: 1;
	min-height: 7rem;
	white-space: nowrap;
	&:hover {
		background: transparent;
		transition: all 0.25s;
		color:var(--black);
	}
}
.nd-btn--transparent {
	background: transparent;
	color:var(--black);
	&:hover {
		background: var(--main-color);
		color:var(--white);
	}
}
/* Keep outlined look for "View Profile" buttons inside company cards */
.nd-company__card .nd-btn--transparent,
.nd-company__card--small .nd-btn--transparent,
.nd-similar__card .nd-btn--transparent {
	border-color: #BFBFBF;
}
.nd-company__card .nd-btn--transparent:hover,
.nd-company__card--small .nd-btn--transparent:hover,
.nd-similar__card .nd-btn--transparent:hover {
	border-color: var(--main-color);
}
.nd-btn .nd-icon {
	color:#fff;
	margin-left:1rem;
}
.nd-btn:hover .nd-icon {
	color:var(--black);
	transition: all 0.25s;
}
.nd-btn .nd-icon-arrow {
	color:#fff;
	transform: rotate(-90deg);
}
.nd-btn:hover .nd-icon-arrow {
	color:var(--black);
}
.nd-btn--transparent .nd-icon {
	color:var(--black);
}
.nd-btn--transparent:hover .nd-icon {
	color:#fff;
}
.nd-share-btn {
	font-family: var(--main-font);
	display:inline-flex;
	align-items: center;
	padding:1rem 1.5rem;
	border:1px solid #BFBFBF;
	border-radius: 10px;
	font-size: 1.4rem;
	justify-content: center;
	min-height: 50px;
	white-space: nowrap;
	line-height: 1;
	&:hover {
		border:1px solid var(--main-color);
		color:var(--main-color);
	}
}
.nd-share-btn:hover .nd-icon {
	color:var(--main-color);
}
.nd-share-btn .nd-icon {
	margin-right:1rem;
}
.nd-btn__row .nd-share-btn {
	margin-left:1rem;
}

.nd-show-hidden-block span:nth-child(2), .nd-show-hidden-block.nd-active span:first-child  {display:none;}
.nd-show-hidden-block.nd-active span:nth-child(2) {display:block;}
.nd-hidden-block {display: none;}
.nd-hidden-block.nd-visible {display: block;}

/* Icons */
.nd-icon {display:block;transition: all 0.25s;}

.nd-icon-pro {
	width: 1.4rem;
	height: 1.2rem;
	color: var(--main-color);
}
.nd-icon-common {
	width: 1.6rem;
	height:1.6rem;
	color:var(--black);
}
.nd-icon-lens {
	width: 1.8rem;
	height:1.8rem;
	color:var(--black);
}
.nd-icon-star {
	width: 1.4rem;
	height: 1.4rem;
	color:#fff;
}
.nd-icon-arrow {
	width: 1rem;
	height:0.6rem;
	color:var(--black);
}
.nd-icon-arr {
	width: 2.1rem;
	height: 1.6rem;
}
.nd-icon-social {
	width: 2.4rem;
	height: 2.4rem;
	color:rgba(0,0,0,0.4);
}
.nd-icon-filter-arrow {
	width: 1.8rem;
	height:1.6rem;
	color:var(--black);
}
.nd-icon-share {
	width: 1.4rem;
	height:1.4rem;
	color:#BFBFBF;
}
.nd-icon-message {
	width: 12px;
	height:12px;
	color:var(--main-color);
}
.nd-icon-reply {
	width: 2rem;
	height:1.8rem;
	color:rgba(0,0,0,0.4);
}
.nd-icon-location {
	width: 1.7rem;
	height: 1.7rem;
	color:var(--black);
}

/* Titles */
.nd-h1,.nd-h2,.nd-h3,.nd-h4,.nd-h5,.nd-h6, h1,h2,h3,h4,h5,h6 {display:block;}
.nd-h1, h1 {
	line-height: 1.1;
	font-size: clamp(37px, 3vw, 70px); 
}
.nd-h2, h2 {
	line-height: 1.1;
	font-size: clamp(30px, 2.7vw, 58px);
}
.nd-h3, h3 {
	line-height: 1.3;
	font-size: clamp(20px, 1.8vw, 30px);
}
.nd-h4, h4 {
	line-height: 1.3;
	font-size: clamp(18px, 1.6vw, 24px);
}
.nd-h5, h5 {
	line-height: 1.5;
	font-size: clamp(16px, 1.4vw, 20px);
}

/* Reset title styles when explicitly requested */
.nd-h2-reset {
	font-size: inherit !important;
	line-height: inherit !important;
	margin-top: 0; /* keep bottom margin from utility classes */
	letter-spacing: normal;
	text-transform: none;
}

/* Breadcrumb */ 
.nd-breadcrumb {
	padding: 3rem 0;
}
.nd-breadcrumb li {
	display: flex;
	align-items: center;
	font-size: 1.4rem;
}
.nd-breadcrumb li a:hover {
	color: var(--main-color);
}
.nd-breadcrumb li:not(:last-child)::after {
	content: '/';
	display: block;
	margin: 0 10px;
}
.nd-breadcrumb li:last-child a,
.nd-breadcrumb li:last-child span {
	pointer-events: none;
	color:rgba(0,0,0,0.4);
}

/* Slick Slider - Default Style */
.slick-slider {
	position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}
.slick-list {
	position: relative;
	overflow: hidden;
}
.slick-list.nd-dragging {
	cursor: pointer;
	cursor: hand; 
}
.slick-slider .slick-track,
.slick-slider .slick-list {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0); 
}
.slick-track {
	position: relative;
	left: 0;
	top: 0;
	display: block;
	margin-left: auto;
	margin-right: auto; 
}
.slick-loading .slick-track {
	visibility: hidden; 
}
.slick-slide {
	float: left;
	height: 100%;
	min-height: 1px;
	outline: none;
	display: none; 
}
.slick-initialized .slick-slide {
	display: block; 
}
.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

/* Slick Slider - Arrows */
.nd-prev-slide,
.nd-next-slide {
	flex: none;
	width: 3.5rem;
	height: 3.5rem;
	color: #fff;
	background-color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all .3s; 
	border-radius: 6px;
	position: absolute;
	z-index: 1;
	top:50%;
	transform: translateY(-50%);
}
.nd-prev-slide {
	left:0;
}
.nd-next-slide {
	right:0;
}
.nd-prev-slide:hover, .nd-next-slide:hover {
	background-color: var(--main-color);
}
.nd-prev-slide:hover svg, .nd-next-slide:hover svg {
	color:var(--white);
	transition: all .3s; 
}
.nd-prev-slide svg, .nd-next-slide svg {
	width: 7px;
	height: 11px; 
	color:var(--black);
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
}
.nd-prev-slide {
	transform: rotate(180deg) translateY(50%);
}

/* Slick Slider - Dots */
.slick-dotted.slick-slider {
	margin-bottom: 30px; 
}
.slick-dots {
	position: absolute;
	bottom: -25px;
	list-style: none;
	display: block;
	text-align: center;
	padding: 0;
	margin: 0;
	width: 100%; 
}
.slick-dots li {
	position: relative;
	display: inline-block;
	margin: 0 5px;
	padding: 0;
	cursor: pointer; 
}
.slick-dots li button {
	border: 0;
	background: #413680;
	display: block;
	height: 20px;
	width: 20px;
	outline: none;
	line-height: 0px;
	font-size: 0px;
	color: transparent;
	padding: 5px;
	cursor: pointer; 
}
.slick-dots li button:hover, .slick-dots li button:focus {
	outline: none; 
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
	opacity: 1; 
}
.slick-dots li.slick-active button{
	background: green;
}

/* Select */
.select2-container {width: 100%!important;}
.select2-container--default .select2-selection--single .select2-selection__placeholder {padding-right: 2rem;color:rgba(0,0,0,0.25)}
.nd-common-select .select2-container .select2-selection--single {
    height:3rem;
	border:none;
	background: none;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    height: 100%;
	display: flex;
    align-items: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    width: 1.4rem;
    background: url(../images/icons/angle_down_black.svg) no-repeat center center / contain;
    height: 0.8rem;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}
.select2-container--open.select2-container--default .select2-selection--single .select2-selection__arrow {transform: rotate(180deg) translateY(50%);}
.select2-container--default .select2-selection--single .select2-selection__arrow b {display: none;}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{background-color:var(--main-color);color:#fff}
.select2-dropdown {
    border-radius: 15px;
	border:1px solid var(--gray);
	overflow: hidden;
	box-shadow: 0 23px 34px rgba(0,0,0,0.06);
}
.select2-results__option {
    padding: 1rem 2rem;
}

.nd-language-select {
	width: 7rem;
	margin-left:2rem;
	font-weight: bold;
}
.nd-language-select .select2-container {height: 100%;}
.nd-language-select .select2-container .select2-selection--single {
    height:100%;
	border:1px solid rgba(0,0,0,0.25);
	border-radius: 10px;
}
.nd-language-select .select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0.5rem 1.3rem;
}
.nd-language-select .select2-container--default .select2-selection--single .select2-selection__arrow {right: 1rem;}
.nd-language-select .select2-container--default .select2-selection--single .select2-selection__placeholder {color:var(--black);}

/* Select Alternative */
.nd-select {
	position: relative;
	text-align: left;
	user-select: none;
	-webkit-touch-callout: none;
	font-weight: 500;
	margin: 0;
	outline: none;
	cursor: pointer;
	text-indent: 0.01px;
	color: var(--black);
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: auto;
}
.nd-select .nd-placeholder {
	position: relative;
	background: transparent;
	cursor: pointer;
	white-space: nowrap;
	overflow: hidden;
	text-align: left;
	padding: 0 2rem 0 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
}
.nd-select-arrow {
	display: block;
	width: 12px;
	margin-left:15px;
	position: absolute;
    right: 0;
}
.nd-select-arrow img {
	width: 100%;
}
.nd-select-left-icon {
    position: absolute;
    left: 0;
    z-index: 0;
}
.nd-select.nd-is-open .nd-select-arrow {
	transform: rotate(180deg);
	top: auto;
}
.nd-select.nd-is-open ul {
	display: block;
}
.nd-select ul {
	display: none;
	position: absolute;
	overflow: hidden;
	overflow-y: auto;
	width: auto;
	background: #fff;
	border-radius: 2px;
	top: 100%;
	left: 0;
	list-style: none;
	margin: 5px 0 0 0;
	padding: 0;
	z-index: 4;
	box-shadow: 0px 4px 14px 0px rgba(0, 0, 0, 0.10);
}
.nd-select ul li {
	display: block;
	text-align: left;
	padding:0.7rem 1rem;
	cursor: pointer;
	word-wrap: break-word;
	white-space: nowrap;
	margin:0;
	border-top:1px solid #efefef;
	font-size: 1.8rem;
}
.nd-select ul li:hover {
	background: var(--main-color);
	color: #fff;
}
.nd-select ul li a {
	text-decoration: none;
	color:#000;
}
.nd-select ul li:hover a {
	transition:none;
	color:#fff;
}

/* Popup  */
.nd-popup-overlay {
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(49, 49, 49, 0.62);
	z-index: 5;
	display: none;
}
.nd-popup-window, .nd-thanks-window {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	visibility: hidden;
	z-index: 110;
	transition: all .3s;
	background: #fff;
	padding: 2rem;
	border-radius: 10px;
	width: 35em;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.nd-popup-window.nd-active {
	transform: translate(-50%, -50%) scale(1);
	visibility: visible;
}
.nd-close-popup {
	position: absolute;
	top: 0.7em;
	right: 0.7em;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: visible;
	width: 26px;
	height: 26px;
	margin: 0;
	padding: 0;
	cursor: pointer;
	-webkit-transition: color 0.2s;
	transition: color 0.2s;
	background: #fff;
	border-radius: 50%;
}
.nd-cp__chross {
	position: relative;
	width: 17px;
	height: 17px;
	cursor: pointer;
}
.nd-cp__chross::before, .nd-cp__chross::after {
	content: '';
	position: absolute;
	top: 45%;
	left: 1px;
	display: block;
	width: 15px;
	height: 1px;
	border-bottom: 1px solid #000;
	transform: rotate(45deg);
}
.nd-cp__chross::after {
	left: 0;
	transform: rotate(-45deg);
}

/* Checkbox */
.nd-checkbox-wrap input {display: none;}
.nd-checkbox-wrap input:checked+label::before {
    background: var(--main-color) url('../images/icons/check.svg');
    background-position: 6px 7px, 0 0;
    background-repeat: no-repeat, repeat;
    border: 1px solid var(--main-color);
    background-size: 13px;
}
.nd-checkbox-wrap label {
	display:flex;
	align-items: center;
	font-size: 1.8rem;
}
.nd-checkbox-wrap label:hover {cursor: pointer;}
.nd-checkbox-wrap label::before {
	content: '';
	flex: none;
	height: 24px;
	width: 24px;
	border-radius: 3px;
	border: 1px solid #C9C9C9;
	margin-right:1em;
}

.nd-type__system input {
	display: none;
}
.nd-type__system label {
	display:flex;
	align-items: center;
	font-size: 1.8rem;
	width: 100%;
	padding:1em;
	background: var(--gray);
	border-radius: 15px;
	margin-bottom:1rem;
	cursor: pointer;
	border:1px solid transparent;
}
.nd-label__dot {
    flex: none;
    height: 20px;
    width: 20px;
    border-radius: 50%;
    border: 5px solid #fff;
    margin-right: 1em;
    background: #fff;
}
.nd-type__system input:checked + label {
    background: var(--light-blue);
	border:1px solid var(--blue);
}
.nd-type__system input:checked + label .nd-label__dot {
	background: var(--blue);
}

/* Accordeon */
.nd-acc-item {
	background: #fff;
	border: 1px solid var(--gray);
	border-radius: 10px;
	margin-bottom:2rem;
}
.nd-acc__head {
	padding: 1.5rem 3rem;
	cursor: pointer;
	font-size: 2rem;
	font-weight: bold;
}
.nd-acc-right-icon {
	background: var(--blue);
	min-width:3.8rem;
	height:3.8rem;
	border-radius: 6px;
	font-size: 3.5rem;
	color:#fff;
	margin-left:2rem;
	font-weight: 500;
}
.nd-acc-right-icon span:last-child, .nd-acc__head.nd-active .nd-acc-right-icon span:first-child {
	display: none;
}
.nd-acc__head.nd-active .nd-acc-right-icon span:last-child {
	display: block;
}
.nd-acc__body {
	padding:0 10rem 2rem 3rem;
	display: none;
	font-size: 1.6rem;
}

/* Стили для пошаговой формы в модальном окне */
.nd-step { display: none; }
.nd-step.nd-active { display: block; }
.nd-next:disabled { background-color: #ccc; cursor: not-allowed; color:#fff; border:1px solid transparent;}
.nd-next:disabled .nd-icon {color:#fff;}
.nd-prev .nd-icon {
	margin:0 1rem 0 0;
	transform: rotate(90deg);
	color:var(--main-color);
}
.nd-next, .nd-prev {
	cursor: pointer;
}
a.nd-next.nd-disabled {
    pointer-events: none;
    opacity: 0.5;
    text-decoration: none;
    cursor: default;
}

/* ===== Custom Styles =====*/
.nd-header {
	background: #fff;
	padding: 2.5rem 0;
	border-bottom: 1px solid var(--gray);
}
.nd-header .nd-btn {
	height: 100%;
}
.nd-logo {
	display: block;
	width: 13rem;
	margin-right:4rem;
}
.nd-logo img {
	width:auto;
	height:auto;
	max-width:100%;
	max-height:65px;
}
.nd-menu__head {
	display: none;
}
.nd-submenu__head {
	padding:3rem 0;
}
.nd-submenu__head .nd-cp__chross {
	margin-top:5px;
}
.nd-menu__list li {
	margin:0px 1.5rem;
}
.nd-submenu__list li  {
	margin-bottom:1em;
}
.nd-menu__list li a, .nd-submenu__list li a {
	display: inline-flex;
	align-items: center;
	&:hover {
		color:var(--main-color);
	}
}
.nd-menu__list li a .nd-icon-pro {
	margin-left:10px;
}
.nd-submenu {
	position: fixed;
	bottom: 0;
	right: -100%;
	width: 25%;
	height: 100%;
	background: #fff;
	box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
	transition: right 0.3s ease;
	z-index: 100;
	padding:0 20px 45px;
}
.nd-menu.nd-active {
	right: 0;
}
.nd-submenu.nd-active {
	right: 0;
	z-index: 200;
}
.nd-menu-header {
	display: flex;
	justify-content: flex-end;
	padding: 10px;
	background: #f5f5f5;
}
.nd-burger, .nd-back {
	display: none;
}
.nd-mobile-menu__item {
	padding-bottom: 2rem;
	border-bottom: 1px solid var(--gray);
	margin-bottom:2rem;
}
.nd-mobile-menu__info {
	margin-bottom:2rem;
}
.nd-mobile-menu__info span {
	display: block;
	font-size: 1.4rem;
	color:rgba(0,0,0,0.1);
	margin-bottom:5px;
}
.nd-mobile-menu__contact {
	font-weight: bold;
	font-size: 2rem;
}
.nd-header__contact {
	padding: 1rem 3rem;
	display: flex;
	flex-direction: column;
	justify-content: center;
	border:1px solid rgba(0,0,0,0.25);
	border-radius: 10px;
	&:hover {
		color:var(--main-color);
	}
}
.nd-header__contact__title {
	display: block;
	color:rgba(0,0,0,0.25);
	font-size: 12px;
}
.nd-header__contact__num {
	display: block;
	font-weight: bold;
}
.nd-language--select {
	border:1px solid rgba(0,0,0,0.25);
	border-radius: 10px;
	width: auto;
	padding: 0 1.3rem;
	margin-left:2rem;
}
.nd-language--select .nd-placeholder {
	font-weight: bold;
}
.nd-language--select .nd-select-arrow {
    margin-right:1.3rem;
}
.nd-language--select ul {
	width: 100%;
	border-radius: 0 0 10px 10px;
}
.nd-language--select  ul li {
    display: block;
    text-align: left;
    padding: 1rem 1.5rem;
}
.nd-header .nd-btn-container {
	margin-left:2rem;
}
.nd-hero {
	padding:6rem 0;
}
.nd-hero__img {
	width: 37%;
}
.nd-hero__img img {
	width: 100%;
}
.nd-uptitle {
	display: inline-flex;
	font-size: 1.7rem;
	font-weight: 600;
	border-radius: 10px;
	background: var(--light-blue);
	padding:2rem;
	margin-bottom:2em;
	text-transform: capitalize;
	line-height: 1;
}
.nd-uptitle .nd-icon-common {
	width: 1.8rem;
	height:2.2rem;
	color:var(--blue);
	margin-right:1rem;
}
.nd-hero__content p {
	margin:1.2em 0 0;
}
.nd-search__console {
	padding: 1.5rem 3rem;
	border-radius: 15px;
	border:1px solid var(--gray);
	background: #fff;
	margin:6rem 0 4rem;
	box-shadow: 0 8px 13px rgba(0,0,0,0.04);
}
.nd-search__console__item {
	flex:1;
}
.nd-search__console__item:first-child {
	padding: 0 3rem 0 0;
}
.nd-search__console__item:nth-child(2) {
	padding: 0 3rem;
	border-left:1px solid rgba(0,0,0,0.25);
}
.nd-search__console__item .nd-btn {
	width: 100%;
}
.nd-option__label {
	font-size: 1.4rem;
	margin-bottom:0.5rem;
}
.nd-option__label .nd-icon {
	margin-right:1rem;
	width: 1.3rem;
	height:1.3rem;
}
.nd-search__console .nd-select, .nd-filter__panel .nd-select {
	height: 4rem;
}
.nd-search__console .nd-select .nd-placeholder, .nd-filter__panel .nd-select .nd-placeholder {
    color:rgba(0,0,0,0.25);
	font-size: 2rem;
}
.nd-search__console .nd-select ul {
    width: 100%;
}
.nd-cover__link {
	background: #E6F4F1;
	padding:1.7rem;
	border-radius: 10px;
	font-weight: bold;
	font-size: 1.4rem;
	display: block;
	color:var(--black);
	line-height: normal;
	&:hover {
		color:var(--main-color);
	}
}
.nd-cover__link.nd-js--toggle-list {
	color:var(--main-color);
}
.nd-section__head {
	margin-bottom:5rem;
}
.nd-page__head {
	margin-bottom:3rem;
}
.nd-section__head .nd-uptitle {
	color:var(--blue);
	margin-bottom:1em;
}
.nd-uptitle.nd-text--center {
	margin:0 auto 1.2em;
}
.nd-company__card {
	border-radius: 15px;
	background: #fff;
	border:1px solid var(--gray);
	margin-bottom:3rem;
	padding:4rem;
}
.nd-top__card {
	border:2px solid var(--blue);
	box-shadow: 0 19px 25px rgba(0,0,0,0.08);
}
.nd-company__logo {
	width: 10rem;
	height: 7.5rem;
	margin-right:2rem;
	display: block;
	flex: none;
}
.nd-company__logo.nd-mobile {
	display: none;
}
.nd-company__logo img {
	height: 100%;
	width: 100%;
	object-fit: contain;
	object-position: top;
}
.nd-ch__title__row {
	margin-bottom:0.5rem;
}
.nd-verified__barge {
	background: var(--light-blue);
	font-size: 11px;
	font-weight: bold;
	margin:0 1rem;
	padding:0.7rem 1rem;
	border-radius: 6px;
	line-height: normal;
}
.nd-verified__barge img {
	margin-right:5px;
	width: 14px;
}
.nd-company__card .nd-verified__barge {
	display: none;
}
.nd-company__card.nd-top__card .nd-verified__barge {
	display: flex;
}
.nd-company__card.nd-top__card .nd-verified__icon {
	display: none;
}
.nd-verified__icon {
	margin: 0 1rem;
	display: inline-block;
}
.nd-company__title {
	font-size: 2.4rem;
	display: block;
	align-items: center;
	text-transform: capitalize;
}
.nd-top__card .nd-company__title {
	color:var(--blue);
} 
.nd-company__card__head .nd-item {
	flex:auto;
	padding-right:2rem;
}
.nd-barge {
	height: 2.2rem;
	margin:0 0.7rem;
}
.nd-barge img {
	width: 100%;
	height:100%;
	object-fit: contain;
}
.nd-star__rating {
	margin-right:1rem;
}
.nd-star__unite {
	display: block;
	background: #E6F4F1;
	width: 3rem;
	height:3rem;
	border-radius: 3px;
	margin-right:3px;
	position: relative;
	overflow: hidden;
}
.nd-star__unite::before {
	content: '';
	display: block;
	width: 50%;
	height:50%;
	position: absolute;
	top:50%;
	left:50%;
	transform: translate(-50%, -50%);
	background: url(../images/icons/star.svg) no-repeat center center / contain;
}
.nd-star__rating .nd-raiting__ind {
	background: var(--main-color);
}
.nd-star__rating.nd-exelent .nd-raiting__ind {
	background: #04AB46;
}
.nd-raiting__ind {
	display: block;
	height:100%;
}
.nd-raiting__num {
	display: block;
	margin:0 1em 0 0;
	line-height: 1;
	font-size: 1.6rem;
}
.nd-raiting__num.nd-exelent {
	color:#04AB46;
}
.nd-review__num {
	display: block;
	color:rgba(0,0,0,0.4);
	text-decoration: underline;
	margin:0 1em 0 0;
	font-size: 1.6rem;
}
.nd-map__link {
	color:var(--blue);
	font-size: 1.6rem;
	text-decoration: underline;
}
.nd-map__link::before {
	content: '';
	display: block;
	width: 1rem;
	height:1.2rem;
	background: url(../images/icons/map_marker.svg) no-repeat center center / contain;
	margin-right:5px;
}
.nd-map__area {
	height: 40rem;
}
.nd-company__adv__list li {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-bottom:0.8em;
}
.nd-company__adv__list li i,
.nd-company__adv__list li svg {
	align-self: flex-start;
	margin-top: 2px;
}
.nd-company__adv__list li:last-child {
	margin:0;
}
.nd-company__adv__list li .nd-icon {
	margin-right:1rem;
}
.nd-card__block__title {
	display: block;
	margin-bottom:1em;
	font-weight: 600;
}
.nd-overview__barge {
	background: var(--light-blue);
	border-radius: 10px;
	padding: 1.5rem 2rem;
	width: 50%;
	line-height: normal;
}
.nd-overview__barge__row {
	gap:7px;
}
.nd-overview__auth {
	display: block;
	font-size: 1.4rem;
}
/*
.nd-text-container .nd-overview__text {
  max-height: 7rem;
  overflow: hidden;
  transition: max-height 0.5s ease;
  position: relative;
}
.nd-text-container.nd-expanded .nd-overview__text {
  max-height: 1000px;
}
*/
.nd-expandable-list li {
	margin:0 1rem 1rem 0;
}
.nd-expandable-list li.nd-hidden {
  display: none;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.nd-list-container.nd-expanded .nd-expandable-list li.nd-hidden {
  display: list-item;
  opacity: 1;
}
.nd-overview__text p {
	font-size: 1.6rem;
	margin-bottom:0;
	display: block;
	color: rgba(0, 0, 0, 0.65);
}
.nd-overview__text .nd-more__link {
	margin-left:1rem;
}
.nd-more__link {
	font-size: 1.6rem;
	color:var(--main-color);
	display: inline-flex;
	align-items: center;
	font-weight: bold;
	text-decoration: none;
}
.nd-more__link::after {
	content:'';
	width: 8px;
	height: 8px;
	background: url(../images/icons/angle_down.svg) no-repeat center center / cover;
	transform: rotate(-90deg);
	margin-left:5px;
}
/*
.nd-more__link span:last-child, .nd-more__link.nd-active span:first-child  {display:none;}
.nd-more__link.nd-active span:last-child {display:block;}
*/
.nd-overview__barge p {
	font-size: 1.4rem;
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
	margin-top: 0.5rem;
}
.nd-more__link {
	display: inline-flex;
}
.nd-more__link img {
	transform: rotate(-90deg);
	margin-left:3px;
	width: 10px;
}
.nd-card__gallery {
	margin-top:4rem;
	overflow: hidden;
}
.nd-card__gallery .nd-prev-slide, .nd-card__gallery .nd-next-slide  {
	display: none!important;
}
.nd-gallery__item a:hover {
	opacity: 0.5;
}
.nd-gallery__item img {
	width: 100%;
	aspect-ratio: 1.5;
	object-fit: cover;
	border-radius: 10px;
}
.nd-more__photo {
	height: 100%;
	top:0;
	right:0;
	color:var(--main-color);
	font-weight: bold;
	font-size: 1.4rem;
	background: linear-gradient(to right, transparent 0%, #fff 70%);
	padding-left: 4rem;
	z-index: 1;
}
.nd-bg--light-blue {
	background: var(--light-blue);
}
.nd-bg--light-blue .nd-section__head .nd-uptitle {
    background: #fff;
}
.nd-bg--white {
	background: #fff;
}
.nd-bg--blue {
	background: var(--blue);
}
.nd-info__card {
	border-radius: 15px;
	padding: 4rem;
	height: 100%;
	border:1px solid var(--gray);
}
.nd-info__card .nd-icon-arr {
	margin-left:3rem;
}
.nd-border--card {
	border:1px solid var(--blue);
}
.nd-info__card__head {
	margin-bottom:4rem;
}
.nd-info__card__icon {
	width: 5rem;
	height: 5rem;
	border-radius: 10px;
}
.nd-info__card__icon .nd-icon {
	width: 2rem;
	height: 2rem;;
}
.nd-info__card__icon.nd-bg--white .nd-icon {
	color:var(--blue);
}
.nd-info__card__icon.nd-bg--blue .nd-icon {
	color:#fff;
}
.nd-info__card p {
	font-size: 1.6rem;
}
.nd-info__card .nd-h4 {
	margin-bottom:0.5em;
	text-transform: capitalize;
}
.nd-why__choose__head {
	height: 100%;
}
.nd-img__area img {
	border-radius: 15px;
	width: 100%;
}
.nd-service__card img {
	width: 100%;
	aspect-ratio: 1.5;
	border-radius: 15px;
	object-fit: cover;
}
.nd-service__card__img {
	margin-bottom:2rem;
}
.nd-service__card .nd-h4 {
	text-transform: capitalize;
	margin-bottom:0.7em;
	&:hover {
		color:var(--main-color);
	}
}
.nd-service__card__img {
	display: block;
	transition: all 0.25s;
	&:hover {
		opacity: 0.5;
		transition: all 0.25s;
	}
}
.nd-cards__wrapper {
	gap:5rem 3rem;
}
.nd-service__card {
	display: flex;
	flex-direction: column;
	height: 100%;
}
.nd-service__card__content {
	flex:1;
	display: flex;
	flex-direction: column;
}
.nd-service__card__content .nd-btn-container {
	justify-self: flex-end;
	margin-top:auto;
}
.nd-service__card__content p {
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
	height: 4.5em;
}
.nd-faq__col__title {
	display: block;
	font-size: 2.4rem;
	color:rgba(0,0,0,0.4);
	margin-bottom:0.7em;
}

.nd-footer {
	background: #fff;
	border-top:1px solid var(--gray);
}
.nd-footer__top {
	padding:8rem 0 5rem;
}
.nd-copyright {
	display: block;
	font-size: 1.4rem;
	color:rgba(0,0,0,0.4);
	width: 65%;
}
.nd-footer__contact {
	margin:4rem 0;
}
.nd-contact__item {
	display: block;
	font-weight: bold;
	font-size: 2rem;
}
.nd-subscribe__console {
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--gray);
    background: #fff;
	box-shadow: 0 8px 13px rgba(0, 0, 0, 0.04);
}
.nd-subscribe__console .nd-option__label {
    margin-bottom: 0;
}
.nd-footer__subtitle {
	display: block;
	font-size: 2rem;
	margin-bottom:1em;
}
.nd-footer__nav.nd-two-column li {
	width: 50%;
	padding-right:1em;
}
.nd-footer__nav li {
	margin-bottom:0.7em;
}
.nd-footer__nav li a {
	color:rgba(0,0,0,0.4);
	&:hover {
		color:var(--main-color);
	}
}
.nd-lang--select {
	width: auto;
	color:rgba(0,0,0,0.4);
}
.nd-lang--select .nd-placeholder {
    text-transform: uppercase;
    font-weight: 500;
}
.nd-lang--select ul li {
  	text-transform: uppercase;
    font-weight: 500;
}
.nd-footer__bottom {
	padding:3rem 0;
	border-top:1px solid var(--gray);
}
.nd-social a {
	display:flex;
	align-items: center;
	justify-content: center;
	width: 7rem;
	height: 7rem;
	border-radius: 5px;
	border:1px solid rgba(0,0,0,0.4);
	margin-right:1rem;
	&:hover {
		border:1px solid var(--main-color);
	}
}
.nd-social a:hover .nd-icon {
	color:var(--main-color);
	transition: all 0.25s;
}
.nd-footer__link {
	display: block;
	color: rgba(0,0,0,0.4);
	&:hover {
		color:var(--main-color);
	}
}
.nd-filter__panel {
	box-shadow: 0 8px 13px rgba(0,0,0,0.04);
	background: #fff;
	border-radius: 15px;
	padding: 1.5rem 2rem;
}
.nd-filter__arrow {
	display: block;
	width: 3rem;
	height:3rem;
	border-top:2px solid var(--black);
	margin-left:1rem;
	position: relative;
}
.nd-filter__arrow::before {
	content:'';
}
.nd-filter__panel__item {
	padding: 0 2.5rem;
	border-right:1px solid var(--gray);
}
.nd-filter__panel .nd-item:first-child .nd-filter__panel__item {
	padding: 0 2.5rem 0 0;
}
.nd-filter__panel .nd-item:last-child .nd-filter__panel__item {
	padding: 0 0 0 2.5rem;
	border:none;
}
.nd-chooses__unite {
	background: #fff;
	border-radius: 6px;
	font-weight: bold;
	padding:0.8rem 2rem;
	border:1px solid var(--gray);
	font-size: 1.4rem;
	margin:0 1rem 1rem 0;
	height: 3.8rem;
	line-height: 1;
}
.nd-chooses__unite:last-child {
	background: #E6F4F1;
	color:var(--main-color);
	border:none;
}
.nd-chooses__unite .nd-cp__chross {
	margin:-0.4rem 0 0 1rem;
	cursor: pointer;
	width: 10px;
    height: 10px;
}
.nd-chooses__unite .nd-cp__chross::before, .nd-chooses__unite .nd-cp__chross::after {
    width: 10px;
	border-bottom: 1px solid rgba(0,0,0,0.4);
}
.nd-available__index {
	color:rgba(0,0,0,0.4);
	font-size: 1.7rem;
}
.nd-available__index--spaced {
	margin-right: 1.6rem;
}
.nd-addition__filter .nd-common__text {
	font-size: 1.4rem;
}
.nd-addition__filter .nd-common-select {
	font-size: 1.4rem;
	margin-left:1rem;
	font-weight: bold;
	min-width: 15rem;
}
.nd-addition__filter .nd-common-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
	color:var(--black);
}
.nd-ad__banner__area {
	margin-bottom:3rem;
}
.nd-ad__banner__area img {
	width:100%;
}
.nd-cp__item__title {
	display: block;
	margin-bottom:0.7em;
}
.nd-cp__item {
	padding-bottom:1rem;
	margin-bottom:2rem;
	border-bottom:1px solid var(--gray)
}
.nd-cp__item:last-child {
	border-bottom: none;
}
.nd-cp__item .nd-checkbox-wrap {
	margin-bottom:1rem;
}
.nd-show__more {
	display: inline-flex;
	align-items: center;
	font-size: 1.4rem;
	color:var(--main-color);
	font-weight: bold;
}
.nd-show__more::after {
	content:'';
	width: 10px;
	height:7px;
	margin-left:1rem;
	display: block;
	background: url(../images/icons/angle_down.svg) no-repeat center center / cover;
}
.nd-show__more.nd-active::after {
	transform: rotate(180deg);
}
.nd-pagination__list li {
	margin:0 1rem 0 0;
}
.nd-pagination__list li:last-child {
	margin: 0;
}
.nd-pagination__link {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6.5rem;
	height: 6.5rem;
	border:1px solid #BFBFBF;
	color:rgba(0,0,0,0.4);
	border-radius: 10px;
	line-height: 1;
	&:hover {
		border:1px solid var(--main-color);
		color:var(--main-color);	
	}
}
.nd-pagination__link.nd-current {
	border:1px solid var(--main-color);
	color:var(--main-color);
}
.nd-pagination__list li.nd-current > a.nd-pagination__link {
	border:1px solid var(--main-color);
	color:var(--main-color);
}
.nd-pagination__list li.nd-next > a.nd-pagination__link {
	width: auto;
	padding: 0 2rem;
	white-space: nowrap;
}
.nd-pagination__list li.nd-next > a.nd-pagination__link .nd-icon {
	margin-left: 1rem;
}
.nd-pagination__list li.nd-next > a.nd-pagination__link .nd-icon-arrow {
	transform: rotate(-90deg);
}
.nd-pagination__list li.nd-prev > span {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 6.5rem;
	height: 6.5rem;
	border:1px solid #BFBFBF;
	color:rgba(0,0,0,0.4);
	border-radius: 10px;
	line-height: 1;
}
.nd-pagination__list li.nd-prev .nd-icon {
	transform: rotate(90deg) translateX(2px);
}
.nd-pagination__list li:first-child .nd-icon {
	transform: rotate(90deg);
}
.nd-seo__text .nd-h4 {
	margin-bottom:1em;
}
.nd-seo__text p {
	font-size: 1.4rem;
}

.nd-filter__popup {
	position: fixed;
	display:block;
	transform: translateX(100%);
	top: 0;
	right: 0;
	width: 25%;
	height: 100%;
	background-color: #fff;
	padding: 0 4rem 4rem;
	transition: all .3s;
	z-index: 120;
	overflow-y: auto;
}
.nd-filter__popup.nd-active{
	transform: translateX(0);
}
.nd-filter__popup__head .nd-close-popup {
	position: relative;
}
.nd-filter__popup__head {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 3rem 0;
	border-bottom:1px solid var(--gray);
}
.nd-map__section {
	height:60rem;
	border-radius: 10px;
	overflow: hidden;
	border:1px solid rgba(0,0,0,0.25);
}
.nd-sc__label {
	font-size: 1.4rem;
}
.nd-page__banner {
	height: 50rem;
}
.nd-page__banner picture {
	height: 100%;
}
.nd-page__banner img {
	width: 100%;
	height:100%;
	object-fit: cover;
	border-radius: 20px;
}
.nd-product__page {
	margin-top:-18rem;
}
.nd-product__content {
	padding: 0 3rem;
}
.nd-product__head {
	margin-bottom:7rem;
}
.nd-product__head__block {
	padding:4.5rem 4rem;
	background: #fff;
	border-radius: 15px;
	border:1px solid var(--gray);
	box-shadow: 0 12px 22px rgba(0,0,0,0.08);
	overflow: hidden;
	height: 100%;
}
.nd-product__head__aside .nd-item {
	flex:1;
}
.nd-product__head__aside .nd-item:last-child .nd-product__head__block {
	padding: 0;
}
.nd-product__head__aside {
	width: 28%;
}
.nd-product__head__main {
	width: 70%;
}
.nd-product__logo {
	display: block;
	margin-right:2rem;
	flex: none;
}
.nd-product__card__body  .nd-review__num {
    margin: 0;
}
.nd-product__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.nd-product__logo.nd-mobile {
	display: none;
}
.nd-product__card__title {
	text-transform: capitalize;
}
.nd-product__card__body .nd-verified__barge {
    font-size: 1.4rem;
    padding: 1rem;
	transform: translateY(-0.7rem);
}
.nd-product__card__info {
	margin-top:3rem;
}
.nd-contact__block a {
	font-size: 1.4rem;
	&:hover {
		color:var(--main-color);
	}
}
.nd-contact__block__title .nd-icon {
	margin-right:1rem;
}
.nd-work__time__row {
	margin-bottom:3px;
}
.nd-work__time__row span {
	display: block;
	font-size: 1.4rem;
}
.nd-work__time {
	margin-top:0.5rem;
}
.nd-call__us__info span {
	display:block;
	font-size: 1.7rem;
}
.nd-call__us .nd-info__card__icon {
	margin-right:2rem;
}
.nd-req__text img {
	margin-right:1rem;
}
.nd-req__text {
	font-size: 1.4rem;
}
.nd-about__product .nd-h4 {
	margin-bottom:1em;
	text-transform: capitalize;
}
.nd-text__block {
	margin-bottom:4rem;
}
.nd-review__barge {
	display: inline-flex;
	background: var(--light-blue);
    border-radius: 10px;
    padding: 1rem 2rem;
	font-size: 1.4rem;
	margin:0.5rem 1rem 0.5rem 0;
}
.nd-rb__title {
	display: block;
	font-size: 1.4rem;
	margin-right:2em;
}
.nd-offer__title {
	font-size: 1.4rem;
	display: block;
	&:hover {
		color:var(--main-color);
	}
}
.nd-offer__img {
	display: block;
	margin-bottom:1rem;
	transition: all 0.25s;
	&:hover {
		opacity: 0.5;
		transition: all 0.25s;
	}
}
.nd-offer__img img {
	width: 100%;
	aspect-ratio: 1.5;
	object-fit: cover;
	border-radius: 15px;
}
.nd-gallery__slider__area {
	overflow: hidden;
}
.nd-gallery__slider__area::before {
	content:'';
	position: absolute;
	top:0;
	right:0;
	width: 20rem;
	height: 100%;
	background: linear-gradient(to right, transparent, #fff);
	z-index: 1;
}
.nd-gallery__slider .slick-slide {
	padding: 0 1rem;
}
.nd-gallery__slider .slick-list {
	margin: 0 -1rem;
}
.nd-gallery__slider .slick-disabled {
	display: none!important;
}
.nd-about__product__block {
	margin-bottom:7rem;
}
.nd-review__block {
	background: #fff;
	border:1px solid var(--gray);
	padding: 4rem;
	border-radius: 15px;
}
.nd-review__raiting {
	width: 43%;
}
.nd-review__feedback {
	width: 55%;
}
.nd-review__block .nd-h5 {
	margin-bottom:1em;
}
.nd-review__raiting .nd-star__unite {
    width: 4.8rem;
    height: 4.8rem;
}
.nd-review__block .nd-raiting__num {
	font-size: 2.4rem;
}
.nd-grade__text {
	display: block;
	font-size: 1.4rem;
}
.nd-grade__row:not(:last-child) {
	margin-bottom:1.5rem;
}
.nd-grage__indicator {
	height: 4px;
	border-radius: 3px;
	background:var(--gray);
	width: 80%;
	position: relative;
	overflow: hidden;
}
.nd-raiting__filling {
	position: absolute;
	height: 100%;
	border-radius: 3px;
	background: var(--main-color);
	top:0;
	left:0;
}
.nd-review__feedback__bottom p {
	font-size: 1.4rem;
	margin-bottom:0.7em;
}
.nd-action__raiting .nd-star__unite {
    width: 4rem;
    height: 4rem;
	background: var(--gray);
	cursor: pointer;
}
.nd-action__raiting .nd-star__unite.nd-active {
  background-color: var(--main-color);
}
.nd-chat__review {
	padding:3rem 0;
	border-top:1px solid var(--gray);
}
.nd-chat__review:first-child {
	padding:0 0 3rem;
	border:none;
}
.nd-chat__review__head {
	margin-bottom:2rem;
}
.nd-chat__avatar {
	width: 8%;
	margin-right:2rem;
	flex:none;
}
.nd-chat__avatar img {
	width:100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 10px;
}
.nd-user__name {
	display:block;
	font-weight: bold;
}
.nd-user__location {
	font-size: 1.4rem;
	color:rgba(0,0,0,0.65);
	display: block;
	margin-right:0.7em;
}
.nd-user__status, .nd-user__owner {
	font-size: 1.4rem;
	color:var(--blue);
	display: flex;
	align-items: center;
	margin-right:0.7em;	
}
.nd-user__status::before, .nd-reply__review .nd-review__date::before {
	content:'';
	display:block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: rgba(0,0,0,0.4);
	margin-right:0.7rem;
}
.nd-review__date {
	display: flex;
	align-items: center;
	font-size: 1.4rem;
	color:rgba(0,0,0,0.4);
}
.nd-chat__review__info {
	flex:auto;
}
.nd-reply__link {
	color:var(--main-color);
	font-size: 14px;
	line-height: 1;
	&:hover {
		color:gray;
	}
}
.nd-reply__link .nd-icon {
	margin-right:10px;
}
.nd-reply__link:hover .nd-icon {
	color:gray;
}
.nd-chat__review__text p {
	font-size: 1.4rem;
}
.nd-chat__review__text {
	margin-bottom:1.5rem;
}
.nd-chat__review__photo {
	margin-bottom:1rem;
}
.nd-chat__review__img {
	margin:0 1rem 1rem 0;
	width: 13rem;
}
.nd-chat__review__img img {
	border-radius: 6px;
	width:100%;
	aspect-ratio: 1.5;
	object-fit: cover;
}
.nd-reply__message .nd-icon-reply {
	margin-right:2rem;
	flex:none;
}
.nd-reply__review .nd-chat__avatar {
	width: 4.8rem;
}
.nd-reply__review .nd-chat__avatar img {
	border-radius: 6px;
}
.nd-reply__review {
	padding: 0;
	border:none;
}
.nd-reply__review .nd-chat__review__head {
    margin-bottom: 1rem;
}
.nd-reply__review .nd-chat__review__text {
    margin-bottom: 0;
}
.nd-not-autorizate .nd-input-wrapper textarea {
	height: 10rem;
}
.nd-popup__content .nd-h5 {
	margin-bottom:1em;
}
.nd-similar__company__logo {
	width: 10rem;
	height: 7rem;
	display: block;
	margin-right:1rem;
	flex: none;
}
.nd-similar__company__logo img {
	width: 100%;
	height:100%;
	object-fit: contain;
}
.nd-similar__company__name {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nd-similar__company__descript {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.nd-similar__card__img {
	display: block;
	margin-bottom:3rem;
	&:hover {
		opacity: 0.5;
	}
}
.nd-similar__card__img img {
	width: 100%;
	aspect-ratio: 1.5;
	object-fit: cover;
	border-radius: 10px;
}
.nd-share--simple .nd-icon {
    margin-right:0;
}
.nd-share--simple {
	width: 6rem;
	justify-content: center;
	flex:none;
}
.nd-btn__row .nd-btn {
	flex:auto;
}
.nd-form__content {
	padding:3rem 5rem;
}
.nd-step__num {
	display: block;
	text-align: center;
	font-size: 1.4rem;
	margin-bottom:1em;
}
.nd-step__indicator {
	width: 12rem;;
	height:4px;
	border-radius: 2px;
	background: var(--gray);
	margin: 0 auto;
	overflow: hidden;
}
.nd-step__ind__filling {
	top:0;
	left:0;
	background: var(--main-color);
	height:100%;
}
.nd-step__counter {
	margin:0 auto 2rem;
}
.nd-step .nd-btn {
	flex:auto;
}
.nd-prev {
	margin-right:4rem;
}
.nd-input__icon {
	border:1px solid var(--gray);
	width: 7rem;
	border-radius: 0 15px 15px 0;
	border-left: none;
}
.nd-input__row .nd-input__area {
	flex:auto;
	border-radius: 15px 0 0 15px;
}
.nd-form__content .nd-h4 {
	margin-bottom:0.7em;
	text-transform: capitalize;
}
.nd-more__photo .nd-sm-hide {
	margin:0 3px;
}
.nd-view__link {
	margin-left:10px;
	font-size: 12px;
	line-height: 1;
}
.nd-view__link img {
	margin-right:5px;
}
.nd-view__link:last-child {
	color:rgba(0,0,0,0.4);
}




/* СТИЛИ ДЛЯ НОВЫХ СТРАНИЦ Start */
/* Обновлённый Header Start */
.nd-logo {
    width: 12.5rem;
    margin-right: 3rem;
}
.nd-menu__list li {
    margin: 0px 1.3rem;
}
.nd-header__contact {
    padding: 0rem 3rem;
    display: flex;
	border:none;
	border-radius: 0;
}
.nd-header__contact__wrapper::before, .nd-header__contact__wrapper::after {
	content:'';
	height:60%;
	width: 1px;
	background: rgba(0,0,0,0.25);
}
.nd-language-select .select2-container .select2-selection--single {
    border: none;
    border-radius: 0;
}
.nd-language-select {
	margin:0 2rem;
    display: flex;
    align-items: center;
}
.nd-language-select .select2-container {
    height: auto;
}
.nd-header .nd-btn-container {
    margin-left: 0;
}
.nd-btn--black {
	background: #394149;
	color:#fff;
	border:1px solid #394149;
}
.nd-btn--black .nd-add__icon {
	background: #fff;
	color:#394149;
}
.nd-btn--black:hover .nd-add__icon {
	background: #394149;
	color:#fff;
	transition: all 0.25s;
}

/* Обновлённый Header End */
.nd-btn {
	padding:2rem 2.5rem;
}
.nd-page__main__col {
	width: 72%;
}
.nd-sidebar {
	width: 25%;
}
.nd-sidebar__title {
	display: block;
	font-size: 2.4rem;
}
.nd-mr__card {
	margin-bottom:3rem;
}
.nd-mr__card__img {
	width: 16rem;
	flex:none;
	margin-right:2rem;
	display: block;
	&:hover {
		opacity: 0.5;
		transition: all 0.25s;
	}
}
.nd-mr__card__img img {
	width: 100%;
	aspect-ratio: 1.6;
	object-fit: cover;
	border-radius: 10px;
}
.nd-mr__title {
	font-size: 1.7rem;
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
	height: 4.5em;
	&:hover {
		color: var(--main-color);
	}
}
.nd-blog__grid {
	gap:4rem 2.2rem;
}
.nd-blog__card__img {
	display: block;
	margin-bottom:1.5rem;
	position: relative;
}
.nd-blog__card__img img {
	width: 100%;
	aspect-ratio: 1.5;
	object-fit: cover;
	border-radius: 15px;
}
.nd-view__info__item:not(:last-child) {
	margin-right:3rem;
}
.nd-view__info__item .nd-icon {
	flex:none;
	margin-right:1rem;
	color:rgba(0,0,0,0.4);
	width: 1.4rem;
	height: 1.4rem;
}
.nd-view__info__text {
	display: block;
	font-size: 1.6rem;
	color:rgba(0,0,0,0.65);
	transform: translateY(2px);
}
.nd-view__info {
	margin-bottom:1.5rem;
}
.nd-blog__card__descr p {
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	color:rgba(0,0,0,0.65);
}
.nd-blog__card__title {
	display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
	height: 2.6em;
	margin-bottom: 0.2em;
	&:hover {
		color:var(--main-color);
	}
}
.nd-tag__row {
	gap:1.4rem;
}
.nd-trusted-pros__chips {
	max-width: 90rem;
	margin-left: auto;
	margin-right: auto;
	row-gap: 0.2rem;
}
.nd-blog__tag__row {
	bottom:1rem;
	right:1rem;
	gap:1.4rem;
}
.nd-tag__link {
	display: block;
	font-weight: bold;
	font-size: 1.4rem;
	background: #E6F4F1;
	border-radius: 10px;
	padding: 1.8rem 2rem;
	line-height: 1;
	&:hover {
		color: var(--main-color);
	}
}
.nd-blog__card .nd-tag__link {
	padding: 1.2rem 2rem;
}
.nd-pa__name {
	display: block;
	margin-bottom: 0.2em;
}
.nd-pa__function {
	display: block;
	font-size: 1.4rem;
	color: var(--main-color);
	margin-right:2rem;
	line-height: 1;
}
.nd-pa__social .nd-icon {
	width: 12px;
	height: 12px;
	margin-right:10px;
}
.nd-pa__social a:hover .nd-icon {
	color:var(--main-color);
}
.nd-pa__avatar {
	width: 4.8rem;
	margin-right: 1rem;
}
.nd-pa__avatar img {
	width: 100%;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 6px;
}
.nd-post__head__item .nd-view__info {
    margin-bottom: 0;
}
.nd-article__post {
	margin-bottom:4rem;
}
.nd-article__post__head {
	margin-bottom:4rem;
}
.nd-post__img img {
	width: 100%;
	aspect-ratio: 1.9;
	object-fit: cover;
	border-radius: 20px;
}
.nd-bordered__block{
	padding: 5rem;
	border:1px solid #E9E9E9;
	border-radius: 15px;
	background: #fff;
	margin-bottom:4rem;
}
.nd-article__subtitle {
	display: block;
	font-weight: bold;
	font-size: 2.4rem;
	margin-bottom: 0.6em;
}
.nd-common__list li {
	font-weight: 600;
	color:#2177CE;
	margin-bottom:0.5em;
}
ol.nd-common__list {
	list-style: auto;
	padding-left: 2rem;
}
.nd-article__text:not(:last-child) {
	margin-bottom:3rem;
}
.nd-article__head p {
	margin-top:1em;
}
.nd-article__head {
	margin-bottom:3rem;
}
.nd-article__column {
	margin-right:3rem;
}
.nd-article__body {
	padding:3rem 0;
	border-top: 1px solid rgba(0,0,0,0.1);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	margin-bottom:4rem;
}
.nd-share__block .nd-btn {
	width: 26rem;
}
.nd-share__block {
	margin-bottom:5rem;
}
.nd-comment__form {
    background: #fff;
    border: 1px solid var(--gray);
    padding: 4rem;
    border-radius: 15px;
}
.nd-comment__review:first-child {
    padding: 0 0 3rem;
}
.nd-comment__review {
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray);
}
.nd-comment__review__head {
    margin-bottom: 2rem;
}
.nd-comment__avatar {
    width: 8%;
    margin-right: 2rem;
    flex: none;
}
.nd-comment__avatar img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 10px;
}
.nd-comment__review__info {
    flex: auto;
}
.nd-header--transparent {
	top:0;
	left:0;
	background: transparent;
	z-index: 10;
	border: none;
}
.nd-account__section {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: url(../images/account__bg.jpg) no-repeat center center / cover;
	padding: 12rem 0;
}
.nd-account__form {
	margin: 0 auto;
	background: #fff;
	padding:2rem;
	border-radius: 15px;
	width: 63rem;
}
.nd-account__form .nd-btn {
	flex: none;
}
.nd-header--transparent .nd-header__contact {
    border: 1px solid rgba(255,255,255,0.5);
	padding:1rem 2rem;
	border-radius: 10px;
}
.nd-header--transparent .nd-language-select .select2-container {
    height: 100%;
}
.nd-header--transparent .nd-header__contact__title {
    color: rgba(255,255,255,0.5);
}
.nd-header--transparent .nd-header__contact__num {
	color:#fff;
}
.nd-header--transparent .nd-language-select .select2-container .select2-selection--single {
    background: transparent;
	border:1px solid rgba(255,255,255,0.5);
	border-radius: 10px;
}
.nd-header--transparent .nd-header__btn__row, .nd-header--transparent .nd-header__contact__wrapper::before, .nd-header--transparent .nd-header__contact__wrapper::after {
	display: none;
}
.nd-header--transparent .nd-language-select .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #fff;
}
.nd-header--transparent .select2-container--default .select2-selection--single .select2-selection__arrow {
    background: url(../images/icons/angle_down_white.svg) no-repeat center center / contain;
}
.nd-form__select .select2-container--default .select2-selection--single {
    border:none;
}
.nd-form__bottom__text {
	display: block;
	text-align: center;
}
.nd-form__bottom {
	margin-top: 6rem;
	font-weight: 600;
}
.nd-form__bottom a {
	color: var(--main-color);
}
.nd-account__form .nd-prev {
    margin-right: 2rem;
}
.nd-header--transparent .nd-burger {
    width: 5rem;
	height: 5rem;
	border: 1px solid rgba(255,255,255,0.5);
}
.nd-header--transparent .nd-burger span {
    background-color: rgba(255,255,255,0.5);
}
.nd-header--transparent .nd-menu, .nd-header--transparent .nd-submenu {
	display: none;
}
.nd-checkbox-wrap a {
	text-decoration: underline;
	&:hover {
		text-decoration: none;
	}
}
.nd-account__form .nd-input__area, .nd-account__form .nd-input__icon {
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
}
.nd-account__form .nd-checkbox-wrap .nd-label__text {
	font-size: 1.4rem;
}
.nd-code__row input {
    padding: 1rem;
	text-align: center;
	height: 8rem;
	font-size: 3rem;
    border: 1px solid var(--gray);
    border-radius: 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}
.nd-code__row .nd-input-wrapper {
	flex:1;
}
.nd-pos--center {
	margin:0 auto;
}

input[type="number"]::-webkit-outer-spin-button, input[type="number"]::-webkit-inner-spin-button {-webkit-appearance: none;}
input[type='number'], input[type="number"]:hover, input[type="number"]:focus {appearance: none;-moz-appearance: textfield;}

.nd-account__head {
	padding: 10rem 0 0;
	background: url(../images/account__bg.jpg) no-repeat center 40% / cover;
}
.nd-account__head__title {
	display: block;
	font-size: 7rem;
}
.nd-settings__nav {
	padding: 2rem 0 4rem;
}
.nd-settings__menu li a {
	display: block;
	position: relative;
	overflow: hidden;
	padding-bottom: 5px;
}
.nd-settings__menu li a.nd-current {
	font-weight: bold;
}
.nd-settings__menu li a::after {
	content:'';
	width: 100%;
	position: absolute;
	height: 3px;
	background: var(--main-color);
	bottom:0;
	left:0;
	transform: translateX(-100%);
	transition: all 0.25s;
}
.nd-settings__menu li a.nd-current::after, .nd-settings__menu li a:hover::after {
	transform: translateX(0);
	transition: all 0.25s;
}
.nd-settings__column {
	margin:0 auto;
}
.nd-settings__block {
	padding: 5rem 7rem;
	background: #fff;
	border-radius: 15px;
	border:1px solid #E9E9E9;
	margin-bottom:4rem;
}
.nd-settings__block__title {
	display: block;
	font-size: clamp(20px, 1.6vw, 24px);
}
.nd-personal__info__content .nd-input__area {
    padding: 1rem 0;
    border: none;
	box-shadow: none;
}
.nd-email-badge-row {
	margin-top: 0.5rem;
	display: flex;
	align-items: center;
	gap: 0.6rem;
	flex-wrap: wrap;
}
.nd-email-verified-badge {
	font-size: 10px;
	padding: 0.3rem 0.6rem;
	border-radius: 4px;
	margin: 0;
	line-height: 1.2;
}
.nd-email-verified-badge img {
	width: 12px;
	margin-right: 4px;
}
.nd-email-not-verified {
	background: #ffecec;
	border: 1px solid #f3c3c3;
}
.nd-settings__form__wrapper p {
	font-size: 12px;
}
.nd-show__pass {
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	top:50%;
	right:0;
	transform: translateY(-50%);
	cursor: pointer;
}
.nd-icon__show__pass {
	width: 15px;
	height: 12px;
	color:rgba(0,0,0,0.4);
}
.nd-input-group-btn:first-child .nd-btn {
    background: #fff;
	border-radius: 10px;
	border: 1px solid var(--gray);
	color:var(--black);
	height: 8rem;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
	font-weight: 500;
}
.nd-input-group .nd-form-control:not(:first-child):not(:last-child), .nd-input-group-addon:not(:first-child):not(:last-child), .nd-input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 10px;
	height: 100%;
	border: 1px solid var(--gray);
	height: 8rem;
	width: 97%;
    float: right;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}
.nd-input__area {
    box-shadow: 0 3px 10px rgba(0,0,0,0.07);
	background: #fff;
}

.iti--separate-dial-code .nd-iti__selected-flag, .iti--allow-dropdown .nd-iti__flag-container:hover .nd-iti__selected-flag {
    background-color:transparent;
	padding: 0;
}
.iti--allow-dropdown input, .iti--allow-dropdown input[type=text], .iti--allow-dropdown input[type=tel], .iti--separate-dial-code input, .iti--separate-dial-code input[type=text], .iti--separate-dial-code input[type=tel] {
    font-size: 1.6rem;
	font-family: var(--main-font);
	font-weight: 500;
}
.iti--allow-dropdown input::placeholder {
	color:var(--black);
	font-size: 1.6rem;
	font-family: var(--main-font);
	font-weight: 500;
}
.nd-iti__arrow {
  margin-left: 5px;
  border:none;
  width: 10px;
  height: 6px;
  background: url(../images/icons/angle_down_black.svg) no-repeat center center / contain;
}
.iti--separate-dial-code.iti--show-flags .nd-iti__selected-dial-code {
    font-size: 1.6rem;
	margin-top:2px;
	order:3;
}
.nd-iti__country-list {
    width: 30rem;
}
.nd-personal__info__edit .nd-iti__flag-container {
	height: 8rem;
	padding: 1rem 1.5rem;
    border: 1px solid var(--gray);
    border-radius: 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
	position: relative;
	display: flex;
	align-items: center;
}
.nd-personal__info__edit .nd-iti input {
	height: 8rem;
	padding: 1rem;
    border: 1px solid var(--gray);
    border-radius: 15px;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.07);
}
.nd-personal__info__edit .nd-iti {
	display: flex;
	gap:1rem;
	width: 100%;
}
.nd-personal__info__edit .iti--allow-dropdown input {
    padding-left: 10px!important;
	font-size: 2rem;
}
.nd-personal__info__edit .iti--allow-dropdown input::placeholder {
	color:rgba(0,0,0,0.25);
	font-size: 2rem;
}
.nd-personal__info__edit .iti--separate-dial-code.iti--show-flags .nd-iti__selected-dial-code {
    font-size: 2rem;
}

.nd-personal__info__edit .nd-iti__country-list {
    bottom:auto;
	top:100%;
}
.nd-editing .nd-js--edit-link {
	display: none;
}
.nd-validPass {
	border: 1px solid #04AB46;
	position: relative;
}
.nd-validPass::after {
	content:'';
	width: 1.4rem;
	height: 1rem;
	position: absolute;
	top:50%;
	transform: translateY(-50%);
	right:-3rem;
	background: url(../images/icons/valid.svg) no-repeat center center / contain;
}
.nd-invalidPass {
	border: 1px solid red;
	position: relative;
}
.nd-pass__changed {
	padding: 4rem 0;
}
.nd-pass__changed__icon {
	display: block;
	margin:0 auto 2rem;
	width: 2.2rem;
}
.nd-pass__changed__icon img {
	width: 100%;
}
.nd-pass__changed__text {
	display: block;
}
.nd-icon-enter {
	width: 1.6rem;
	height: 1.6rem;
	color:rgba(0,0,0,0.65);
}
.nd-profile__page {
	margin-top:-18rem;
}
.nd-profile__content {
	padding: 0 3rem;
}
.nd-profile__head {
	margin-bottom:7rem;
}
.nd-profile__head__aside {
	width: 28%;
}
.nd-profile__logo {
	display: block;
	flex: none;
	width: 100%;
}
.nd-profile__card__body  .nd-review__num {
    margin: 0;
}
.nd-profile__logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.nd-profile__logo__wrapper {
	flex:0 0 18rem;
}
.nd-profile__card__title {
	text-transform: capitalize;
}
.nd-profile__card__body .nd-verified__barge {
    font-size: 1.4rem;
    padding: 1rem;
	transform: translateY(-0.7rem);
}
.nd-profile__card__info {
	margin-top:3rem;
	width: calc(100% - 20rem);
}
.nd-profile__head__main, .nd-profile__phone__block {
	padding:4.5rem 4rem;
	background: #fff;
	border-radius: 15px;
	border:1px solid var(--gray);
	box-shadow: 0 12px 22px rgba(0,0,0,0.08);
}
.nd-edit__btn {
	display: inline-flex;
	align-items: center;
	background: #E6F4F1;
	padding:1.2em 2em;
	border-radius: 10px;
	color:var(--main-color);
	font-size: 1.4rem;
	font-weight: bold;
	border:1px dashed var(--main-color);
	line-height: 1;
	transition: all 0.25s;
	&:hover {
		background: transparent;
		transition: all 0.25s;
	}
}
.nd-edit__btn img {
	width: 1.4rem;
	margin-right: 1rem;
}
.nd-cg__img {
	position: relative;
}
.nd-cg__img img {
	border-radius: 10px;
	width: 100%;
	aspect-ratio: 1.4;
	object-fit: cover;
}
.nd-add__photo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	height: 100%;
	aspect-ratio: 1.4;
	background: #E6F4F1;
	padding:1em;
	border-radius: 10px;
	color:var(--main-color);
	border:1px dashed var(--main-color);
	font-weight: bold;
	white-space:nowrap;
	line-height: 1;
	transition: all 0.25s;
	&:hover {
		background: transparent;
		transition: all 0.25s;
	}
}
.nd-about__company__block {
	margin-bottom:7rem;
}
.nd-about__company__block .nd-h4 {
	margin-bottom:1em;
}
.nd-add__photo__comment {
	display: block;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 500;
	margin-top:0.7em;
}
.nd-add__photo img {
	width: 1.6rem;
	margin: -2px 1rem 0 0;
}
.nd-rl__title {
	display: block;
	font-size: 14px;
}
.nd-rl__coment {
	display: block;
	font-size: 12px;
	color:rgba(0,0,0,0.4);
}
.nd-rl__btn .nd-btn {
	padding: 0.5rem 2rem;
	max-height: 30px;
	min-height: 35px;
	font-weight: 500;
	font-size: 12px;
}
.nd-remove__photo {
	font-size: 12px;
	display: block;
	text-decoration: underline;
	cursor: pointer;
	&:hover {
		color:var(--main-color);
	}
}
.nd-banner__edit__comment {
	display: block;
	font-size: 1.6rem;
}
.nd-banner__edit {
	background: rgba(0,0,0,0.5);
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	border-radius: 20px;
	padding: 10rem 0 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s;
}
.nd-page__banner:hover .nd-banner__edit {
	opacity: 1;
	visibility: visible;
	transition: all 0.25s;
}
.nd-banner__edit__btn .nd-btn, .nd-logo__edit__btn .nd-btn {
	font-size: 1.4rem;
	min-height: 4rem;
	padding: 0 2rem;
	&:hover {
		color:#fff;
	}
}
.nd-banner__edit__btn .nd-remove__photo {
    font-size: 1.4rem;
}
.nd-logo__edit {
	background: rgba(0,0,0,0.5);
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s;
}
.nd-profile__logo:hover .nd-logo__edit {
	opacity:1;
	visibility: visible;
	transition: all 0.25s;
}
.nd-logo__edit .nd-h4 {
	font-size: 2rem;
	margin:0;
}
.nd-logo__edit__comment {
	display: block;
	font-size: 12px;
}
.nd-logo__edit__btn .nd-remove__photo {
    font-size: 12px;
	text-align: center;
}
.nd-edit__link {
	display: inline-flex;
	color:var(--main-color);
	font-weight: bold;
	font-size: 1.4rem;
	opacity: 1;
	visibility: visible;
	margin-left:1rem;
	white-space: nowrap;
	cursor: pointer;
	position: relative;
	z-index:1;
	align-items: center;
}
.nd-edit--mode:hover .nd-edit__link {
	opacity: 1;
	visibility: visible;
	transition: all 0.25s;
}
.nd-edit--text {
	transition: all 0.25s;
}
.nd-edit--mode:hover .nd-edit--text {
	transition: all 0.25s;
	opacity: 0.5;
}
.nd-edit--mode:hover .nd-icon {
	opacity: 0.5;
}
.nd-work__time__row .nd-edit--text {
	flex:1;
}
.nd-profile__card__info .nd-company__adv__list li {
    white-space: nowrap;
}
.nd-profile__card__body {
	flex:1;
}
.nd-icon-check {
	width: 1.1rem;
	height: 0.8rem;
	color:var(--main-color);
}
.nd-save__edit__link .nd-icon {
	margin-right:0.5rem;
}
.nd-save__edit__link {
	color:var(--main-color);
	align-items: center;
	font-size: 1.4rem;
	font-weight: bold;
	cursor: pointer;
	display: none;
}
.nd-save__edit__link::before {
	content:'';
	width: 12px;
	height: 12px;
	margin-right:5px;
	background: url(../images/icons/check_color.svg) no-repeat;
}
.nd-edit__link::before {
	content:'';
	width: 12px;
	height: 12px;
	margin-right:5px;
	margin-top: -2px;
	background: url(../images/icons/pen.svg) no-repeat;
}
.nd-editing .nd-save__edit__link {
	display: inline-flex;
} 
.nd-profile__card__info .nd-contact__block a {
	pointer-events: none;
}
.nd-call__us__info .nd-edit__link {
	font-size: 1.4rem;
}
.nd-edit-mode {
  display: none;
}
.nd-editable.nd-editing .nd-hide__for__edit {
  display: none;
}
.nd-editable.nd-editing .nd-edit-mode {
  display: block;
  flex: auto;
}
.nd-icon-pen {
	width: 12px;
	height: 12px;
	color:var(--main-color);
	margin-right:0.5rem;
}
.nd-input-wrapper input {
	padding-right:10px;
}
.nd-call__us__info span.nd-edit__link {
    display: flex;
}
.nd-editable .nd-option__label {
    font-size: 10px;
}
.nd-editable .nd-option__label .nd-icon {
	width: 10px;
}
.nd-edit-mode .nd-phone-country, .nd-edit-mode .nd-phone-number {
    border: none;
    border-radius: 0;
    height: 4rem;
    box-shadow: none;
	padding: 0;
}
.nd-edit-mode .nd-phone-country {
    width: 11rem;
}
.nd-edit-mode .nd-phone-wrapper {
    gap: 0;
}
.nd-edit-mode .nd-input-wrapper input, .nd-edit-mode .nd-input-wrapper input::placeholder {
    font-size: 1.6rem;
}
.nd-profile__content .nd-work__time__row span {
    display: flex;
}
.nd-work__time__row .nd-edit__time__row .nd-time__tip span {
   	font-size: 1.6rem;
	color:var(--black);
}
.nd-time__tip__act sub {
	color:rgba(0,0,0,0.14);
	bottom:-1.05em;
	margin:0 5px;
}
.nd-edit__time__row input {
	padding: 0;
	max-width: 5rem;
}
input[type="time"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}
.nd-edit__time__row {
	gap:5px;
}
.nd-work__time__row .nd-checkbox-wrap label {
    font-size: 12px;
}
.nd-work__time__row .nd-checkbox-wrap label::before {
    height: 12px;
    width: 12px;
	margin-right: 7px;
}
.nd-work__time__row .nd-checkbox-wrap input:checked+label::before {
    background-position: 1px 2px, 0 0;
    background-size: 10px;
}
.nd-add__icon {
	width: 2rem;
	height: 2rem;
	border-radius: 5px;
	background: var(--main-color);
	color:#fff;
	margin-right:1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1;
}
.nd-add__icon span:last-child {
	display: none;
}
.nd-service__tag {
	display: flex;
	align-items: center;
    font-weight: bold;
    font-size: 1.4rem;
    background: #E6F4F1;
    border-radius: 10px;
    padding: 1.8rem 2rem;
    line-height: 1;
	cursor: pointer;
}
.nd-service__tag.nd-chosen {
	background: var(--main-color);
	color:#fff;
}
.nd-service__tag.nd-chosen {
	background: var(--main-color);
	color:#fff;
}
.nd-service__tag.nd-chosen .nd-add__icon span:last-child {
	display: block;
}
.nd-service__tag.nd-chosen .nd-add__icon span:first-child {
	display: none;
}
.nd-service__tag.nd-chosen .nd-add__icon {
	border-radius: 50%;
	background: #fff;
	color:var(--main-color);
}
.nd-symbol__counter {
	display: block;
	font-size: 12px;
	color:rgba(0,0,0,0.4);
}
.nd-cg__img:hover .nd-photo__edit {
	opacity: 1;
	visibility: visible;
	transition: all 0.25s;
}
.nd-photo__edit {
	background: rgba(0,0,0,0.5);
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-items: center;
	align-items: center;
	border-radius: 10px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.25s;
}
.nd-photo__edit .nd-h4 {
	font-size: 2rem;
	margin:0;
}
.nd-photo__edit__btn .nd-remove__photo {
    font-size: 12px;
	text-align: center;
}
.nd-photo__edit__btn .nd-btn {
    font-size: 1.4rem;
    min-height: 4rem;
    padding: 0 2rem;
	margin-bottom:5px;
	&:hover {
		color:#fff;
	}
}
.nd-gallery__actions {
	display: none;
}
.nd-option__label {
    line-height: 1;
}
.nd-franchise__card__img {
	background: #fff;
	padding: 2rem;
	border-radius: 15px;
	aspect-ratio: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	border:1px solid #E9E9E9;
	margin-bottom:2rem;
}
.nd-franchise__card__img img {
	width: 50%;
	aspect-ratio: 1.5;
	object-fit: contain;

}
.nd-franchise__card__title {
	display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
	margin-bottom:0.3em;
	&:hover {
		color:var(--main-color);
	}
}
.nd-franchise__card__bottom p {
	display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
	height: 4.5em;
	color:rgba(0,0,0,0.65);
	font-size: 1.6rem;
	margin-bottom:0.5em;
}
.nd-cash__text {
	display: block;
	color:rgba(0,0,0,0.4);
}
.nd-franchise__price {
	font-size: 2.4rem;
	display: block;
}
.nd-franchise__grid {
	gap:4rem 3rem;
}
.nd-franchise__grid .nd-ad__banner__area {
	margin:0;
}
.nd-franchise__card .nd-btn-container {
	margin-top:1rem;
}
.nd-slider__aside__col {
	width: 20%;
}
.nd-slider__main__col {
	width: 78%;
}
.nd-photo__slider__aside .nd-slide {
	padding: 1rem 0;
}
.nd-photo__slider__aside .slick-list {
	margin:-1rem 0;
}
.nd-photo__slider__aside .nd-slide__img {
	height: 13.8rem;
}
.nd-photo__slider__aside .nd-slide__img img {
	border-radius: 20px;
	width: 100%;
	height:100%;
	object-fit: cover;
}
.nd-photo__slider__main .nd-slide__img img {
	width: 100%;
	aspect-ratio: 1.6;
	object-fit: cover;
	border-radius: 20px;
}
.nd-photo__slider__main .nd-prev-slide {
    left: 2rem;
}
.nd-photo__slider__main .nd-next-slide {
    right: 2rem;
}
.nd-photo__slider__main .nd-prev-slide, .nd-photo__slider__main .nd-next-slide {
    width: 5rem;
    height: 5rem;
    border:1px solid #fff;
    background-color: transparent;
	backdrop-filter: blur(10px);
	&:hover {
		background: var(--main-color);
	}
}
.nd-photo__slider__main .nd-prev-slide svg, .nd-photo__slider__main .nd-next-slide svg {
    color: #fff;
}
.nd-text__subtitle {
	display: block;
}
.nd-marker--list li {
	display: flex;
	align-items: flex-start;
}
.nd-marker--list li::before {
	content:'';
	display: block;
	min-width: 5px;
	height:5px;
	background: var(--black);
	border-radius: 50%;
	margin:1rem 1rem 0 0;
}
.nd-marker--list {
	padding-left:2rem;
}
.nd-bt__string:not(:last-child) {
	margin-bottom: 1em;
}
.nd-bt__string .nd-icon {
	margin-right:1rem;
}
.nd-business__total__info {
	padding:4.5rem 4rem;
	border-radius: 20px;
	border:1px solid #E9E9E9;
	box-shadow: 0 12px 22px rgba(0,0,0,0.04);
	background: #fff;
}
.nd-bt__logo {
	width: 80%;
	margin:0 auto 3rem;
}
.nd-bt__logo img {
	width: 100%;
}
.nd-sidebar .nd-product__head__block {
	height: auto;
	padding: 4rem 3.5rem;
}
.nd-show__contact__link {
	display: block;
	color:var(--main-color);
	text-decoration: underline;
	cursor: pointer;
}
.nd-edit__banner__icon {
	display: none;
	top:2rem;
	right: 2rem;
	align-items: center;
	justify-content: center;
	background: var(--main-color);
	border-radius: 5px;
	width: 36px;
	height:36px;
}
.nd-edit__banner__icon .nd-icon {
	color:#fff;
}
.nd-article__content .nd-input__area {
    box-shadow: none;
}
.nd-pagination .nd-btn {
	min-height: auto;
	height: 100%;
	padding: 1.5rem;
}
.nd-icon-user {
	width: 1.2rem;
	height: 1.6rem;
	color:rgba(0,0,0,0.65);
	flex:none;
}
.nd-btn__user__name {
	max-width: 15rem;
	white-space: nowrap;
  	overflow: hidden;
  	text-overflow: ellipsis;
	display: block;
}
.nd-header .nd-btn .nd-icon {
	display: none;
}
.nd-header .nd-auth--btn .nd-icon-user {
	display: block;
	margin:0 1rem 0 0;
}
.nd-header .nd-btn-container {
	position: relative;
}
.nd-author__dropdown {
	top:100%;
	padding:2.5rem;
	background: #fff;
	border:1px solid #E9E9E9;
	box-shadow: 0 20px 30px rgba(0,0,0,0.08);
	border-radius: 15px;
	width: 100%;
	margin-top:5px;
	z-index: 1;
	display: none;
}
.nd-menu-icon {
	width: 1.3rem;
	height: 1.3rem;
	color:rgba(0,0,0,0.65);
	margin-right:1rem;
	flex:none;
}
.nd-author__dropdown__link {
	display: flex;
	align-items: center;
	margin-bottom:1rem;
	font-size: 1.6rem;
	&:hover {
		color:var(--main-color);
	}
}
.nd-author__dropdown__link:hover .nd-icon {
	color:var(--main-color);
}
.nd-author__dropdown__link:last-child {
	margin-bottom:0;
}
.nd-author__dropdown__head {
	padding-bottom:1.5rem;
	border-bottom:1px solid rgba(0,0,0,0.25);
	margin-bottom:1.5rem;
}
/* ===== Custom Styles END =====*/


