@font-face {
  font-family: "FormaDJRCyrillicMicro";
  src: url("/assets/fonts/FormaDJRCyrillicMicro-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}


* {
  font-family: "FormaDJRCyrillicMicro", Arial, sans-serif !important;
}
:root{
    --blue: #132239;
    --grey: #adb1ac;
    --light-blue: #445265;
    --white: #ffffff;
    --br: 4px;
    --bs-breadcrumb-margin-bottom: 0 !important
}
/* Общие стили документа */
.privacy-policy {
    max-width: 920px;
    margin: 0 auto;
    padding: 40px 20px;
    font-size: 16px;
    line-height: 1.65;
    color: #1f2937; /* тёмно-серый */
}

/* Списки с маркерами disc */
.privacy-policy ul {
    list-style-type: disc;
    list-style-position: outside;
    margin: 12px 0 16px 24px;
    padding: 0;
}

.privacy-policy li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}


/* Заголовок документа */
.privacy-policy h1 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
    text-transform: uppercase;
}

/* Подзаголовки разделов */
.privacy-policy h2 {
    font-size: 20px;
    font-weight: 600;
    margin-top: 32px;
    margin-bottom: 16px;
}

/* Абзацы */
.privacy-policy p {
    margin-bottom: 12px;
    font-size: 16px;
    font-weight: 400;
}

/* Списки */
.privacy-policy ul {
    margin: 12px 0 16px 24px;
    padding: 0;
}

.privacy-policy li {
    margin-bottom: 8px;
    font-size: 16px;
    line-height: 1.6;
}

/* Контактные данные / выделенные строки */
.privacy-policy p strong {
    font-weight: 600;
}

/* Второстепенный текст (даты, пояснения) */
.privacy-policy .muted {
    color: #6b7280;
    font-size: 14px;
}

/* Адаптив */
@media (max-width: 768px) {
    .privacy-policy {
        padding: 24px 16px;
        font-size: 15px;
    }

    .privacy-policy h1 {
        font-size: 24px;
    }

    .privacy-policy h2 {
        font-size: 18px;
    }
}


.btn-open-modal {
  padding: 12px 26px;
  border: 1px solid #333;
  background: transparent;
  color: #333;
  cursor: pointer;
  transition: 0.3s;
}
.form-checkbox{
  display: flex;
  align-items: flex-start;
}
.form-checkbox a{
  color: var(--blue);
  font-weight: 600;
}
.btn-open-modal:hover {
  background: #333;
  color: #fff;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.65);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}
.modal-form button{
  border: 1px solid #333;
  background-color: var(--light-blue);
  color: #fff
}
.custom-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.96);
  width: 100%;
  max-width: 520px;
  padding: 40px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}

.custom-modal.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

/* Text */
.modal-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.modal-text {
  font-size: 15px;
  line-height: 1.6;
  color: #5e5e5e;
  margin-bottom: 28px;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group label {
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
  display: block;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(0,0,0,0.2);
  background: #fff;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blue);
}

textarea {
  resize: none;
}

/* Action */
.modal-action {
  margin-top: 10px;
  padding: 14px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  overflow: hidden;
}
.modal-action:hover {
  background-color: #fff;
  border-color: var(--blue);
  color: var(--blue);
}



/* Close */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
}

.modal-close:hover {
  color: var(--blue);
}

section{
  padding: 50px 0;
}
/* body{
  background-color: var(--grey)
} */
 #menu_overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.501);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease;
  z-index: 998;
}
#open_menu{
  display: none;
}
#menu_overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile__menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  max-width: 85%;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  padding: 24px;
}

.mobile__menu.is-open {
  transform: translateX(0);
}

#close_menu {
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 24px;
}
.mobile__menu .header__item:not(:first-child), .mobile__menu .header__buttons {
    margin-left: 0 !important;
}
.mobile__menu .header__links {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: 0 !important;
  align-items: flex-start
}

.mobile__menu .header__link {
  font-size: 18px;
  text-decoration: none;
  margin-left: 0 !important;
  color: #000;
}

.mobile__menu .header__button {
  width: 100%;
  margin-top: 10px;
}
.mobile__menu * {
    color: #000 !important;
    border-color: #000 !important;
}

.mobile__menu .header__link::before {
    background: #000 !important;
}
.header__box:hover span{
  color: #fff !important
}
.mobile__menu .header__box {
    border-color: #000 !important;
}

.mobile__menu .header__box-svg path {
    stroke: #000 !important;
}

.mobile__menu .header__lang-text {
    color: #000 !important;
}

.mobile__menu .header__lang-svg path {
    stroke: #000 !important;
}

.mobile__menu .header__lang-container {
    border-color: #000 !important;
}

.mobile__menu .header__wrapper {
    border-color: rgba(0,0,0,0.2) !important;
}


.mobile__menu .header-menu__dropdown-arrow svg *[stroke] {
    stroke: #000 !important;
}

.mobile__menu .header__burger svg path {
    stroke: #000 !important;
    fill: #000 !important;
}



