@charset "UTF-8";

*, *::before, *::after {
    box-sizing: inherit;
}

html {
    box-sizing: border-box;
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

html, body {
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
    min-width: 320px;
    background: #fff;
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #333;
    line-height: 1.4;
}

body a {
    font-weight: 500;
}

::selection {
    background: #9de2ff;
}

::-moz-selection {
    background: #9de2ff;
}

::-webkit-input-placeholder { color: #ADADAD; }
:-moz-placeholder { color: #ADADAD; }
::-moz-placeholder { color: #ADADAD; }
:-ms-input-placeholder { color: #ADADAD; }

:root {
    --primary-color: #0B7578;
    --secondary-color: #B35A12;
    --accent-color: #0B9498;
    --accent-light-color: #BFE1E2;
    --bg-light: #F5F5F5;
    --bg-very-light: #E5F2F2;
    --text-dark: #333333;
    --text-gray: #666666;
    --border-color: #e0e0e0;
    
    --error-color: #e74c3c;
    --success-color: #4CAF50;
    --warning-color: #ff9800;
    --info-color: #2196F3;
    
    --border-radius: 8px;
    --transition: all 0.3s ease;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.12);
    
    --kf-z-modal: 2147483000;
    --modal-bg: rgba(0, 0, 0, 0.6);
    --modal-panel-bg: #fff;
    --modal-radius: 12px;
    --modal-shadow: 0 14px 40px rgba(0, 0, 0, 0.25);
    
    --gradient-primary: linear-gradient(135deg, var(--secondary-color), #8B4513);
    --gradient-primary-hover: linear-gradient(135deg, #0B9498, var(--primary-color));
    --gradient-secondary: linear-gradient(135deg, #6c757d, #495057);
    --gradient-telegram: linear-gradient(135deg, #0088cc, #006699);
    --gradient-telegram-hover: linear-gradient(135deg, #006699, #004466);
    --gradient-banner: linear-gradient(135deg, #f8f9fa, #e9ecef);
    --gradient-gift: linear-gradient(135deg, #e8f4ff, #d4e7ff);
    
    --shadow-primary: 0 4px 15px rgba(179, 90, 18, 0.3);
    --shadow-secondary: 0 4px 15px rgba(108, 117, 125, 0.3);
    --shadow-telegram: 0 6px 20px rgba(0, 136, 204, 0.3);
}

input, textarea, button {
    box-sizing: border-box;
    border: 0;
    outline: none;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
}

button {
    cursor: pointer;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}

.button-kf-modal {
    grid-column: 1 / -1;
    text-align: center;
    margin: 0px 0 0px;
    width: 100%;
}

textarea {
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 0.5rem;
    font-size: 16px; 
    min-height: 47px;
    padding: 6px 16px;
    margin-bottom: 15px;
    max-width: 100%;
}

a {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

img {
    border: none;
    max-width: 100%;
    height: auto;
}

b {
    font-weight: bold;
}

.container {
    position: relative;
    width: 1210px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 15px;
}

.color-primary {
    background: linear-gradient(90deg, #0B7578, #B35A12);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

@keyframes growBar {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes pretty {
  0%, 100% { background-position: left; }
  50%      { background-position: right; }
}

@keyframes zooming {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes progress {
    0% { background-position: 0 0; }
    100% { background-position: 50px 0; }
}

@keyframes shine {
    0% { left: -100px; }
    20% { left: 100%; }
    100% { left: 100%; }
}

h1 { display: block; font-size: 2.7em; font-weight: 500; color: #333; }
h2 { display: block; font-size: 1.8em; font-weight: 500; color: #333; }
h3 { display: block; font-size: 1.6em; font-weight: 500; padding: 20px 0 10px; color: #333; }
h4 { display: block; font-size: 1.3em; font-weight: 500; padding: 20px 0 10px; color: #333; }
h5 { display: block; font-size: 1.1em; font-weight: bold; padding: 20px 0 10px; }

.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.btn-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 52px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
  white-space: nowrap;
  background: rgba(11, 117, 120, 0.1);
  color: #0B7578;
}

.btn-light:hover {
    background:#3EA5A8;
    color:#fff;
}

.btn-orange {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 52px;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
  white-space: nowrap;
  background: #B35A12;
  color: #fff;
  box-shadow: 0px 6px 12px rgba(11, 117, 120, 0.3);
}

.btn-orange:hover {
  background: #0B9498;
}

.form-note {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(0,0,0,0.55);
  text-align: center;
  grid-column: 1 / -1;
  display: block;
}

.form-note a {
  color: rgba(0,0,0,0.55);
  text-decoration: underline;
}

.form-tooltip-error {
    position: absolute;
    z-index: 1000;
    background: #ffebee;
    color: #c62828;
    padding: 8px 12px;
    border-radius: 4px;
    border: 1px solid #ffcdd2;
    font-size: 14px;
    max-width: 300px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.has-error {
    border-color: #f44336;
    background-color: #ffebee;
}

.stick-layer { display: none; }
.stick-layer.is-open { display: block; }

.stick-layer {
  position: fixed;
  right: 16px;
  bottom: 16px;
  left: auto;
  width: auto;
  z-index: 999999;
  background: transparent;
  border: 0;
  padding: 0;
}

.stick-layer .stick-inner {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  pointer-events: auto;
}

.grecaptcha-badge {
  visibility: hidden;
}

.stick-layer .stick-text {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.5;
  color: #222;
}

.stick-layer .stick-link {
  text-decoration: underline;
  font-size: 14.5px;
  white-space: nowrap;
}


.stick-layer .btn-light {
  position: relative;
}

@media (max-width: 470px) {
  .stick-layer {
    right: 12px;
    left: 12px;
    bottom: 12px;
  }
  
  .stick-layer .stick-inner {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    text-align: center;
  }
}

.btn-up {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    background-color: #0b9498;
    right: 20px;
    bottom: 0;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    cursor: pointer;
    width: 50px;
    height: 40px;
    z-index: 101;
}

.btn-up::before {
    content: none;
}

.btn-up_hide {
    display: none;
}

.arrow-up {
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 10px solid white;
}

body.no-scroll {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

.snow-blocks {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    pointer-events: none;
}

.snow1 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../images/snow1.png");
    animation: snow1 18s linear infinite;
}

.snow2 {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url("../images/snow2.png"), url("../images/snow3.png");
    animation: snow2 10s linear infinite;
}

@keyframes snow2 {
    0% { background-position: 0 0, 0 0; }
    100% { background-position: 10% 600px, 10% 600px; }
}

@keyframes snow1 {
    from { background-position: 0 -300px; }
    20% { background-position: 20% -100px; }
    40% { background-position: 30% 100px; }
    to { background-position: 20% 700px; }
}

.form-tooltip {
    position: absolute;
    background: #B00020;
    color: white;
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    animation: tooltipFadeIn 0.3s ease;
    max-width: 250px;
    z-index: 10000;
}

.form-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: #B00020;
    transform: rotate(45deg);
}

.has-error {
    border-color: #B00020 !important;
    box-shadow: 0 0 0 2px rgba(176, 0, 32, 0.1) !important;
}

.is-loading {
    opacity: 0.7;
    pointer-events: none;
}

@keyframes tooltipFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media only screen and (max-width: 1210px) {
  .container { 
    width: 100%; 
    margin-left: 0; 
    margin-right: 0; 
  }
  
  .html {
    scroll-padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .btn {
    min-width: 200px;
    height: 48px;
    font-size: 16px;
  }
  
  .kf-form { 
    grid-template-columns: 1fr;
  }
  
  .button-kf-modal {
    margin: 0px 0 0px;
  }
}

@media (max-width: 1210px) {
    .main-banner-sign {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
   }
}

button[type="submit"]:disabled {
    opacity: 1;
    cursor: not-allowed;
}

.btn-loading {
    opacity: 1;
    cursor: wait;
}

.btn-orange:disabled {
    background-color: #B35A12;
    border-color: #B35A12;
    opacity: 1;
}

.is-loading {
    position: relative;
    color: transparent !important;
}

.is-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    border-right-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
    line-height: 1.6;
  }

  p, li {
    font-size: 1rem;
    line-height: 1.6;
  }

  .service-card h3, 
  .service-card p,
  .reason-item,
  .feature-text {
    color: #333;
  }

  footer, 
  footer a {
    font-size: 0.9rem;
  }

  h1 { font-size: 2em; }
  h2 { font-size: 1.6em; }
  h3 { font-size: 1.4em; padding: 15px 0 8px; }
  h4 { font-size: 1.2em; padding: 15px 0 8px; }
  h5 { font-size: 1.1em; padding: 15px 0 8px; }

  .btn-light,
  .btn-orange {
    min-width: 200px;
    height: 48px;
    font-size: 16px;
    padding: 14px 20px;
  }

  textarea {
    font-size: 16px;
    min-height: 44px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  h1 { font-size: 1.8em; }
  h2 { font-size: 1.5em; }
  
  .stick-layer .stick-inner {
    padding: 12px;
    gap: 10px;
  }
  
  .stick-layer .stick-text {
    font-size: 14px;
  }
}

html.modal-open,
body.modal-open {
    overflow: hidden;
}

.kf-modal {
    display: none;
    position: fixed;
    inset: 0;
    padding: 16px;
    background: var(--modal-bg);
    z-index: var(--kf-z-modal);
    align-items: center;
    justify-content: center;
}

.kf-modal.is-open {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.kf-modal.hidden {
    display: none !important;
}

.kf-modal-panel {
    position: relative;
    width: min(96vw, 600px);
    max-height: 90vh;
    overflow: auto;
    padding: clamp(16px, 3vw, 32px);
    background: var(--modal-panel-bg);
    border-radius: var(--modal-radius);
    box-shadow: var(--modal-shadow);
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    animation: slideIn 0.3s ease;
}

.kf-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
    cursor: pointer;
    background: none;
    border: 0;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.2s ease;
}

.kf-modal-close:hover {
    background-color: #f5f5f5;
}

.kf-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 20px;
    max-width: 100%;
}

.kf-form-title {
    grid-column: 1 / -1;
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.kf-field {
    display: grid;
    gap: 6px;
}

.kf-field-wide {
    grid-column: 1 / -1;
}

.kf-field-label {
    font-size: 14px;
    color: #333;
    font-weight: 500;
}

.kf-optional {
    color: #889;
    font-weight: 400;
}

.kf-form input[type="text"],
.kf-form input[type="tel"],
.kf-form input[type="email"],
.kf-form input[type="number"],
.kf-form textarea {
    width: 100%;
    padding: 10px 16px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-size: 16px;
    line-height: 1.3;
    background: #fff;
    transition: border-color 0.2s ease;
}

.kf-form input:focus,
.kf-form textarea:focus {
    outline: none;
    border-color: #007bff;
}

.kf-form textarea {
    resize: vertical;
    min-height: 100px;
}

.success-content {
    text-align: center;
    padding: 20px;
}

.checkmark {
  font-size: 48px;
  color: #0B7578;
  text-align: center;
  margin: 1rem 0;
}

@media (max-width: 768px) {
    .kf-form {
        grid-template-columns: 1fr;
        gap: 12px;
		margin-left: 20px;
        margin-right: 20px;
    }
    
    .kf-modal-panel {
        padding: 20px 16px;
    }
    
    .kf-form-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
   
}

@media (max-width: 768px) and (max-height: 700px) {
  .kf-modal-panel { 
    padding: 16px; 
  }
}

@media (max-width: 600px) {
  input,
  select,
  textarea,
  .form-control {
    font-size: 16px !important;
    line-height: 1.4;
    -webkit-text-size-adjust: none;
    text-size-adjust: none;
  }
  
  input::placeholder,
  textarea::placeholder {
    font-size: 16px;
    line-height: 1.4;
  }

  .kf-modal {
    padding: 10px;
  }
    
  .kf-modal-panel {
    width: 95vw;
    padding: 16px 12px;
  }
    
  .kf-form input[type="text"],
  .kf-form input[type="tel"],
  .kf-form input[type="email"],
  .kf-form input[type="number"],
  .kf-form textarea {
    padding: 10px 14px;
    font-size: 16px;
  }
}