

/* Start:/local/templates/nd/css/style.css?177703693333311*/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}template{display:none}[hidden]{display:none}
/*# sourceMappingURL=normalize.min.css.map */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Roboto, sans-serif;
    font-size: 15px;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.5;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
    font-variation-settings:
      "wdth" 400;
}

ul {
    list-style: none;
}
        
h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all .3s ease;
}

.header-top {
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all .2s ease;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.logo-text {
    font-size: 14px;
    line-height: 1.2;
    color: #5b5b5b;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #4CAF50;
}

.header-contacts {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    gap: 5px;
    justify-content: center;
    align-items: center;
}

.social-icon img {
  display: block;
  width: 16px;
  height: auto;
}

.phone {
    font-size: 15px;
    font-weight: 600;
    color: #333;
}

.work-time {
    text-align: right;
    font-size: 12px;
    color: #666;
    margin-left: 20px;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #45a049;
}

/* Subheader */
.subheader {
    background-color: #f9f9f9;
    padding: 15px 0;
}

.subheader-content {
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.subheader-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.subheader-icon svg {
  display: block;
  max-width: 28px;
  height: auto;
}

.subheader-text {
    font-size: 14px;
    color: #333;
}

/* Breadcrumbs */
.breadcrumbs {
    margin: 20px auto;
    padding: 0 20px;
    font-size: 13px;
    color: #666;
}

.breadcrumbs span {
    display: inline-block;
    font-weight: 600;
}

.breadcrumbs a {
    color: #666;
    text-decoration: none;
}

/* Main Content */
.main {
    margin: 0 auto;
    padding: 0;
}

.page-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #333;
}

.contacts-grid {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-card {
    flex: 1;
    background-color: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-card-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
}

.icon {
    width: 22px;
    height: 22px;
    border-radius: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon img {
  display: block;
  width: 22px;
  height: auto;
}

.contact-info {
    color: #666;
    font-size: 14px;
    line-height: 1.8;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

/* Map */
.map-container {
    width: 100%;
    height: 400px;
    background-color: #e0e0e0;
    border-radius: 10px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}

.footer-info {
    display: flex;
    gap: 60px;
}

.footer-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.footer-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-text {
    color: #999;
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    max-width: 200px;
}

.payment-icon {
    width: 50px;
    height: 30px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.payment-icon img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.footer-social-icons {
    display: flex;
    gap: 10px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #666;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #666;
    text-decoration: none;
}

.footer-registry {
    display: flex;
    align-items: center;
    gap: 10px;
}

.registry-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

section {
    padding: 60px 0;
}

/* ABOUT */

.timeline-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.timeline-item {
    min-width: 235px;
    height: 274px;
    margin: 8px;
    background: url(/local/templates/nd/css/../img/img-history-bg.svg) no-repeat top left/100%;
    position: relative;
    padding: 0 12px;
}

.timeline-item.timeline-item-green {
    background: url(/local/templates/nd/css/../img/img-history-bg-2.svg) no-repeat top left/100% !important;
}

.timeline-date {
    height: 55px;
    line-height: 55px;
    padding-left: 70px;
    text-align: center;
    font-size: 16px;
    color: #ED8743;
    margin-bottom: 40px;
}

.timeline-item-green .timeline-date {
    color: #55AF31 !important;
}

.timeline-item-green .timeline-number {
    background-color: #55AF31 !important;
}

.timeline-number {
    border-radius: 50%;
    overflow: hidden;
    color: #fff;
    font-weight: 700;
    text-align: center;
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 30px;
    background-color: #ED8743;
    position: absolute;
    left: 0;
    top: 0;
}

.timeline-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.timeline-text {
    width: 100%;
    text-align: center;
}

.timeline-images {
    width: 27px;
    height: 87px;
    background: url(/local/templates/nd/css/../img/img-history-rounds.png) no-repeat center/contain;
    margin-right: 10px;
}

.timeline-item-green .timeline-images {
    background: url(/local/templates/nd/css/../img/img-history-rounds-green.png) no-repeat center/contain;
}

.timeline-value {
    font-weight: 700;
    font-size: 50px;
    text-align: center;
    line-height: 1;
}

.timeline-value span {
    display: inline-block;
    font-size: 34px;
    margin-left: -11px;
}

.timeline-details {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.timeline-details-item {
    margin: 4px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #7C7C7C;
    font-size: 13px;
    white-space: nowrap;
}

.timeline-details-item span {
    display: block;
    width: 17px;
    height: 17px;
    margin-right: 3px;
}

.timeline-item-green .icon-map-2,
.timeline-item-green .icon-planet {
    filter: brightness(0) saturate(100%) invert(58%) sepia(12%) saturate(2837%) hue-rotate(58deg) brightness(101%) contrast(73%);
}

.icon-map {
    background: url(/local/templates/nd/css/../img/icon-map.svg) no-repeat center/contain;
}

.icon-map-2 {
    background: url(/local/templates/nd/css/../img/icon-map-2.svg) no-repeat center/contain;
}

.icon-planet {
    background: url(/local/templates/nd/css/../img/icon-planet.svg) no-repeat center/contain;
}

.timeline-badge {
    border-radius: 10px 10px 0 0;
    background-color: #ED8743;
    color: #fff;
    padding: 5px 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: inline-block;
    bottom: 0;
}

.summary-bar {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    padding: 20px 10px;
    border-radius: 30px;
}

.summary-item {
    padding: 0 60px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.summary-big-num {
    color: #7c7c7c;
    font-size: 60px;
    font-weight: 700;
    line-height: 1;
}

.summary-big-label {
    color: #7c7c7c;
    opacity: .5;
    font-size: 19px;
    font-weight: 400;
    line-height: 1;
    margin: 28px 0 0 10px;
    white-space: nowrap;
}

.summary-item:after {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    display: block;
    background-color: rgba(0,0,0,.24);
    right: 0;
    top: 0;
}

.summary-item:nth-last-of-type(1):after {
    display: none;
}

.summary-item-last {
    flex-wrap: wrap;
    min-width: 270px;
    width: auto;
}

.summary-region,
.summary-country {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    position: relative;
    color: rgba(124, 124, 124, .5);
    font-size: 20px;
    line-height: 1;
    margin: 3px 0;
}

.summary-region:before {
    content: '';
    display: inline-block;
    width: 21px;
    height: 25px;
    background: url(/local/templates/nd/css/../img/icon-map-2.svg) no-repeat center/contain;
    filter: brightness(0) saturate(100%) invert(51%) sepia(1%) saturate(1%) hue-rotate(134deg) brightness(95%) contrast(95%);
    margin-right: 5px;
}

.summary-country:before {
    content: '';
    display: inline-block;
    width: 21px;
    height: 25px;
    background: url(/local/templates/nd/css/../img/icon-planet.svg) no-repeat center/contain;
    filter: brightness(0) saturate(100%) invert(51%) sepia(1%) saturate(1%) hue-rotate(134deg) brightness(95%) contrast(95%);
    margin-right: 5px;
}

.about-2,
.about-3 {
    background-color: #f7f7f7;
}

.about-2-wrapper {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-2-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-2-row.reverse {
    flex-direction: row-reverse;
}

.about-2-text {
    flex: 1;
}

.about-2-text h3 {
    font-size: 34px;
    margin-bottom: 15px;
    color: #333;
}

.about-2-text p {
    margin-bottom: 15px;
    color: #666;
    font-size: 16px;
}

.about-2-text b {
    color: #333 !important;
}

.about-2-img {
    flex: 1;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
}

.about-2-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-3-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-3-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    gap: 30px;
}

.about-3-item:before {
    content: '';
    position: absolute;
    width: 2px;
    height: calc(100% - 74px);
    background-color: #7c7c7c;
    opacity: .12;
    bottom: 0;
    left: 27px;
}

.about-3-number {
    font-size: 34px;
    font-weight: 400;
    color: #7c7c7c;
    min-width: 60px;
    padding-top: 5px;
}

.about-3-content {
    flex: 1;
    display: flex;
    border-radius: 12px;
    overflow: hidden;
}

.about-3-img {
    width: 50%;
    min-height: 220px;
    background-color: #e0e0e0;
    overflow: hidden;
    border-radius: 15px;
}

.about-3-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-3-text {
    padding: 30px;
    flex: 1;
}

.about-3-text h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.about-3-text p {
    color: #666;
    font-size: 15px;
}

.about-4 {
    background-color: #f9f9f9;
}

.about-4-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-4-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.about-4-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.about-4-img {
    height: 200px;
    background-color: #ccc;
    position: relative;
}

.about-4-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0,0,0,0.2);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    border: 1px solid #fff;
}

.about-4-body {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.about-4-title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.about-4-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.about-4-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 10px;
}

.about-4-date {
    font-size: 13px;
    color: #999;
}

.about-4-btn {
    background-color: #f2994a;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.2s;
    text-decoration: none !important;
}

.about-4-btn:hover {
    background-color: #e08e3b;
}

.about-4-more {
    text-align: center;
    margin-top: 40px;
}

.about-4-more-btn {
    border: 1px solid #f2994a;
    color: #f2994a;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none !important;
}

.about-4-more-btn:hover {
    background-color: #f2994a;
    color: #fff;
}

.about-5-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-5-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
}

.about-5-img-wrapper {
    position: relative;
    height: 250px;
    background-color: #ddd;
}

.about-5-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 41px;
    height: 41px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 0 5px 1px rgba(0,0,0,.1);
}

.about-5-icon:after {
    content: '';
    position: relative;
    width: 27px;
    height: 17px;
    top: 1px;
    background: url(/local/templates/nd/css/../img/icon-vk.svg) no-repeat center/25px;
    filter: brightness(0) saturate(100%) invert(67%) sepia(50%) saturate(1615%) hue-rotate(328deg) brightness(95%) contrast(95%);
}

.about-5-body {
    padding: 25px;
    text-align: center;
}

.about-5-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #1a1a1a;
}

.about-5-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.4;
}

.about-5-btn {
    border: 1px solid #ddd;
    color: #666;
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s;
    text-decoration: none !important;
}

.about-5-btn:hover {
    border-color: #f2994a;
    color: #f2994a;
}

.about-6 {
    position: relative;
    background: #f4f4f4 url(/local/templates/nd/css/../img/img-about-form-bg.png) no-repeat center/cover;
    overflow: hidden;
    padding: 0;
}

.about-6-container {
    position: relative;
    z-index: 2;
    max-width: 1300px;
    margin: 0 auto;
    padding: 180px 20px;
    display: flex;
    align-items: center;
}

.about-6-content {
    width: 40%;
    padding-right: 50px;
}

.about-6-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: left;
    color: #1a1a1a;
}