a {
    text-decoration: none;
    transition: 0.3s ease;
    color: var(--white);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-menu__dropdown-arrow {
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.header-menu__dropdown-arrow svg {
  width: 100%;
  height: 100%;
}
.header-menu__dropdown-arrow svg *[stroke] {
  stroke: currentColor;
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 20;
  width: 100%;
  transition: background-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header--main .header__inner::before {
  left: -100%;
  animation: slideIn 2s cubic-bezier(0.33, 1, 0.68, 1) infinite forwards;
  animation-delay: 2s, 1.5s;
}
@keyframes slideIn {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.header__desktop {
  width: 100%;
}
.header-menu__dropdown-arrow svg {
  width: 100%;
  height: 100%;
}
.header-menu__dropdown-arrow svg *[stroke] {
  stroke: currentColor;
}
.header__wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, 0);
  transition: border-color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header__inner {
  position: relative;
  z-index: 1;
  padding: 3.75rem 0;
}

.header__inner {
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header__inner::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  z-index: 1;
  width: 28.4375rem;
  height: 1px;
}

.header__inner::before {
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  background: linear-gradient(
    270deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0) 79.69%
  );
  z-index: -1;
}

.header__inner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  z-index: -2;
  height: 1px;
  border-bottom: 1px dashed hsla(0, 0%, 100%, 0.4);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header__row {
  display: flex;
  align-items: center;
}
.header__col.logo{
  width: 100px;
}

.header__box {
  position: relative;
  z-index: 0;
  height: 44px;
  padding: 0 8px;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  overflow: hidden;
}
.header__lang .header__box {
  width: 48px;
  height: 44px;
}
.header__box::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  background-color: var(--light-blue);
}
.header__box:hover {
  border-color: var(--light-blue);
}
.header__box:hover::before {
  transform: none;
}
.header__box:hover .header__box-hover {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
.header__box:hover .header__box-svg path {
  stroke: #fff;
}
.header__box-span {
  position: relative;
  z-index: 0;
  display: block;
  overflow: hidden;
}
.header__box-hover {
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  gap: 10px;
}
.header__box:hover svg, .header__box:hover path{
  fill: #fff
}

.header__box-svg {
  width: 12px;
  height: 12px;
}
.header__box-svg path {
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header__lang {
  position: relative;
  z-index: 0;
}

.header__lang {
  cursor: pointer;
  background: none;
  margin-left: 2rem;
}

.header__lang:hover .header__box {
  border-color: var(--light-blue);
}
.header__lang:hover .header__box::before {
  transform: none;
}
.header__lang:hover .header__lang-text {
  color: #fff;
}
.header__lang:hover .header__lang-svg {
  transform: rotate(-180deg);
}
.header__lang:hover .header__lang-svg path {
  stroke: #fff;
}
.header__lang:hover .header__lang-dropdown {
  opacity: 1;
  pointer-events: all;
}
.header__lang-text {
  position: relative;
  z-index: 1;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
  font-size: 9.37px;
  line-height: 1.3;
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header__lang-icon {
  margin-left: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__lang-svg {
  width: 12px;
  height: 12px;
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header__lang-svg path {
  transition: stroke 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header__lang-dropdown {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  padding-top: 4px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.header__lang-container {
  padding: 0.75rem 1.25rem;
}

.header__lang-container {
  width: 250px;
  background-color: #fff;
  box-shadow: 0px 4px 24px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.12);
}
.header__lang-container.langs {
  width: 47px;
  display: flex;
  justify-content: center;
}
.header__lang-item:not(:first-child) {
  margin-top: 0.75rem;
}

.header__lang-link {
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  font-weight: 500;
  font-size: 0.875rem;
  color: #000 !important;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
    
}
.header__lang-link:hover {
  color: var(--grey) !important;
}
.header__logo {
  display: flex;
}
.header__logo-link {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 120px;
  position: absolute;
  top: 0;
  width: 100px;
  img {
    width: 100%;
    height: 100%;
    object-fit: contain !important;
  }
}
header.scrolled .header__logo-link{
  background-color: transparent
}


.header__links {
  display: flex;
  align-items: center;
}


.header__item {
  display: flex;
  position: relative;
}
.header__item:not(:first-child) {
  margin-left: 2rem;
}


.header__row{
       justify-content: space-between; 
    }
.header__col{
    display: flex;
    justify-content: space-between;
    gap:20px;
}
.header__link {
  position: relative;
  z-index: 0;
  font-weight: 500;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.3;
  transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
 button.header__link{
    color: #fff;
}
.header__link::before {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  height: 1px;
  background: #fff;
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
.header__link:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.header__nav {
  display: flex;
  align-items: center;
}
.header__buttons {
  margin-left: 2rem;
}

.header__buttons {
  display: flex;
}
.header__button {
  border: none;
  background: none;
  cursor: pointer;
}


button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}

.header {
  -webkit-box-flex: 0;
  -ms-flex: 0 1;
  flex: 0 1;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 15;
  background: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#1d2025),
    to(rgba(29, 32, 37, 0))
  );
  background: linear-gradient(180deg, #1d2025 0%, rgba(29, 32, 37, 0) 100%);
}
.header.scrolled{
  background-color:var(--White, #fff);
  background: #fff
}
.header.scrolled #open_menu svg path{
  fill: #333
}
.header.scrolled .header__link{
  color: #333 !important
}
.header.scrolled .header__link{
  border-color: #333 !important;
 }
.header a,
.header span {
  color: var(--White, #fff);
}

.header__burger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 2.5rem;
  -webkit-transform: translateX(0.5rem);
  transform: translate(0.5rem);
}
.header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 40px 0;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 100%;
  letter-spacing: -0.0125rem;
  text-transform: uppercase;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 5;
}
.header__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 0.375rem;
  white-space: nowrap;
  color: #474e5a;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: -0.0125rem;
  text-transform: uppercase;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  cursor: pointer;
}
.header__link svg {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}
.header__link svg path {
  fill: #fff;
}



.header__item {
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  height: 44px;
  align-items: center;
}
.header.scrolled {
    background: #fff !important;
}

.header.scrolled * {
    color: #000 !important;
    border-color: #000 !important;
}

.header.scrolled .header__link::before {
    background: #000 !important;
}

.header.scrolled .header__box {
    border-color: #000 !important;
}

.header.scrolled .header__box-svg path {
    stroke: #000 !important;
}

.header.scrolled .header__lang-text {
    color: #000 !important;
}

.header.scrolled .header__lang-svg path {
    stroke: #000 !important;
}

.header.scrolled .header__lang-container {
    border-color: #000 !important;
}

.header.scrolled .header__wrapper {
    border-color: rgba(0,0,0,0.2) !important;
}


.header.scrolled .header-menu__dropdown-arrow svg *[stroke] {
    stroke: #000 !important;
}

.header.scrolled .header__burger svg path {
    stroke: #000 !important;
    fill: #000 !important;
}

.home-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  padding:0
}

.js-hero-slider {
  height: 100%;
  width: 100%;
}

.js-hero-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.home-hero__content {
      position: absolute;
    left: 0;
    top: 50%;
    z-index: 20;
    /* height: 100%; */
    width: 700px;
    padding-left: 32px;
    transform: translate(0, -50%);
}
.home-hero .swiper-slide{
  position: relative;
}
.home-hero .swiper-slide::after{
  background: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0));
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  content: ""
}

.home-hero__content .title-104 {
  font-size: 54px;
  color: #fff;
  text-transform: uppercase;
  line-height: 1.3;
  font-weight: 500;
}
.home-hero__content p {
  margin-top: 20px;
  font-size: 18px;
  color: #fff;
  line-height: 150% !important;
  max-width: 80%
}


.slider-buttons {
  position: absolute;
  bottom: 72px;
  right: 72px;
  z-index: 50;
  display: flex;
  gap: 20px;
}
.slider-buttons .swiper-button-prev:after,
.slider-buttons .swiper-rtl .swiper-button-next:after,
.slider-buttons .swiper-button-next:after,
.slider-buttons .swiper-rtl .swiper-button-prev:after {
  content: "";
}
.slider-buttons__button.swiper-button-prev {
  left: -28px !important;
}
.slider-buttons__button {
  position: relative !important;
  z-index: 0;
  width: 97px;
  height: 97px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff4d;
  background: none;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  overflow: hidden;
}
.slider-buttons__button::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 0;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  background-color: var(--light-blue);
}
.slider-buttons__span {
  position: relative;
  z-index: 1;
  display: block;
  overflow: hidden;
}
.slider-buttons__hover {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-buttons__svg {
  width: 1.75rem !important;
  height: 1.75rem !important;
  transform: rotate(90deg);
}
.slider-buttons__svg.right {
  transform: rotate(-90deg);
}
.slider-buttons__button:hover {
  border-color: var(--blue);
}
.slider-buttons__button:hover .slider-buttons__svg path {
  stroke: #fff;
}
.slider-buttons__button:hover::before {
  transform: none;
}
.slider-buttons__button:hover .slider-buttons__hover {
  animation: MoveUpInitial 0.2s forwards, MoveUpEnd 0.2s forwards 0.2s;
}
@keyframes MoveUpInitial {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -105%, 0);
  }
}
@keyframes MoveUpEnd {
  0% {
    transform: translate3d(0, 100%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}
.button {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 14px 60px 14px 30px;
    font-family: 'Rubik';
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: white;
    background-image: linear-gradient(90deg, var(--blue), var(--grey));
    border: 0;
    overflow: hidden;
    cursor: pointer
}

.button span {
    position: relative;
    z-index: 3;
    display: inline-block;
    margin-bottom: 1px;
    will-change: transform;
    transform: translateZ(0);
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1)
}

.button:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(90deg, var(--blue), var(--light-blue));
    transition: opacity 0.4s ease-in-out;
    opacity: 0
}

.button:before {
    content: "";
    position: absolute;
    z-index: 3;
    top: calc(50% - 5px);
    right: 30px;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.645, 0.045, 0.355, 1)
}

.button:hover:after {
    opacity: 1
}

.button:hover:before {
    transform: translate3d(45px, 0, 0) scale(0.5)
}

.button:hover span {
    transform: translate3d(15px, 0, 0)
}

.button-white {
    padding: 14px 30px;
    font-size: 18px;
    color: #2B2B2B;
    background: #fff;
    border: 1px solid var(--blue);
    cursor: pointer;
    transition: color 0.4s ease-in-out
}

.button-white:hover {
    color: #fff
}

.button-white:hover span {
    transform: translate3d(0, 0, 0)
}

.button-white:before {
    display: none
}
#about{
  padding-top: 80px;
}
.about-wrap{
  padding: 0 40px;
}
#about h2 {
    font-weight: bold;
    line-height: 1.1;
    margin: 0 0 20px 0;
    color: #2B2B2B
}

#about h2 {
    position: relative;
    font-size: 43px
}

#about h2:before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    z-index: -1;
    width: 120px;
    height: 120px;
    background: var(--blue);
    ;
    opacity: 0.8;
    filter: blur(35px)
}

