@charset "utf-8";

@font-face {
    font-family: "Pelinka";
    src:url(../fonts/Pelinka-Bold.otf);
}

@font-face {
    font-family: "Montserrat Bold";
    src:url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: "Montserrat Medium";
    src:url(../fonts/Montserrat-Medium.ttf);
}

@font-face {
    font-family: "Montserrat Regular";
    src:url(../fonts/Montserrat-Regular.ttf);
}
/* *{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.6;
}
img{max-width:100%;display:block;height:auto}
a{color:var(--brand);text-decoration:none}
a:hover{text-decoration:underline}
 .container{
  width:min(1120px, 92vw);
  margin:0 auto;
} 
 .section{padding:64px 0}
.section--soft{background:var(--soft)}
h1,h2,h3{line-height:1.2;margin:0 0 .5em}
h1{font-size:clamp(28px, 4vw + 8px, 44px);letter-spacing:-.02em}
h2{font-size:clamp(22px, 2.6vw + 6px, 32px)}
h3{font-size:clamp(18px, 1.6vw + 6px, 22px)}
.muted{color:var(--muted)}
.sm{font-size:.875rem} */

.btn{
  margin-top: 5vh;
  padding: 15px 40px;
  border-radius: 10px;
  background-color: #0B1956;
  color:#fff;
  font-weight: 400;
  font-size: 14px;
  border:1px solid var(--brand);
}
/* .btn:hover{opacity:.95;text-decoration:none}
.btn--ghost{
  background:transparent;
  color:var(--brand);
  border:1px solid var(--brand);
  box-shadow:none;
}
.btn--sm{padding:.6rem .9rem;font-size:.9rem}

.site-header{
  position:sticky; top:0; z-index:30; background:#fff;
  box-shadow: 0 1px 0 #eef0f6;
}
.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.nav{display:flex; gap:18px; align-items:center}
.nav a{padding:8px 10px; border-radius:10px}
.nav a:hover{background:#f0f3ff; text-decoration:none}
.burger{display:none;background:none;border:0;padding:8px;cursor:pointer}
.burger span{display:block;width:22px;height:2px;background:#0b1957;margin:5px 0;border-radius:1px}

.hero{
  padding:72px 0;
  background:
    radial-gradient(1200px 400px at 80% -100px, #eaf0ff 10%, transparent 60%),
    linear-gradient(180deg, #ffffff 0, #fafcff 100%);
}
.hero-inner{display:grid;grid-template-columns:1.1fr .9fr;gap:40px;align-items:center}
.eyebrow{color:var(--brand);font-weight:600;margin:0 0 .5rem;letter-spacing:.08em;text-transform:uppercase;font-size:.8rem}
.lead{font-size:1.125rem;color:#1f2437}
.hero-art{justify-self:end;filter:drop-shadow(0 20px 40px rgba(11,25,87,.12))}
.hero-cta{display:flex;gap:12px;margin-top:22px}

.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
  margin-top:18px;
}
.card{
  background:var(--card);
  border:1px solid #eef0f6;
  border-radius:var(--radius);
  padding:18px;
  box-shadow:0 10px 30px -20px rgba(11,25,87,.2);
  display:flex;flex-direction:column;gap:8px;
}
.card-ico{width:40px;height:40px}
.card-link{margin-top:auto;font-weight:600}
.cards-grid--values .value{min-height:160px;}

.about-grid{
  display:grid; grid-template-columns:1.2fr .8fr; gap:32px; align-items:center;
}
.stat{background:#0e1a59; color:#fff; border-radius:var(--radius); padding:22px; box-shadow:0 24px 60px -40px rgba(11,25,87,.6)}
.stat-num{font-size:44px; font-weight:700; letter-spacing:-.02em}
.stat-text{opacity:.9; font-weight:500; margin-top:-6px}

.split{display:grid;grid-template-columns:1fr 1fr;gap:22px;margin-top:18px}
.panel{
  background:var(--card);
  border:1px solid #eef0f6;
  border-radius:var(--radius);
  padding:18px;
}
.check{padding-left:0;list-style:none;display:grid;gap:10px}
.check li{position:relative;padding-left:28px}
.check li::before{
  content:""; position:absolute; left:0; top:.45em; width:18px; height:18px; border-radius:50%;
  border:2px solid var(--brand);
}
.check li::after{
  content:""; position:absolute; left:4px; top:.6em; width:10px; height:6px; border-left:2px solid var(--brand); border-bottom:2px solid var(--brand); transform:rotate(-45deg);
}

.contact-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;align-items:start}
.contact-left .list{padding-left:0;list-style:none;display:grid;gap:6px}
.form{display:grid;gap:12px;background:var(--card);padding:18px;border:1px solid #eef0f6;border-radius:var(--radius)}
.form label{display:grid;gap:6px;font-weight:600}
.form input{
  padding:.9rem 1rem; border:1px solid #dfe3ee; border-radius:12px; font:inherit;
  outline: none;
}  */
/* .form input:focus{border-color:var(--brand); box-shadow:0 0 0 6px var(--ring)}
.form .consent{color:var(--muted);font-size:.85rem;margin:6px 0 0}
.form-status{margin:4px 0 0;min-height:1.2em}

.articles{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin-top:16px}
.post{background:#fff;border:1px solid #eef0f6;border-radius:var(--radius);overflow:hidden;display:grid}
.post-body{padding:14px}
.more-wrap{display:flex;justify-content:center;margin-top:14px}

.site-footer{padding:32px 0;border-top:1px solid #eef0f6;background:#fff}
.footer-inner{display:flex;justify-content:space-between;align-items:center;gap:18px;flex-wrap:wrap}
.foot-nav{display:flex;gap:16px;flex-wrap:wrap} */

