/*=============== BASE ===============*/

/* ШРИФТ */
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Light.eot");
  src:
    url("../fonts/Manrope/Manrope-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Manrope/Manrope-Light.woff2") format("woff2"),
    url("../fonts/Manrope/Manrope-Light.eot.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-Regular.eot");
  src:
    url("../fonts/Manrope/Manrope-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Manrope/Manrope-Regular.woff2") format("woff2"),
    url("../fonts/Manrope/Manrope-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url("../fonts/Manrope/Manrope-SemiBold.eot");
  src:
    url("../fonts/Manrope/Manrope-SemiBold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Manrope/Manrope-SemiBold.woff2") format("woff2"),
    url("../fonts/Manrope/Manrope-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Light.eot");
  src:
    url("../fonts/Inter/Inter-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Inter/Inter-Light.woff2") format("woff2"),
    url("../fonts/Inter/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Regular.eot");
  src:
    url("../fonts/Inter/Inter-Regular.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Inter/Inter-Regular.woff2") format("woff2"),
    url("../fonts/Inter/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter/Inter-Medium.eot");
  src:
    url("../fonts/Inter/Inter-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Inter/Inter-Medium.woff2") format("woff2"),
    url("../fonts/Inter/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon/fonts/icomoon.eot?oeuf3z");
  src: url("../fonts/icomoon/fonts/icomoon.eot?oeuf3z#iefix") format("embedded-opentype"), url("../fonts/icomoon/fonts/icomoon.ttf?oeuf3z") format("truetype"), url("../fonts/icomoon/fonts/icomoon.woff?oeuf3z") format("woff"), url("../fonts/icomoon/fonts/icomoon.svg?oeuf3z#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}



/* ================================
   GLOBAL COLORS
================================ */

:root{

--blue-main:#1C78B3;
--blue-dark:#0E5F8F;

--accent:#2FA4E7;     /* яркий голубой акцент */
--accent-soft:#E8F5FC; /* светлый голубой фон */

--light-section:#EEF5F8;
--light-card:#F5FAFD;
--bg-dark: #2B2F33;

--text:#2B2B2B;
--text-white:#ffffff;
--text-dark: #3B3B3B;


}

/* RESET */

*,
*::before,
*::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


html, body {
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: var(--text);
  min-height: 100%;
  background-color: #fff;
  overflow-x: hidden;
  padding-top: var(--header-height, 70px);
  font-size: 16px;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover {
  color: var(--accent);
}


h1, 
h2,
.section-title {
font-family:"Manrope", sans-serif;
font-weight:300;
color:var(--blue-main);
letter-spacing:-0.02em;
}
h3 {
    font-family:"Manrope", sans-serif;
    font-weight: 600;
}
h4,
h5
.section-title {
font-family:"Manrope", sans-serif;
font-weight:400;
}


ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

button,
input {
  border: none;
  outline: none;
  font-family: inherit;
}

button {
  cursor: pointer;
}

.buttons,
.menu {
    font-family: "Inter", sans-serif;
    font-weight: 500;
}

p {
  margin-bottom: 1rem;
}
p,
li,
span {
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

section {
  padding: 110px 0;
}

.hidden {
    visibility: hidden;
    position: absolute;
    left: -1500px;
    font-size: 0;
}

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

.white-text {
    color: var(--text-white);
}

.section-title{
color:var(--blue-main);
}

.section-title.white{
color:#fff;
}

body {
    opacity: 0;
    transition: opacity 0.4s ease;
}

body.page-loaded {
    opacity: 1;
}

/*=============== HEADER ===============*/


.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 3;
  width: 100%;
  color: #141818;
  background: rgba(0, 0, 0, 0);
  transition: all ease-in-out .5s;
  box-shadow: 0px 7px 19px 2px rgba(0, 0, 0, 0);
}

#header-top.scroll-header {
    background: var(--blue-main);
    box-shadow: 0px 7px 19px 2px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    z-index: 100;
    left: 0;
    right: 0;
    animation-name: show_header;
    animation-duration: 1s;
}

.header-inner {
    background: var(--blue-main);
    box-shadow: 0px 7px 19px 2px rgba(0, 0, 0, 0.1);
}

@keyframes show_header {
  0% {
    opacity: 0;
    top: -190px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}



#header-top.scroll-header .container {
    padding: 0 15px;
}

.header .container {
    padding: 0px 15px;
}

.header .logo:before {
  font-family: 'icomoon';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  content: "\e91c";
  font-size: 70px;
  width: 70px;
  height: 70px;
  position: absolute;
  left: -60px;
  top: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ce2ff;
  transition: all ease-in-out .3s;
  padding-top: 15px;
}
.header .logo span {
    display: block;
    color: #fff;
}
.header .logo span:nth-of-type(1) {
    font-size: 24px;
}
.header .logo span:nth-of-type(2) {
    font-size: 28px;
    letter-spacing: .2px;
    font-weight: 500;
    text-transform: uppercase;
}


.dj-megamenu-clean li a.dj-up_a {
    font-size: 22px;
    color: #ffffff;
}
.dj-megamenu-clean li:hover a.dj-up_a, .dj-megamenu-clean li:focus a.dj-up_a,
.dj-megamenu-clean li:active a.dj-up_a, .dj-megamenu-clean li:visited a.dj-up_a  {
    color: #ffffff !important;
}
.dj-megamenu-clean li ul.dj-submenu > li{
    background: #fff !important;
    transition: all .3s ease-in-out;
}
.dj-megamenu-clean li ul.dj-submenu > li > a:hover {
    color: #fff !important;
}
.dj-megamenu-clean li ul.dj-submenu > li:hover > a, .dj-megamenu-clean li ul.dj-submenu > li.active > a {
    background: var(--blue-main) !important;
    
}

.dj-megamenu-clean li ul.dj-submenu > li:hover > a, .dj-megamenu-clean li ul.dj-submenu > li.active > a {
   color: #fff !important;
}



.home .header {
    transition: all 0.3s ease;
}

/* ЭФФЕКТ СТЕКЛА */
.home .header.scroll-header {
    background: rgba(10, 20, 40, 0.6) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1) !important;
}



/* если не поддерживается blur */
@supports not (backdrop-filter: blur(10px)) {
    .home .header.scroll-header {
        background: rgba(10, 20, 40, 0.9);
    }
}




/*=============== HERO ===============*/

.hero {
    margin-top: -100px;
  position: relative;
  overflow: hidden;
  padding-top: 0;
  z-index: 1;
}

.hero-video-wrapper {
  position: relative;
  height: 100vh;
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.hero-content p {
  font-size: 1.8rem;
  margin-bottom: 25px;
}

.hero-titles {
  max-width: 800px;
  text-align: left;
}
.video-show {
  color: #fff;
  border: 2px solid #fff;
  padding: 14px 28px;
  border-radius: 6px;
  display: inline-block;
  margin-right: 20px;
  font-size: 18px;
}
.video-show:hover {
    color: #fff;
  border: 2px solid #fff;
}

.btn-cost {
background: var(--blue-main);
color:#fff;
padding:14px 28px;
border-radius:6px;
display:inline-block;
font-weight:500;
font-size:18px;
}

.btn-cost:hover{
background:var(--blue-dark);
}

/*=============== УСЛУГИ ===============*/


.services {
  position: relative;
  background: linear-gradient(135deg, #1C78B3, #0A4FA0);
  margin-top:-280px;
  padding-top:180px;
  color: #fff;
}
.services-page.services {
    background: #fff;
    padding-top: 100px;
}

.services-section__title {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 15px;
text-align: center;
color: #fff;
}
.services-section__subtitle {
  margin-bottom: 60px;
  display: block;
  font-size: 25px;
  text-align: center;
  color: #fff;
}

.service-card-column {
    margin-bottom: 40px;
}

.service-card {
  background:var(--light-card);
  border-radius: 14px;
  padding: 28px;
  border: 1px solid #eef2f7;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.35s;
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  align-items: center;
  cursor: pointer;
  
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.service-card-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
}

.service-card-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-card p {
    color: var(--text-dark);
}

.service-icon{
width:64px;
height:64px;
display:flex;
align-items:center;
justify-content:center;
background:#e1ebf1;
border-radius:50%;
margin-bottom:18px;
transition:.3s;
}

.service-icon img{
width:30px;
height:30px;
transition:.3s;
}

.service-card:hover .service-icon{
background:var(--blue-main);
}

.service-card:hover .service-icon img{
filter:brightness(0) invert(1);
}


.service-card h3 {
  font-size: 20px;
}

.services .readmore{
margin-top: auto;
}

.services .readmore .btn,
.services-page .readmore .btn{
background:none;
border:none;
padding:0;
font-weight:500;
color:var(--blue-main);
display:inline-flex;
align-items:center;
text-decoration:none;
border-bottom:1px solid rgba(28,120,179,0.3);
transition:.3s;

}

.services .readmore .btn span,
.services-page .readmore .btn span {
display:none;
}

.services .readmore .btn::after,
.services-page .readmore .btn::after {
content:"→";
margin-left:8px;
transition:transform .3s;

}

.service-card:hover .readmore .btn::after {
transform:translateX(6px);
}
.service-card:hover h3{
color:var(--blue-main);
}

.services-text {
    margin-top: 60px;
    max-width: 760px;
    color: #fff;
}



/*=============== НАПРАВЛЕНИЯ ПЕРЕВОЗОК ===============*/

.directions {
   background:var(--accent-soft);
}


.directions-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 80px;
    text-align: center;
}

.direction-column .image-cover {
    border-radius: 0;
    height: 100%;
}
.direction-column .image-cover img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}


.direction-card {
    padding: 80px;
}
.direction-card h2 {
    font-size: 40px;
}
.direction-card p {
    font-size: 20px;
}

.direction-card  .readmore{
margin-top:14px;
}

.direction-card .readmore .btn{
background:none;
border:none;
padding:0;
font-weight:500;
color:var(--blue-main);
display:inline-flex;
align-items:center;
text-decoration:none;
border-bottom:1px solid rgba(28,120,179,0.3);
transition:.3s;

}

.direction-card .readmore .btn span{
display:none;
}

.direction-card .readmore .btn::after{
content:"→";
margin-left:8px;
transition:transform .3s;

}
.direction-card:hover h2 {
    color:var(--blue-main);
}



/*=============== РЕСУРСЫ ===============*/

.equipment-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 80px;
    text-align: center; 
}