#about h2 span {
    position: relative;
    z-index: 1
}

#about img {
    max-width: 100%;
    height: auto
}



#about h2:before {
    animation: pulse 3s ease infinite
}

@keyframes pulse {
    50% {
        transform: scale(0.5);
        filter: blur(25px)
    }
}


#about .about-video {
    cursor: pointer;
    margin-top: 9px;
    overflow: hidden;
    position: relative
}

#about .about-video img {
    height: 542px;
    width: 100% !important;
    object-fit: cover;
}
#about .about-info {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 20px;
    justify-content: space-between;
}

#about .about-img {
    min-width: 464px;
    position: relative
}

#about .about-img-text {
    background: #fff;
    padding: 10px;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
    color: #595959;
    box-shadow: 0px 5px 20px rgba(232, 232, 232, 0.7);
    position: absolute;
    top: -25px;
    left: -40px;
    z-index: 2
}

#about .about-img-text p {
    white-space: nowrap;
    color: #59595980
}

#about .about-right {
    padding-left: 35px
}

#about .about-right h2 {
    margin-top: 1px;
}

#about .about-right .about-info-text {
    font-weight: 500;
    font-size: 22px;
    line-height: 130%;
    color: #2B2B2B;
    text-align: justify;
}

#about .about-right .about-info-desc {
    font-size: 17px;
    line-height: 150%;
    color: #595959;
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: justify;
}

#about .about-right .about-info-desc a {
    color: var(--blue);
    transition: all 0.3s ease-in-out
}

#about .about-right .about-info-desc a:hover {
    text-decoration: underline
}

#about .about-right .about-info-buttons {
    display: flex;
    align-items: center
}

#about .about-right .about-info-buttons .button {
    margin-right: 20px
}

#about .about-right .about-info-buttons .button.button-white {
    margin-right: 0;
    padding: 14px 26px
}
.tired-section{
  padding-bottom: 0;
  background-color:#adb1ac78;
  text-align: center;
  position: relative;
}
.tired-section::before{
  content: '';
    position: absolute;
    bottom: 16px;
    right: 31px;
    z-index: -1;
    width: 200px;
    height: 200px;
    background: var(--blue);
    opacity: 0.8;
    filter: blur(35px);
    animation: pulse 3s 
ease infinite;
}
.tired-section::after{
  content: '';
    position: absolute;
    top: 16px;
    left: 31px;
    z-index: -1;
    width: 200px;
    height: 200px;
    background: var(--blue);
    opacity: 0.8;
    filter: blur(35px);
    animation: pulse 3s 
ease infinite;
}

.tired-title {
  color: var(--blue);
  position: relative;
    text-align: center;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
     transition: color 0.5s cubic-bezier(0.33, 1, 0.68, 1);
     display: inline-block;
}

.tired-title::before {
  content: "";
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--blue);
  pointer-events: none;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 0.3s;
}
.tired-title:hover::before {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
}

.tired-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* COLUMNS */
.tired-col {
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    
}

/* MAN CENTER */
.center {
    display: flex;
    justify-content: center;
}

.man-wrapper {
    position: relative;
}
.tired-col>svg{
        position: absolute;
    margin: 0 auto;
    display: block;
    bottom: -28px;
    left: -128px;
    z-index: 0;
}

.man-img {
    width: 360px;
    height: auto;
    z-index: 2;
    position: relative;
}

.man-back {
    position: absolute;
    bottom: -30px;
    left: -110px;
    z-index: -1;
}

/* CARDS */
.tired-card {
    display: flex;
    align-items: center;
    background: white;
    padding: 22px 28px;
    font-size: 20px;
    font-weight: 500;
    box-shadow: 0 0 0 transparent;
    position: relative;
    z-index: 10;
    
}

.icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #ececec;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 4px 0px 0px var(--blue);
}

.tired-text {
    max-width: 260px;
    line-height: 1.4;
}

/* LEFT column offset effect */
.left .tired-card:first-child,
.left .tired-card:last-child {
    position: relative;
    right: -80px;
}

/* RIGHT column offset */
.right .tired-card:first-child,
.right .tired-card:last-child {
    position: relative;
    left: -80px;
}


.section-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 30px;
    font-weight: 700;
}

.press-card {
    position: relative;
    z-index: 0;
    display: block;
    height: 330px
}



 .services_section .press-card, .other-services .press-card {
    border: 1px solid #e9e9e9;
    overflow: hidden;
    transition: border-color .5s cubic-bezier(0.33, 1, 0.68, 1)
}
.other-services{
  padding-top: 0;
}
.services_section .press-card:hover, .other-services .press-card:hover {
    border-color: rgba(0, 0, 0, 0)
}

.services_section .press-card:hover .press-card__hover, .other-services .press-card:hover .press-card__hover {
    transform: none
}

.services_section .press-card:hover .press-card__title,
.services_section .press-card:hover .press-card__text,
.services_section .press-card:hover .press-card_desc ,
.other-services .press-card:hover .press-card__title,
.other-services .press-card:hover .press-card__text,
.other-services .press-card:hover .press-card_desc{
    color: #fff !important
}

.services_section .press-card_desc , .other-services .press-card_desc{
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 16px;
    line-height: 20px;
    color: #333;
}

.services_section .press-card:hover .press-card__wrapper , .other-services .press-card:hover .press-card__wrapper{
    border-color: hsla(0, 0%, 100%, .2)
}

.services_section .press-card:hover .press-card__icon , .other-services .press-card:hover .press-card__icon{
    background-color: var(--grey)
}

.services_section .press-card:hover .press-card__svg path , .other-services .press-card:hover .press-card__svg path {
    stroke: #fff
}

.serviceform .form-checkbox input{
  width: 18px;
  height: 13px;

}
.serviceform .form-checkbox{
  align-items: flex-start;
  margin-bottom: 10px;
}
.serviceform .form-checkbox  a{
  color: var(--grey)
}
.services_section .press-card__hover , .other-services .press-card__hover {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    transform: translateY(110%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background-color: var(--blue);
    transition: transform .5s cubic-bezier(0.33, 1, 0.68, 1)
}

.services_section .press-card__bg , .other-services .press-card__bg {
    width: 10.3125rem;
    height: 17.4375rem
}

.press-card__content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.press-card__container {
    padding: 1.25rem
}

.press-card__title {
        transition: color .5s 
cubic-bezier(0.33, 1, 0.68, 1);
    font-size: 22px;
    font-weight: 700 !important;
    line-height: 1.3;
    margin-bottom: 20px;
    min-height: 53px;
    color: var(--blue) !important;
}

.press-card_desc {
    transition: color .5s cubic-bezier(0.33, 1, 0.68, 1);
}



.press-card__wrapper {
    padding: .625rem 1.25rem
}


.press-card__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e9e9e9;
    transition: border-color .5s cubic-bezier(0.33, 1, 0.68, 1)
}

.press-card__date {
    display: flex
}


.press-card__date {
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: -0.01em
}


.press-card__text {
    font-weight: 700;
    font-size: 15px;
}

.press-card__icon {
    --size: 1.75rem
}


.press-card__icon {
    width: var(--size);
    height: var(--size);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: #e6e6e6;
    transition: background-color .5s cubic-bezier(0.33, 1, 0.68, 1)
}

.press-card__svg {
    --size: 0.75rem
}

.press-card__svg {
    width: 12px;
    height: 12px;
    transform: rotate(-90deg)
}

.press-card__svg path {
    stroke: #333;
    transition: .5s cubic-bezier(0.33, 1, 0.68, 1)
}


.only-desktop .button,
.only-mobile .button {
    padding: 10px 30px;
    width: 230px;
}


.services_section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 20px;
    align-items: stretch
}

.only-mobile {
    display: none;
}