/* @media (max-width: 960px){
  .hero-inner{grid-template-columns:1fr;gap:22px}
  .about-grid{grid-template-columns:1fr}
  .split, .articles{grid-template-columns:1fr}
  .cards-grid{grid-template-columns:1fr 1fr}
  .contact-grid{grid-template-columns:1fr}
  .nav{display:none;position:absolute;top:64px;right:12px;background:#fff;border:1px solid #eef0f6;border-radius:12px;padding:10px;flex-direction:column;min-width:220px;box-shadow:0 18px 50px -30px rgba(11,25,87,.3)}
  .nav a{display:block;padding:10px 12px}
  .burger{display:block}
  .site-header .btn--sm{display:inline-block}
} */
/* @media (max-width: 600px){
  .cards-grid{grid-template-columns:1fr}
} */

body {
  color: #0b1957;
}

.mobile-nav {
  display: none;
}

.row-info-icon-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: end;
}

.row-nav-info {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;  
}

.nav {
  display: flex;
  flex-direction: row;
}

.nav-inf {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 1vw;
}

.nav-inf-a {
  font-size: 18px;
  color: #0B1956;
  text-decoration: none;
  font-weight: 700;
  
}

.order-call-nav {
  font-size: 13px;
  color: #0B1956;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
  background: rgba(196, 196, 196, 0.08);
  padding: 1px 30px;
  font-family: "Montserrat Regular";
  border: none;

}

.site-header {
  padding: 20px;
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(8px);
  border-bottom:1px solid #eef0f4;
}

.nav-link {
  text-decoration: none;
  color: #0b1957;
  font-weight: 500;
  font-family: "Montserrat Medium";
  font-size: 16px;
  float: left;
  transition: 0.3s;
}

.nav-link-sm {
  padding: 0;
  text-decoration: none;
  color: #0b1957;
  font-weight: 500;
  font-family: "Montserrat Medium";
  font-size: 16px;
  float: left;
  transition: 0.3s;
}

#hero {
  padding-bottom: 7vh;
  padding-top: 7vh;
}

.hero-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}


.hero-text h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 2.5vh;
}

.hero-text p {
  font-size: 17px;
  font-family: "Montserrat Regular";
  font-weight: 500;
}

.row-hero {
  display: flex;
  flex-direction: row;
  justify-content: end;
  align-items: center;
}

.hero-art {
  width: 530px;
}

.btn:hover {
  background-color: transparent;
  color: #0b1957;
  transition: 0.3s ease-in-out;
  box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.25);
}

.btn {
  transition: 0.3s ease-in-out;
  padding: 13px 28px;
  font-family: "Montserrat Medium";
  font-size: 17px;
  font-weight: 500;
}

.number-of-company {
  color: #0b1957;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.call-nav {
  color: #0b1957;
  text-decoration: none;
  font-size: 15px;
}

.cols-nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.dropdown-content {
  display: none;
  position: absolute;
  margin-top: 4vh;
  width: 220px;
  border-radius: 13px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  background: #fbfbfb;
  z-index: 1;
}

.dropdown-content a {
  color: rgba(11, 25, 86, 1);
  font-family: "Montserrat Regular";
  font-size: 15px;
  font-weight: 600;
  float: left;
  text-decoration: none;
  user-select: none;
  transition: 0.2s;
  border-bottom: 1px solid #0B1956;
  padding: 10px;
  width: 100%;
}