.resourses-carousel {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.resourses-carousel .owl-wrapper {
    position: absolute;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -webkit-perspective: 1000;
}
.owl-carousel .owl-item {
    float: left;
}
.resourse-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.resourse-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.resourse-img {
    max-width: 80%;
    margin-bottom: 20px;
}
.resourse-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.resourse-text {
    font-size: 20px;
}
.resourse-text strong {
    display: block;
}


.resourses-carousel .owl-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.resourses-carousel .owl-dots .owl-dot  {
    display: block;
    width: 30px;
    height: 2px;
    background: #ffffff;
    border: 1px solid #c9c9c9;
    opacity: 0.5;
} 

.resourses-carousel .owl-dots .owl-dot.active  {
    opacity: 1;
}

.resourses-carousel .owl-nav.disabled {
    display: none;
}


.resourses-carousel {
    position: relative;
}



.com-content-article__body .resources-img-big {
    height: 100%;
}
.com-content-article__body .resources-img-big a {
    height: 100%;
    width: 100%;
    display: block;
}
.com-content-article__body .resources-img-big a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*=============== ФОТОГАЛЕРЕЯ ===============*/
.gallery {
    padding: 0;
}

/*=============== IMAGE HOVER ===============*/

.gallery img:hover,
.direction-card:hover img {
  transform: scale(1.06);
}

/*=============== ПРЕИМУЩЕСТВА ===============*/

.advantages {
  background-image: url("../images/bg/advantages-bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  text-align: center;
  padding: 140px 0;
  position: relative;
   clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
}



.advantages::after {
    content: "";
    display: block;
    position: absolute;
    background: rgba(0, 0, 0, 0.25);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}


.advantages .content {
    position: relative;
    z-index: 3;
}

.advantages-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 80px;
    text-align: center; 
}


 .adv-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
  opacity:0;
transform:translateY(40px);
transition:all .6s ease;
}