.projects-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: var(--br);
  cursor: pointer;
}
@media (min-width: 1201px) and (hover: hover) and (pointer: fine) {
  .projects-card:hover .projects-card__hover {
    top: 0;
  }
  .projects-card:hover .projects-card__hover-note {
    opacity: 1;
    visibility: visible;
    margin-top: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-delay: 0.125s;
    transition-delay: 0.125s;
  }
  .projects-card:hover .projects-card__hover-btn {
    scale: 1;
    opacity: 1;
    visibility: visible;
  }
}
.projects-card__wrapper {
  position: relative;
}
.projects-card__img {
  width: 100%;
  height: 36.4375rem;
  position: relative;
  border-radius:var(--br);
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: url(https://gassystems.ru/local/templates/main/include/styles/../card-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.projects-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-slide .projects-card__img{
  height: 273px;
}
.projects-card__btn {
  width: 2.5rem;
  height: 2.5rem;
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 50%;
}
.projects-card__btn svg {
  width: 1.25rem;
  height: 1.25rem;
}
.projects-card .title-32 {
  margin-bottom: 1.5rem;
  text-align: left;
  display: -moz-box;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 2 !important;
  line-clamp: 1;
}
/* #swiper-wrapper-510f1cca73ff01a52{
  transform: translate(0, 0) !important;
} */
.projects-card__hover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.projects-card__hover-note {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 460px;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  margin-top: 3.125rem;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  -webkit-transition-duration: 0s;
  transition-duration: 0s;
}
.projects-card__hover-note p{
    color: #fff;
    font-size: 22px;
    max-width: 80%;
}
.projects-card__hover-btn {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background: #474e5a;
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  scale: 0.8;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.projects-card__hover-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.title-32 {
  color: #474e5a;
  font-size: 20px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: -0.08rem;
  text-transform: uppercase;
}
.text-24 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.01em;
}
.projects-card {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  cursor: pointer;
}

.projects-card__wrapper {
  position: relative;
}
.projects-card__img {
  width: 100%;
  height: 36.4375rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.5rem;
  background: url(https://gassystems.ru/local/templates/main/../card-bg.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

.projects-card .title-32 {
  margin-bottom: 10px;
  text-align: left;
  display: -moz-box;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}

.projects-card__hover {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--blue);
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.projects-card__hover-btn {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  background: var(--light-blue);
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  scale: 0.8;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}
.projects-card__hover-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}
.contact-bottom {
  position: relative;
  background: #474e5a;
  overflow: hidden;
}

.contact-bottom-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.button-ui {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4375rem 0.75rem 0.4375rem 1.75rem;
  background: #fff;
  color: #333;
  
  gap: 1.75rem;
  width: max-content;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.button-ui__text {
  display: inline-block;
  color: #333;
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.2px;
  text-transform: uppercase;
  flex-shrink: 0;
}

.button-ui__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border: 1px solid #333;
  background-color: #fff;
  border-radius: 80%;

  transition: 0.5s cubic-bezier(0.33, 1, 0.68, 1);
}

.button-ui__arrow svg {
  width: 1.5rem;
  height: 1.5rem;
}

.button-ui.cross svg path {
  stroke: none;
}

.contact-us {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 60rem);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 1.5rem;
}

.contact-us__contact {
  height: max-content;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding-left: 1.5rem;
}

.contact-us__contact-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-us__contact-text p {
  width: 40.5625rem;
  text-align: justify;
}

.contact-us__img {
  display: flex;
  justify-content: center;
  height: 27.25rem;
}

.contact-us__img .picture {
  height: 100%;
  margin-left: -5.5rem;
}

.contact-us__img .picture img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-us .button-ui {
  width: fit-content;
}

.title-76 {
  color: #474e5a;
  font-size: 4.75rem;
  font-weight: 500;
  letter-spacing: -0.2375rem;
  text-transform: uppercase;
}

.text-24 {
  color: #000;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 130%;
  letter-spacing: -0.01em;
}

.white {
  color: #fff;
}

footer {
    background: #212a34;
    padding: 50px 0
}
.adress p{
    color: #a2a2a2;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
    display: inline-block;
    /* max-width: 100%; */
    /* white-space: nowrap; */
    /* overflow: hidden; */
    /* text-overflow: ellipsis; */
    max-width: 325px;
}
footer .logo img{
    
    display: inline-block;
    width: 100%;object-fit: cover;
}
.blogsfooter {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
footer .logo{
  max-width: 140px;
  width: 100%;
}

.footer_logo_and_logo {
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    width: fit-content;
}

 .socials a {
    width: 45px;
    height: 40px;
    background-color: rgb(216, 216, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--br);
    transition: all 0.25s ease;
}

 .socials a:hover {
    background: var(--blue);
}
/*footer*/
.footer__call-menu {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.25;
}

.footer_logo_and_number {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
    justify-content: center;
}

footer .tel {
    margin-bottom: 8px;
    color: #a2a2a2;
    width:fit-content;
}

footer .tel  a {
    font-size: 28px;
    color: #fff;
    font-weight:bold;
    display: block;
    width:fit-content;
}

footer .adress, footer .links {
    color: #fff;
    margin-top: 32px;
}

footer .adress a, footer .links a {
     color: #fff;
     display: block;
     margin-bottom: 5px;
     cursor:pointer;
}

footer .links a {
    margin-bottom: 10px;
}

footer .adress_and_links {
    display: flex;
    gap: 10px;
    flex-direction:column;
    
}

footer .btns {
    display: flex;
    align-items: flex-end;
    gap: 140px;
}

footer .btns button {
    background-color: rgb(216, 216, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--br);
    height: 40px;
    border:none;
    outline:none;
    padding: 0 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    gap: 7px;
}

footer .line {
    height: 1px;
    background:#6b7782;
    width: 100%;
    margin: 40px 0;
}

.footer-nav {
  background: #222a31;
  color: #cfd6dc;
  font-family: "Poppins", sans-serif;
}

.footer-nav__inner {
  display: grid;
  gap: 28px 20px;
  grid-template-columns: repeat(5, auto);
}

.footer__content {
    padding-left:17px;
}

.footer-col h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: 700;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.footer-col li + li {
  margin-top: 8px;
}
footer .btns button:hover {
    background: var(--grey);
}

footer .adress a:hover, footer .links a:hover {
    text-decoration: underline;
}

footer .socials div {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

footer .socials a:hover {
    background: var(--grey);
} 
footer .socials {
    color: #a2a2a2;
     display:block!important;
}

footer .socials span {
    margin-bottom: 8px;
    display:block;
}
.copyright {
    display:flex;
    align-items: center;
    gap: 25px;
    justify-content:space-between;
}

.copyright-2 {
    display:flex;
    align-items: center;
    gap:20px;
}

.copyright a {
    background-color: rgb(216, 216, 216, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--br);
    height: 40px;
    border: none;
    outline: none;
    padding: 0 20px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    transition: all 0.25s ease;
    gap: 7px;
    width: fit-content;
    font-size: 14px;
}

.copyright span {
    font-size: 14px;
    color: #a2a2a2;
}
.footer-col a , .footer-col li{
  color: #a2a2a2;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
  display: inline-block;
  max-width: 100%;       /* ограничиваем ширину контейнера */
  white-space: nowrap;   /* запрещаем перенос строки */
  overflow: hidden;      /* скрываем лишний текст */
  text-overflow: ellipsis; /* добавляем троеточие */
}
.footer-col__solo li{
  text-overflow: inherit;
}
.footer-col a.link:hover {
    color: #a2a2a2;
}

.footer-col a:hover {
  text-decoration: underline;
  
}

.footer-col__solo {
  margin-top: 36px; 
}
.breadcrumb {
  padding: 20px 0;
  margin-top: 125px !important;
  background-color:var(--blue);
      --bs-breadcrumb-margin-bottom: 0;
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #fff
}

.breadcrumb__item {
  display: flex;
  align-items: center;
  color: var(--grey);
}

.breadcrumb__item:not(:last-child)::after {
  content: "—";
  margin: 0 10px;
  color: #d0d0d0;
}

.breadcrumb__item a {
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb__item a:hover {
  color: var(--grey);
}

.breadcrumb__item--current a{
  color: #fff;
  font-weight: 500;
}
.about-page-hero{
  background-color:#4452654a;
  height: 100%
}
.about-page-hero .container{
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
.about-page-content{
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items:center;
  justify-content:center;
  max-width: 700px;
  text-align: center;

}
.about-page-hero img{
  width: 300px;
}
.about-page-content h4 ,.about-page-content p{
  font-size: 17px;
  font-weight: 500;
  line-height: 1.52;
}
.about-page-content h1{
  font-size: 36px;
}
.about-page-content span{
  color: var(--blue);
  font-weight: 800;
}
.about-switch-section{
  background-color: #0e121d
}
.about-switch-header h2 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #fff
}

.about-switch-header h2 span {
  color: var(--grey);
  font-weight: 800;
}

.about-switch-header p {
  font-size: 17px;
  color: #fff;
}

.about-switch-grid {
  display: grid;
  grid-template-columns: 60% 1fr;
  gap: 40px;
  margin-top: 40px;
  align-items: flex-start;
}

.about-switch-left {
  position: relative;
}

.about-tabs {
  display: flex;
  gap: 10px;
  background: var(--grey);
  border: 1px solid #dee2e6 !important;;
  border-radius: var(--br);
  overflow: hidden;
  margin-bottom: 30px;
  padding: 15px;

}
.about-tab button{
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
}
.about-tab {
  color: #333 !important;
  flex: 1;
  padding: 15px 20px;
  font-size: 18px;
  font-weight: 500;
  text-transform: uppercase;
  background: var(--grey);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.about-tab:hover button{
  color: #fff
}
.about-switch-list .button{
  margin-top: 20px;
}

.about-tab:not(:last-child) {
  border-right: 1px solid var(--blue);
}
.about-tab:hover{
  background: #0e121dad ;
  color: #fff !important
}
.about-tab.active {
  background: #0e121d;
  color: #fff !important
}


.about-tab-contents {
  position: relative;
}

.about-switch-list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-switch-list.is-active {
  display: block;
}

.about-switch-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 20px;
  line-height: 1.55;
  color: #fff;
  text-align: justify;
}

.about-switch-list li::before {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--grey);
  margin-top: 11px;
  flex-shrink: 0;
}


.about-switch-right {
  position: relative;
  text-align: left;
  padding-left: 40px;
  display: flex;
  justify-content: flex-end;
}
.about-switch-right::before {
    content: '';
    position: absolute;
    top: 56%;
    left: 11%;
    z-index: 0;
    border-radius: 100%;
    width: 200px;
    height: 200px;
    background: var(--light-blue);
    opacity: 0.8;
    filter: blur(35px);
    animation: pulse 3s ease infinite;
}

.about-switch-right img {
  max-width: 380px;
  display: block;
  position: relative;
}

.about-switch-right strong {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.about-switch-logo img{
  width: 120px;
}
.about-switch-logo{
  position: absolute;
  top: 45%;
    left: -15%;

}
.about-switch-right span {
  display: block;
  font-size: 19px;
  color: #7a7a7a;
}
.about-switch-absolute{
  position: absolute;
       left: 11%;
    top: 75%;
}

.about-shield {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-shield img {
  width: 90px;
}

.about-shield p {
  font-size: 14px;
  color: #7a7a7a;
  max-width: 160px;
}
.about-reviews {
    display: flex;
    padding: 0;
    margin-top: 40px;
    margin-bottom: 40px;
    flex-direction: column;
}
.about-reviews .section-top {
    justify-content: center;
}

.about-reviews-items{
  display: flex;
  gap: 10px;
  justify-content: center;
}
.about-reviews-item {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.about-reviews-item-wrap {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: #ffffff;
    border: 1px solid rgb(14 18 29);
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); */
    border-radius: 0;
    transition: all 0.3s ease;
    text-decoration: none;
    height: 100%;
    align-items: center;
    justify-content: center;
    gap: 15px;
}
.about-reviews-logo {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-reviews-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 80px;
}

.about-reviews-stars {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-reviews-stars svg{
  height: 20px;
  width: 20px;
}


/* Responsive */
@media (max-width: 768px) {

    .about-reviews-item {
        flex: 1;
        min-width: 0;
        max-width: none;
    }

    .about-reviews-item-wrap {
        padding: 15px;
        gap: 10px;
    }

    .about-reviews-logo img {
        max-height: 50px;
    }

    .about-reviews-stars img {
        max-height: 14px;
    }
}

.license-section{
  padding-top: 0;
}
.license-card {
  display: grid;
  grid-template-columns: 65% 35%;
  background: linear-gradient(
    135deg, var(--blue) 20%,
    var(--grey)
  );
  border-radius: var(--br);
  padding: 50px 60px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.license-content {
  position: relative;
  z-index: 2;
}

.license-badge {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,0.15);
  border-radius: var(--br);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.license-title {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 16px;
}

.license-desc {
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
  opacity: 0.95;
}

/* LIST */
.license-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.license-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  font-size: 15px;
}

.license-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #a7ffda;
  font-weight: 700;
}

.license-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.license-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: bold;
  border-radius: var(--br);
  text-decoration: none;
  transition: all 0.25s ease;
}

.license-btn--primary {
  background: var(--grey);
  color: #fff;
}

.license-btn--primary:hover {
  background: var(--grey);
}

.license-btn--secondary {
  background: rgba(255,255,255,0.18);
  color: #fff;
  backdrop-filter: blur(6px);
}

.license-btn--secondary:hover {
  background: rgba(255,255,255,0.28);
}

/* META */
.license-meta {
  margin-top: 14px;
  font-size: 13px;
  opacity: 0.85;
}

/* RIGHT IMAGE */
.license-image {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.license-image img {
  max-width: 280px;
  height: auto;
}

.blogs-page-blogs-grid{
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.blogs-page-blogs-grid .projects-card__img {
  height: 220px;
}
.blogs-page-blogs-grid .projects-card__hover-note {
  width: 90%;
}
.contact-page-hero{
    border-radius: 3.75rem 3.75rem 0 0;
    padding-top: 3.75rem;
    margin-bottom: 0;
    padding: 50px 50px 30px;
}
.contact-page-hero .container{
        display: flex;
        flex-direction: row;
        justify-content: space-between;
}
.contact-page-hero .contact-page-hero-left{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contact-page-hero .contact-page-hero-left h2{
    font-size: 60px;
}
.contact-page-hero .contact-page-hero-left p{
    color: #97A1BB;
    font-size: 16px;
}
.contact-page-hero-right{
    width: 50%;
    margin-top: 1.25rem;
        display: flex;
    flex-direction: column;
    gap: 39px;
}
.contact-page-hero-right p{
    font-size: 21px;
    letter-spacing: -.02em;
    margin-bottom: .625rem;
    color: #97A1BB;
}
.contact-page-hero-right a, .contact-page-hero-right .pinnerp{
    letter-spacing: .01em;
    font-size: 21px;
    color: var(--text-black)
}

#map{
    height: 400px;
    width: 100%;
    position: absolute;
    top: 30px;
}
.map{
    margin-bottom: 0;
    height: 400px;
    position: relative;
}
.questions-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.qs-container {
    background: #fff;
    border-radius:8px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}

.qs-left {
    width: 40%;
    display: flex;
    flex-direction: column;
}

.qs-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.qs-text {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.qs-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333
}

.qs-phone img {
    width: 20px;
    height: 20px;
}

.qs-worktime {
    background: #f3e5b5;
    padding: 6px 15px;
    width: max-content;
    border-radius: 6px;
    font-size: 14px;
}
.qs-icons{
  display: flex;
  flex-direction: column;
  margin-bottom: 10px;
  gap: 5px;
}
.qs-icons div{
  display: flex;
  gap: 8px;
}
.qs-icons a svg{
  width: 28px;
  height: 28px;
}
.qs-right {
    width: 60%;
}

.qs-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.qs-left-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qs-right-textarea textarea {
    width: 100%;
    height: 163px;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
    resize: none;
}

.qs-input {
    width: 100%;
    padding: 13px 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
}

.qs-textarea {
    width: 100%;
    border-radius: 8px;
}

.qs-bottom {
    grid-column: 1 / 3;
}

.qs-btn {
    background: #f7d57b;
    border: none;
    padding: 14px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}
.fullArticle_flex{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}
.full-tags {
    width: 100%;
    border: 2px dashed #dedede;
    border-radius: 10px;
    padding: 30px;
    color: white;
    margin-top:40px;
}
.full-tags span {
    display: inline-block;
    color: #666;
    font-size: 14px;
    padding: 8px 25px;
    margin: 4px 5px 4px 5px;
    background-color: #f1f1f1;
    border-radius: 20px;
    pointer-events:none
}

.extratexts_both {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding-top: 1.5rem;
}

.blog_filter_box {
    background: #fff;
    padding: 20px;
    margin-bottom: 45px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    position: sticky;
    top: 150px;
}


.blog_filter_box h3 {
    color: var(--blue);
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
    font-size: 20px;
}

.blog_filter_box h3:before {
    position: absolute;
    content: "";
    width: 125px;
    border-bottom: 3px solid var(--blue);
    bottom: 0;
    left: 0;
}
.fs-1{
  margin-bottom: 10px;
}


.blog_filter_list {
    padding: 0 10px;
    max-height: 350px;
    height: 100%;
    overflow-y: auto;
}

.blog_filter_list li:not(:last-child) {
    border-bottom: 1px solid var(--blue);
}
.blog_filter_list li {
    display: block;
    color: var(--blue);
    padding: 10px 0;
    cursor: pointer;
    transition: 0.5s ease-in-out;
    font-size: 10px;
}

.blog_filter_list li a {
    color: var(--blue);
    line-height: 20px;
    transition:.3s;
}
.blog_filter_list li:hover a{color:var(--blue2);}

.left-full,
.left-full p {
    line-height: 28px;
    
}
.left-full p {
    margin-bottom: 15px;
    color: #333;
    font-weight: 500;
    text-align: justify;
    font-size: 16px;
}
.check_desc ul li::marker {
    content: "\2713";
}
.sideBar {
  width: 30%;
  position: sticky;
  top: 150px;
  align-self: flex-start;
}
.smallPostBoxs{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.leftAll_article {
    width: 70%;
    min-width:70%;
}

.left-full img {
    width: 24rem;
    height: 18rem;
    object-fit: cover;
}

.blog_full img {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}
.date{
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgb(134, 135, 136)
}

.left-full > div{
    line-height: 28px;
}
.blog_full h1{
    font-size: 25px !important;
    color: var(--blue);
    font-weight: 700 !important;
}
.service-inner__hero {
  position: relative;
  height: 570px;
  overflow: hidden;
}
.service-inner {
  max-width: 1200px;
  margin: auto;
}
.service-inner__hero {
  position: relative;
  height: 435px;
  overflow: hidden;
}

.service-inner__image {
  position: absolute;
  inset: 0;
  height: 435px;
}

.service-inner__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-inner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.7) 100%
  );
  z-index: 1;
}


.service-inner__title {
  margin-bottom: 30px;
  font-size: 42px;
  font-weight: 700;
  max-width: 720px;
}


.service-inner__body {
  padding: 30px 0;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 25px;
}
.service-inner__desc{
  text-align: justify;
}
.service-inner__desc li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 16px;
  line-height: 1.55;
  color: #2b2b2b;
  text-align: justify;
}

.service-inner__desc li::before {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--blue);
  margin-top: 11px;
  flex-shrink: 0;
}
.service-inner__grid {
  display: grid;
  grid-template-columns: auto 380px;
  gap: 40px;
  align-items: flex-start;
}

.service-inner__left {
  min-width: 0;
}
.service-inner__left p{
  font-size: 16px;
    line-height: 1.55;
    color: #2b2b2b;
    margin-bottom: 10px;
}

/* FORM */
.service-form {
  position: sticky;
  top: 150px;
  background: var(--blue);
  padding: 30px;
  border-radius: var(--br);
  color: var(--white);
}

.service-form__title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 6px;
  text-align: center;

}

.service-form__text {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 20px;
  text-align: center;
}

.service-form input,
.service-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 14px;
  border-radius: var(--br);
  border: none;
  background: var(--light-blue);
  color: var(--white);
  outline: none;
}