.dropdown-content a:hover {
  color: white;
  background-color: #0B1956;
  transition: 0.2s;
} 

#bottom-border-nav:hover  {
  color: white;
  background-color: #0B1956;
  transition: 0.2s;
  border-radius: 0 0 13px 13px;
}

#top-border-nav:hover  {
  color: white;
  background-color: #0B1956;
  transition: 0.2s;
  border-radius: 13px 13px 0 0;
}

.dropdown:hover .dropdown-content, .nav-link {
  display: block;
}

.dropdown2:hover .dropdown-content, .nav-link {
  display: block;
}
  
.nav-link:hover, .dropdown:hover .nav-link {
  border-radius: 13px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  background: rgba(245, 245, 245, 1);
  color: #0B1956;
  transition: 0.3s;
}

.nav-link:hover, .dropdown2:hover .nav-link {
  border-radius: 13px;
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.25);
  background: rgba(245, 245, 245, 1);
  color: #0B1956;
  transition: 0.3s;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: start;
}

/* .icon-nav {
  margin-right: 25px;
} */

.icon-nav {
  display: flex;  
}

.direction-h2 {
  margin-bottom: 5vh;
  margin-top: 5vh;
  font-size: 40px;
  font-weight: 700;
}

.div-block-direction {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.div-img-info-dir {
  display: flex;
  justify-content: center;
  align-items: center;
} 

.back-dir-img{
  position: absolute;
  top: 20%;
  /* width: 200px; */
  height: 170px;
}

.direction-div {
  position: relative;
  height: 300px;
  border-radius: 26px;
  box-shadow: 0px 0px 4px 0px rgba(11, 25, 86, 0.35);
  background: rgba(251, 251, 251, 1);
  margin-bottom: 20px;
  width: 49%;
  padding: 30px;
}


.div-text-info-dir {
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.h2-dir {
  font-size: 29px;
  font-weight: 700;
}

.p-dir {
  position: absolute;
  top: 40%;
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat Regular";
}

.a-dir {
  /* width: 100%; */
  position: absolute;
  bottom: 10%;
  width: 62%;
  background-color: rgba(11, 25, 86, 1);
  transition: 0.3s;
  font-family: "Montserrat Regular";
  color: rgba(247, 244, 237, 1);
  font-size: 17px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  padding: 9px 12px;
  border-radius: 10px;
  box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.25);
  letter-spacing: 1px;
}

.a-dir:hover {
  transition: 0.3s;
  color:#0B1956;
  background-color: transparent;
}

.decision-text h2 {
  font-size: 40px;
  font-weight: 700;
  padding-top: 5vh;
  margin-bottom: 7vh;
}

.decision-div img {
  width: 630px;
}

.decision-div h3 {
  margin-top: 3vh;
  margin-bottom: 5vh;
  font-size: 29px;
  font-weight: 700;
}

.row-decision {
  margin-top: 5vh;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.row-decision img {
  width: 100px;
}

.row-decision p {
  font-weight: 500;
  font-family: "Montserrat Regular";
  font-size: 21px;
  font-weight: 500;
}

.support-h2 {
  font-size: 40px;
  font-weight: 700;
  margin-top: 5vh;
  margin-bottom: 3vh;
}

.support-p {
  font-size: 21px;
  font-weight: 500;
  margin-bottom: 4vh;
  width: 70%;
  font-family: "Montserrat Regular";
}

.support-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    margin-bottom: 2vh;
}

.support-div-1 {
  border-radius: 20px;
  padding: 40px;
  background: rgba(245, 245, 245, 1);
  background-repeat: no-repeat;
  background-size: 280px;
  background-position: 97%;
  margin: 0;
  width: 59%;
}

.support-div-1 h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 3vh;
}

.support-div-1 p {
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat Regular";
}

.support-div-2 {
  border-radius: 20px;
  padding: 40px;
  background: rgba(245, 245, 245, 1);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: 80% 120px;
  margin:0;
  width: 39%;
}

.support-div-2 h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 1vh;
}

.support-div-2 p {
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat Regular";
}

.support-div-3 {
  height: 35vh;
  border-radius: 20px;
  padding: 40px;
  background: rgba(245, 245, 245, 1);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: 90% 85%;
  margin: 0;
  width: 49%;

}

.support-div-3 h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 2vh;
}

.support-div-3 p {
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat Regular";
}