.advantages.visible .adv-card{
opacity:1;
transform:translateY(0);
}

.adv-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
} 

.adv-card h3 {
    font-size: 60px;
}
.adv-card p {
    font-size: 18px;
}

.counter::after{
content:"+";
margin-left:3px;
}


/*=============== О КОМПАНИИ ===============*/

.about {
background: var(--accent-soft);
margin-top:-100px;
padding-top:160px;
}

.about .image-cover {
    height: 100%;
}

.about .image-cover img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.about h2 {
    font-size: 38px;
    margin-bottom: 30px;
}



.about p {
    font-size: 18px;
}

.about .readmore{
margin-top:14px;
}

.about .readmore .btn{
background:none;
border:none;
padding:0;
font-weight:500;
color:var(--blue-main);
display:inline-flex;
align-items:center;
text-decoration:none;
border-bottom:1px solid rgba(28,120,179,0.3);
transition:.3s;

}

.about .readmore .btn span{
display:none;
}

.about .readmore .btn::after{
content:"→";
margin-left:8px;
transition:transform .3s;

}

/*=============== СЛОВО ДИРЕКТОРА ===============*/
.director {
  padding: 80px 0;
  padding-bottom: 120px;
  background:var(--light-section);
}

.director-quote {
  max-width: 860px;
  margin: auto;
  background: #ffffff;
  padding: 60px 60px 50px;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
  position: relative;
}

.director-quote::before {
  content: "❝";
  position: absolute;
  left: 35px;
  top: 20px;
  font-size: 80px;
  color: var(--accent);
  opacity: 0.18;
  line-height: 1;
}

.director-quote p {
  font-size: 22px;
  line-height: 1.7;
  font-weight: 500;
  margin-bottom: 35px;
  color: #333;
}

.director-quote footer {
  font-weight: 500;
  font-size: 20px;
  color: #222;
}


.director-quote .status {
    display: block;
  font-size: 16px;
  opacity: 0.65;
  font-weight: 400;
}

.director-quote:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

/*=============== ОТВЕТЫ НА ВОПРОСЫ ===============*/
.faq{
padding:120px 0;
background:var(--accent-soft);

}
.faq h2 {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 80px;
    text-align: center;
    
}