.service-form input::placeholder,
.service-form textarea::placeholder {
  color: var(--grey);
}

.service-form textarea {
  resize: none;
  height: 90px;
}

.service-form button {
  width: 100%;
  padding: 14px;
  background: var(--white);
  color: var(--blue);
  border: none;
  border-radius: var(--br);
  font-weight: 700;
  cursor: pointer;
  transition: .3s;
}

.service-form button:hover {
  background: var(--grey);
}

.fee-section {
  background: #f5f7fb;
}

.fee-title {
  font-size: 32px;
  font-weight: 700;
  color: #0e2a47;
  margin-bottom: 30px;
  letter-spacing: -0.02em;
}

.fee-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.fee-card {
  background: #ffffff;
  padding: 35px 20px;
  border-radius: 0;
  border: 1px solid #e9e9e9;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  position: relative;
}

.fee-card::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 0;
  width: 10px;
  height: 72px;
  background: #0e2a47;
}

.fee-card h3 {
  font-size: 21px;
  font-weight: 600;
  color: #0e2a47;
  margin-bottom: 28px;
  padding-left: 24px;
  line-height: 1.35;
}


.fee-card p {
  font-size: 15.5px;
  line-height: 1.9;
  color: #2b2b2b;
  padding-left: 24px;
}


.fee-card p br {
  display: block;
  margin-top: 18px;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
 
  background: #ffffff;
  border: 2px solid #0a2540;
}
.fee-table:not(:last-child){
   margin-bottom: 40px;
}