.support-div-4 {
  border-radius: 20px;
  padding: 40px;
  background: rgba(245, 245, 245, 1);
  background-repeat: no-repeat;
  background-size: 200px;
  background-position: 90% 85%;
  margin: 0;
  width: 49%;
}

.support-div-4 h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 2vh;
}

.support-div-4 p {
  font-size: 24px;
  font-weight: 500;
  font-family: "Montserrat Regular";
}

/* form */

  .row-main-form {
    margin-bottom: 10vh;
  }

form {
  display: flex;
  flex-direction: column;
  align-items: end;
}


.h3-ex-contact {
  font-size: 54px;
  font-weight: 100;
  margin-top: 80px;
}

.h3-ex-contact span {
  font-size: 54px;
  font-weight: 700;
}

.p-ex-contact-2 {
  color: black;
  font-family: "Montserrat Regular";
  font-size: 25px;
  font-weight: 400;
  margin-bottom: 5vh;
}
  
.ex-our-inf {
  color: black;
  font-family: "Montserrat Regular";
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 1vh;
}

.info-ex-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ex-text {
  display: flex;
  flex-direction: column;
  justify-content: end;
}


.ex-form-label {
  position: absolute;
  top: 6px;
  left: 15px;
  font-size: 18px;
  letter-spacing: 1px;
  transition: 0.3s;
  color: black;
}

.ex-form-input {
  background-color: transparent;
  display: flex;
  letter-spacing: 1px;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  padding: 11px;
  border: 0;
  border-bottom: 1px solid #0B1956;
  color: black;
  transition: 0.3s;
}

.ex-form-group {
  width: 100%;
  position: relative;
  margin-bottom: 40px;    
  margin-top: 70px;
}

.ex-form-input:focus ~ .ex-form-label,
.ex-form-input:not(:placeholder-shown) ~ .ex-form-label {
    top: -20px;
    font-size: 12px;
}

.ex-div-btn-form {
  width: 100%;
  margin-top: 60px;
  font-family:"Montserrat Regular";
  font-size: 21px;
  font-weight: 500;
}

.ex-a-form {
  display: block;
  background-color: #0B1956;
  border-radius: 5px;
  border: 1px solid #0B1956;
  padding: 15px 20px;
  transition: 0.5s;
  text-align: center;
  text-decoration: none;
  user-select: none;
  color: white;
  font-size: 16px;
  letter-spacing: 1px;
  width: 100%;
}

.ex-a-form:hover {
  color:  #0B1956;
  background-color: white;
  /* font-weight: 900; */
}

.ex-p-inder-btn {
  margin-top: 20px;
  color: rgb(0, 0, 0);
  font-size: 16px;
}

.ex-a-under-btn {
  color: rgb(0, 0, 0);
  font-size: 16px;
}

.container-ex-p-inder-btn {
  display: flex;
  justify-content: end;
  width: 100.8%;
}

.form-check {
  padding-top: 0;
  margin-top: 2vh;
}

#form-phone {
  font-family:"Montserrat Regular";
  font-size: 16px;
}

.form-check-input:checked[type=checkbox] {
  width: 20px;
  height: 20px;
}

#registrationForm {
  padding-top: 5vh;
}

/* articles */
.article-h2 {
  font-size: 40px;
  font-weight: 700;
}

.articles {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 7vh;
}

.article-p {
  font-size: 28px;
  font-weight: 400;
  font-family: "Montserrat Regular";
  margin-top: 2vh;
}

.post {
  border-radius: 20px;
  box-shadow: 0px 0px 10px 0px rgba(36, 22, 77, 0.25);
  background: rgba(245, 245, 245, 1);
  margin: 15px;
  padding: 0;
}

.post-body {
  padding: 20px;
  padding-bottom: 30px;
}

.post img {
  max-width: 100%; /* Максимальная ширина 100% от родительского блока */
  height: auto;    /* Высота подстраивается автоматически, сохраняя пропорции */
  display: block;
  padding: 0;
}

.post-body h3 {
  font-size: 19px;
  font-weight: 600;
  margin-top: 2vh;
}

.post-body p {
  margin-top: 2vh;
  margin-bottom: 5vh;
  font-family: "Montserrat Regular";
  font-size: 13px;
  font-weight: 400;
}