.faq-list{
max-width:900px;
margin:auto;
display:flex;
flex-direction:column;
gap:16px;

}

.faq-list-page {
    margin:0
}

/* карточка */

.faq-list details{
background:var(--light-card);
border-radius:14px;
padding:22px 26px;
box-shadow:0 10px 30px rgba(0,0,0,0.05);
transition:.3s;

}

/* hover */

.faq-list details:hover{
transform:translateY(-3px);
box-shadow:0 15px 40px rgba(0,0,0,0.08);

}

/* заголовок */

.faq-list summary{
font-size:22px;
font-weight:500;
cursor:pointer;
list-style:none;
position:relative;
padding-right:40px;

}

/* убираем стандартный маркер */

.faq-list summary::-webkit-details-marker{
display:none;
}

/* иконка + */

.faq-list summary::after{
content:"+";
position:absolute;
right:0;
top:0;
font-size:24px;
font-weight:300;
color:var(--blue-main);
transition:.3s;

}

/* когда открыто */

.faq-list details[open] summary::after{
content:"×";
transform:rotate(180deg);

}


.faq-list p{
margin-top:15px;
font-size:18px;
line-height:1.6;
color:#444;

}

/*=============== PARALLAX ЗАЯВКА ===============*/

.parallax-section {
position:relative;
background-image:url("../images/bg/bg-calc.jpg");
background-size:cover;
background-position:center;
background-attachment:fixed;
padding:140px 0;
color:#fff;

}

.parallax-section::before {
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.35);

}

.parallax-section .container {
position:relative;
z-index:2;

}

/* блок формы */
.calc-wrapper{
  max-width:520px;
}

/* текст */
.calc-text h2{
  font-size:42px;
  margin-bottom:15px;
}

.calc-text p{
  font-size:18px;
  margin-bottom:35px;
  opacity:.9;
}

/* форма */
.calc-form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* поля */
.calc-form input.rsform-input-box,
.calc-form select.rsform-select-box,
.calc-form textarea.rsform-textarea-box,
.rsform-block .formControls input {
  padding:16px 18px;
  border-radius:8px;
  border:none;
  font-size:16px;
  background:rgba(255,255,255,.92);
  width:100%;
  box-sizing:border-box;
}
.form-check.form-check-inline input {
    padding: 16px 18px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background: rgba(255, 255, 255, .92);
    margin-bottom: 16px;
    width: 35px;
}
.form-check-label {
    font-size: 18px;
}
.form-check-label:hover a {
    text-decoration: underline;
    color: #b2dbeb;
}
#captcha27 {
   width: 120px;
}
.rsform-type-captcha p {
    background: #fff;
    padding: 6px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}
/* кнопка */
.calc-form button{
  margin-top:10px;
  padding:16px;
  border:none;
  border-radius:40px;
  background:var(--blue-main);
  color:#fff;
  font-size:16px;
  font-weight:600;
  cursor:pointer;
  transition:.3s;
}

.calc-form button:hover{
  background:var(--blue-dark);
  transform:translateY(-2px);
}

/* капча */
.captcha-wrapper img.rsform-captcha-img{
  border-radius:8px;
  border:1px solid #ccc;
  height:50px;
}

.rsform-captcha-refresh-button{
  padding:8px 12px;
  background:var(--blue-main);
  color:#fff;
  border-radius:8px;
  text-decoration:none;
  font-size:14px;
  transition:.3s;
}

.rsform-captcha-refresh-button:hover{
  background:var(--blue-dark);
}

.calc-wrapper .form-group input {
    padding: 16px 18px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background: rgba(255, 255, 255, .92);
    margin-bottom: 16px;
}

.rsform-submit-button  {
    margin-top: 10px;
    padding: 16px !important;
    border: none;
    border-radius: 40px !important;
   background: var(--blue-main) !important;
    color: #fff !important;
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    transition: .3s;
    width: 100%;
}
.rsform-submit-button:hover {
    background: #1a6583 !important;
}
.rsform-captcha-refresh-button {
    height: 56px;
}
.form-check.form-check-inline {
    display: flex;
    gap:15px;
    align-items: center;
}
.form-check-input:checked[type=checkbox] {
    background-color: var(--blue-main);
}

.formValidation {
    display: block;
    color: red;
    font-size: 16px;
    height: 20px;
}


/* ошибки RSForm в твоей форме */
.calc-form .formValidation span.formError {
    display: block !important;
    color: red;
    font-size: 16px;
    margin-top: 4px;
}
.calc-form .formValidation span.formNoError {
    display: none !important;
}
/* кнопки */

.btn-primary {
  background: #0072be;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  display: inline-block;
}

.btn-primary:hover {
  background: #005fa1;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  margin-left: 12px;
}

.btn-outline:hover {
  background: #fff;
  color: #000;
}

.section-title-content {
    margin-bottom: 60px;
    color: var(--blue-main);
}