.fee-table thead th {
  padding: 22px 28px;
  font-size: 17px;
  font-weight: 600;
  color: #0a2540;
  background: #f9fafc;
  border-bottom: 2px solid #0a2540;
  border-right: 1px solid #cfd6e4;
  text-align: left;
}

.fee-table thead th:last-child {
  border-right: none;
  text-align: right;
}


.fee-table tbody td {
  padding: 20px 28px;
  font-size: 15.5px;
  line-height: 1.8;
  color: #1f1f1f;
  border-bottom: 1px solid #d8dee9;
  border-right: 1px solid #d8dee9;
  background: #ffffff;
}

.fee-table tbody td:last-child {
  border-right: none;
  text-align: right;
  font-weight: 600;
  color: #0a2540;
  white-space: nowrap;
}

.fee-table tbody tr:last-child td {
  border-bottom: none;
}

.fee-table tbody tr:nth-child(even) td {
  background: #fbfcfe;
}


.fee-note p {
  font-size: 16px;
  line-height: 1.8;
  color: #1f1f1f;
  margin-bottom: 24px;
}

.fee-note p strong {
  font-weight: 600;
  color: #0a2540;
}

.fee-note ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2,1fr);
}

.fee-note li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 14px;
  font-size: 15.5px;
  line-height: 1.75;
  color: #1f1f1f;
}

.fee-note li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 50%;
  transform: translate(-50%, 0);
  width: 12px;
  height: 2px;
  background: var(--blue);
}
.service-inner__desc li::before {
  content: "";
  width: 12px;
  height: 2px;
  background: var(--blue);
  margin-top: 11px;
  flex-shrink: 0;
}
.edu-table__title {
  margin-bottom: 30px;
}