.post-body a {
  text-decoration: none;
  user-select: none;
  border-radius: 15px;
  border: 1px solid #0B1956;
  color: white;
  padding: 10px 25px;
  background-color: #0B1956;
  letter-spacing: 1px;
  font-family: "Montserrat Regular";
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.post-body a:hover {
  color:#0B1956;
  background-color: white;
  transition: 0.3s;
  font-weight: 600;
}

.more-wrap {
  text-align: center;
}

.btn-more-wrap {
  margin-top: 5vh;
  text-decoration: none;
  user-select: none;
  border-radius: 10px;
  border: 1px solid #0B1956;
  color: white;
  padding: 10px 100px;
  background-color: #0B1956;
  letter-spacing: 1px;
  font-size: 17px;
  transition: 0.3s;
  margin-bottom: 10vh;
}

.btn-more-wrap:hover {
  color: #0B1956;
  background-color: white;
  transition: 0.3s;
}

/* footer */

.footer-li {
  padding-top: 2vh;
}

.footer-li h4 {
  font-size: 20px;
  font-weight: 700;
}

.footer-li li {
  text-decoration: underline;
  list-style-type: none;
  font-family: "Montserrat Regular";
  font-size: 16px;
  font-weight: 500;
}

.footer-li ul {
  padding: 0;
  margin-top: 3vh;
}

.footer-li a {
  color: #0B1956;
  user-select: none;
  font-size: 16px;
  font-weight: 500;
}

.container-footer {
  margin-top: 10vh;
}

.info-footer img {
  width: 40px;
  /* margin-top: 5vh; */

}
.container-footer h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2vh;
  margin-top: 3vh;
}

.container-footer p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0; 
  font-family: "Montserrat Regular";
}

.div-services-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.info-footer a {
  font-size: 20px;
  font-weight: 700;
  font-family: "Montserrat Regular";
  text-decoration: none;
  user-select: none;
  color: #0B1956;
}

.info-footer p {
  font-size: 20px;
  font-weight: 700;
  font-family: "Montserrat Regular";
}

.info-footer {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-top: 1vh;
}

.cont-info-footer {
  margin-top: 5vh;
}

.footer-adress {
  margin-top: 2vh;
  font-family: "Montserrat Regular";
  font-size: 18px;
  font-weight: 500;
}

.row-icon {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: end;
  align-items: start;
  padding-bottom: 2vh;
}

.row-icon a {
  display: flex;
  justify-content: end;
}

.h6-info-footer {
  display: flex;
  justify-content: end;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2vh;
}