/*=============== АНИМАЦИЯ БЛОКОВ ===============*/

/* .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
} */

/* =========================
   SECTION DIVIDERS
========================= */

.section-divider {
  line-height: 0;
  margin-top: -1px;
}

.section-divider svg {
  width: 100%;
  height: 100px;
  display: block;
}

.section-divider path {
  fill: #ffffff;
}

/* если следующая секция темная */

.section-divider.dark path {
  fill: #111;
}

/* =========================
   FLOATING CARDS
========================= */

.floating-card {
  background: #fff;
  border-radius: 14px;
  padding: 30px;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  transition: all 0.35s ease;
}

.floating-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* =========================
   SCROLL ANIMATION
========================= */

/* .fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.fade-up.show {
  opacity: 1;
  transform: translateY(0);
} */






/* =========================
   IMAGE HOVER
========================= */

.image-cover {
  overflow: hidden;
  border-radius: 14px;
}

.image-cover img {
  transition: transform 0.6s ease;
}

.image-cover:hover img {
  transform: scale(1.08);
}



/*=============== НОВОСТИ ===============*/
.news-title {
    font-size: 50px;
    line-height: 1;
    margin-bottom: 80px;
    text-align: center;
}

.mod-articles-items {
    display: flex;
    flex-wrap: wrap;
}

.news-column {
    display: flex;
    margin-bottom: 40px;
}



.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
}

.news-card-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card-text {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    padding: 30px;
}
.news-card-text h3 {
    font-size: 20px;
    color: var(--blue-main);
}

.news .readmore{
margin-top:14px;
margin-top: auto;
}

.news .readmore .btn{
background:none;
border:none;
padding:0;
font-weight:500;
color:var(--blue-main);
display:inline-flex;
align-items:center;
text-decoration:none;
border-bottom:1px solid rgba(28,120,179,0.3);
transition:.3s;

}

.news .readmore .btn span{
display:none;
}

.news .readmore .btn::after{
content:"→";
margin-left:8px;
transition:transform .3s;

}

.news-card:hover .readmore .btn::after{
transform:translateX(6px);
}
.news-card:hover h3{
color:var(--blue-main);
}

/* дата */
.news-date {
    font-size: 14px;
    color: #999;
    margin-bottom: 8px;
}

/* обрезка текста в 3 строки */
.news-intro {
    display: -webkit-box;
    -webkit-line-clamp: 3; /* сколько строк */
    -webkit-box-orient: vertical;
    overflow: hidden;

    line-height: 1.5;
    max-height: calc(1.5em * 3);

    margin-bottom: 10px;
}

/* опционально: обрезка заголовка */
.mod-articles-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    color: var(--blue-main);
}

.news-card-img .item-image,
.news-card-img {
    height: 250px;
}
.news-card-img a {
    height: 100%;
    display: block;
}
.news-card-img .item-image img,
.news-card-img a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


/*=============== ДЕТАЛЬНАЯ СТРАНИЦА НОВОСТИ ===============*/
.news-hero {
    position: relative;
    min-height: 350px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 60px 0;
    color: #fff;
    margin-bottom: 40px;
}

.news-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgb(43 47 51 / 73%);
}

.news-hero .container {
    position: relative;
    z-index: 2;
    padding: 0 60px;
}

.news-hero__title {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.news-hero__date {
    font-size: 14px;
    opacity: 0.85;
}

.news-hero__title.no-image {
    padding: 40px 0 10px;
    font-size: 34px;
}

.news-page-item p,
.com-content-article__body p {
    line-height: 1.5;
}
.news-page-item ul,
.com-content-article__body ul {
    list-style: none;
    padding-left: 0;
    margin-left: 0;
}

.news-page-item ul li,
.com-content-article__body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 8px;
    line-height: 1.5;
}

/* галочка */

.news-page-item ul li::before,
.com-content-article__body ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba( var(--blue-main-rgb), 0.1 );
    color: var(--blue-main);
    font-size: 22px;
    font-weight: 400;
}

/*=============== КАРТА ===============*/
.map {
    padding: 0;
}