.edu-table__wrapper {
  overflow-x: auto;
  overflow-y: hidden;
  border: 1px solid rgba(19, 34, 57, 0.08);
  border-radius: var(--br);
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.edu-table__wrapper::-webkit-scrollbar {
  display: none;
}

.edu-table__table {
  min-width: 734px;
}


.edu-table__table {
  width: 100%;
  border-collapse: collapse;
  counter-reset: row;
  background: var(--white);
}

.edu-table__table thead th {
  background: var(--blue);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  padding: 16px;
  white-space: nowrap;
}

.edu-table__table tbody tr {
  transition: background 0.25s ease;
}

.edu-table__table tbody tr:hover {
  background: rgba(19, 34, 57, 0.03);
}

.edu-table__table tbody td {
  padding: 18px 16px;
  font-size: 15px;
  color: var(--light-blue);
  border-bottom: 1px solid rgba(19, 34, 57, 0.08);
  vertical-align: top;
}

.edu-table__table tbody tr:last-child td {
  border-bottom: none;
}

/* AUTO COUNTER */
.edu-table__table tbody td:first-child {
  width: 60px;
  text-align: center;
  font-weight: 600;
  color: var(--blue);
  position: relative;
}

.edu-table__table tbody td:first-child::before {
  counter-increment: row;
  content: counter(row);
}
.edu-table__table tbody td:nth-child(3),
.edu-table__table tbody td:nth-child(4) {
  white-space: nowrap;
  font-weight: 500;
  color: var(--blue);
}

/* =========================
   RESPONSIVE
========================= */


@media (min-width: 1201px) {
  .contact-bottom .button-ui {
    height: 4.25rem;
  }

  .button-ui:active {
    background-color: #faf995;
  }

  .button-ui.cross:hover .button-ui__arrow {
    background-color: #474e5a;
  }

  .button-ui.cross:hover .button-ui__arrow svg path {
    fill: #fff;
  }

  html {
    font-size: 0.8333333333vw;
  }
}











@media (max-width: 1200px) {
  .contact-bottom {
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem;
  }
  .header__buttons, .header__lang {
    margin-left: 10px;
}
.header__item:not(:first-child) {
    margin-left: 12px;
}



  .fee-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .contact-bottom-inner {
    padding: 1.25rem 1.25rem 3.75rem;
    gap: 1.25rem;
  }

  .about-tabs {
    display: flex;
    gap: 5px;
    padding: 10px;
}
.about-tab{
  font-size: 17px;
}
  .contact-bottom .button-ui {
    width: fit-content
  }

  .button-ui {
    padding: 0.5rem 0.75rem 0.5rem 1.25rem;
    gap: 0.75rem;
  }

  .button-ui__text {
    font-size: 1rem;
    letter-spacing: -0.16px;
  }

  .button-ui__arrow {
    width: 2rem;
    height: 2rem;
  }

  .button-ui__arrow svg {
    width: 1.09375rem;
    height: 1.09375rem;
  }
.footer-nav__inner {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .footer-col__solo {
    margin-top: 0;
  }
  .contact-us {
    grid-template-columns: repeat(2, 22.5rem);
    gap: 0.5rem;
    padding-bottom: 3.5rem;
  }

  .contact-us__contact {
    gap: 1.5rem;
    padding-left: 1rem;
  }

  .contact-us__contact-text {
    gap: 1rem;
  }

  .contact-us__contact-text p {
    width: 18.125rem;
  }

  .contact-us__img {
    height: 12.5rem;
  }

  .contact-us__img .picture {
    margin-left: 2rem;
  }

  .title-76 {
    font-size: 2rem;
    letter-spacing: -0.1rem;
  }

  .text-24 {
    font-size: 1.125rem;
    line-height: 120%;
  }
   .projects-card__img {
    height: 13.625rem;
    margin-bottom: 1rem;
    border-radius: var(--br);
  }
    .header__link{
        font-size: 14px;
    }
    .header__link svg {
        width: 15px;
        height: 15px;
    }
  
  /* .header__logo, .header__logo-link {
    height: 120px;
  }
  .header__logo {
    width: auto;
    -ms-flex-negative: 0;
    flex-shrink: 0;
  } */
  #about h2 {
        font-size: 31px
    }

    #about h2:before {
        top: -10px;
        width: 45px;
        height: 45px;
        filter: blur(20px)
    }  


    #about .about-right .about-info-buttons .button {
        width: fit-content;
        text-align: center;
    }

    #about .about-right .about-info-buttons .button:last-child {
        margin-bottom: 0
    }

    .about-benefits .about-benefits-item .about-benefits-item-wrap {
        height: 100%
    }


    #about .about-info {
        flex-direction: column;
        padding: 0 40px
    }

    #about .about-video {
        overflow: initial;
        margin-top: 0px
    }

    #about .about-video .about-video-preview {
        transform: translateX(0%)
    }



    #about .about-benefits {
        /* flex-wrap: wrap; */
        margin-bottom: -30px
    }



    #about .about-img {
        min-width: 100%;
        max-width: 800px;
        margin-left: auto;
        margin-right: auto
    }
    #about .about-right .about-info-text{
        font-size: 18px;
    }
    #about .about-right .about-info-desc {
        font-size: 15px;
    }
.tired-text {
    max-width: 130px;
    line-height: 1.4;
}


    #about .about-video img {
            width: 100%;}
    #about .about-img-text {
        left: -20px;
        padding: 10px
    }

    #about .about-right {
        padding-left: 0
    }

    #about .about-right h2 {
        max-width: 550px
    }
#about .about-benefits .about-benefits-item .about-benefits-item-wrap .about-benefits-item-text {
    font-size: 16px;
    line-height: 130%;
    color: #fff;
}
.projects-card__img {
    height: 13.625rem;
    margin-bottom: 1rem;
    border-radius: var(--br);
  }
.projects-card .title-32 {
    margin-bottom: 1.25rem;
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
   .devices {
    display: none !important;
  }
  .tired-card {
    font-size: 17px;
  }
}

@media(max-width: 992px){
   #about h2{
    font-size: 24px;
}
.fullArticle_flex {
  gap: 20px;
}
    .leftAll_article {
        width: 60%;
        min-width: 60%;
    }
.sideBar {
  width: 40%;
}

.header__lang{
  margin-left: 10px;
}
.license-card {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    text-align: center;
  }
  .service-inner__grid {
    display: grid;
    grid-template-columns: auto 290px;
  }
  .service-form{
    padding: 20px;
  }
  .service-form__title {
    font-size: 22px;}

  .license-actions {
    justify-content: center;
    flex-wrap: wrap;
  }
.header__inner {
    height: 100px;
  }
  .license-image {
    margin-top: 30px;
  }
 #about .about-info{
        grid-template-columns: 1fr;
    }

        #about .about-video{
            height: 330px;
        }
            #about .about-video img{
                height: 330px;
                object-fit:cover
            }

            #about .about-benefits{
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              width: 100%;
              max-width: 100%;
            }
             #about .about-video img {
            width: 100%;}
#about .about-benefits .about-benefits-item{
    width: 100%;
    max-width: 100%;
    padding: 0;
}
#about .about-benefits {
    gap: 20px;
}
 .tired-wrapper {
        flex-direction: column;
    }

    .tired-col {
        width: 100%;
        align-items: center;
    }

    .left .tired-card:first-child,
    .left .tired-card:last-child,
    .right .tired-card:first-child,
    .right .tired-card:last-child {
        left: 0;
        right: 0;
    }

    .man-back {
        display: none;
    }
    .services_section-grid{
    grid-template-columns: 1fr 1fr;
}
.about-switch-grid {
    grid-template-columns: 1fr;
  }

.tired-card {
  width: 500px;
    display: flex;
    align-items: center;
    background: white;
    padding: 5px 12px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 0 0 transparent;
    gap: 20px;
}
.tired-card:last-child{
  margin-bottom: 40px;
}
.man-wrapper{
  display: none
}
.tired-col.center{
  display: none;
}
.tired-card:last-child{
  margin-bottom: 40px;
}
.man-wrapper{
  display: none
}
.tired-col.center{
  display: none;
}
  .about-switch-right {
    padding-left: 0;
    margin-top: 40px;
    text-align: center;
  }

  .about-switch-right img {
    margin: 0 auto;
  }

  .about-shield {
    justify-content: center;
  }
  .header__buttons {
    margin-left: 10px;
}
    .header__logo, .header__logo-link {
        height: 100px;
        width: 100px;
    }
    .header__item:not(:first-child) {
    margin-left: 20px;
}
    .header__logo-link{
      width: 80px;
    }
    #about h2{
    font-size: 24px;
}
    #about .about-info{
        grid-template-columns: 1fr;
    }

        #about .about-video{
            height: 330px;
        }
            #about .about-video img{
                height: 330px;
                object-fit:cover
            }

            #about .about-benefits{
              display: grid;
              grid-template-columns: repeat(2, 1fr);
              width: 100%;
              max-width: 100%;
            }
    #about .about-video img {
            width: 100%;
          }
          .blogs-page-blogs-grid{
  grid-template-columns: 1fr 1fr;
}
.contact-page-hero .contact-page-hero-left h2 {
    font-size: 40px;
    }
    #open_menu svg path{
  fill: #fff
}
.header__links{
  display: none;
}
.header__links.lang, .mobile__menu .header__buttons{
  display: flex;
}
.header__buttons{
  display: none;
}
.header__buttons.phone, .header__buttons.mail{
  display: flex;
}

