@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap%27');
/* Variables
---------------------------------------- */
:root {
  --primary: #365AB5;
  --secondary: #D05700;
  --dark: #232742;
  --light: #D5DCEE;
  --border: #99A4C1;

  --color-text: #333;
  --color-heading: #111111;
}
/* Default box sizing.
---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* HTML and Body
---------------------------------------- */
html:focus-within {
  scroll-behavior: smooth;
}
html {
  font-size: 16px;
	scroll-behavior: smooth;
}
html,
body {
  height: 100%;
}
body {
  color: var(--color-text);
  /*font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;*/
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 14px;
  line-height: 1.42857143;
  background-color: #fff;
}
/* Regions
---------------------------------------- */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}
summary {
  display: list-item;
  cursor: pointer;
}
details {
  padding: 1rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}
template,
[hidden] {
  display: none;
}

/* Typography
---------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-heading);
  font-weight: 700;
  font-style: normal;
  line-height: 1.6;
}
h1 {
  font-size: 2.2rem;
}
h2 {
  font-size: 1.9rem;
}
h3 {
  font-size: 1.6rem;
}
h4 {
  font-size: 1.3rem;
}
h5 {
  font-size: 1.1rem;
}
h6 {
  font-size: 1.1rem;
}
p {
  margin: 0 0 10px 0;
}
b,
strong {
  font-weight: bolder;
}
dfn,
cite {
  font-style: italic;
}
del {
  text-decoration: line-through;
}
small {
  font-size: 80%;
}
big {
  font-size: 125%;
}
em {
  font-style: normal;
}
a {
  background-color: transparent;
  text-decoration: none;
  color: var(--primary);
}
a:active,
a:focus {
  text-decoration: none;
  border: 0;
  outline: 0;
}
a:hover {
  color: var(--secondary);
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
/* Typography-> code tags */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1rem;
}
kbd,
samp {
  display: inline-block;
  margin: 0;
  padding: 0 5px;
}
pre {
  overflow: auto;
  margin: 1rem 0;
  padding: 1rem;
  tab-size: 2;
}
code,
pre {
  background-color: var(--light);
}
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}
tt,
var {
  font-family: monospace, monospace;
  font-style: italic;
}
mark {
  background: var(--primary);
}
acronym[title], abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
abbr,
acronym {
  cursor: help;
}