.about-6-subtitle {
    font-size: 16px;
    color: #555;
    margin-bottom: 30px;
}

.about-6-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-6-input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.about-6-label {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.about-6-input {
    padding: 15px;
    border: 0;
    border-bottom: 1px solid #444;
    background: rgba(0,0,0,0);
    border-radius: 0;
    font-size: 18px;
    outline: none;
}

.about-6-btn {
    background-color: #f2994a;
    color: #fff;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

.about-6-btn:hover {
    background-color: #e08e3b;
}

.about-6-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: #666;
    margin-top: 10px;
}

.about-6-checkbox input {
    margin-top: 3px;
}

.hero {
  position: relative;
  height: 900px;
  background: url(/local/templates/nd/css/../img/img-main-1.png) no-repeat center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
  padding-top: 132px;
  margin-top: -132px;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-badges {
  display: flex;
  gap: 15px;
}
.hero-badge {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(5px);
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s;
}
.hero-badge:hover {
  background: rgba(255,255,255,0.35);
}
.hero-title {
  font-size: 58px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
}
.hero-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin: 0;
}
.hero-btn {
  margin-top: 10px;
  padding: 20px 50px;
  font-size: 20px;
  background: #ED8743;
}
.hero-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  pointer-events: none;
}
.hero-arrow {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.2s;
}
.hero-arrow:hover {
  background: rgba(255,255,255,0.5);
}