.burger_btn{
  margin-left: 20px;
}
  #open_menu{
  display: block;
}
        }

    

@media(max-width:768px){
  .header__box-hover span{
  display: none;
}
  .blogs-page-blogs-grid{
  grid-template-columns: 1fr;
} 
.burger_btn {
        margin-left: 10px;
    }
.fullArticle_flex{
  flex-direction: column;
}
.sideBar {
        width: 100%;
    }
        .leftAll_article {
        width: 100%;
        min-width: 100%;
    }
.blogs-section{
  padding-top: 25px;
}
.footer-col.col1{
  margin-bottom: -20px;
}
.footer-col.col2{
  margin-bottom: -20px;
}
.about-tab{
  text-transform: inherit;
}
.full-tags {
  padding: 10px;
}
.full-tags span{
  font-size: 12px;
  padding: 8px 12px
}

.title-32{
  font-size: 16px;
}
.icon svg{
  width: 23px;
  height: 23px;
}
.contact-page-hero .container{
        flex-direction: column;
        }
        .contact-page-hero .contact-page-hero-left h2 {
        font-size: 30px;
        margin-bottom: 20px;
        }
        .contact-page-hero .contact-page-hero-left p {
    color: #97A1BB;
    font-size: 14px;
    }
    .contact-page-hero .container{
        gap: 20px
    }
    
    .service-inner__grid{
      grid-template-columns: 1fr;
      gap: 0;
    }
    .contact-page-hero{
        padding: 25px 0;
    }
    section {
    padding: 25px 0;
}
.questions-section{
  margin-bottom: 0;
}
    .contact-page-hero-right{
        width: 100%;
    }
    .qs-container{
        flex-direction: column;
    }
    .qs-left{
        width: 100%;
    }
    .service-inner__title {
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    max-width: 720px;
}
.about-wrap{
  padding: 0;
}
.service-inner__desc li{
  font-size: 16px;
}
    .qs-title {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
    }
    .qs-text {
    font-size: 12px;
    }
    .qs-right{
        width: 100%;
    }
    .qs-form {
    display: flex;
    gap: 25px;
    flex-direction: column;
}

.blog_full h1 {
    font-size: 18px !important;
    color: var(--blue);
    font-weight: 700 !important;
}
.icon{
  margin-right: 0;
  width: 50px;
    height: 50px;
}
.tired-card {
  width: 300px;
    display: flex;
    align-items: center;
    background: white;
    padding: 5px 12px;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 0 0 transparent;
    gap: 20px;
}
.tired-card:last-child{
  margin-bottom: 40px;
}
.man-wrapper{
  display: none
}
.tired-col.center{
  display: none;
}
.button span{
  font-size: 15px;
}
.tired-title {
  font-size: 22px;
}
.about-page-hero img {
    width: 150px;
}
.about-page-content {
  gap: 15px;
}
.about-switch-list li{
  text-align: inherit;
}
.about-tabs{
  gap: 1px;
  width: 100%;
  padding: 5px;
}
.about-switch-right{
  display: none;
}
.about-switch-list li{
  font-size: 13px;
}
.license-card {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }
    .license-title {
      font-size: 20px;
    }
    .license-image img {
    max-width: 150px;
    height: auto;
}
.fee-cards{
  grid-template-columns: 1fr;
  gap: 20px;
}
.fee-title{
  font-size: 26px;
}
.fee-table tbody td {
    padding: 20px 10px;
  font-size: 14px;}
  .fee-table thead th {
    padding: 22px 5px;
    font-size: 15px;}
    .fee-note ul{
      grid-template-columns: 1fr;
    }
.about-tab{
  padding: 15px 5px;
  font-size: 13px;
}
.about-switch-header h2 {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
}
.about-page-content h4, .about-page-content p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.52;
}
.about-page-content h1 {
    font-size: 30px;
}
 #about .about-benefits{
         grid-template-columns: 1fr;
    }
    #about .about-img-text
{
    font-size: 9px;
}
    #about h2 {
        font-size: 14px;
    }

    #about .about-right .about-info-desc {
        font-size: 12px;
    }
        .btn-default {
        font-size: 14px !important;
    }
    #about .about-info{
        padding: 0;
    }
    #about .about-img{
        display: flex;
        justify-content: center;
    }
    #about .about-img-text{
        left: 17px;
    }
        #about .about-video img {
            width: 100%;}
            .footer-col{
              width: 100%;
            }
            .copyright{
              flex-direction: column-reverse;
            }
            .empty{
              display: none;
            }
.tired-text {
    max-width: 200px;
    line-height: 1.4;
}

.services_section .press-card__hover, .other-services .press-card__hover {
      transform: translateY(0);
}
.services_section  .press-card__title, 
.services_section  .press-card__text, 
.services_section  .press-card_desc, 
.other-services  .press-card__title, 
.other-services .press-card__text, 
.other-services  .press-card_desc {
    color: #fff !important;
}
    #about h2 {
        font-size: 18px;
    }
        #about .about-right .about-info-text {
        font-size: 16px;
    }
    #about .about-right .about-info-desc {
        font-size: 16px;
    }
     #about .about-info{
        padding: 0;
    }
    .swiper-slide .projects-card__img{
      height: 220px;
    }
    .contact-bottom-inner{
      padding: 0;
    }
    .contact-us{
      padding-bottom: 0;
      padding-top: 0;
    }
    footer .logo{
      width: 115px;
    }
    .tired-section::before, .tired-section::after{
      width: 0;
      height: 0;
    }
    #about .about-img{
        display: flex;
        justify-content: center;
    }
    #about .about-img-text{
        left: 17px;
    }
        #about .about-video img {
            width: 100%;}
    .container {
        padding: 0 10px  !important;
    }
    .contact-us {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .home-hero__content{
    width: 95%;
  }
  .home-hero__content .title-104 {
    font-size: 26px;
  }
  .home-hero__content .text-24 {
    font-size: 16px;
  }
  .contact-us__contact {
    padding-left: 0;
    border-left: none;
  }

  .contact-us__contact-text {
    align-items: center;
    text-align: center;
  }

  .contact-us__img .picture {
    margin-left: 0;
  }

  .contact-us .button-ui {
    align-self: center;
  }

  .title-76 {
    font-size: 26px;
  }

  .text-24 {
    font-size: 16px;
  }
  .footer-nav__inner {
    grid-template-columns: 1fr;
  }
  .footer-col h3 {
    font-size: 20px;
  }
  .footer-col a {
    font-size: 15px;
  }
.button {
    font-size: 16px;
}
#about .about-right .about-info-buttons {
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 15px;
}
          .press-card:hover .press-card__hover {
      transform: translateY(0) !important;
  }
    .container {
        padding: 0 10px  !important;
    }
.button {
    font-size: 16px;
}
}
@media(max-width:571px){
#about .about-benefits{
    grid-template-columns: 1fr;
}
.only-desktop{
    display: none;
}
.only-mobile{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
    .services_section-grid{
    grid-template-columns: 1fr;
}

}


@media only screen and (min-width: 992px) {
  .header__item:hover .drop-menu {
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 4px 24px 0 rgba(0, 0, 0, 0.08);
  }
}
@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .header__item:hover .header-menu__dropdown-arrow {
    transform: rotate(180deg);
  }
}