/*=============== FOOTER ===============*/
.footer {
    background: var(--bg-dark);
    color: #fff;
    padding: 80px 0;
}
.footer-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.footer-copy {
    display: flex;
}
.footer-logo {
    margin-bottom: 20px;
    margin-left: auto;
}
.footer-copy p {
    margin-bottom: 20px;
    font-size: 20px;
}
.footer-nav a:last-of-type, .footer-copy a:last-of-type {
    margin-bottom: 0px;
}
.footer-nav a, .footer-copy a {
    color: #fff;
    display: table;
    font-weight: 300;
    position: relative;
    margin-bottom: 20px;
    font-size: 18px;
    transition: all ease .3s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.footer .phone {
    color: #fff;
    flex: 0 0 100%;
    text-align: right;
    margin-left: auto;
    font-size: 24px;
    margin-bottom: 20px;
    display: block;
    white-space: nowrap;
}
.footer .contacts {
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: 0px;
    display: flex;
    align-items: center;
}
.footer .contacts a {
    color: #fff;
    white-space: nowrap;
}
.contacts a {
    text-decoration: none;
    display: flex;
    align-items: center;
    position: relative;
}
.contacts a:before {
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  text-decoration: none;
  line-height: 1;
  font-size: 20px;
  z-index: 2;
  color: #fff;
}

.contacts_ok {
    background: #ff7700 !important;
}
.contacts_vk {
    background: #566c9b !important;
}
.contacts_vk {
  background: #566c9b !important;
}

.contacts_vk:before {
  content: "\e906";
  font-size: 13px !important;
}
.contacts_ok  {
     background: #ff7700 !important;
}

.contacts_ok svg {
    fill: #fff;
}
.contacts a.contacts__icon {
    margin: 0 3.5px;
    width: 38px;
    height: 38px;
    background: red;
    border-radius: 50%;
    justify-content: center;
    transition: all ease-in-out .2s;
}

.input-group .btn {
    position: relative;
    z-index: 2;
    width: 100%;
}
/*=============== ПАГИНАЦИЯ ===============*/

.pagination-wrapper .pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-left: 0;
    list-style: none;
}

/* базовый квадрат */
.pagination-wrapper .page-item .page-link {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 38px;
    height: 38px;
    padding: 0 10px;

    background: var(--bg-dark);
    color: #fff;
    border: 1px solid transparent;
    border-radius: 6px;

    text-decoration: none;
    transition: all 0.2s ease;
}

/* hover */
.pagination-wrapper .page-item .page-link:hover {
    background: var(--blue-main);
    color: #fff;
}

/* активная страница */
.pagination-wrapper .page-item.active .page-link {
    background: var(--blue-main);
    color: #fff;
}

/* disabled (стрелки в начале/конце) */
.pagination-wrapper .page-item.disabled .page-link {
    opacity: 0.4;
    cursor: not-allowed;
}

/* иконки стрелок чуть крупнее */
.pagination-wrapper .page-link .icon-angle-left,
.pagination-wrapper .page-link .icon-angle-right,
.pagination-wrapper .page-link .icon-angle-double-left,
.pagination-wrapper .page-link .icon-angle-double-right {
    font-size: 14px;
}
.pagination-wrapper .page-link [class^="icon-"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pagination-wrapper .page-item:first-child .page-link,
.pagination-wrapper .page-item:last-child .page-link {
    font-weight: bold;
}

.pagination-wrapper .icon-angle-left::before {
    content: "<";
}

.pagination-wrapper .icon-angle-right::before {
    content: ">";
}

.pagination-wrapper .icon-angle-double-left::before {
    content: "<<";
}

.pagination-wrapper .icon-angle-double-right::before {
    content: ">>";
}
/*=============== МОДАЛЬНОЕ ОКНО С ВИДЕО ===============*/

.video-wrapper{
width:100%;
overflow:hidden;
border-radius:8px;
}

.modal-body{
padding:0;
}

.modal-header{
border:0;
}
.plyr__poster {
    background-size: cover;
}


/*=============== ВНУТРЕННИЕ СТРАНИЦЫ ===============*/
body:not(.home) .content{
padding-top:110px;
padding-bottom: 120px;
}
.page-header{
margin-bottom:40px;
}

.page-header h1{
font-size:42px;
font-weight:300;
color:var(--blue-main);
position:relative;
padding-bottom:15px;
}

.page-header h1::after{
content:"";
width:70px;
height:4px;
background:var(--accent);
position:absolute;
left:0;
bottom:0;
border-radius:3px;
}

/*=============== FANCYBOX изображения ===============*/

.item-page a[data-fancybox],
.news-page-item a[data-fancybox] {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

/* КАРТИНКА */
.item-page a[data-fancybox] img,
.news-page-item a[data-fancybox] img {
    transition: transform 0.4s ease, filter 0.4s ease;
    display: block;
}

/* ЭФФЕКТ ПРИ НАВЕДЕНИИ */
.item-page a[data-fancybox]:hover img,
.news-page-item a[data-fancybox]:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}

/* ЛУПА */
.item-page a[data-fancybox]::after {
    content: "";
    width: 40px;
    height: 40px;
    background: url('/templates/nord/images/zoom-icon.svg') center/contain no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: 0.3s ease;
}

/* ПОКАЗ ЛУПЫ */
.item-page a[data-fancybox]:hover::after,
.news-page-item a[data-fancybox]:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}



/*=============== ПАРТНЕРЫ ===============*/
.partners {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 40px;

}
.partner-item {
    height: 250px;
}
.partner-item a {
    display: block;
    height: 100%;
}
.partner-item a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/*=============== КЛИЕНТЫ ===============*/
.clients {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 40px;

}
.client-item {
    height: 150px;
}
.client-item a {
    display: block;
    height: 100%;
}
.client-item a img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
/*=============== КОНТАКТЫ ===============*/