.tags-section {
  padding: 30px 0;
  background: #f9f9f9;
}
.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.tag {
  background: #fff;
  border: 1px solid #e0e0e0;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #333;
  cursor: pointer;
  transition: all 0.2s;
}
.tag:hover {
  border-color: #4CAF50;
  color: #4CAF50;
}

.popular-impressions {
  padding: 60px 0;
}
.impressions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.impression-card {
  height: 400px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.impression-card:hover {
  transform: scale(1.02);
}
.impression-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  border-radius: 0 0 12px 12px;
}

.blog-section {
  padding: 60px 0;
  background: #fff;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.blog-card {
  background: #f9f9f9;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.blog-card:hover {
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.blog-img {
  height: 200px;
  width: 100%;
}
.blog-body {
  padding: 20px;
}
.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: #666;
  margin-bottom: 10px;
}
.blog-tag {
  border: 1px solid #ddd;
  padding: 2px 8px;
  border-radius: 4px;
  color: #f2994a;
}
.blog-date {
    line-height: 24px;
}
.blog-title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 10px;
  line-height: 1.1;
  color: #1a1a1a;
}
.blog-excerpt {
  font-size: 14px;
  color: #666;
  margin: 0 0 15px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-readtime {
  font-size: 11px;
  line-height: 1;
  color: #999;
}
.blog-readtime span {
    display: block;
    color: #ED8743;
    font-size: 12px;
    padding-bottom: 3px;
}
.blog-btn {
  background: #f2994a;
  color: #fff;
  padding: 6px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: background 0.2s;
}
.blog-btn:hover {
  background: #e08e3b;
}

.gift-certificate {
  padding: 60px 0;
  background: #f0f7f4;
}
.gift-container {
  display: flex;
  align-items: center;
  background: url(/local/templates/nd/css/../img/img-main-sert.png) no-repeat center/contain;
  padding: 30px 26% 30px 30px;
  height: 430px;
}
.gift-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 15px;
  color: #1a1a1a;
  text-align: left;
}
.gift-text {
  font-size: 16px;
  color: #666;
  margin: 25px 0;
  line-height: 1.5;
}
.gift-btn {
  padding: 20px 40px;
  font-size: 20px;
  font-weight: 400;
  background: #ED8743;
}
.gift-visual {
  flex: 1;
  height: 300px;
  border-radius: 12px;
}