/* Media
---------------------------------------- */
audio,
canvas,
progress,
video {
  vertical-align: baseline;
  max-width:100%;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
img,
picture,
svg {
  max-width: 100% !important;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-style: none;
  vertical-align: middle;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  max-width: 100%;
  height: auto;
  margin: 1rem 0;
  border: 0;
}
.align-left {
  margin: 0 1rem 0 0;
}
.align-right {
  margin: 0 0 0 1rem;
}
.align-center {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
figcaption {
  padding: 4px;
  font-size: 0.8rem;
  text-align: center;
}
.image-field {
  margin: 0 0 1rem 0;
}

/* Form
---------------------------------------- */
form {
  margin-bottom: 1rem;
}
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.6;
  margin: 0;
}
button,
input {
  overflow: visible;
}
button,
select {
  text-transform: none;
}
.button {
  display:inline-block;
}
.button,
button,
[type="button"],
[type="reset"],
[type="submit"] {
  position: relative;
  cursor: pointer;
  border: 0;
  padding: 8px 10px;
  line-height: 1.6;
  -webkit-appearance: button;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 0;
}
button[disabled],
html input[disabled] {
  cursor: not-allowed;
  opacity: 0.7;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
input,
button,
textarea,
select {
  font: inherit;
}
input {
  line-height: normal;
}
input,
textarea {
  max-width: 100%;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea {
  padding: 10px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
textarea:focus {
  outline: 0;
}
textarea {
  width: 100%;
  overflow: auto;
}
[type="checkbox"],
[type="radio"] {
  padding: 0;
  cursor: pointer;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
[type="file"] {
  cursor: pointer;
}
fieldset {
  margin: 0 0 20px 0;
  padding: 1rem;
}
fieldset > :last-child {
  margin-bottom: 0;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
optgroup {
  font-weight: bold;
}
select {
  padding: 6px;
  cursor: pointer;
}
label[for] {
  cursor: pointer;
}
/* Form */
.form-item {
  margin-bottom: 1rem;
}
.form-required:after {
  content: "*";
  display: inline-block;
  padding-left: 4px;
  color: red;
}
.form-item label {
  display: block;
}
label.option {
  display: inline;
  font-weight: normal;
}
::-webkit-input-placeholder {
  color: var(--border);
}
:-moz-placeholder {
  color: var(--border);
}
::-moz-placeholder {
  color: var(--border);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--border);
}
.field--name-body input[type="text"],
.field--name-body input[type="email"],
.field--name-body input[type="url"],
.field--name-body input[type="password"],
.field--name-body input[type="search"],
.field--name-body textarea {
  display: block;
  margin-bottom: 0.8rem;
}
/* Common HTML Elements
---------------------------------------- */
hr {
  background-color: var(--border);
  clear: both;
  width: 100%;
  max-width: 100%;
  height: 2px;
  border: 0;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  overflow: visible;
}
address {
  margin: 0 0 1rem 0;
  font-style: italic;
}
/* Definition Lists */
dt {
  font-weight: 700;
}
dd {
  margin: 0 0 1.2rem 0;
}
blockquote {
  position: relative;
  background-color: var(--light);
  margin: 1rem 0;
  padding: 1rem;
}
blockquote > :last-child {
  margin-bottom: 0;
}

/* List
---------------------------------------- */
 ul,
 ol {
   margin: 0;
   padding: 0 0 0.25rem 1rem;
 }
 [dir="rtl"] ul,
 [dir="rtl"] ol {
   padding: 0 1rem 0.25rem 0;
 }
 ol ol,
 ul ul {
   margin: 0;
   padding: 0 0 0.25rem 1rem;
 }
 [dir="rtl"] ol ol,
 [dir="rtl"] ul ul {
   padding: 0 1rem 0.25rem 0;
 }
 ul {
   list-style: disc;
 }
 li > ul,
 li > ol {
   margin-bottom: 0;
 }
 [dir="rtl"] ul,
 [dir="rtl"] ol {
   padding: 0 1rem 0.25rem 0;
 }
 li {
   padding: 4px 0;
 }

/* Table
---------------------------------------- */
table {
  width: 100%;
  margin-bottom: 1.2rem;
  border-spacing: 0;
  border-collapse: collapse;
}
th,
tr,
td {
  vertical-align: middle;
}
th {
  margin: 0;
  padding: 5px;
  text-align: left;
}
td {
  padding: 5px;
}
#myVideo {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0px;
  z-index: -20;
}
.block-offer{
    padding-top: 75px;
    position: relative;
}

.block-offer:before {
     content: '';
    background-image: linear-gradient(90deg, rgba(25, 28, 35, 1), rgba(25, 28, 35, 0.4));
    position: absolute;
    z-index: 0;
    height: 100%;
    overflow-x: hidden;
    width: 100%;
    display: flex;
        max-height: -webkit-fill-available;
}
.offer_top {
  width: 100%;
  min-height: 41vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -moz-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  position: relative;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
.offer_label {
  text-align: center;
  padding: 10px 0;
  letter-spacing: 2px;
  font-weight: 300;
  font-size: 20px;
  color: rgb(255, 255, 255);
  position: relative;
  padding-top: 35px;
}
.offer_title {
  font-weight: 700;
  font-size: 60px;
  line-height: 60px;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.offer_text {
  text-align: center;
  padding: 10px 0;
  letter-spacing: 2px;
  font-weight: 100;
  font-size: 16px;
  color: rgb(255, 255, 255);
}
.offer_bottom {
    width: 100%;
    min-height: 8vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 0 10px;
    align-items: center;
    z-index: 111;
    position: relative;
}
.offer_exp {
  color: rgb(255, 255, 255);
}
.about
 {
    background-image: linear-gradient(to right, rgba(136, 136, 136, 0.2) 1px, transparent 1px);
    background-size: 198px;
    background-position-x: 132px;
    padding-top: 50px;
    padding-bottom: 50px;
}
.title_label {
  text-transform: uppercase;
  position: relative;
  padding-left: 90px;
  margin-bottom: 32px;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 4px;
}
.title_label:before {
  content: "";
  width: 67px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background: rgba(0, 0, 0, 0.3);
}
.about-description_title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
}
.about .container-fluid {
  max-width: 1400px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid .row{
  display: flex;
      gap: 20px;
}
.about-advantages .row{
  display: flex;
      gap: 10px;
      justify-content: space-between;
}
.about-col{
  max-width: 670px;
}
.about-col p a{
  color:#000;
}
.about-col p a:hover{
      color: #f9b233;
}
.advantages-item {
  padding-top: 30px;
  padding-bottom: 30px;
}
.advantages-item_numbers {
  font-size: 50px;
  font-weight: 900;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-align: center;
}
.advantages-item_label {
  font-size: 16px;
  letter-spacing: 3px;
  color: rgb(0, 0, 0);
  text-align: center;
}
.services {
  background-color: rgb(25, 28, 35);
  background-image: linear-gradient(to right, #f9b23352 1px, transparent 1px);
  background-size: 198px;
  background-position-x: 132px;
  overflow: hidden;
}
.stone-block {
  width: 100%;
  background-color: #f9b233;
  padding-top: 333px;
  padding-bottom: 275px;
  margin-top: -20px;
  margin-bottom: -20px;
  max-width: 200px;
}
.services-main_item {
  padding: 30px 10px;
  background-color: rgb(25, 28, 35);
}
.services .row{
  display: flex;
  gap: 10px;
}
.services-main{
  display: flex;
      gap: 10px;
}
.services .title_label:before {
  background: rgb(255, 255, 255, 0.3);
}
.services-main_title {
  font-size: 44px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #fff;
}
.services-main-item_title {
  font-size: 34px;
  font-weight: 300;
  letter-spacing: 3px;
  color: #fff;
}
.block-trafic .block-title {
    text-align: center;
    font-weight: 600;
    font-size: 46px;
    line-height: 52px;
    margin-bottom: 65px;
}
.block-trafic {
    margin: 70px 0;
    overflow: hidden;
}
.slider{
      position: relative;
    width: 100%;
}
.trafic-slider{
  overflow: visible!important;
}

.wrapper{
  max-width: 1600px;
  margin: auto;
  padding: 0 15px;
}
.swiper {
  width: 100%;
  position: relative;
}

.parent {
  position: absolute;
    background: rgb(25 28 35 / 77%);
    z-index: 12;
    top: -15px;
    left: 20px;
    padding: 5px 10px;
    border-radius: 10px;
    max-width: 320px;   
}
.parent a{
   color: #ffffff;
   font-weight: 500;
   font-size: 16px;
}
.swiper-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.swiper-slide {
  width: calc((100% - 90px) / 4); /* Учитываем margin-between */
  flex-shrink: 0;
  background-color: #f0f0f0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-right: 20px; /* Отступ между слайдами */
  position: relative;
}
.trafic-slider .swiper-slide {
  margin-bottom: 0;
  margin-top: 0;
  max-height: fit-content;
  min-height: 16rem;
  padding-bottom: 0;
  padding-top: 0;
  transition-duration: .3s;
  transition-property: all;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  flex-shrink: 0;
  overflow: visible;
}
.trafic-item img{
  position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    border-radius: 15px;
}
.trafic-item:before {
  background: #292929;
  opacity: 0.5;
  z-index: 2;
  content: '';
  width: 100%;
  height: 100%;
  top: 0;
  position: absolute;
  border-radius: 15px;
}
@keyframes slideBottom{
  0% {
  opacity: 0;
  transform: translateY(100%);
}
100% {
  opacity: 1;
  transform: translateY(0);
}
}

.trafic-item{
  height: 100%;
  width: 100%;
  position: relative;
  min-height: 400px;
  display: flex;
  animation: slideBottom .7s forwards;
  border-radius: 10px;
  overflow: visible;
}
.trafic-item-desc{
  width: 100%;
    position: relative;
    z-index: 11;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.trafic-item_title {
  font-weight: 700;
  font-size: 22px;
  line-height: 30px;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 2;
  margin: 25px;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -moz-transition: 0.5s;
  transition: 0.5s;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.trafic-item_link {
  padding: 25px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -moz-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.swiper-button-next, .swiper-button-prev{
  background: #f3f3f3;
    width: 44px!important;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid #272727;
}
/* CSS для адаптивной ширины слайдов */
.trafic-slider .swiper-slide {
  width: calc((100% - 60px) / 4); /* 4 слайда + 3 промежутка по 20px */
  min-width: 200px;
  max-width: 377px;
}
@media (max-width: 1600px) {
  .wrapper {
  width: 100vw;
    /*      margin-left: calc(-15vw + 20%);*/
}
}
@media (max-width: 1400px) {
  .trafic-slider .swiper-slide {
    width: calc((100% - 40px) / 3)!important;
  }

}
@media (max-width: 769px) {
  .trafic-slider .swiper-slide {
    width: calc((100% - 20px) / 2)!important;
  }
}
@media (max-width: 600px) {
  .trafic-slider .swiper-slide {
    width: 100%!important;
  }
}

.news {
    background-color: rgb(25, 28, 35);
    background-image: linear-gradient(to right, rgba(22, 196, 235, 0.3) 1px, transparent 1px);
    background-size: 198px;
    background-position-x: 132px;
    padding: 100px 15px;
}
.news .title_label {
    color: rgb(255, 255, 255);
}
.news-title {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgb(255, 255, 255);
}
.news .title_label:before {
    background: rgb(255, 255, 255, 0.3);
}
.news .container-fluid {
    max-width: 1400px;
        margin: auto;
}

.news-container{
        display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.news .trafic-item-news {
    min-height: 300px;
    border-radius: 10px;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -moz-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    overflow: hidden;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.b_trafic .trafic-item-news:before {

       background: linear-gradient(to top, rgba(0, 0, 0, 1), rgba(0, 0, 0, 0));
    opacity: 0.5;
    z-index: 2;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    position: absolute;
    border-radius: 10px;
}
.trafic-item-news img {
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.news .trafic-item_title {
    font-weight: 700;
    font-size: 20px;
    line-height: 25px;
    color: rgb(255, 255, 255);
    position: relative;
    text-transform: none;
    z-index: 2;
    margin: 15px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.news .trafic-item_link {
    padding: 15px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}


    .b_trafic .news-block:hover {
    box-shadow: 0px 35px 50px rgba(0, 0, 0, 0.1);
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
}
.b_trafic .news-block:hover .trafic-item-news:before{
    background: #f9b233;
    opacity: 1;
}

.field-field-photos{
    gap: 10px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.block-projects{
  overflow: hidden;
    padding: 70px 0 75px;
    background: rgb(25, 28, 35);
    position: relative;
    background-image: url(/themes/mric/images/bg2.jpg);
        background-repeat: no-repeat;
    background-position: center;
        background-size: cover;
}
.block-projects:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    background: rgb(25 28 35 / 89%);
}
.projects_title{
  padding: 15px;
    font-weight: 600;
    font-size: 46px;
    line-height: 52px;
        color: #f9b233;
            z-index: 11;
    position: relative;
}
.projects_title span{
  font-size: 22px;
    font-weight: 300;
        color: #aaaaaa;
}

.scroll-container {
  position: relative;
  width: 100%;
  height: 55vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.scroll-container {
  -webkit-overflow-scrolling: touch; /* Плавность на iOS */
  scroll-behavior: smooth; /* Плавная прокрутка */
}
.slide-project {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(25, 28, 35);
      padding: 1rem;
  z-index: 10;
  border-top: 1px solid #f9b233;
}

.slide-project + .slide-project {
  transform: translateY(100%); /* Смещаем следующий слайд вниз */
}

.slide-inner {
  will-change: transform;
}

.slide-content-left,
.slide-content-right {
  flex: 1;
  padding: 0;
}
.slide-content-right{
      padding: 15px;
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 25px;
}
.slide-content-left{
      border: 2px solid #f9b233;
      max-width: 730px;
      position: relative;
}
.slide-content-left img{
      object-fit: cover;
    max-height: 450px;
    margin: 0;
        object-position: top;
            
}

.slide-content-right h2 {
      font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px;
    
}
.slide-content-right h2 a{
  color: #f9b233;
}

.slide-content-right p {
      font-size: 16px;
    line-height: 20px;
    color: #aaaaaa;
    margin: 0;
}


/* Обертка точек — ограничивает их областью scroll-container */
.dots-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Чтобы точки не мешали кликам/прокрутке */
  overflow: hidden;
}

/* Контейнер для точек */
.dots-container {
  position: relative;
  width: 100%;
  height: 100%;
}

/* Стиль каждой точки */
.dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background-color: #f9b233;
  border-radius: 50%;
  animation-name: moveUp;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

/* Анимация движения вверх */
@keyframes moveUp {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100vh);
    opacity: 0;
  }
}
.tegi ul{
  display: flex;
    gap: 2px;
    position: relative;
    height: auto;
    padding: 15px 0;
    justify-content: flex-end;
    list-style: none;
}
.tegi li {
    --tw-gradient-stops: #E6E6E6 0px, #E6E6E6 1px, transparent 1px, transparent calc(100% - 1px), #E6E6E6 calc(100% - 1px), #E6E6E6 100%;
    position: relative;
    padding: 10px;
        border: 1px solid #595959;
    background: border-box;
    color: #C4C4C4;
}

.tegi li:after, .tegi li:before {
    pointer-events: none;
    position: absolute;
    left: 0;
    right: 0;
    z-index: 10;
    height: 1px;
    content: '';
    background-image: linear-gradient(to right, #E6E6E6 0px, #E6E6E6 1px, transparent 1px, transparent calc(100% - 1px), #E6E6E6 calc(100% - 1px), #E6E6E6 100%);
}
.tegi li:after{
  top:0;
}
.tegi li:before  {
    bottom: 0;
}

.tegi li:hover {
    content: '';
    background-image: url(/themes/mric/images/icons/bg_svg.svg);
    background-repeat: repeat;
    animation: diagonalPatternAnimation 6s linear infinite;
    border: 1px solid #f9b233;
    color: #f9b233;
}
@keyframes diagonalPatternAnimation {
0% {
    background-position: 0 0;
}
100% {
    background-position: 64px 0;
}
}

.slide-content-left:before {
    content: '';
    background-image: url(/themes/mric/images/icons/bg_svg.svg);
    background-repeat: repeat;
    animation: diagonalPatternAnimation 6s linear infinite;
    border: 1px solid #f9b233;
    color: #f9b233;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 111;
}
.slide-content-left:after {
    content: '';
    background: #00000038;
    width: 100%;
    position: absolute;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}
.slide-content-left:hover:before, .slide-content-left:hover:after{
  background: none;
}
.block-projects .container-fluid {
    max-width: 1400px;
    margin: auto;
}
.more{
      display: flex;
    flex-direction: row;
    gap: 5px;
    align-items: center;
    position: relative;
    padding: 10px;
    border: 1px solid #595959;
    background: border-box;
    color: #C4C4C4;
    width: fit-content;
    float: right;
}
.more svg{
  height: 20px;
}

.more:hover {
    content: '';
    background-image: url(/themes/mric/images/icons/bg_svg.svg);
    background-repeat: repeat;
    animation: diagonalPatternAnimation 6s linear infinite;
    border: 1px solid #f9b233;
    color: #f9b233;
}
.block-feedback_bg {
    /*background-image: linear-gradient(to right, rgb(64, 83, 113), rgb(25, 28, 35));*/
    background: rgb(48 51 59);
}
.block-feedback {
    background-image: url(/themes/mric/images/bg_start_yp.svg);
    background-size: contain;
    background-position: center;
    background-repeat: repeat-x;
    padding: 80px 0 90px;
    padding-right: 60px;
    overflow-x: hidden;
}
.block-feedback .wrapper {
    max-width: 1360px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
}

.block-feedback .block-title {
    text-align: center;
    color: #fff;
    margin-bottom: 30px !important;
    font-weight: 600;
    font-size: 46px;
    line-height: 52px;
}
.feedback_text {
    text-align: center;
    font-size: 18px;
    line-height: 26px;
    color: #fff;
    opacity: 0.8;
    margin-bottom: 35px;
}
.feedback_text a {
    font-weight: 600;
    font-size: 34px;
    line-height: 42px;
    color: #f9b233;
    display: inline-block;
    margin-left: 5px;
}
.feedback_or {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    position: relative;
    margin-bottom: 20px;
}
.feedback_or:before {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgb(159, 159, 159);
    opacity: 0.1;
    border-radius: 10px;
}
.feedback_or span {
    font-weight: 300;
    font-size: 10px;
    color: rgb(255, 255, 255);
    background: rgb(159, 159, 159);
    border-radius: 10px;
    padding: 3px 12px;
}
#block-mric-vebforma #edit-container{
      display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}
#block-mric-vebforma .form-text{
    background: none;
    border: none;
    width: 100%;
    position: relative;
    z-index: 1;
    padding: 20px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 18px;
    color: #fff;
}
#block-mric-vebforma .form-required:after{
  color: #fff;
}
#block-mric-vebforma .form-item label{
    position: relative;
    color: rgb(255 255 255 / 82%);
    color: #fff;
    font-weight: 300;
    font-size: 14px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
#block-mric-vebforma .form-submit{
background-color: #f9b233;
    color: #fff;
    border-radius: 5px;
    padding: 15px 25px;
}
.ui-dialog{
      background: rgb(25, 28, 35);
    z-index: 11;
}
.webform-confirmation-modal--content{
      color: #fff;
    padding: 15px;
        border-radius: 10px;
}
.ui-dialog .ui-dialog-titlebar {
    background: rgb(25, 28, 35);
}
.ui-dialog .ui-dialog-titlebar .ui-dialog-titlebar-close .ui-icon.ui-icon-closethick {
    transform: translate(0%, 0%);
}
.blog{
  display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}
.blog .news-item_img {
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}
.news-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.news-item_img {
    margin-bottom: -30px;
}
.news-item_img img
 {
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    height: 285px;
    object-fit: cover;
}
.news-item_content {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -moz-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background: #fff;
    box-shadow: 0px 20px 55px rgb(0 0 0 / 6%);
    border-radius: 10px;
    padding: 20px 0 0;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    justify-content: space-between;
}
.blog .news-item_content {
    position: relative;
    z-index: 1;
}
.href_article {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
}
.news-item_title {
    margin: 0 30px 15px;
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.news-item_text {
    font-size: 14px;
    line-height: 20px;
    margin: 0 30px 15px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.news-item_sub {
    margin-top: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 0 30px 15px;
}
.news-item_date {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 0.4;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.news-item_inf {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.05em;
    opacity: 0.4;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
}
.news-item_btn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0 30px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -moz-transition: 0.5s;
    transition: 0.5s;
    border-top: 1px solid #f2f2f2;
}
.news-item_btn .button {
    padding: 16px 0;
    text-align: center;
    border-radius: 555px;
    opacity: 0.4;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
    color: #333;
}
.news-item:hover .news-item_content {
    background: #4b4b4b;
    margin-bottom: -15px;
}
.news-item:hover .news-item_btn {
    border: none;
    padding: 0 30px 15px;
}
.news-item:hover .news-item_btn .button {
    background: #f9b233;
    opacity: 1;
}
.news-item:hover .news-item_title, .news-item:hover .news-item_text, .news-item:hover .news-item_date, .news-item:hover .news-item_inf {
    color: #fff;
}
.block-content .page-title{
  font-size: 32px;
    line-height: 38px;
    color: #fff;
    z-index: 11;
    position: relative;
}

.error-wrapper{
      padding-top: 150px;
    background: rgb(48 51 59);
    padding-bottom: 40px;
}
.error-sec{
  display: flex;
    justify-content: space-between;
}
.error-sec-block-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.error-sec-title {
    display: flex;
    flex-direction: row;
    font-weight: 400;
    font-size: 36px;
    line-height: 47px;
    gap: 10px;
    color:#fff;
}
.orange {
    color: #F9B233;
}
.error-sec-desc {
    font-weight: 300;
    font-size: 16px;
    line-height: 180%;
    color: #FFFFFF;
}
.error-sec-block {
    padding: 140px 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.error-sec-btn-link{
  display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 24px;
    gap: 10px;
    background: #F9B233;
    border-radius: 10px;
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 200;
    font-weight: 600;
}
.error-404{
  color: #fff;
    font-size: 90px;
    text-transform: uppercase;
}
.error-sec-btn-link:hover{
      background: rgb(236, 113, 27);
    color: rgb(255, 255, 255);
}
.proekty-btn .proekty-btn{
    border-radius: 5px;
    padding: 10px;
}
.proekty-btn .active-btn{
  background-color: #f9b233;
    color: #fff;
    border-radius: 5px;
    padding: 10px;
}
.proekty-block-all {
    display: none;
}
.proekty-block-all.active-block {
    display: block;
}