.contacts-gallery .zoom-link {
    display: block;
    height: 100%;
}
.contacts-gallery .zoom-link img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}


.question-form  input.rsform-input-box,
.question-form  select.rsform-select-box,
.question-form  textarea.rsform-textarea-box,
.question-form .rsform-block .formControls input,
.question-form  textarea,
.question-form .rsform-type-captcha p {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.question-form  textarea {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 16px 18px;
    border-radius: 8px;
    border: none;
    font-size: 16px;
    background: rgba(255, 255, 255, .92);
    width: 100%;
    box-sizing: border-box;
    resize: none;
}


/*=============== BREADCRUMBS ===============*/
/* === BREADCRUMBS BASE === */

.breadcrumbs {
    margin-bottom: 20px;
}

.breadcrumbs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    font-size: 14px;
}

.breadcrumbs-item {
    display: flex;
    align-items: center;
    color: #888;
}

/* ссылки */
.breadcrumbs-item a {
    color: var(--blue-main);
    text-decoration: none;
    transition: 0.3s;
}

.breadcrumbs-item a:hover {
    text-decoration: underline;
}

/* стрелка */
.breadcrumbs-item:not(:last-child)::after {
    content: "→";
    margin: 0 6px;
    color: #bbb;
}

/* активный */
.breadcrumbs-item.active span {
    color: #999;
}

/*=============== MOBILE ===============*/

@media(max-width:1200px) {
    .header .logo span:nth-of-type(1) {
    font-size: 18px;
}
    .services-section__title {
        font-size: 48px;
    }
    .about h2 {
    font-size: 29px;
    }
}


@media(max-width:991px) {
    .header .container {
    max-width: 90%;
}
.header .logo span:nth-of-type(2) {
    font-size: 24px;
}
.header .logo:before {
    left: -48px;
}
.header .logo {
    margin-left: 20px;
}
.dj-megamenu-clean li a.dj-up_a {
    font-size: 18px;
    padding: 0 10px;
}
    
    .hero-content h1 {
    font-size: 2.5rem;
}
.hero-content p {
    font-size: 1.4rem;
}
    .services-section__title {
        font-size: 48px;
    }
    
    .about {
    margin-top: -200px;
}
    
    .about h2 {
    font-size: 35px;
    }
    .resourse-wrapper {
    margin-bottom: 40px;
}
.resources-row {
    flex-direction: column-reverse;
    }
    .calc-wrapper {
    max-width: 90%;
}
.directions-row.order-2 {
    display: flex;
    flex-direction: column-reverse;
}
.direction-card {
    padding: 60px;
}
section {
    padding: 100px 0;
}
.parallax-section {
    padding: 70px 0;
}
.calc-text h2 {
    font-size: 38px;
}
.calc-text p {
    font-size: 20px;
}
    .news .mod-articles-items {
        padding: 0;
    }
    .dj-mobile-open-btn.active .dj-mobile-open-icon, .dj-megamenu-select-light .dj-mobile-open-btn:focus, .dj-megamenu-select-light:hover .dj-mobile-open-btn, .dj-megamenu-offcanvas-light .dj-mobile-open-btn:hover, .dj-megamenu-offcanvas-light .dj-mobile-open-btn:focus, .dj-megamenu-accordion-light .dj-mobile-open-btn:hover, .dj-megamenu-accordion-light .dj-mobile-open-btn:focus {
        background: transparent !important;
    }
    .dj-megamenu-select-light .dj-mobile-open-btn, .dj-megamenu-offcanvas-light .dj-mobile-open-btn, .dj-megamenu-accordion-light .dj-mobile-open-btn {
         background: transparent !important;
        color: #fff !important;
    }
    .dj-mobile-open-btn.dj-fa-5 .dj-mobile-open-icon:before {
        font-size: 30px !important;
    }
    ul.dj-mobile-light ul li.dj-mobileitem:hover>a, ul.dj-mobile-light ul li.dj-mobileitem.active>a {
        background: var(--blue-main) !important;
        color: #fff !important;
    }
}