.news-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.news-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}
.news-card:hover {
  transform: translateY(-5px);
}
.news-img {
  height: 200px;
  background: #ddd;
  position: relative;
}
.news-tag {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 12px;
}
.news-body {
  padding: 20px;
}
.news-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.4;
  color: #1a1a1a;
}
.news-excerpt {
  font-size: 13px;
  color: #666;
  margin: 0 0 15px;
  line-height: 1.5;
}
.news-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news-date {
  font-size: 12px;
  color: #999;
}
.news-btn {
  background: #f2994a;
  color: #fff;
  padding: 6px 15px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 13px;
  transition: background 0.2s;
}
.news-btn:hover {
  background: #e08e3b;
}

.faq-section {
  padding: 50px 0;
  background: #f9f9f9;
}
.faq-list {
  margin: 0 auto;
}
.faq-item {
  display: flex;
  align-items: center;
  padding: 20px;
  cursor: pointer;
  transition: background 0.2s;
  flex-wrap: wrap;
  position: relative;
  background: #fff;
  margin: 10px 0;
  border-radius: 10px;
}
.faq-header {
    display: flex;
}
.faq-body {
    display: none;
    padding: 15px 0 5px 40px;
}
.faq-item.active .faq-body {
    display: block;
}
.faq-num {
  font-size: 20px;
  line-height: 27px;
  color: #999;
  width: 40px;
  font-weight: 600;
}
.faq-q {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  display: block;
  line-height: 27px;
}
.faq-a {
  font-size: 14px;
  color: #666;
  display: none;
  line-height: 1.5;
}
.faq-item.active .faq-a {
  display: block;
}
.faq-item.active {
  background: rgba(91,196,235, .1);
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 10px;
  border-bottom: none;
}
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 23px;
  font-weight: 300;
  background: #5BC4EB;
  color: #fff;
  flex-shrink: 0;
  transition: all 0.2s;
  position: absolute;
  right: 20px;
  top: 20px;
}
.faq-item.active .faq-icon {
  background: #FFF;
  color: #5BC4EB;
  transform: rotate(45deg);
}