.footer-col-2 {
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.footer-link a{
  display: flex;
  justify-content: end;
  color: #0d1021;
  font-family: "Montserrat Regular";
  font-size: 13px;
  font-weight: 400;
}

.footer-link p{
  display: flex;
  justify-content: end;
  text-align: right;
  color: #0d1021;
  font-family: "Montserrat Regular";
  font-size: 13px;
  font-weight: 400;
  margin-top: 2vh;
}

.sm-nav-block {
  display: none;
}
.container-ex-p-inder-btn {
  display: flex;
  justify-content: end;
  width: 100%;
  }
  .form-check {
    width: 100%!important;
    margin-bottom: 2vh;
  }

  .form-check-label-popup, .form-check-label-popup a {
    font-size: 10px;
  }
  /* .form-check-popup {
    display: flex;
    flex-direction: row;
    margin-bottom: 0;
  } */

  /* dpordowm-sm */
  .dropdown-content-sm {
    display: flex;
    flex-direction: column;
  }

  .dropdown-content-sm a {
    text-decoration: none;
    color: #0b1957;
    font-weight: 500;
    font-family: "Montserrat Medium";
    font-size: 16px;
    float: left;
    transition: 0.3s;
    padding: 8px 16px;
    cursor: pointer;
  }

  .position-parent-div-sm-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  

  /* Базово — резиновый размер через rem/clamp */
.form-check .form-check-input[type="checkbox"]{
  inline-size: clamp(16px, 1.2rem, 20px);   /* ширина 16–20px в зависимости от базового шрифта */
  block-size: clamp(16px, 1.2rem, 20px);    /* высота */
  min-inline-size: clamp(16px, 1.2rem, 20px);
  min-block-size: clamp(16px, 1.2rem, 20px);
  margin-top: 0.25rem;
  accent-color: #0B1956;
  appearance: auto;
}

/* Чуть увеличиваем цели на устройствах с тачем */
@media (pointer: coarse) {
  .form-check .form-check-input[type="checkbox"]{
    inline-size: 22px;
    block-size: 22px;
    min-inline-size: 22px;
    min-block-size: 22px;
  }
  .form-check{
    gap: 10px;                    /* до кнопки — палец не задевает текст */
  }
  .form-check-label,
  .form-check-label-popup{
    line-height: 1.35;            /* читаемо на маленьких экранах */
  }
}

/* В модалках сохраняем выравнивание и вертикальный стек */
.model-bitrix .container-ex-p-inder-btn,
.model-1 .container-ex-p-inder-btn,
.model-2 .container-ex-p-inder-btn,
.model-3 .container-ex-p-inder-btn,
.model-analitics-demo .container-ex-p-inder-btn,
.model-analitics-calltrack .container-ex-p-inder-btn{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.model-bitrix .form-check,
.model-1 .form-check,
.model-2 .form-check,
.model-3 .form-check,
.model-analitics-demo .form-check,
.model-analitics-calltrack .form-check{
  display: flex;
  align-items: flex-start;
  gap: 8px;
}


/* CTA-кнопка в герое (не зависит от глобального .btn) */
.btn-ws-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  padding: 12px 20px;
  min-height: 48px;
  border-radius: 12px;

  background: #0B1956;
  color: #fff;
  border: 1px solid transparent;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;

  box-shadow: 0 6px 16px rgba(11,25,86,.25);
  transition: background-color .2s ease, box-shadow .15s ease, transform .15s ease;
}

/* если где-то есть глобальные стили .btn — добиваем приоритет */
.btn.btn-ws-cta {
  background: #0B1956;          /* перекрыть возможные .btn-primary и т.п. */
  border: 1px solid transparent;
  color: #fff;
}

.btn-ws-cta:hover {
  background: #08123f;
  box-shadow: 0 8px 22px rgba(11,25,86,.35);
  transform: translateY(-1px);
  color: #fff;
  text-decoration: none;
}

.btn-ws-cta:active {
  transform: translateY(0);
  box-shadow: 0 4px 12px rgba(11,25,86,.2);
}

.btn-ws-cta:focus-visible {
  outline: 3px solid #8ab4ff;
  outline-offset: 2px;
}

/* На мобильных — во всю ширину для аккуратной сетки */
@media (max-width: 576px) {
  #hero .btn-ws-cta { width: 100%; }
}


@media only screen and (max-width: 576px) {
  .sm-nav-block {
    display: block;
  }
  .back-dir-img{
    height: 60%;
    width: 100%;
  }
  .site-header {
    padding: 0;
  }
  .navbar-brand {
    margin-right: 0;
  }
  .nav-link:hover, .dropdown:hover .nav-link {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: #0B1956;
    transition: 0.3s;
  }
  .nav {
    display: none;
  }
  .dropdown {
    display: flex;
    flex-direction: column;
  }
  /* main */
  .row-main {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero-text h1 {
    margin-top: 3vh;
    font-size: 27px;
  }
  .hero-text p {
    font-size: 14px;
  }
  .hero-art {
    width: 100%;
  }
  .btn {
    font-size: 15px;
    margin-top: 3vh;
    padding: 10px 25px;
  }

  /* direction */
  .direction-h2 {
    font-size: 30px;
    margin-bottom: 2vh;
    margin-left: 15px;
  }
  .h2-dir {
    font-size: 18px;
  }
  .p-dir {
    position: absolute;
    top: 70px;
    font-size: 11px;
    margin-top: 0;
  }
  .back-dir-img {
    position: absolute;
    top: 20%;
    max-width: 150px;
  }
  .direction-div {
    padding: 15px;
    height: 250px;
    min-width: 220px;
  }
  .a-dir {
    font-size: 10px;
    padding: 8px;
    width: 40%;
  }
    .div-services-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
    .direction-div {
        width: 95%;
    } 

  /* support */
  .support-h2 {
    font-size: 26px;
  }
  .support-p {
    font-size: 15px;
  }
  .support-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 2vh;
    }
  .support-div-1 {
    background-size: 130px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    margin-bottom: 2vh;
    width: 95%;
  }
  .support-div-1 h3 {
    font-size: 15px;
  }
  .support-div-1 p {
    font-size: 13px;
    width: 65%;
  }
  .support-div-2 {
    background-size: 130px;
    background-position: 90% 100%;
    margin: 0;
    padding: 25px;
    width: 95%;
  }
  .support-div-2 h3 {
    font-size: 15px;
  }
  .support-div-2 p {
    font-size: 13px;
    width: 65%;
  }
  .support-div-3 {
    background-size: 130px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    height: auto;
    margin-bottom: 2vh;
    width: 95%;
  }
  .support-div-3 h3 {
    font-size: 15px;
  }
  .support-div-3 p {
    font-size: 13px;
    width: 65%;
  }
  .support-div-4 {
    background-size: 130px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    height: auto;
    width: 95%;
  }
  .support-div-4 h3 {
    font-size: 15px;
  }
  .support-div-4 p {
    font-size: 13px;
    width: 65%;
  }
  /* desicion */
  .decision-text h2 {
    display: flex;
    align-items: start;
    font-size: 24px;
    padding-top: 3vh;
    margin-bottom: 4vh;
  }
  .decision-div {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .decision-div img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .decision-div h3 {
    font-size: 20px;
    margin-bottom: 2vh;
  }
  .row-decision {
    margin-top: 1vh;
  }
  .row-decision img {
    width: 100px;
  }
  .row-decision p {
    font-size: 12px;
  }
  /* form */
  .h3-ex-contact, .h3-ex-contact span {
    font-size: 34px;
    margin-top: 2vh;
  }
  .p-ex-contact-2 {
    font-size: 18px;
    margin-top: 1vh;
  }
  .ex-form-label {
    font-size: 14px;
  }
  .ex-our-inf {
    display: none;
  }
  .ex-form-group {
    margin-top: 2vh;
  }
  #registrationForm {
    padding-top: 0;
  }
  .ex-p-inder-btn, .ex-p-inder-btn a {
    font-size: 16px;
  }
  /* articles */
  .article-h2 {
    font-size: 30px;
  }
  .article-p {
    font-size: 18px;
  }
  .articles {
    display: flex;
    flex-direction: column;
    margin-top: 1vh;
  }
  /* footer */
  .footer-li a {
    font-size: 13px;
  }
  .container-footer {
    margin-top: 3vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-col-2 {
    margin-top: 3vh;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .row-icon {
    display: flex;  
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
  }
  .footer-link a{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  .footer-link p {
    text-align: center;
    font-size: 12px;
  }
  .info-footer a {
    font-size: 16px;
  }
  .info-footer img {
    width: 30px;
  }
  .container-footer p {
    font-size: 15px;
  }
  .row-icon img {
    width: 30px;
  }
  .row-icon a {
    display: flex;
    justify-content: center;
  }
  .footer-adress {
    width: 70%;
    margin-bottom: 2vh;
  }
  .form-check {
    width: 100%;
  }
}
  
@media only screen and (min-width: 577px) and (max-width: 992px) {
  .sm-nav-block {
    display: block;
  }
  .site-header {
    padding: 0;
    height: 60px;
  }
  .navbar-brand {
    margin-right: 0;
  }
  .logo img {
    max-height: 40px!important;
  }
  .nav-link-sm {
    font-size: 20px;
  }
  .nav-link {
    font-size: 20px;
  }
  .nav-link:hover, .dropdown:hover .nav-link {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: #0B1956;
    transition: 0.3s;
  }
  .nav {
    display: none;
  }
  .dropdown {
    display: flex;
    flex-direction: column;
  }
  .dropdown-content-sm a {
    font-size: 20px;
  }
  .form-check {
    width: 50%;
    font-size: 11px;
  }
  .ex-a-under-btn {
    font-size: 11px;
  }
  /* hero */
  #hero {
    padding-bottom: 4vh;
    padding-top: 3vh;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .row-hero {
    justify-content: center;
  }
  .direction-h2 {
    margin-bottom: 2vh;
  }
    .div-services-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
    .direction-div {
        width: 100%;
    }
  /* support */
  .support-p {
    font-size: 19px;
    width: 100%;
  }
  .support-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2vh;
    }
  .support-div-1 {
    background-size: 230px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    height: auto;
    margin-bottom: 2vh;
    width: 99%;
  }
  .support-div-1 h3 {
    font-size: 28px;
  }
  .support-div-1 p {
    font-size: 20px;
  }
  .support-div-2 {
    background-size: 230px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    height: 220px;
    width: 99%;
  }
  .support-div-2 h3 {
    font-size: 28px;
  }
  .support-div-2 p {
    font-size: 20px;
    width: 60%;
  }
  .support-div-3 {
    background-size: 230px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    height: auto;
    margin-bottom: 2vh;
    width: 99%;
  }
  .support-div-3 h3 {
    font-size: 28px;
  }
  .support-div-3 p {
    font-size: 20px;
  }
  .support-div-4 {
    background-size: 230px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    height: auto;
    width: 99%;
  }
  .support-div-4 h3 {
    font-size: 28px;
  }
  .support-div-4 p {
    font-size: 20px;
  }
    /* form */
  .h3-ex-contact, .h3-ex-contact span {
    font-size: 34px;
    margin-top: 2vh;
  }
  .p-ex-contact-2 {
    font-size: 18px;
    margin-top: 1vh;
  }
  .ex-form-label {
    font-size: 14px;
  }
  .ex-form-group {
    margin-top: 2vh;
  }
  #registrationForm {
    padding-top: 0;
  }
  .ex-p-inder-btn, .ex-p-inder-btn a {
    font-size: 13px;
    width: 47%;
  }
  /* articles */
  .articles {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 1vh;
  }
    /* footer */
  .footer-li a {
    font-size: 13px;
  }
  .footer-link p {
    font-size: 12px;
  }
  .info-footer a {
    font-size: 16px;
  }
  .info-footer img {
    width: 40px;
  }
  .container-footer p {
    font-size: 15px;
  }
  .row-icon img {
    width: 60px;
  }
  .footer-adress {
    margin-bottom: 2vh;
  }
  /* decision */
  .decision-text h2 {
    font-size: 30px;
    padding-top: 3vh;
    margin-bottom: 4vh;
    margin-left: 2vw;
  }
  .decision-div img {
    width: 700px;
  }
  .decision-div h3 {
    font-size: 27px;
    margin-bottom: 4vh;
  }
  .decision-div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .row-decision {
    margin-top: 1vh;
  }
  .row-decision img {
    max-width: 140px;
  }
  .row-decision p {
    font-size: 22px;
  }
}
@media only screen and (min-width: 993px) and (max-width: 1365px) {
  .sm-nav-block {
    display: block;
  }
  .site-header {
    padding: 0;
    height: 60px;
  }
  .navbar-brand {
    margin-right: 0;
  }
  .logo img {
    max-height: 40px!important;
  }
  .nav-link-sm {
    font-size: 24px;
  }
  .nav-link {
    font-size: 24px;
  }
  .nav-link:hover, .dropdown:hover .nav-link {
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    color: #0B1956;
    transition: 0.3s;
    border-radius: 0;
  }
  .nav {
    display: none;
  }
  .dropdown {
    display: flex;
    flex-direction: column;
  }

  .dropdown-content-sm a {
    font-size: 24px;
  }
  /* hero */
  .hero-text h1 {
    font-size: 32px;
  }
  .row-hero {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
  }
  .hero-art {
    max-width: 400px;
  }
  /* direction */
  .direction-h2 {
    margin-top: 3vh;
    margin-left: 0;
    margin-bottom: 2vh;
  }
  .p-dir {
    top: 100px;
    font-size: 22px;
  }
    .div-services-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    }
    .direction-div {
        width: 95%;
    }
  /* suuport */
  .support-row {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2vh;
    }
  .support-div-1 {
    background-size: 290px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    height: auto;
    width: 99%;
    margin-bottom: 2vh;
  }
  .support-p {
    font-size: 25px;
    width: 100%;
  }
  .support-div-1 h3 {
    font-size: 32px;
  }
  .support-div-1 p {
    font-size: 28px;
  }
  .support-div-2 {
    background-size: 230px;
    background-position: 90% 70%;
    margin: 0;
    padding: 25px;
    height: 220px;
    width: 99%;
  }
  .support-div-2 h3 {
    font-size: 32px;
  }
  .support-div-2 p {
    font-size: 28px;
    width: 60%;
  }
  .support-div-3 {
    background-size: 290px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    height: auto;
    width: 99%;
    margin-bottom: 2vh;
  }
  .support-div-3 h3 {
    font-size: 32px;
  }
  .support-div-3 p {
    font-size: 28px;
  }
  .support-div-4 {
    background-size: 290px;
    background-position: 90% 50%;
    margin: 0;
    padding: 25px;
    height: auto;
    width: 99%;
  }
  .support-div-4 h3 {
    font-size: 32px;
  }
  .support-div-4 p {
    font-size: 28px;
  }
  /* form */
  .h3-ex-contact, .h3-ex-contact span {
    font-size: 44px;
  }
  .ex-p-inder-btn {
    font-size: 20px;
    width:48%;
  }
  /* articles */
  .articles {
    margin-top: 3vh;
  }
  .post-body h3 {
    font-size: 18px;
  }
  .btn-more-wrap {
    margin-bottom: 5vh;
  }
  /* decision */
  .decision-div img {
    width: 900px;
  }
  .row-decision img {
    max-width: 150px;
  }
  .decision-text h2 {
    margin-bottom: 3vh;
  }
  .row-decision p {
    font-size: 25px;
  }
  .decision-div h3 {
    font-size: 40px;
  }
}