@media (max-width: 768px) {
  .hero-video-wrapper {
    clip-path: none;
    height: 80vh;
  }
  .hero-content h1 {
    font-size: 30px;
}
.services-section__title {
    font-size: 38px;
}
section.services {
    margin-top: -280px;
    padding-top: 210px;
}
.services-text {
    margin-top: 20px;
    font-size: 24px;
}
.service-card h3 {
    font-size: 22px;
}
.service-card p {
    font-size: 18px;
}

.directions-title {
    font-size: 35px;
}
.direction-card h2 {
    font-size: 32px;
}
.equipment-title {
    font-size: 38px;
    margin-bottom: 40px;
}
.equipment {
    padding-bottom: 0;
}
.advantages {
    padding-top: 80px;
    padding-bottom: 136px;
}
.advantages-title {
    font-size: 43px;
    margin-bottom: 60px;
}
.about h2 {
    font-size: 33px;
}
.director {
    padding-top: 20px;
    padding-bottom: 80px;
}
.faq {
    padding: 80px 0;
}
.faq h2 {
    font-size: 40px;
    margin-bottom: 60px;
}
  .parallax-calc {
    background-attachment: scroll;
    padding: 100px 0;
  }
  .news-title {
    font-size: 40px;
    margin-bottom: 50px;
  }
  .partner-item {
    height: 150px;
}
.clients {
    grid-template-columns: repeat(2, 1fr);
    }
    
       [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}

@media(max-width:576px) {
        .hero-video-wrapper {
        height: 70vh;
    }
    .hero-titles {
    margin-bottom: 15px;
}
    .services-section__title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    .services-section__subtitle {
    font-size: 22px;
    }
    section {
        padding: 60px 0;
    }
    
    section.services {
        margin-top: -100px;
        padding-top: 80px;
    }
    .services-section__title {
        font-size: 31px;
    }
    
     .directions {
         padding-bottom: 60px;
     }
    .directions-title {
        font-size: 32px;
        margin-bottom: 50px;
    }
    .direction-card h2 {
        font-size: 30px;
    }
        .direction-card {
        padding: 40px;
    }
    .advantages {
        clip-path: none;
    }
    .adv-card h3 {
        font-size: 40px;
    }
    .adv-card {
        padding: 15px;
        width: 300px;
        margin: 0 auto 30px;
    }
    .about h2 {
        font-size: 30px;
    }
    .calc-wrapper {
        max-width: 100%;
    }
    .calc-text h2 {
        font-size: 31px;
    }
    .partners {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
@media(max-width:482px) {
    .hero-content h1 {
        font-size: 24px;
    }
    .hero-content p {
        font-size: 18px;
    }
    .hero-buttons {
        display: flex;
        flex-direction: column;
    }
    .hero-buttons .btn {
        width: 100%;
    }
    .video-show {
        margin-right: 0;
        margin-bottom: 20px;
    }
    .services-section__subtitle {
        font-size: 20px;
    }
    .services-text {
      font-size: 22px;
    }
    .director-quote p {
    font-size: 20px;
    }
    .rsform-submit-button {
        font-size: 18px;
    }
    .news-title {
        font-size: 32px;
    }
    .news-card-text p {
    font-size: 16px !important;
}
    .clients {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

@media(max-width:380px) {
    .header .container-fluid {
        padding: 0;
    }
    .header .logo {
        margin-left: 25px;
    }
    .header .logo span:nth-of-type(2) {
        font-size: 18px;
    }
        .header .logo span:nth-of-type(1) {
        font-size: 16px;
    }
    .header .logo:before {
        width: 50px;
        height: 50px;
        font-size: 60px;
        left: -30px
    }
    .hero-video-wrapper {
        height: 80vh;
    }
        .hero-content h1 {
        font-size: 22px;
    }
        .services-section__title {
        font-size: 22px;
    }

    .services-section__subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
        .service-card h3 {
        font-size: 19px;
    }
        .service-card p {
        font-size: 16px;
    }
        .directions {
        padding-bottom: 20px;
    }
    .directions-title {
        font-size: 23px;
    }
        .direction-card h2 {
        font-size: 26px;
    }
    .direction-card p {
    font-size: 18px;
}
    .equipment-title {
        font-size: 30px;
    }
        .advantages {
        padding-top: 40px;
        padding-bottom: 86px;
    }
    .advantages-title {
        font-size: 30px;
    }
    
    .about {
    padding-bottom: 60px;
}
    .about h2 {
        font-size: 28px;
    }
    .floating-card {
    padding: 20px;
    }
    .director-quote {
    padding: 60px 40px 40px;
    }
      .director-quote p {
        font-size: 18px;
        margin-bottom: 20px;
    }
    .faq {
        padding: 60px 0;
    }
    .faq h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .faq-list details {
        padding: 22px 15px;
    }
    .calc-text h2 {
        font-size: 25px;
    }

        .news-title {
        font-size: 28px;
    }
    .news-card-text {
    padding: 20px;
}
.news-card-text h3 {
    font-size: 17px;
}

}





/* ================================
   SECTION SPACING
================================ */

section{

padding:120px 0;

}


/* ================================
   TABLETS
================================ */

@media(max-width:991px){

section{

padding:110px 0;

}

}


/* ================================
   MOBILE
================================ */

@media(max-width:768px){

section{

padding:100px 0;

}

h1{
font-size:34px;
}

h2{
font-size:28px;
}

h3{
font-size:22px;
}

}


/* ================================
   SMALL MOBILE
================================ */

@media(max-width:576px){

section{

padding:90px 0;

}

}