.reviews-section {
  padding: 60px 0;
  background: #f9f9f9;
}
.reviews-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.reviews-header h2 {
  margin-bottom: 0;
  text-align: left;
}
.reviews-btn {
  border: 1px solid #f2994a;
  color: #f2994a;
  background: transparent;
  padding: 8px 20px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.reviews-btn:hover {
  background: #f2994a;
  color: #fff;
}
.reviews-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  margin-bottom: 30px;
  scrollbar-width: none; /* Firefox */
}
.reviews-scroll::-webkit-scrollbar {
  display: none; /* Chrome/Safari */
}
.review-card {
  min-width: 350px;
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.review-user {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.review-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
}
.review-name {
  font-weight: 600;
  line-height: 1;
  color: #333;
  display: block;
}
.review-meta {
  font-size: 12px;
  color: #999;
}
.review-content {
    padding: 12px 15px;
    background: rgba(0,0,0,.05);
    border-radius: 15px;
}
.review-dest {
  font-size: 16px;
  font-weight: 700;
  color: #f2994a;
  margin: 0 0 10px;
  border-bottom: 1px solid rgba(0,0,0,.15);
  padding-bottom: 5px;
}
.review-text {
  font-size: 14px;
  color: #666;
  line-height: 1.3;
  margin: 0;
}
.review-images {
  display: flex;
  margin-top: 20px;
  gap: 8px;
}
.review-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  background: #eee;
}

.cta-form-section {
  padding: 80px 0;
  background: #2C3E50;
  position: relative;
  overflow: hidden;
}
.cta-container {
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.cta-content {
  max-width: 500px;
  color: #fff;
}
.cta-title {
  font-size: 36px;
  font-weight: 700;
  margin: 0 0 10px;
}
.cta-subtitle {
  font-size: 16px;
  opacity: 0.9;
  margin: 0 0 30px;
}
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cta-input {
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255,255,255,0.5);
  padding: 15px 0;
  font-size: 18px;
  color: #fff;
  outline: none;
  font-family: inherit;
}
.cta-input::placeholder {
  color: rgba(255,255,255,0.6);
}
.cta-input:focus {
  border-bottom-color: #f2994a;
}
.cta-submit {
  background: #f2994a;
  padding: 18px;
  font-size: 18px;
  border-radius: 8px;
  width: 100%;
}
.cta-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  line-height: 1.4;
}
.cta-check input {
  margin-top: 2px;
}

.section-nav {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 15px 0 0 0;
}
.section-nav span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 18px;
  color: #666;
}
.section-nav span:hover {
  background: #f2994a;
  border-color: #f2994a;
  color: #fff;
}

.tags-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  justify-content: center;
  padding: 5px 0;
}
.region-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: transform 0.2s ease;
  border-radius: 40px;
  background: rgba(177,177,177,.16);
  padding: 10px;
}
.region-item:hover {
  transform: scale(1.05);
}
.region-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.region-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.region-name {
  font-size: 14px;
  color: #333;
  white-space: nowrap;
}

.main-page .header {
    background: rgba(0,0,0,0);
    box-shadow: none;
}

.main-page .subheader {
    background: rgba(0,0,0,0);
    z-index: 999;
    position: relative;
}

.main-page .subheader-text,
.main-page .logo-text,
.main-page .nav a,
.main-page .header .phone,
.main-page .header .social-icon,
.main-page .work-time {
    color: #fff;
}

.main-page .header .social-icon {
    filter: brightness(55);
}

.main-page .header-top.container {
    border-bottom: 1px solid rgba(255,255,255,.68);
}

.main-page .header.scrolled {
    background: #fff;
}

.main-page .header.scrolled .subheader {
    background: rgba(0,0,0,0);
    z-index: 999;
    position: relative;
}

.main-page .header.scrolled .subheader-text,
.main-page .header.scrolled .logo-text,
.main-page .header.scrolled .nav a,
.main-page .header.scrolled .phone,
.main-page .header.scrolled .social-icon,
.main-page .header.scrolled .work-time {
    color: #333;
}

.main-page .header.scrolled .social-icon {
    filter: none;
}
/* End */
/* /local/templates/nd/css/style.css?177703693333311 */
