/* GENEL */
:root {
  --default-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC",
    "Hiragino Sans GB", "Microsoft Yahei UI", "Microsoft Yahei",
    "Source Han Sans CN", sans-serif;
}
* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
  background: none;
  border: none;
  text-decoration: none;
  font-family: "Nunito", sans-serif;
}

html {
  width: 100%;
  scroll-behavior: smooth; 
}

body {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(245, 245, 245, 1);
  overflow-x: hidden; 
  font-family: "Nunito", sans-serif;
  min-height: 100vh; 
  margin: 0; 
}

/* TOPBAR CONTAINER */
.topbar-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* NAV CONTAINER */
.nav-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* BANNER CONTAINER */
.banner-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

/* HEADER */
.topbar  {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 8px;
  position: relative;
  width: 100%;
  max-width: 1860px;
  height: 96px;
  margin: 0 auto;
  padding: 15px 2.6vw;
  background: #ffffff;
  border-radius: 100px;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4.4vw;
  padding: .85vw 0;
  gap: 2vw;
  width: 100%;
}

/* LOGO BLOĞU */
.topbar-logo {
  display: flex;
  /* align-items: center; */
  flex-direction: column;
  /* gap: 0.8vw; */
  min-width: 15vw;
  
}

.logo-img {
  width: 7.97vw;
}

.logo-img img {
  width: 100%;
  height: auto;
  display: block;
}

.logo-text {
  display: flex;
  flex-direction: column;
    color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 12.185839653015137px;
  font-weight: 400;
  line-height: 12.795px;
  text-align: left;
}

/* INFO BLOKLARI */
.topbar-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 5px;
  position: relative;
  width: 100%;
  max-width: 194.333px;
  z-index: 11;
}

.info-item {
display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  z-index: 12;
}

.info-item:last-child {
  border-right: none;
  padding-right: 0;
}

.info-link {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.info-link:hover {
  opacity: 0.7;
}

.info-icon {
  width: .85vw;
  height: .85vw;
}

.info-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25vw;
}

.info-label {
  font-size: 0.75vw;
  color: #111;
  line-height: 100%;
  font-weight: 300;
}

.info-value {
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 14px;
  font-weight: 400;
  line-height: 10px;
  text-align: left;
  white-space: normal;
}

.topbar-right {
	display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  z-index: 24;
}

.topbar-flag-block {
  display: flex;
  align-items: center;
  gap: 0.6vw;
  font-size: 0.85vw;
  font-weight: 400;
}

.lang-flag {
  width: 20px;
  height: 20px;
}

.lang-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flag-text {
  white-space: normal;
}

.topbar-rutube {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  font-size: 0.85vw;
  font-weight: 400;
}

.rutube-label {
  white-space: normal;
}

.r-logo {
  width: 1vw;
  height: 1vw;
}

.r-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.callback-btn {
  font-family: "Nunito", sans-serif;
  font-size: 0.85vw;
  padding: 0.55vw 1.8vw;
  border: 0.1vw solid #FE1D25;
  color: #FE1D25;
  background: transparent;
  border-radius: 2vw;
  font-weight: 400;
  cursor: pointer;
  transition: 0.2s;
  white-space: normal;
}

.callback-btn:hover {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
}

/* MOBILE MENU TOGGLE */

/* NAV MENÜ */
.main-nav {
  width: 100%;
  background: #ffffff;
  position: relative;
}

/* Menü içindeki callback butonu - varsayılan olarak gizli (büyük ekranlarda) */
.main-nav .mobile-callback-btn {
  display: none;
}

/* Mobile menu toggle - varsayılan olarak gizli */
.mobile-menu-toggle {
  display: none;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0.7vw 0 0.6vw;
  display: flex;
  align-items: center;
  gap: 1.6vw;
}
.nav-list > li{
	position:relative;
}
.nav-list-lv2{
	position: absolute;
  top: 100%;
  padding: 15px;
  background-color: #fff;
  left:-15px;
	display:none;
	width: 270px;
}
.nav-list-lv2 li{
	margin-bottom:10px;
}
.nav-list > li:hover .nav-list-lv2{
	display:block;
}

.nav-link {
  padding-bottom: 0.3vw;
color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
}

.nav-link:hover {
  color: #010101B2;
}

.nav-link.active {
  color: #010101B2;
}

/* BANNER SECTION */
.banner {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 30px;
  position: relative;
  max-width: 1860px;
 height: fit-content;
  margin: 0 auto 6vw;
  padding: 1.05vw 1.05vw 1.05vw 1.05vw;
  background: #fafbff;
  border-radius: 2.6vw;
}

.seconds {
  position: relative;
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-weight: 400;
  text-align: left;
}
.rf {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  width: fit-content;
  height: 62px;
  padding: 15px 1.25vw;
  background: #ffffff;
  border: 2px solid #f5f5f5;
  z-index: 5;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 4px 8.7px 0 rgba(158, 156, 156, 0.15);
  margin-left: 12px;
}
.banner-title span.icon,
.banner-text h1 span.icon {
  flex-shrink: 0;
  position: relative;
  width: 32px;
  height: 32px;
  background: url(../new_img/BuHhydM5fL.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 6;
  margin-top: 0;
}
.banner-title span.work-all-russia,
.banner-text h1 span.work-all-russia {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: fit-content;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
  z-index: 7;
  margin-top: 0;
}

.remote-check-3 {
  position: relative;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 3.1vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
}
.texttop,
.banner-content-inner > p.texttop{
	color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  margin-bottom: 2vw;
}
.remote-check-3 {
  position: relative;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 3.1vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
}


.banner-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  background: #FAFBFF;
  border-radius: 1.2vw;
  overflow: hidden;
}

.banner-inner {
  display: flex;
  align-items: center;
  gap: 1vw;
  width: 100%;
}

.banner-content {
  /* flex: 1; */
  max-width: 57%;
  position: relative;
  display: flex;
  flex-direction: column;
  /* gap: 5vw; */
}

.banner-content-inner {
  display: flex;
  flex-direction: column;
  gap: 4.2vw;
  border-radius: 1.2vw;
  padding: 0 1.5vw;
  position: relative;
  z-index: 1;
}

.banner-decor {
  position: absolute;
  bottom: 2vw;
  right: -3vw;
  width: 27vw;
  display: flex;
  align-items: flex-end;
  z-index: 0;
  pointer-events: none;
}

.decor-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
  mix-blend-mode: normal;
}
.banner-title {
 align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 3.1vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  margin: 0;
  letter-spacing: -0.02em;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.title-highlight {
  position: relative;
  display: inline-block;
  margin-right: 0.3vw;
}

.title-line {
  width: 4vw;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  margin-right: 0.2vw;
  object-fit: contain;
}

.title-number {
  display: inline-block;
}

.banner-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 2vw;
  font-weight: 400;
  color: #666666;
  line-height: 105%;
  margin: 0;
}

.banner-features {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
}
.check-icon {
width: 2.1vw;
  height: 2.1vw;
  object-fit: contain;
  flex-shrink: 0;
}

.banner-buttons {
  display: flex;
  gap: 1.5vw;
  margin-top: 0.8vw;
}

.btn-primary {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  padding: 1.1vw 2.8vw;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);

  color: #ffffff;
  border: none;
  border-radius: 0.4vw;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: normal;
  box-shadow: 0 2px 8px rgba(254, 29, 37, 0.2);
}
.button-f:hover,
.btn-primary:hover {
  background: linear-gradient(180deg, #FF7477 2.01%, #FE1D27 64.9%);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 29, 37, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  font-weight: 600;
  padding: 1.1vw 2.8vw;
  background: transparent;
  color: #FE1D25;
  border: 0.12vw solid #FE1D25;
  border-radius: 0.4vw;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: normal;
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(254, 29, 37, 0.2);
}

.btn-secondary:active {
  transform: translateY(0);
}

.banner-image {
  /* flex: 1; */
  /* max-width: 50%; */
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 43%;
}

.image-wrapper {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  border-radius: 2.6vw;
  overflow:hidden;
}

.main-photo {
  width: auto;
  height: 100%;
  display: block;
  object-fit: cover;
  max-width: 100%;
}

.banner-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.8vw;
  padding: 0.8vw 1.2vw;
  border-radius: 0.4vw;
}

.badge-left {
  top: 0vw;
  left: 0vw;
}

.badge-logo {
  width: 7vw;
  height: auto;
  object-fit: contain;
}



.badge-right {
  bottom: 1vw;
  right: 1vw;
  padding: 1vw;
  /* max-width: 35vw; */
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 10px;
  padding: .5vw .85vw;
}

.license-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.75vw;
  font-weight: 400;
  color: #fff;
  line-height: 1.5vw;
  white-space: normal;
  text-align: left;
}


/* VIDEO SECTION */
.video-section {
  width: 100%;
  background: #ffffff;
  /* padding: 4vw 0; */
  padding: 4vw 5vw 0 5vw;
}

.video-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.video-inner {
  display: flex;
  gap: 2vw;
  width: 100%;
}

.video-left {
  /* flex: 1; */
  max-width: 45%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}

.video-wrapper {
  position: relative;
  width: 100%;
  height: auto;
}

.video-link {
  display: block;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.video-link:hover {
  opacity: 0.9;
}

.video-thumbnail {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 0.5vw;
}

.video-caption {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  font-weight: 400;
  color: #666666;
  line-height: 105%;
  margin: 0;
  font-style: italic;
  text-align: center;
  padding: 0 6vw;
}

.video-content {
  /* flex: 1; */
  width: 55%;
  background: #ffffff;
  /* padding: 3vw; */
  border-radius: 0.5vw;
  display: flex;
  flex-direction: column;
  gap: 2.5vw;
}

.video-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.4vw;
  font-weight: 400;
  color: #151515;
  margin: 0;
  line-height: 105%;
}

.video-title-red {
  color: #FE1D25;
}

.video-features {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.video-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2vw;
}

.video-feature-icon {
  width: 2vw;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.video-feature-text {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  flex: 1;
}

.video-feature-main {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.3vw;
  font-weight: 400;
  color: #151515;
  line-height: 105%;
}

.video-feature-sub {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
}

/* WAYBILL VEHICLES SECTION (page1.html) */
.waybill-vehicles-section {
  width: 100%;
  /* background: #000000; */
  padding: 10vw 5vw 0 5vw;
}

.waybill-vehicles-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.waybill-vehicles-header {
  text-align: center;
  margin-bottom: 0;
  max-width: 80vw;
  margin-left: auto;
  margin-right: auto;
}

.waybill-vehicles-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.4vw;
  font-weight: 400;
  color: #151515;
  margin: 0;
  line-height: 1.2;
}

.waybill-vehicles-title strong {
  font-weight: 700;
}

.waybill-vehicles-title-br {
  display: block;
}

.waybill-vehicles-title-red {
  color: #FE1D25;
}

.waybill-vehicles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5vw;
  width: 100%;
}

.waybill-vehicle-card {
  background: #FAFBFF;
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.waybill-vehicle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 1.05vw rgba(255, 255, 255, 0.1);
}

.waybill-vehicle-image {
  width: 100%;
  height: auto;
  padding: 0.8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FAFBFF;
  min-height: 12vw;
}

.waybill-vehicle-img {
  width: 80%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.waybill-vehicle-content {
  padding: 1.5vw;
  display: flex;
  flex-direction: column;
  /* gap: .5vw; */
  background: #FAFBFF;
}

.waybill-vehicle-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.2vw;
  font-weight: 400;
  color: #151515;
  margin: 0;
  line-height: 1.3;
}

.waybill-vehicle-forms {
  display: flex;
  flex-direction: column;
  /* gap: 0.5vw; */
}

.waybill-vehicle-form {
  font-family: "Nunito", sans-serif;
  font-size: 0.9vw;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.4;
}

/* PROCESS SECTION */
.process-section {
  width: 100%;
  padding: 4vw 1vw 0 1vw;
}

.process-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  /* padding: 0 5vw; */
}

.process-header {
  text-align: center;
  margin-bottom: 2vw;
}

.process-title {
  color: rgb(45, 45, 45);
  font-family: Manrope,var(--default-font-family);
  font-size: 42px;
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
    margin: 0 0 2vw 0;
}

.process-title-red {
  color: #C03237;
  font-weight: 400;
}

.process-title-sub {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.8vw;
  font-weight: 400;
  color: #151515;
  margin: 0 0 0.6vw 0;
  line-height: 1.2;
}

.process-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1.1vw;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.process-steps {
  display: flex;
  flex-direction: row;
  gap: 1.5vw;
  width: 100%;
  flex-wrap: nowrap;
  align-items: stretch;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #FAFBFF;
  border-radius: 30px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a.process-step{
	border-radius: 1.6vw !important;
}

.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 1.05vw rgba(0, 0, 0, 0.12);
}

.step-image {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-bottom:-40px;
}

.step-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  padding: 1vw .5vw;
  flex: 1;
  justify-content: space-between;
  border-radius: 30px 30px 0 0;
  position: relative;
  z-index: 7;
  background: rgba(250, 251, 255, 1);

}

.step-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.1vw;
  font-weight: 600;
  color: #151515;
  margin: 0;
  line-height: 105%;
}

.step-number {
  color: #FE1D25;
  font-weight: 700;
}

.step-description {
  font-family: "Nunito", sans-serif;
  font-size: .85vw;
  font-weight: 400;
  color: #666666;
  line-height: 105%;
  margin: 0;
  flex: 1;
}

.step-result {
  font-family: "Nunito", sans-serif;
  font-size: .85vw;
  font-weight: 400;
  color: #151515;
  line-height: 105%;
  margin-top: auto;
  /* padding-top: 1.2vw; */
  /* border-top: 1px solid #e5e5e5; */
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}

.step-result strong {
  color: #151515;
  font-weight: 700;
  display: block;
  margin-bottom: 0.2vw;
}

.result-text {
  font-weight: 400;
  color: #151515;
}

/* WAYBILL PROCESS SECTION (page1.html) */
.waybill-process-section {
  width: 100%;
  background: #ffffff;
  padding: 4vw 5vw 0 5vw;
}

.waybill-process-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.waybill-process-header {
  text-align: center;
  margin-bottom: 2vw;
}

.waybill-process-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.8vw;
  font-weight: 400;
  color: #151515;
  margin: 0 0 0.6vw 0;
  line-height: 1.2;
}

.waybill-process-title strong {
  font-weight: 700;
}

.waybill-process-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1.1vw;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.waybill-process-steps {
  display: flex;
  flex-direction: row;
  gap: 1.5vw;
  width: 100%;
  flex-wrap: nowrap;
  align-items: stretch;
}

.waybill-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #FAFBFF;
  border-radius: 30px;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.waybill-process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 1.05vw rgba(0, 0, 0, 0.12);
}

.waybill-step-image {
  width: 100%;
  height: auto;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
  aspect-ratio: 20 / 10;
}

.waybill-step-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 30px 30px 0 0;
}

.waybill-step-content {
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  padding: 1vw .5vw;
  flex: 1;
  justify-content: space-between;
}

.waybill-step-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.1vw;
  font-weight: 600;
  color: #151515;
  margin: 0;
  line-height: 105%;
}

.waybill-step-number {
  color: #FE1D25;
  font-weight: 700;
}

.waybill-step-description {
  font-family: "Nunito", sans-serif;
  font-size: .85vw;
  font-weight: 400;
  color: #666666;
  line-height: 1.5;
  margin: 0;
  flex: 1;
}

/* MOBILE COMPLEX SECTION */
.mobile-complex-section {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin-top: 6vw;
  padding: 4vw 1vw 0 1vw;
}

.mobile-complex-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  /* padding: 0 5vw; */
}

.mobile-complex-header {
  text-align: center;
  margin-bottom: 2vw;
  width: 100%;
}

.mobile-complex-title {
  color: rgb(45, 45, 45);
  font-family: Manrope,var(--default-font-family);
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  margin: 0 auto 2vw;
  width:90%;
  max-width:90%;
}

.mobile-complex-title-red {
  color: #FE1D25;
  font-weight: 400;
}

.mobile-complex-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1.1vw;
  font-weight: 400;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.mobile-complex-content {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  border-radius: 2vw;
  overflow: hidden;
  align-items: stretch;
}

.mobile-complex-left {
  position: relative;
  width: 49%;
  padding: 1.35vw;
  background: #fafbff;
  border-radius: 2.6vw;
}

.complex-content-inner {
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  position: relative;
  z-index: 1;
}

.complex-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.complex-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.3vw;
  font-weight: 400;
  color: #151515;
  margin: 0;
  line-height: 1.2;
}

.complex-subtitle {
  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
  margin: 0;
}

.complex-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  padding-left: 0;
}


.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  gap: 10px;
  position: relative;
  padding: 1.05vw 1.05vw 1.05vw 1.05vw;
  box-shadow: 0 4px 4px 0 #f8faff;
  border-radius: 30px;
}
.feature-item span{
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  z-index: 16;
}
.mobile-complex-section .complex-features{
display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1vw;
}
.mobile-complex-section .complex-target{
	color: #010101;
  font-family: Manrope,var(--default-font-family);
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
}
.mobile-complex-section .feature-item{
color: #010101;
  font-family: Manrope,var(--default-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  width: 46%;
  padding: 0;
  list-style: disc;
  display: list-item;
  flex-basis: auto;
  margin-left: 1vw;
}
.mobile-complex-section .feature-item span{
	color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  max-width: 100%;
}



.feature-text {
  font-family: "Nunito", sans-serif;
  font-size: 1.05vw;
  font-weight: 300;
  color: #666666;
  line-height: 1.5;
  flex: 1;
}

.feature-text strong {
  font-weight: 400;
  color: #010101;
}

.complex-target {
  font-family: Manrope,var(--default-font-family) ;
  font-size: .95vw;
  font-weight: 700;
  color: #151515;
  margin: 0;
  line-height: 105%;
  font-style: italic;
}

.complex-buttons {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  align-items: center;
}

.btn-details {
  color: #ffffff;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  padding: 1vw 2vw;
  border-radius: 2.5vw;
  text-decoration: none;
  transition: background 0.3s ease;
  width: 49%;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
}

.btn-details:hover {
  background: #d0171f;
}

.btn-price {
  color: #FE1D25;
  background: #ffffff;
  padding: 1vw 2vw;
  border: 2px solid #FE1D25;
  border-radius: 2.5vw;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease;
  width: 49%;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
}

.btn-price:hover {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
}

.play-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.5vw;
  height: 4.5vw;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 7;
}

.play-icon-link:hover {
  transform: scale(1.1);
}

.play-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.complex-decor {
  /* margin-top: 1vw; */
  position: absolute;
  width: auto;
  height: 100%;
  left: 0vw;
  top: 0;
}

.decor-line {
  width: auto;
  height: 100%;
  display: block;
}

.mobile-complex-decor {
  position: absolute;
  bottom: 0vw;
  right: -6vw;
  width: 27vw;
  display: flex;
  align-items: flex-end;
  z-index: 0;
  pointer-events: none;
}

.mobile-decor-img {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;
}

.mobile-complex-right {
flex: 1;
  position: relative;
  width: 48%;
  height: 100%;
  display: block;
  max-height: 100%;
  border-radius: 2.6vw;
  overflow: hidden;
}

.complex-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
}

.complex-image {
  width: auto;
  height: 100%;
  display: block;
  object-fit: cover;
}

.complex-badge {
  position: absolute;
  width: 13vw;
  bottom: 1.5vw;
  left: 1.5vw;
  background: #ffffff;
  padding: .5vw;
  border-radius: 0.5vw;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.9vw;
  font-weight: 400;
  color: #151515;
  line-height: 1.4;
}

/* LEGAL SECTION */
.legal-section {
  width: 100%;
  overflow: hidden;
  margin-top: 6vw;
  padding: 0 1vw 0 1vw;
}

.legal-container {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 1vw;
}

.legal-content {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  align-items: center;
    background: #fafbff;
  border-radius: 2.6vw;
  padding: 1vw;
  overflow: hidden;
}

.legal-left {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  width: 60%;
}

.legal-title {
  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  z-index: 4;
  margin: 0;
}

.legal-title-red {
  color: #FE1D25 !important;
  font-weight: 700;
  display: inline;
}

.legal-title-line {
  width: 5vw;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  object-fit: contain;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  padding-left:1.4vw;
}

.legal-item {
  list-style-type: disc;
}

.legal-bullet {
  width: 0.5vw;
  height: 0.5vw;
  background: #010101;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.4vw;
}

.legal-text {
  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
}

.legal-info {
 color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 14px;
  font-weight: 700;
  line-height: 16.8px;
  text-align: left;
  margin: 0;
}

.legal-links {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  align-items: center;
}

.legal-link {
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  text-decoration: underline;
  white-space: normal;
  transition: color 0.3s ease;
}

.legal-link:hover {
  color: #d0171f;
}

.legal-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
}

.legal-documents {
  position: relative;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.legal-doc-single {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  /* max-width: 500px; */
}

.legal-partners {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partners-list {
  display: flex;
  flex-direction: row;
  gap: 2vw;
  width: 100%;
  flex-wrap: wrap;
  gap: 1.5vw;
}
.partners-list-img{
  display: flex;
  width:30%;
  height: 127px;
  background: #ffffff;
  border-radius: 30px;
  padding:1vw;
}
.partner-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.3s ease;
  flex: 1;
}

.partner-logo:hover {
  opacity: 1;
}

.legal-partners-section {
  width: 100%;
  background: #ffffff;
  padding: 0 5vw;
  margin-top: 2vw;
}

/* LEGAL SUPPORT HERO */
.legal-support-section {
  width: 100%;
  background: #ffffff;
  padding: 5vw 5vw 0 5vw;
}

.legal-support-card {
  width: 100%;
  display: flex;
  align-items: stretch;
  background: transparent;
  border-radius: 1.6vw;
  overflow: hidden;
  justify-content: space-between;
  box-shadow: none;
  gap: 2vw;
}

.legal-support-image {
  width: 49%;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding: 1.5vw; */
}

.legal-support-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2vw;
  display: block;
}

.legal-support-content {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 1.6vw;
  /* padding: 3vw; */
  background: transparent;
  color: #151515;
}

.legal-support-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.4vw;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: #151515;
}

.legal-support-title strong {
  font-weight: 700;
}

.legal-support-desc {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  color: #444444;
  line-height: 1.5;
  margin: 0;
}

.legal-support-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.legal-support-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9vw;
}

.legal-support-bullet {
  width: 0.55vw;
  height: 0.55vw;
  border-radius: 50%;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  flex-shrink: 0;
  margin-top: 0.45vw;
}

.legal-support-text {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  color: #151515;
  flex: 1;
}

.legal-support-note {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  font-weight: 400;
  font-style: italic;
  color: #444444;
  line-height: 1.6;
  margin: 0;
}

.legal-support-note strong {
  font-weight: 700;
}

.medmap-details-section {
  width: 100%;
  background: #ffffff;
  padding: 5vw;
  margin-top: 4vw;
  position: relative;
}

.medmap-details-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2vw;
  /* background: #ffffff; */
  position: relative;
  z-index: 1;
}

.medmap-details-content {
  width: 49%;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}

.medmap-details-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.6vw;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  color: #151515;
}

.medmap-details-title strong {
  font-weight: 700;
}

.medmap-details-desc {
  font-family: "Nunito", sans-serif;
  font-size: 1.05vw;
  font-weight: 400;
  color: #444444;
  line-height: 1.55;
  margin: 0;
}

.medmap-details-subtitle {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 600;
  color: #151515;
  margin: 1vw 0 0.2vw 0;
  line-height: 1.35;
}

.medmap-details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.medmap-details-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8vw;
}

.medmap-details-bullet {
  width: 1.4vw;
  height: 1.4vw;
  border-radius: 50%;
  border: 0.12vw solid #c8c8c8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c8c8c8;
  font-size: 0.9vw;
  line-height: 1;
  flex-shrink: 0;
}

.medmap-details-text {
  font-family: "Nunito", sans-serif;
  font-size: 1.02vw;
  font-weight: 400;
  color: #151515;
  line-height: 1.5;
}

.medmap-details-note {
  font-family: "Nunito", sans-serif;
  font-size: 0.98vw;
  font-weight: 400;
  color: #444444;
  line-height: 1.6;
  margin: 0.8vw 0 0 0;
}

.medmap-details-note strong {
  font-weight: 700;
}

.medmap-details-actions {
  display: flex;
  gap: 1vw;
  margin-top: 1vw;
}

.details-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1vw;
  font-weight: 700;
  padding: 1vw 2.4vw;
  border-radius: 0.9vw;
  text-decoration: none;
  transition: all 0.2s ease;
  border: 0.12vw solid transparent;
  white-space: normal;
}

.details-btn-primary {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  border-color: #fe1d25;
  box-shadow: 0 0.4vw 1vw rgba(254, 29, 37, 0.15);
}

.details-btn-primary:hover {
  background: #d01820;
  border-color: #d01820;
  box-shadow: 0 0.6vw 1.4vw rgba(254, 29, 37, 0.2);
}

.details-btn-outline {
  background: transparent;
  color: #fe1d25;
  border-color: #fe1d25;
}

.details-btn-outline:hover {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  box-shadow: 0 0.6vw 1.4vw rgba(254, 29, 37, 0.2);
}

.medmap-details-image {
  width: 49%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.medmap-details-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 1.6vw;
  object-fit: cover;
}

.medmap-details-decor {
  position: absolute;
  left: 34%;
  /* right: 0; */
  bottom: 5vw;
  width: 20vw;
  /* opacity: 0.25; */
  pointer-events: none;
  z-index: 0;
}

.medmap-decor-img {
  width: 100%;
  height: auto;
  display: block;
}

/* ARTICLE HERO */
.article-section {
  width: 100%;
  padding: 5vw 5vw 5vw 5vw;
}

.article-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4vw;
}

.article-image-wrapper {
  width: 100%;
  border-radius: 1.6vw;
  overflow: hidden;
}

.article-image {
  width: 100%;
  display: block;
  object-fit: cover;
}

.article-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.2vw;
  font-weight: 400;
  color: #151515;
  margin: 0;
  text-align: center;
}

.article-subtitle {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.4vw;
  font-weight: 400;
  color: #151515;
  margin: 0;
  text-align: left;
  width: 100%;
}

.article-date {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  color: #969696;
  align-self: flex-start;
}

.article-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9vw 2.4vw;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1vw;
  font-weight: 700;
  border-radius: 1vw;
  text-decoration: none;
  box-shadow: 0 0.4vw 1vw rgba(254, 29, 37, 0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.article-btn:hover {
  background: #d01820;
  box-shadow: 0 0.6vw 1.4vw rgba(254, 29, 37, 0.2);
  transform: translateY(-2px);
}





/* DEVICE FEATURES SECTION */
.device-features-section {
  width: 100%;
  padding: 5.5vw 5vw 0vw 5vw;
  /* background: #ffffff; */
}

.device-features-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2vw;
}

.device-features-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.4vw;
  font-weight: 400;
  text-align: center;
  color: #151515;
  line-height: 1.3;
  margin: 0;
}

.device-features-title strong {
  font-weight: 700;
}

.device-title-break {
  display: inline;
}

.device-features-desktop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2vw;
  width: 100%;
  position: relative;
  padding: 1vw 0.5vw;
}

.device-features-col {
  width: 25%;
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  align-items: center;
}
.device-features-left .feature-card {
  flex-direction: row-reverse;
  text-align: right;
  justify-content: flex-start;
}
.device-features-left .feature-text {
  align-items: flex-end;
}
.device-features-right .feature-card {
  justify-content: flex-start;
}

.device-main-wrap {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.device-features-visual {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.device-main-image {
  width: 100%;
  max-width: 100%;
  border-radius: 1.2vw;
  display: block;
  position: relative;
  z-index: 1;
}

.device-features-section .feature-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 1vw;
  padding: 1.1vw 1.3vw;
  box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.9vw;
  width: 100%;
}

.device-features-section .feature-card::after {
  content: "";
  position: absolute;
  /* top: 50%; */
  height: 2px;
  background: #cfcfcf;
  /* transform: translateY(-50%); */
  transition: background 0.2s ease;
  pointer-events: none;
  /* transform: rotate(
356deg); */
}

.line-left-1::after {
  width: 20vw;
  right: -18.1vw;
  transform: rotate(369deg);
  top: 62%;
}

.line-left-2::after {
  width: 23.5vw;
  right: -19.5vw;
  top: -9%;
  transform: rotate(
143deg);
}

.line-left-3::after {
  width: 19vw;
  right: -15vw;
  transform: rotate(
138deg);
  top: -8%;
}

.line-right-1::after {
  width: 11vw;
  left: -8vw;
  top: 55%;
  transform: rotate(349deg);
}

.line-right-2::after {
  width: 12.5vw;
  left: -10.5vw;
  top: 35%;
  transform: rotate(378deg);
}

.line-right-3::after {
  width: 29vw;
  left: -27vw;
  top: 16%;
  transform: rotate(377deg);
}

.device-features-section .feature-card:hover::after {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
}

.device-features-section .feature-icon {
  width: 3.2vw;
  height: 3.2vw;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.device-features-section .feature-text h4 {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.1vw;
  font-weight: 700;
  color: #151515;
  margin: 0 0 0.35vw 0;
}

.device-features-section .feature-text p {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  font-weight: 400;
  color: #444444;
  margin: 0;
  line-height: 1.45;
}






.feature-card {
  position: relative;
  background: #FAFBFF;
  border: 1px solid #969696;
  border-radius: 2vw;
  padding: 1vw;
  box-shadow: 0 0.8vw 1.6vw rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 0.9vw;
  width: 100%;
  z-index: 3;
}

.feature-icon {
  width: 3.2vw;
  height: 3.2vw;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.feature-text h4 {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.1vw;
  font-weight: 700;
  color: #151515;
  margin: 0 0 0.35vw 0;
}

.feature-text p {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  font-weight: 400;
  color: #444444;
  margin: 0;
  line-height: 1.45;
}

.device-features-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1vw;
  font-weight: 700;
  padding: 1.1vw 2.4vw;
  border-radius: 0.9vw;
  text-decoration: none;
  box-shadow: 0 0.8vw 1.6vw rgba(254, 29, 37, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  margin-top: 8px;
}
.device-features-btn-desktop {
  display: inline-flex;
}

.device-features-btn:hover {
  background: #d01820;
  box-shadow: 0 16px 28px rgba(254, 29, 37, 0.24);
  transform: translateY(-2px);
}

.device-features-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
  background: #ffffff;
  padding: 10px 4px 0;
  margin-top: 6px;
}

.device-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  border-radius: 50%;
  font-family: Manrope,var(--default-font-family) ;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 3px;
}

.device-features-note p {
  margin: 0;
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  line-height: 1.5;
  color: #555555;
}



/* BUSSINES FORMAT  */

.business-format {
  width: 100%;
  margin-top: 6vw;
  padding: 0 5vw;
}

.bf-container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}


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

.bf-title {
  color: rgb(45, 45, 45);
  font-family: Manrope,var(--default-font-family);
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  margin: 0 0 1vw 0;
}

.bf-title span {
  color: #fe1d25;
  font-weight: 700;
}

.bf-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  color: #777777;
  margin: 0;
}


.bf-cards {
  display: flex;
  gap: 2vw;
}


.bf-card {
  flex: 1;
  background: #FAFBFF;
  border-radius: 1.6vw;
  padding: 2vw;
  border: 0.14vw solid transparent;

  display: flex;
  flex-direction: column;
  gap: 1.2vw;
  min-height: 30vw;

  box-shadow: 0 0.4vw 1vw rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
  border: 1px solid transparent;
}
.results-card:hover,
.bf-card:hover {
  background: #ffffff;
  transform: translateY(0.4vw);
  box-shadow: 0 1vw 2.2vw rgba(0, 0, 0, 0.12);
  border: 1px solid #fe1d25;
}

.bf-card-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.4vw;
  font-weight: 600;
  line-height: 1.3;
  color: #151515;
  margin: 0;
}
.bf-card-title span,
.bf-card-title b{
	color: #fe1d25;
}

.bf-card-title .muted {
  color: #fe1d25;
  font-weight: 700;
}

.bf-card-title .red {
  color: #fe1d25;
  font-weight: 600;
}

.bf-intro {
  font-family: "Nunito", sans-serif;
  font-size: 0.87vw;
  color: #555555;
  margin: 0;
}

.bf-list {
  display: flex;
  flex-direction: column;
  gap: 0.1vw;
  padding-left: 1.2vw;
}

.bf-list li {
  list-style: none;
  position: relative;
  color: #010101;
  font-family: Manrope,var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  margin-bottom: 6px;
}

.bf-list li::before {
  content: "●";
  position: absolute;
  left: -1.2vw;
  top: 0;
  font-size: 0.9vw;
  color: #151515;
}

.bf-list li span {
  font-family: "Nunito", sans-serif;
  font-size: 0.87vw;
  color: #333333;
  line-height: 1.4;
}

.bf-list strong {
  font-weight: 700;
}

/* PRICE BLOCK */
.bf-price {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
}

.price-main {
color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;        
}

.price-main strong {
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}
.price-main strong span{
color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}


.bf-btn {
  margin-top: 1vw;
  width: 100%;
  padding: 1vw 0;
  border-radius: 2vw;
  border: none;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  cursor: pointer;
  box-shadow: 0 0.3vw 1vw rgba(254, 29, 37, 0.25);
  transition: 0.25s ease;
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
}

.bf-btn:hover {
  background: #d81c24;
  transform: translateY(-0.25vw);
}


/* RELIABILITY SECTION */
.reliability-section {
	width: 100%;
	overflow: hidden;
	margin-top: 6vw;
	padding: 0 1vw 0 1vw;
}
.reliability-section  .mobile-complex-title{
	color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 42px;
  font-weight: 400;
  line-height: 46.2px;
  text-align: center;
}
.reliability-container {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4vw;
  flex-direction: column;
}

.reliability-content {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.rel-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.3vw;
  font-weight: 400;
  color: #151515; /* Proje ana rengi */
  line-height: 1.1;
  margin-bottom: 1.5vw;
}

.rel-title .red {
  color: #FE1D25; /* Proje kırmızısı */
  font-weight: 400;
}

.rel-subtitle {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.2vw;
  font-weight: 600;
  color: #151515;
  margin-bottom: 1.5vw;
  line-height: 1.3;
}


.rel-quote-block {
  display: flex;
  gap: 1.2vw; 
  margin-bottom: 2vw;
  align-items: flex-start; 
}


.rel-line-img {
  width: 0.6vw; 
  height: auto;
  object-fit: contain;
  margin-top: 0.3vw; 
}

.rel-quote-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  color: #555555; 
  line-height: 1.5;
  flex: 1;
}

.rel-quote-text strong {
  color: #151515; 
  font-weight: 700;
}

.rel-list {
  display: flex;
  flex-direction: row;
  gap: 1vw;
  margin-bottom: 2vw;
}

.rel-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8vw;
  flex-direction: column;
    padding: 33px 1.05vw;
  background: rgb(255, 255, 255);
  z-index: 5;
  border-radius: 30px;
  box-shadow: rgb(248, 250, 255) 0px 4px 4px 0px;
}

.rel-num {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-weight: 700;
  font-size: 0.9vw;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1vw;
}

.rel-text {
  color: rgb(45, 45, 45);
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 26.4px;
  text-align: left;
}

.rel-text strong {
  font-weight: 700;
  color: #151515;
}

.rel-btn {
  align-self: flex-start;
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  color: #ffffff;
  font-family: "Nunito", sans-serif; 
  border-radius: 2.5vw; 
  padding: 1vw 2.5vw; 
  font-size: 1vw;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(254, 29, 37, 0.3); 
}

.rel-btn:hover {
  background-color: #d6161d;
  transform: translateY(-2px);
}

.reliability-image {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: flex-end;
}

.rel-img {
  width: 100%;
  height: auto;
  border-radius: 2vw;
  object-fit: cover;
  display: block;
  max-height: 540px;
}


/* REPUTATION SECTION */
.reputation-section {
  width: 100%;
  overflow: hidden;
  padding: 0 1vw 0 1vw;
}

.reputation-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.rep-title {
  color: rgb(45, 45, 45);
  font-family: Manrope,var(--default-font-family);
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 3vw;
}

.rep-title .red {
  color: #FE1D25;
  font-weight: 400;
}

.rep-content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 2vw;
  margin-bottom: 3vw;
}

.rep-left {
  width: 49%;
  position: relative;
  background: #FAFBFF;
  border-radius: 2vw;
}

.rep-img-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  padding: 61px 40px 61px 40px;
    background: #fafbff;
  border-radius: 2.6vw;
  gap: 40px;
}

.rep-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rep-text-box {
	display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  position: relative;
    color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 26.4px;
  text-align: left;
}

.rep-text-box p {
    color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 26.4px;
  text-align: left;
  margin: 0;
}

.rep-text-box strong {
  font-weight: 700;
}

.rep-right {
  width: 49%;
  background: #FFFFFF; 
  border-radius: 2vw;
  padding: 3vw 2vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5vw;
}

.rep-icon-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 1vw;
}

.rep-icon-row.center-row {
  justify-content: center;
  gap: 3vw;
}

.rep-icon-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	text-align: left;
}

.rep-icon-item img {
  height: 2.5vw;
  width: auto;
  object-fit: contain;
  margin-bottom: 1vw;
}

.rep-icon-item p {
  margin: 0;
    color: rgb(1, 1, 1);
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
}

.wide-item {
  max-width: 45%;
}

.rep-btn {
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  border-radius: 2.5vw;
  padding: 1vw 3vw;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 15px rgba(254, 29, 37, 0.2);
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
  width:100%;
  max-width: 430px;
}

.rep-btn:hover {
  background-color: #d6161d;
  transform: translateY(-2px);
}

/* COMPLEX SOLUTION SECTION */
.complex-solution-section {
	width: 100%;
	overflow: hidden;
	margin-top: 6vw;
	padding: 0 1vw 0 1vw;
}

.complex-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.complex-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 3vw;
  position:relative;
}

.complex-text-col {
  width: 100%;
  position:absolute;
  bottom:1.05vw;
  z-index:7;
  width: 100%;
  max-width: 100%;
  padding: 0 1.05vw;
}

.complex-header-block {
  margin-bottom: 1.5vw;
}

.complex-title {
  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  text-align: left;
  white-space: normal;
  margin: 0;
}

.complex-subtitle-row {
  display: flex;
  align-items: center;
  gap: 1vw;
  margin-top: 0.5vw; /
}

.complex-decor-line {
  width: 6vw; 
  height: auto;
  object-fit: contain;
}

.complex-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom:1.05vw;
}
.complex-list.two-row{
  margin-bottom:0;
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.complex-list li {
  position: relative;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.8px;
  text-align: left;
  padding: 1.05vw 1.05vw 1.05vw 1.05vw;
  background: #ffffff;
  z-index: 1;
  border-radius: 30px;
  width:100%;
  max-width:533px;
  min-height:177px;
  flex-grow: 1
}
.complex-list li strong,
.complex-list li b{
	color: #000000;
	font-family: Manrope,var(--default-font-family) ;
	font-size: 1.25vw;
	font-weight: 400;
	line-height: 25.2px;
	text-align: left;
	display:block;
}
.complex-list.two-row li {
  max-width: calc(20% - 20px);
}
.complex-list strong {
  font-weight: 700;
  color: #151515;
}

.complex-img-col {
  width: 100%;
  height: auto;
}

.complex-main-img {
  width: 100%;
  height: auto;
  border-radius: 2vw; 
  object-fit: cover;
  display: block;
  max-height:900px;
}
.complex-vehicles {
  width: 100%;
  display: flex;
  justify-content: space-between; 
  align-items: center;
  padding: 0 2vw;
  margin-top: 2vw; 
}

.vehicle-img {
  width: 24%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* LEADERS SECTION */
.leaders-section {
width: 100%;
  overflow: hidden;
  margin-top: 6vw;
  padding: 0 1vw 0 1vw;
}

.leaders-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.leaders-title {
  color: rgb(45, 45, 45);
  font-family: Manrope,var(--default-font-family);
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  text-align: center;
  margin-bottom: 3vw;
}

.leaders-title .red {
  color: #FE1D25;
}

.leaders-slider {
  width: 100%;
  margin-bottom: 2vw;
}

.leader-item {
  border: 1px solid #EAEAEA;
  border-radius: 0.8vw;
  height: auto;
  display: flex;
  width: calc(100% - 30px);
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
  margin:0 auto;
  border-radius: 65.789px;
  overflow: hidden;
}

.leader-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.leader-item img {
  max-width: 100%;
  max-height: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.related-grid .owl-nav,
.leaders-slider .owl-nav {
position: relative;
  width: 120px;
  transform: translateY(0);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  margin: 1.05vw auto 0 !important;
  
}

.related-grid .owl-nav button.owl-prev,
.related-grid  .owl-nav button.owl-next,
.leaders-slider .owl-nav button.owl-prev,
.leaders-slider .owl-nav button.owl-next {
  pointer-events: auto; 
  width: 3vw;
  height: 3vw;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
  opacity: 1;
  margin: 0 !important;
  flex-wrap: nowrap;
  gap: 11.364px;
  width: 50px;
  height: 50px;
  padding: 11.364px 11.364px 11.364px 11.364px;
	background: #ffffff;
  border-radius: 10px;
}
.related-grid .owl-nav button.owl-prev,
.leaders-slider .owl-nav button.owl-prev{
	transform: rotate(180deg);
}
.related-grid .owl-nav button.owl-next path,
.related-grid .owl-nav button.owl-prev path,
.leaders-slider .owl-nav button.owl-next path,
.leaders-slider .owl-nav button.owl-prev path{
	fill: #fe1d25;
}

.related-grid .owl-nav button.owl-prev:hover,
.related-grid .owl-nav button.owl-next:hover,
.leaders-slider .owl-nav button.owl-prev:hover,
.leaders-slider .owl-nav button.owl-next:hover {
  background: #fe1d25!important; 
}
.related-grid .owl-nav button.owl-prev:hover path,
.related-grid .owl-nav button.owl-next:hover path,
.leaders-slider .owl-nav button.owl-prev:hover path,
.leaders-slider .owl-nav button.owl-next:hover path {
  fill: #ffffff;
}

.nav-arrow-svg {
  width: 1vw;
  height: 1vw;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.leaders-btn {
  display: inline-block; 
  text-decoration: none; 
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  padding: 1vw 3vw;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  box-shadow: 0 4px 15px rgba(254, 29, 37, 0.25);
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
}

.leaders-btn:hover {
  background-color: #d6161d;
  transform: translateY(-2px);
  color: #ffffff;
}

/* RESULTS SECTION */
.results-section {
	width: 100%;
	overflow: hidden;
	margin-top: 6vw;
	padding: 0 1vw 0 1vw;
	margin-bottom: 2vw;
}

.results-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.results-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.4vw;
  font-weight: 400;
  color: #151515;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 4vw;
}

.results-title .red {
  color: #FE1D25;
}

.results-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 3vw;
  padding-bottom:4vw;
}

.results-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  gap: 30px;
  position: relative;
  height: 606px;
  border: 2px solid #ebebeb;
  z-index: 4;
  border-radius: 30px;
  box-sizing: content-box;
  background:#fff;
}
.rewes-new .card-logo {
  max-width: 100%;
}
.card-category {
display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 16px;
  position: relative;
  min-height: 244px;
  padding: 1.05vw 1.05vw 1.05vw 1.05vw;
  background: #fafaff;
  z-index: 6;
  border-radius: 30px;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 26.4px;
  text-align: left;
  transition: all 0.3s ease;
}
.results-card:hover .card-category{
  background: #fe1d25;
  color:#fff;
}
.results-card:hover .card-textp,
.results-card:hover .card-quote{
  color:#fff;
  opacity:1;
}
.card-category .card-textp{
font-family: Manrope,var(--default-font-family) ;
font-weight: 500;
font-style: Medium;
font-size: 0.84vw;
line-height: 105%;
letter-spacing: 0%;
opacity: 0.5;
}
.footer-col.brand-col > div{
display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  gap: 10px;
  
}
.footer-col.brand-col > div p{
font-family: Manrope,var(--default-font-family) ;
font-weight: 400;
max-width: 270px;
font-size: 16px;
line-height: 1.1;
letter-spacing: 0%;
}
.card-logo-wrapper {
align-self: stretch;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  position: relative;
  min-height: 0;
  background-size: contain;
  z-index: 5;
  border-radius: 30px 30px 0 0;
  align-items: center;
  justify-content: center;
  display: flex;
}
.rewes-new .card-logo-wrapper {
  height: fit-content;
  border: 1px solid #EAEAEA;
  border-radius: 0.8vw;
  overflow:hidden;
}

.card-logo {
  max-width: 97%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

.card-quote {
color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  opacity: 0.6;
  line-height: 1.6;
  margin: 0;
}

/* FAQ SECTION */
.faq-section {
width: 100%;
  overflow: hidden;
  padding: 0 1vw 0 1vw;
  margin-bottom: 6vw;
}

.faq-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* max-width: 80vw; */
  margin: 0 auto;
}

.faq-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.4vw;
  font-weight: 400;
  color: #151515;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 3vw;
}

.faq-title .red {
  color: #FE1D25;
}

.faq-list {
  width: 100%;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.faq-item {
  background: #fafaff;
  border-radius: 2.6vw;
  overflow: hidden;
  transition: background 0.3s ease;
  width: calc(50% - 20px);
}

.faq-item.active {
  background: #F5F7FF; 
}

.faq-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
    padding: 16px 25px 16px 25px;
  cursor: pointer;
  gap: 2vw;
}

.faq-question {
color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  flex: 1;
}

.faq-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.faq-icon::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #0A0909;
  transform: translateY(-50%);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.faq-icon::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #0A0909;
  transform: translateX(-50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-item.active .faq-icon::before {
  background: linear-gradient(180deg, #ff7479, #fe1d25); 
}

.faq-item.active .faq-icon::after {
  transform: translateX(-50%) rotate(90deg); 
  opacity: 0; 
}

.faq-body {
  display: none; 
  padding: 0 2vw 1.5vw 2vw;
  border-top: 1px solid transparent; 
}

.faq-body p {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  color: #555555;
  line-height: 1.5;
  margin: 0;
}

.faq-btn {
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s;
  padding: 12px 14px 12px 14px;
  border: 1px solid #fe1d25;
  background-color: #ffffff;
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
  width: 100%;
  height: 100%;
  border-radius: 2.6vw !important;
}

.faq-btn:hover {
  color: #ffffff;
  background-color: #d6161d;
  transform: translateY(-2px);
}

/* CONTACTS SECTION */
.contacts-section {
width: 100%;
  overflow: hidden;
  padding: 0 1vw 0 1vw;
  margin-bottom: 6vw;
}

.contacts-container {
  width: 100%;
  display: flex;
  gap: 1vw;
  flex-wrap: wrap;
}

.contacts-left {
  width: 48%;
  position: relative;
  z-index: 20; 
}

.form-box {
  display: flex;
  flex-direction: column;
  padding: 25px 40px 25px 40px;
  background: #fafaff;
  border-radius: 30px;
}

.form-title {
color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  white-space: normal;
  margin-bottom: 0.5vw;
}

.form-subtitle {
color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  white-space: normal;
  margin-bottom: 2vw;
}

.main-form {
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
}

.form-group label {
color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  white-space: normal;
  margin-left: 0.5vw;
}

.form-group input {
  width: 100%;
  padding: 1vw 1.5vw;
  border: 1px solid #C4C4C4;
  border-radius: 0.8vw;
  background: #ffffff;
  outline: none;
  transition: border-color 0.3s;
  color: rgba(1, 1, 1, 0.4);
  font-family: Manrope,var(--default-font-family) ;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  white-space: normal;
}

.form-group input::placeholder {
  color: #999999;
  opacity: 1;
}

.form-group input:focus {
  border-color: #FE1D25;
}

.form-submit-btn {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	flex-shrink: 0;
	gap: 10px;
	position: relative;
	width: 100%;
	max-width: 430px;
	height: 60px;
	padding: 12px 14px;
	background: linear-gradient(180deg, #ff7479, #fe1d25);
	z-index: 20;
	border-radius: 10px;
	box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
	color: #ffffff;
	font-family: Manrope,var(--default-font-family) ;
	font-size: 16px;
	font-weight: 400;
	line-height: 17px;
	text-align: center;
	white-space: normal;
}

.form-submit-btn:hover {
  background: #d6161d;
  transform: translateY(-2px);
}

.form-agreement {
color: rgba(1, 1, 1, 0.7);
  font-family: Manrope,var(--default-font-family) ;
  font-size: 12px;
  font-weight: 400;
  line-height: 13.2px;
  text-align: left;
}

.policy-link {
  color: #151515;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.policy-link:hover {
  border-bottom: 1px solid #151515;
}

.contacts-right {
  width: 48%;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
  position: relative;
  z-index: 20;
  padding: 25px 40px 25px 40px;
  background: #fafaff;
  border-radius: 30px;
  justify-content: flex-start;
}

.dept-list {
  display: flex;
  flex-direction: column;
  gap: .75vw;
}

.dept-item {
  background: #ffffff;
  border: 1px solid #EAEAEA;
  border-radius: 2vw;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.dept-item:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.dept-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 2vw;
  cursor: pointer;
  background: #F9FCFF;
  transition: background 0.3s;
}

.dept-item.active .dept-header { background: #F9FCFF; } 

.dept-name {
color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 600;
  line-height: 21px;
  text-align: left;
  white-space: normal;
}

.dept-arrow {
  width: 2.2vw;
  height: 2.2vw;
  color: #151515;
  transition: transform 0.3s ease;
}

.dept-item.active .dept-arrow {
  transform: rotate(180deg);
}

.dept-content {
  display: none; 
  padding: 1vw 2vw 1.5vw 2vw;
  border-top: 1px solid #EAEAEA;
  background: #ffffff;
}

.dept-content p {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  color: #333333;
  margin: 0;
  line-height: 1.5;
}

.contacts-link-btn {
	display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 437.5px;
  height: 60px;
  padding: 12px 14px 12px 14px;
  border: 1px solid #fe1d25;
  z-index: 48;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
}

.contacts-link-btn:hover {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
}

.contacts-decor-img {
  position: absolute;
  bottom: -9vw;
  right: 2vw;
  width: 22vw;
  height: auto;
  z-index: -1;
  pointer-events: none;
  opacity: 0.8;
}
/* --- FOOTER SECTION --- */
.main-footer {
  width: 100%;
  background: rgba(205, 204, 204, 0.7);
  padding: 4vw 0 2vw 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
  padding: 4vw 5vw 2vw 5vw;
  margin-top: 0;
}

.footer-decor-img {
  position: absolute;
  top: -10vw;  
  left: 20%;    
  width: 50vw;   
  height: auto;
  z-index: 1;   
  pointer-events: none; 
  opacity: 0.6;  
}

.footer-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2; 
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 3vw;
}

.footer-col {
  display: flex;
  flex-direction: column;
}
.footer-col.contact-nis{
	flex-direction: row;
	flex-wrap: wrap;
}
.footer-col.contact-nis .footer-heading{
	display:none;
}
.footer-col.contact-nis .contact-details{
	width: 100%;
}




.brand-col {
  width: 25%;
  gap: 0.5vw;
}

.footer-logo img {
  width: 8vw;
  height: auto;
  display: block;
}

.footer-desc {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 0.8vw;
  color: #555555;
  line-height: 1.4;
}

.footer-copyright-text {
color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
}

.links-col {
  width: 20%;
}

.footer-heading {
color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  white-space: normal;
  margin-bottom: 1.2vw;
}

.footer-nav {
list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3vw;
  margin-bottom: 2.6vw;
}

.footer-nav li a {
color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
}

.footer-nav li a:hover {
  color: #FE1D25;
}

.contact-col {
  width: 25%;
}
.contact-col.button-block{
	flex-direction: row;
	justify-content: center;
}
.footer-col.links-col .mobi img,
.contact-col.button-block img{
	width:25px;
	height:25px;
	margin-left: 10px;
}
.contact-col.button-block .button-left{
display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 10px;
  color: #010101;
}
.contact-col.button-block .button-left,
.contact-col.button-block .button-right{
	 width: 50%;
}
.contact-col.button-block button.btn-primary{
	display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 60px;
  padding: 12px 14px 12px 14px;
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  z-index: 7;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
  margin-bottom:10px;
}
.contact-col.button-block button.callback-btn{
	display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 260px;
  height: 60px;
  padding: 12px 14px 12px 14px;
  border: 1px solid #fe1d25;
  z-index: 9;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
}
.contact-col.button-block button.callback-btn:hover{
	color:#fff;
}
/* footer-contacts */
.footer-contacts{
	display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 255px;
  z-index: 4;
}
.footer-contacts .frame-1 {
display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  min-width: 0;
  height: auto;
}
.footer-contacts .contact-info {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 22px;
  color: #010101;
  font-family: Manrope, var(--default-font-family);
  font-size: 1.05vw;
  font-weight: 600;
  line-height: 22px;
  text-align: left;
  white-space: normal;
  z-index: 1;
}
.footer-contacts .email {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 100%;
  max-width: 303px;
  height: 17px;
  color: #000000;
  font-family: Nunito, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: left;
  white-space: normal;
  z-index: 2;
}
.footer-contacts .frame-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 5px;
  position: relative;
  width: 100%;
  max-width: 194.333px;
  z-index: 3;
}
.footer-contacts .frame-3 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 106px;
  z-index: 4;
}
.footer-contacts .frame-4 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 4px;
  position: relative;
  width: 16px;
  z-index: 5;
}
.footer-contacts .tabler-clock {
  flex-shrink: 0;
  position: relative;
  width: 16px;
  height: 16px;
  background: url(../new_img/8BMM71giEt.png)
    no-repeat center;
  background-size: cover;
  z-index: 6;
  overflow: hidden;
}
.footer-contacts .pn-vs {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 80px;
  height: 10px;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 10px;
  text-align: left;
  white-space: normal;
  z-index: 7;
}
.footer-contacts .frame-5 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 141px;
  z-index: 8;
}
.footer-contacts .frame-6 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 4px;
  position: relative;
  width: 16px;
  z-index: 9;
}
.footer-contacts .tabler-phone {
  flex-shrink: 0;
  position: relative;
  width: 16px;
  height: 16px;
  background: url(../new_img/v8XdmhYarx.png)
    no-repeat center;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.footer-contacts .phone-number {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 100%;
  max-width: 115px;
  height: 12px;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 12px;
  text-align: left;
  white-space: normal;
  z-index: 11;
}
.footer-contacts .frame-7 {
display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  min-width: 0;
  z-index: 12;
  padding-left: 3px;
}
.footer-contacts .vector {
  flex-shrink: 0;
  position: relative;
  width: 10px;
  height: 10px;
  background: url(../new_img/50AbeZah6Y.png)
    no-repeat center;
  background-size: cover;
  z-index: 13;
}
.footer-contacts .answer-time {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 16px;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
  z-index: 14;
}
.footer-contacts .frame-8 {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 4px;
  position: relative;
  width: 52px;
  z-index: 15;
}
.footer-contacts .telegram-logo-block {
  flex-shrink: 0;
  position: relative;
  width: 2.25vw;
  height: 2.25vw;
  background: url(../new_img/m8pP4CenHg.png)
    no-repeat center;
  background-size: cover;
  z-index: 16;
  overflow: hidden;
}
.footer-contacts .telegram-logo-block-9 {
  flex-shrink: 0;
  position: relative;
  width: 2.25vw;
  height: 2.25vw;
  background: url(../new_img/mavhxRYUTe.png)
    no-repeat center;
  background-size: cover;
  z-index: 17;
  overflow: hidden;
}












.contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.4vw;
  margin-bottom: 1.5vw;
}

.footer-phone {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1vw;
  font-weight: 400;
  color: #151515;
}

.footer-email {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  color: #333333;
}

.footer-rutube-big img {
  width: 2vw;
  height: 2vw;
  object-fit: contain;
  display: block;
}

.action-col {
  width: 25%;
  align-items: center;
  justify-content: flex-end;
  gap: 1vw;
  flex-direction: row;
}

.footer-rutube-small {
  display: flex;
  align-items: center;
  gap: 0.5vw;
}

.footer-rutube-small span {
  font-family: "Nunito", sans-serif;
  font-size: 0.85vw;
  color: #151515;
}

.footer-rutube-small img {
  width: 1.2vw;
  height: 1.2vw;
}

.footer-btn {
  padding: 0.6vw 1.5vw;
  border: 1px solid #FE1D25;
  color: #FE1D25;
  border-radius: 2vw;
  background: transparent;
  font-family: "Nunito", sans-serif;
  font-size: 0.9vw;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.footer-btn:hover {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
}

.footer-divider {
  width: 100%;
  height: 1px;
  margin-bottom: 1.5vw;
  position: relative;
  z-index: 2;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Nunito", sans-serif;
  font-size: 0.85vw;
  color: #151515;
  position: relative;
  z-index: 2;
}

.footer-bottom a {
  color: #151515;
  transition: color 0.2s;
}

.footer-bottom a:hover {
  color: #FE1D25;
}




.serv-title-custom {
  max-width: 95%;
  font-weight: 400 !important;
}

.serv-title-sub {
  display: block;
  font-size: 0.75em;
  margin-top: 0.5vw;
  margin-bottom: 0.5vw;
  color: #151515;
}

.serv-line-fix {
  width: 4vw;
  margin: 0 0.5vw 0.5vw 0.5vw;
  vertical-align: middle;
}

.serv-desc-text {
  font-size: 2vw;
  /* margin-top: 1.5vw !important; */
  /* margin-bottom: 2.5vw !important; */
  max-width: 100%;
  color: #555555 !important;
}

.serv-buttons-row {
  align-items: center;
  gap: 1.5vw;
}

.serv-btn-wrap {
  position: relative;
  display: inline-block;
}

.serv-badge {
  position: absolute;
  top: -1.5vw;
  right: -2.5vw;
 
  color: #ffffff;
  font-family: "Nunito", sans-serif;
  font-size: 0.75vw;
  line-height: 1.2;
  font-weight: 600;
  padding: 0.5vw 1vw;
  border-radius: 0.8vw 0.8vw 0.8vw 0;
  transform: rotate(5deg);
  box-shadow: 0 0.4vw 1vw rgba(41, 128, 185, 0.3);
  z-index: 10;
  text-align: center;
  white-space: normal;
  background: linear-gradient(323.41deg, #1D52FE 2.34%, #FE1D25 115.38%);
}

.serv-license-box {
  position: absolute;
  bottom: 1.5vw;
  right: 1.5vw;
  background: rgba(60, 60, 60, 0.4);
  backdrop-filter: blur(5px);
  padding: 1vw 1.5vw;
  border-radius: 1vw;
  color: #ffffff;
  max-width: 16vw;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  text-align: left;
}

.sl-block {
  display: flex;
  flex-direction: column;
}

.sl-block span {
  font-family: "Nunito", sans-serif;
  font-size: 0.75vw;
  opacity: 0.9;
  line-height: 1.3;
  margin-bottom: 0.2vw;
}

.sl-block strong {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 0.85vw;
  font-weight: 700;
}


/* QUIZ SECTION */

  .quiz-section {
    width: 100%;
  padding: 0 1vw;
  margin-bottom: 6vw;
  }
  
  .quiz-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
  
  .quiz-form-wrapper {
      display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  position: relative;
  padding: 29px 30px 29px 30px;
  background: #ffffff;
  z-index: 9;
  border-radius: 30px;
  }
  
  /* QUIZ CONTENT WRAPPER */
  .quiz-content-wrapper {
  
  }
  
  /* BAŞLIK */
  .quiz-header {
    text-align: center;
    margin-bottom: 2.5vw;
  }
  
  .quiz-main-title {
  color: rgb(45, 45, 45);
  font-family: Manrope,var(--default-font-family);
  font-size: 42px;
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
    margin: 0 0 2vw 0;
  }
  
  .quiz-title-highlight {
    font-weight: 700;
  }
  
  .quiz-subtitle {
    font-family: "Nunito", sans-serif;
    font-size: 1.05vw;
    font-weight: 400;
    line-height: 1.5;
    color: #777777;
    margin: 0;
  }
  
  /* QUIZ MAIN WRAPPER */
  .quiz-main-wrapper {
    background: #FAFBFF;
    border-radius: 1.2vw;
    padding: 2.5vw;
  }
  
  /* PROGRESS BAR */
  .quiz-progress-bar {
    display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  height: fit-content;
  padding: 25px 30px 25px 30px;
  background: #fafbff;
  z-index: 4;
  border-radius: 30px;
  }
  .quiz-progress-bar .frame-4{
	  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  width: calc(100% - 60px);
  }
  
  .progress-icon {
    flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
    background-size: auto;
  background-size: cover;
  }
  
  .progress-icon img,
  .progress-icon svg {
    width: 100%;
    height: 100%;
  }
  
  .progress-text {
    display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.1vw;
  font-weight: 400;
  line-height: 42px;
  text-align: left;
  white-space: normal;
  width: calc(100% - 110px);
  }
  
  .progress-text strong {
    font-weight: 700;
    text-decoration: underline;
  }
  
  .progress-counter {
    display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.1vw;
  font-weight: 400;
  line-height: 38px;
  text-align: center;
  white-space: normal;
}
  
  /* QUIZ CONTENT */
  .quiz-content {
    display: flex;
    align-items: flex-start;
    gap: 2vw;
    width: 100%;
	align-items: stretch;
  }
  .quiz-left {
    flex: 1;
    min-width: 0;
  }
  
  .quiz-right {
    width: 50%;
    flex-shrink: 0;
	display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 50px;
  justify-content: space-between;
  align-items: stretch;
  max-height: 420px;
  }
  .quiz-right .frame-8 {
  flex-shrink: 0;
  position: relative;
  background: #fafbff;
  z-index: 41;
  overflow: hidden;
  border-radius: 30px;
   width: 50%;
}
  .quiz-right .frame-9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 25px;
  position: relative;
  margin: 27px 0 0 33px;
  padding: 30px 30px 30px 30px;
}
  .quiz-right .frame-a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 5px;
}
  .quiz-right .elena {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 29px;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
}
  .quiz-right .manager-client {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 19px;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19px;
  text-align: left;
  white-space: normal;
  z-index: 45;
}
  .quiz-right .remote-medical {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  min-width: 0;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
}
  
  /* QUIZ STEPS */
  .quiz-step {
    display: none;
  }
  
  .quiz-step.active {
    display: block;
    animation: fadeIn 0.3s ease;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .quiz-question {
      color: #0e1528;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 32px;
  font-weight: 400;
  line-height: 28px;
  text-align: left;
  white-space: normal;
    margin: 0 0 2vw 0;
  }
  
  /* QUIZ OPTIONS */
  .quiz-options {
    display: flex;
    flex-direction: row;
    gap: 6.3vw;
  }
  
  .quiz-option {
    display: flex;
    align-items: center;
    gap: 1vw;
    padding: 0;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  
  .quiz-option:hover .option-text {
    color: #FE1D25;
  }
  
  .quiz-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }
  
  /* Custom Radio Button */
  .option-radio {
    width: 1.4vw;
    height: 1.4vw;
    border: 0.13vw solid #CCCCCC;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    background: #ffffff;
  }
  
  .quiz-option:hover .option-radio {
    border-color: #FE1D25;
  }
  
  .quiz-option input[type="radio"]:checked ~ .option-radio {
    border-color: #FE1D25;
    border-width: 0.25vw;
  }
  .quiz-options-st {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 2.3vw;
}
  /* Custom Checkbox */
  .option-checkbox {
    width: 1.4vw;
    height: 1.4vw;
    border: 0.13vw solid #CCCCCC;
    border-radius: 0.25vw;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
  }
  
  .quiz-option:hover .option-checkbox {
    border-color: #FE1D25;
  }
  
  .quiz-option input[type="checkbox"]:checked ~ .option-checkbox {
    border-color: #FE1D25;
    background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  }
  
  .option-checkbox::after {
    content: '';
    position: absolute;
    display: none;
    width: 0.35vw;
    height: 0.65vw;
    border: solid #ffffff;
    border-width: 0 0.15vw 0.15vw 0;
    transform: rotate(45deg);
    top: 0.2vw;
  }
  
  .quiz-option input[type="checkbox"]:checked ~ .option-checkbox::after {
    display: block;
  }
  
  .option-text {
    font-family: "Nunito", sans-serif;
    font-size: 1vw;
    font-weight: 400;
    line-height: 1.4;
    color: #151515;
    flex: 1;
    transition: color 0.2s ease;
  }
  
  /* QUIZ FORM */
  .quiz-form {
    display: flex;
    flex-direction: column;
    gap: 1vw;
  }
  
  .quiz-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5vw;
  }
  
  .quiz-form-group label {
    font-family: "Nunito", sans-serif;
    font-size: 0.9vw;
    font-weight: 600;
    color: #151515;
  }
  
  .quiz-form-group input {
    font-family: "Nunito", sans-serif;
    font-size: 1.2vw;
    font-weight: 400;
    padding: 0.7vw 1.2vw;
    border: 0.1vw solid #E5E5E5;
    border-radius: 0.4vw;
    background: #ffffff;
    color: #151515;
    transition: all 0.2s ease;
    outline: none;
  }
  
  .quiz-form-group input:focus {
    border-color: #FE1D25;
  }
  
  .quiz-form-group input::placeholder {
    color: #AAAAAA;
  }
  
  /* QUIZ IMAGE */
  .quiz-image-wrapper {
    height: auto;
    position: relative;
    border-radius: 1vw;
    overflow: hidden;
    background: #F5F5F5;
	width: calc(48% - 1.05vw);
  }
  
  .quiz-photo {
    width:100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .ellipse {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  background: url(../new_img/zCSiUUjG5m.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 1;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 10px;
}
  
  
  
  /* NAVIGATION BUTTONS */
  .quiz-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2vw;
    width: 30%;
  }
  
  .quiz-btn {
    font-family: "Nunito", sans-serif;
    font-size: 1vw;
    font-weight: 600;
    padding: 1vw 2.5vw;
    border-radius: 0.6vw;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 0.6vw;
    white-space: normal;
  }
  
  .quiz-btn svg {
    width: 1.2vw;
    height: 1.2vw;
  }
  
  .quiz-btn-back {
    background: transparent;
    color: #FE1D25;
    border: 0.1vw solid #FE1D25;
  }
  
  .quiz-btn-back:hover:not(:disabled) {
    background: #FFF5F5;
  }
  .quiz-btn-next:disabled,
  .quiz-btn-back:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }
  
  .quiz-btn-next {
    background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
    color: #ffffff;
    border: 0.1vw solid #FE1D25;
  }
  
  .quiz-btn-next:hover {
    background: #E01820;
  }
  
.block8 .photo ,
.block2 .photo {
  position: relative;
  width: 100%;
  max-width: 1860px;
  height: 540px;
  margin: 0 auto;
    background-size: auto;
  background-size: cover;
  border-radius: 2.6vw;
  margin:0 auto 2.6vw;
}
.block8 .play,
.block2 .play {
  position: absolute;
  width: 170px;
  height: 170px;
  background: url(../new_img/play.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 1;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
  cursor:pointer;
}
.block8 .license,
.block2 .license {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4px;
  width: 100%;
  max-width: 473px;
  height: 50px;
  margin: 115px 0 0 1.05vw;
  padding: 3px 7px 3px 7px;
  background: #ffffff;
  z-index: 2;
  border-radius: 30px;
  backdrop-filter: blur(10px);
  position: absolute;
  left:1.05vw;
  bottom:1.05vw;
}
.block8 .info-rounded,
.block2 .info-rounded {
  flex-shrink: 0;
  position: relative;
  width: 32px;
  height: 32px;
  background: url(../new_img/8LrCxkHWdD.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 3;
  overflow: hidden;
}
.block8 .quick-easy,
.block2 .quick-easy {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  z-index: 4;
}
.leaders-title,
.mobile-complex-title,
.process-title,
.block2 .quiz-main-title{
	width: 90%;
	margin:0 auto 1vw;
}
.block2 .main-container {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 15px;
  position: relative;
  width: 100%;
  max-width: 1860px;
  margin: 0 auto;
}
.block2 .empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 30px;
  position: relative;
  width: 100%;
  max-width: 360px;
  height: 225px;
  padding: 20px;
  background: #ffffff;
  border-radius: 30px;
  box-shadow: 0 4px 4px 0 #f8faff;
}
.block2 .icon {
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
  background-size: auto !important;
  background-size: cover !important;
  z-index: 1;
}
.block2 .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  min-width: 0;
  z-index: 2;
}
.block2 .drivers-daily {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 52px;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 26.4px;
  text-align: left;
  z-index: 3;
}
.block2 .medical-check {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  height: 38px;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  z-index: 4;
}
.block2 {}



  /* ========================================
   ORDER SECTION
   ======================================== */

.order-section {
  width: 100%;
  /* background: #ffffff; */
  padding: 6vw 5vw;
}

.order-waybill .order-container {
  position: relative;
}

.order-waybill .order-decor {
  position: absolute;
  left: 3%;
  top: 6%;
  width: 22vw;
  max-width: 300px;
  pointer-events: none;
  z-index: 0;
}

.order-waybill .order-decor-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.order-waybill .order-content {
  position: relative;
  z-index: 1;
}

.order-waybill .order-container {
  position: relative;
}

.order-waybill .order-decor {
  position: absolute;
  left: 33%;
  top: -2%;
  width: 22vw;
  max-width: 300px;
  pointer-events: none;
  z-index: 0;
}

.order-waybill .order-decor-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.order-waybill .order-content {
  position: relative;
  z-index: 1;
}

.order-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.order-content {
  display: flex;
  align-items: center;
  gap: 4vw;
  width: 100%;
}

.order-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2vw;
}

.order-right {
  width: 45%;
  flex-shrink: 0;
}

/* BAŞLIK */
.order-title {
  font-family: "Nunito", sans-serif;
  font-size: 2.3vw;
  font-weight: 400;
  line-height: 1.3;
  color: #151515;
  margin: 0;
}

.order-title-main {
  font-weight: 700;
}

/* LİSTE */
.order-list {
  display: flex;
  flex-direction: column;
  gap: 1.2vw;
}

/* RENTAL BENEFITS SECTION */
.agreement-section {
  width: 100%;
  padding: 5vw 5vw 0;
  position: relative;
  background: #ffffff;
}

.agreement-container {
  display: flex;
  align-items: center;
  gap: 3vw;
  position: relative;
  z-index: 3;
}

.agreement-image {
  width: 50%;
  position: relative;
  z-index: 1;
}

.agreement-photo {
  width: 100%;
  display: block;
  border-radius: 1.25vw;
  object-fit: cover;
  height: auto;
}

.agreement-content {
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 1vw;
  position: relative;
  z-index: 1;
}

.agreement-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.4vw;
  font-weight: 600;
  line-height: 1.2;
  color: #151515;
  margin: 0;
}

.agreement-title strong {
  font-weight: 800;
}

.agreement-text {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  line-height: 1.65;
  color: #1a1a1a;
  margin: 0;
}

.agreement-decor {
  position: absolute;
  right: 3%;
  top: 6%;
  width: 22vw;
  max-width: 31.05vw;
  pointer-events: none;
  z-index: 0;
}

.agreement-decor-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.rental-benefits-section {
  width: 100%;
  padding: 5vw 5vw 0;
  background: #ffffff;
}

.rental-benefits-container {
  display: flex;
  flex-direction: column;
  gap: 2.4vw;
}

.rental-benefits-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.rental-benefits-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.4vw;
  font-weight: 400;
  color: #151515;
  margin: 0;
}

.rental-benefits-title strong {
  font-weight: 700;
}

.rental-benefits-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  color: #666666;
  margin: 0;
}

.rental-benefits-tagline {
  font-family: "Nunito", sans-serif;
  font-size: 1.1vw;
  color: #151515;
  margin: 0;
  font-weight: 600;
}

.rental-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8vw;
}

.rental-card {
  background: #f9fafc;
  border-radius: 1.2vw;
  overflow: hidden;
  box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.rental-card-image {
  width: 100%;
  height: 13vw;
  overflow: hidden;
}

.rental-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rental-card-text {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  color: #151515;
  margin: 0;
  padding: 1.2vw 1.4vw 1.6vw 1.4vw;
  line-height: 1.35;
  flex: 1;
}

.rental-benefits-footer {
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  align-items: center;
}

.rental-benefits-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1vw;
  font-weight: 700;
  padding: 1.1vw 2.6vw;
  border-radius: 1.6vw;
  text-decoration: none;
  box-shadow: 0 0.8vw 1.6vw rgba(254, 29, 37, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.rental-benefits-btn:hover {
  background: #d01820;
  transform: translateY(-2px);
  box-shadow: 0 1vw 2vw rgba(254, 29, 37, 0.25);
}

.rental-benefits-note {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  color: #666666;
  margin: 0;
}

/* FRAUD PROTECTION SECTION */
.fraud-protection-section {
  width: 100%;
  padding: 5vw 5vw 0;
  /* background: #ffffff; */
  position: relative;
  /* overflow: hidden; */
}

.fraud-decor {
  position: absolute;
  bottom: -3%;
  left: 47%;
  width: 18vw;
  max-width: 51.05vw;
  /* opacity: 0.22; */
  pointer-events: none;
}

.fraud-decor-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.fraud-protection-container {
  display: flex;
  flex-direction: column;
  gap: 2.6vw;
}

.fraud-protection-header {
  text-align: center;
}

.fraud-protection-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.5vw;
  font-weight: 400;
  color: #151515;
  margin: 0;
  line-height: 1.2;
}

.fraud-protection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6vw;
  position: relative;
  z-index: 1;
}

.fraud-card {
  background: #f9fafc;
  border-radius: 1.2vw;
  /* box-shadow: 0 0.8vw 2vw rgba(0, 0, 0, 0.08); */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: fit-content;
}

.fraud-card-image {
  width: 100%;
  height: 15vw;
  overflow: hidden;
}

.fraud-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fraud-card-content {
  padding: 1.4vw 1.6vw 1.6vw 1.6vw;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.fraud-card-heading {
  font-family: "Nunito", sans-serif;
  font-size: 1.05vw;
  font-weight: 700;
  color: #151515;
  line-height: 1.35;
}

.fraud-number {
  color: #fe1d25;
  font-weight: 700;
  margin-right: 0.5vw;
}

.fraud-card-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  color: #333333;
  margin: 0;
  line-height: 1.5;
}
.fraud-card-text strong {
  font-weight: 700;
  color: #151515;
}
.fraud-card-text em {
  font-style: italic;
}
.fraud-card-text em strong {
  font-style: italic;
  font-weight: 700;
}

.fraud-card-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  font-weight: 700;
  color: #151515;
  margin: 0;
}

.fraud-card-list {
  margin: 0;
  padding-left: 1.4vw;
  display: flex;
  flex-direction: column;
  gap: 0.45vw;
  list-style-type: circle;
  list-style-position: outside;
  color: #151515;
  list-style-image: none;
}

.fraud-card-list li::marker {
  color: #151515;
}

.fraud-card-list li {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  color: #333333;
  line-height: 1.45;
  list-style-type: disc;
}




.order-item {
  display: flex;
  align-items: flex-start;
  gap: 1vw;
}

.order-number {
  width: 1.8vw;
  height: 1.8vw;
  min-width: 1.8vw;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 0.95vw;
  font-weight: 700;
  flex-shrink: 0;
}

.order-text {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  line-height: 1.5;
  color: #151515;
  margin: 0;
  padding-top: 0.2vw;
}

.remote-check-section {
  width: 100%;
  padding: 5vw 5vw 0;
  background: #ffffff;
}

.remote-check-container {
  display: flex;
  flex-direction: column;
  gap: 2.4vw;
}

.remote-check-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
}

.remote-check-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.5vw;
  font-weight: 400;
  line-height: 1.25;
  color: #151515;
  margin: 0;
}

.remote-check-title strong {
  font-weight: 800;
}

.remote-check-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1.05vw;
  color: #555555;
  margin: 0;
}

.remote-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4vw;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
}

.remote-card {
  background: #f8f9fc;
  border-radius: 1.05vw;
  overflow: hidden;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.07);
  display: flex;
  flex-direction: column;
  flex: 1 1 calc((100% - 3 * 1.4vw) / 4);
  max-width: calc((100% - 3 * 1.4vw) / 4);
  box-sizing: border-box;
  align-self: stretch;
}

.remote-card-image {
  width: 100%;
  height: 10vw;
  overflow: hidden;
}

.remote-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.remote-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.8vw;
  padding: 1.2vw 1.4vw 1.4vw 1.4vw;
  box-sizing: border-box;
}

.remote-card-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 700;
  line-height: 1.35;
  color: #151515;
  margin: 0;
  display: flex;
  gap: 0.4vw;
  align-items: baseline;
}

.remote-card-number {
  color: #fe1d25;
  font-weight: 800;
}

.remote-card-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.97vw;
  color: #333333;
  line-height: 1.55;
  margin: 0;
}

.remote-card-list {
  margin: 0;
  padding-left: 1.2em;
  display: flex;
  flex-direction: column;
  gap: 0.35em;
  color: #151515;
  list-style-type: disc;
  list-style-position: outside;
}

.remote-card-list li {
  font-family: "Nunito", sans-serif;
  font-size: 0.97vw;
  color: #333333;
  line-height: 1.55;
  list-style-type: disc;
}

/* GÖRSEL */
.order-image-wrapper {
  width: 100%;
  height: auto;
  position: relative;
  border-radius: 1.2vw;
  overflow: hidden;
  background: #F5F5F5;
}

.order-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}







/* ========================================
   COMPARISON SECTION
   ======================================== */

   .comparison-section {
    width: 100%;
    
  padding: 0 1vw;
  margin-bottom: 6vw;
  }
  
  .comparison-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  /* BAŞLIK ALANI */
  .comparison-header {
    text-align: center;
    margin-bottom: 3vw;
  }
  
  .comparison-title {
   color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 42px;
  font-weight: 400;
  line-height: 46.2px;
  text-align: center;
    margin: 0 0 0.8vw 0;
  }
  
  .comparison-highlight {
    font-weight: 700;
    color: #151515;
  }
  
  .comparison-subtitle {
color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  }
  
  /* TABLO WRAPPER (SCROLL İÇİN) */
  .comparison-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-bottom: 2.5vw;
    -webkit-overflow-scrolling: touch;
  }
  
  .comparison-table-wrapper::-webkit-scrollbar {
    height: 8px;
  }
  
  .comparison-table-wrapper::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
  }
  
  .comparison-table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
    border-radius: 10px;
  }
  
  .comparison-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: #d01820;
  }
  
  /* TABLO */
  .comparison-table {
    width: 100%;
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 1.2vw;
  }
  
  /* TH (BAŞLIK HÜCRELERİ) */
  .comparison-table thead th {
  border-top: 1px solid #fe1d25;
  border-left: 1px solid #fe1d25;
  border-bottom: 1px solid #fe1d25;
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  text-align: center;
  white-space: normal;
  height: 80px;
  }
  .comparison-table thead th:first-child{
  border-radius: 0.53vw 0 0 0.53vw;
	  
  }
  .comparison-table thead th:last-child {
    border-right: 1px solid #fe1d25;
  border-radius:  0 0.53vw 0.53vw 0;
  }
  .comparison-table tr td {
  border-bottom: 1px solid #2d2d2d;
  border-left: 1px solid #2d2d2d;
  }
  
  .comparison-table tr td:first-child {
	border-radius: 0.53vw 0 0 0.53vw;
  }
  
  .comparison-table tr td:last-child {
    border-right: 1px solid #2d2d2d;
	border-radius:  0 0.53vw 0.53vw 0;
  }
  
  /* SÜTUN STİLLERİ */
  .comp-col-label {
    width: 35%;
    text-align: left;
  }
  
  .comp-col-manual {
    width: 32.5%;
  }
  
  .comp-col-remote {
    width: 32.5%;
  }
  
  /* TD İÇERİK WRAPPER */
  .td-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8vw;
    padding: 1.2vw 1.5vw;
    min-height: 100%;
  }
  
  .comp-col-label .td-content {
    align-items: flex-start;
    text-align: left;
    gap: 0;
  }
  
  /* ITEM (ICON + METIN GRUBU) */
  .comp-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.5vw;
  }
  
  /* METİNLER */
  .comparison-table p {
    color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
    margin: 0;
  }
  
  .comp-col-label p {
    color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  }
  
  /* CHECKMARK VE CROSS */
  .comp-check {
    font-size: 1.5vw;
    color: #22C55E;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
  }
  
  .comp-cross {
    font-size: 1.5vw;
    color: #FE1D25;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
  }
  
  /* ÖZELLİKLER GRID */
  .comparison-features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
  }
  
  .comp-feature {
    display: flex;
    align-items: center;
    gap: 1vw;
  }
  
  .comp-feature-icon {
    width: 2.5vw;
    height: 2.5vw;
    min-width: 2.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  
  .comp-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  .comp-feature-text {
    color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
    margin: 0;
    padding-top: 0.2vw;
  }
  

  
 

  /* ========================================
   RENT SECTION
   ======================================== */

.rent-section {
  width: 100%;
  background: #ffffff;
  padding: 6vw 5vw;
}

.rent-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* BAŞLIK ALANI */
.rent-header {
  text-align: center;
  margin-bottom: 3vw;
}

.rent-title {
  font-family: "Nunito", sans-serif;
  font-size: 2.3vw;
  font-weight: 400;
  line-height: 1.3;
  color: #151515;
  margin: 0 0 0.8vw 0;
}

.rent-highlight {
  font-weight: 700;
  color: #151515;
}

.rent-subtitle {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  color: #666666;
  margin: 0;
}

/* KARTLAR WRAPPER */
.rent-cards {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  width: 100%;
  margin-bottom: 3vw;
}

/* SATIRLAR */
.rent-row {
  display: grid;
  gap: 2vw;
}

.rent-row-3 {
  grid-template-columns: repeat(3, 1fr);
}

.rent-row-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* KART */
.rent-card {
  background: #FAFBFF;
  border-radius: 1.6vw;
  border: 0.14vw solid transparent;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0.4vw 1vw rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition: 0.3s ease;
}

.rent-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1.6vw;
  padding: 0.14vw;
  background: linear-gradient(323.41deg, #1D52FE 2.34%, #FE1D25 115.38%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s ease;
}

.rent-card:hover::before {
  opacity: 1;
}

.rent-card:hover {
  background: #ffffff;
  transform: translateY(-0.4vw);
  box-shadow: 0 1vw 2.2vw rgba(0, 0, 0, 0.12);
}

/* KART GÖRSEL */
.rent-card-image {
  width: 100%;
  height: 12vw;
  overflow: hidden;
  border-radius: 1.6vw 1.6vw 0 0;
}

.rent-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* KART BAŞLIK */
.rent-card-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.1vw;
  font-weight: 600;
  line-height: 1.3;
  color: #151515;
  margin: 0;
  padding: 1.2vw 1.6vw 1.6vw 1.2vw;
}

/* FOOTER (BUTON + ALT YAZI) */
.rent-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1vw;
}

.rent-btn {
  padding: 1.2vw 3vw;
  border-radius: 2vw;
  border: none;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.1vw;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 0.3vw 1vw rgba(254, 29, 37, 0.25);
  transition: 0.25s ease;
}

.rent-btn:hover {
  background: #d01820;
  box-shadow: 0 0.5vw 1.5vw rgba(254, 29, 37, 0.35);
  transform: translateY(-0.2vw);
}

.rent-note {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  font-weight: 400;
  color: #666666;
  margin: 0;
}


/* --- Remote check final layout override --- */
.remote-check-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4vw;
  align-items: stretch;
  align-content: stretch;
  justify-content: flex-start;
}

.remote-card {
  flex: 0 0 calc((100% - 3 * 1.4vw) / 4);
  max-width: calc((100% - 3 * 1.4vw) / 4);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-self: stretch;
}

.remote-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

/* EQUIPMENT PROOF SECTION */
.equipment-proof-section {
  width: 100%;
  padding: 5vw 5vw;
  /* background: #ffffff; */
}

.equipment-proof-container {
  display: flex;
  flex-direction: column;
  gap: 2.6vw;
}

.equipment-proof-header {
  text-align: center;
}

.equipment-proof-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.6vw;
  font-weight: 400;
  line-height: 1.25;
  color: #151515;
  margin: 0;
}

.equipment-proof-title strong {
  font-weight: 800;
}

.equipment-proof-rows {
  display: flex;
  flex-direction: column;
  gap: 1.6vw;
}

.equipment-proof-row {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 1%;
  flex-wrap: wrap;
}

.row-top .equip-card {
  width: 24%;
  max-width: 24%;
}

.row-bottom {
  justify-content: center;
  display: flex;
}

.row-bottom .equip-card {
  width: 24%;
  max-width: 24%;
  align-self: stretch;
}

.equip-card {
  background: #f8f9fc;
  border-radius: 1.05vw;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  align-self: stretch;
}

.equip-card-image {
  width: 100%;
  height: 10vw;
  overflow: hidden;
}

.equip-photo {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}

.equip-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  padding: 1.2vw 1.4vw 1.4vw 1.4vw;
  flex: 1;
  box-sizing: border-box;
}

.equip-card-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 700;
  line-height: 1.4;
  color: #151515;
  margin: 0;
}

.equip-card-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.97vw;
  line-height: 1.55;
  color: #333333;
  margin: 0;
}

.equipment-proof-footer {
  display: flex;
  justify-content: center;
}

.equip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9vw 2vw;
  border-radius: 30px;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-weight: 700;
  font-size: 1vw;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 1.25vw; rgba(254, 29, 37, 0.25);
}

.equip-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(254, 29, 37, 0.3);
}

/* AUTHENTICITY SECTION */
.authenticity-section {
  width: 100%;
  padding: 5vw 5vw;
}

.authenticity-container {
  display: flex;
  flex-direction: column;
  gap: 2.6vw;
}

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

.authenticity-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.6vw;
  font-weight: 400;
  line-height: 1.3;
  color: #151515;
  margin: 0;
}

.authenticity-title strong {
  font-weight: 800;
}

.authenticity-grid {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: center; */
  gap: 1%;
}

.auth-card {
  width: 24%;
  max-width: 24%;
  background: #f8f9fc;
  border-radius: 1.05vw;
  overflow: hidden;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.auth-card-image {
  width: 100%;
  height: 12vw;
  overflow: hidden;
}

.auth-photo {
  width: 100%;
  height: 100%;
  display: block;
}

.auth-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.8vw;
  padding: 1.2vw 1.4vw 1.4vw 1.4vw;
  flex: 1;
  box-sizing: border-box;
}

.auth-card-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 700;
  line-height: 1.4;
  color: #151515;
  margin: 0;
}

.auth-card-text {
  font-family: "Nunito", sans-serif;
  font-size: 0.97vw;
  line-height: 1.55;
  color: #333333;
  margin: 0;
}





/* CONTACT HERO (contacts page) */
.contact-hero-section {
  width: 100%;
  padding: 5vw 5vw 0;
  margin-bottom:6vw;
}

.contact-hero-container {
  width: 100%;
}

.contact-hero-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 2.6vw;
  background: #f9fcff;
  border-radius: 1.25vw;
  padding: 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.contact-hero-info {
  position: relative;
  display: flex;
  align-items: center;
  padding: 2vw;
}

.contact-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1vw;
  position: relative;
  z-index: 2;
}

.contact-hero-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2vw;
  font-weight: 600;
  color: #151515;
  margin: 0;
  line-height: 1.25;
}

.contact-hero-desc {
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  color: #333333;
  margin: 0;
  line-height: 1.55;
}

.contact-hero-phone-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-hero-phone {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.6vw;
  font-weight: 700;
  color: #151515;
  text-decoration: none;
}

.contact-hero-messengers {
  display: flex;
  align-items: center;
  gap: 10px;
}

.messenger-link img {
  width: 32px;
  height: 32px;
  display: block;
}

.contact-hero-mail {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  color: #151515;
  text-decoration: none;
}

.contact-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 0.5vw;
  flex-wrap: wrap;
}

.contact-hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9vw 1.4vw;
  border-radius: 28px;
  font-family: Manrope,var(--default-font-family) ;
  font-weight: 700;
  font-size: 0.95vw;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.contact-hero-btn.primary {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  box-shadow: 0 12px 1.25vw; rgba(254, 29, 37, 0.25);
}

.contact-hero-btn.outline {
  background: transparent;
  color: #fe1d25;
  border: 1.5px solid #fe1d25;
}

.contact-hero-btn:hover {
  transform: translateY(-2px);
}

.contact-hero-decor {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0.25;
}

.contact-decor-img {
  width: 26vw;
  max-width: 31.05vw;
}

.contact-hero-map {
  position: relative;
  height: 100%;
  display: flex;
}

.map-embed {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border-radius: 22px;
  overflow: hidden;
  background: #e8eef5;
}

.map-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 22px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 22px;
  display: block;
}







/* BLOG LIST */
.blog-section {
  width: 100%;
  padding: 5vw 5vw 6vw;
}

.blog-container {
  display: flex;
  flex-direction: column;
  gap: 2.4vw;
}

.blog-header {
  display: flex;
  flex-direction: column;
  gap: 1vw;
}

.blog-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.6vw;
  font-weight: 400;
  color: #151515;
  margin: 0;
}

.blog-tabs-scroll {
  display: flex;
  gap: 0.7vw;
  overflow-x: auto;
  padding-bottom: 0.4vw;
  scrollbar-width: none;
}

.blog-tabs-scroll::-webkit-scrollbar {
  display: none;
}

.blog-tab {
  border: 1.2px solid #151515;
  background: #ffffff;
  color: #151515;
  border-radius: 40px;
  padding: 0.55vw 1.2vw;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 0.95vw;
  font-weight: 600;
  cursor: pointer;
  white-space: normal;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.blog-tab:hover,
.blog-tab.active {
  background: #151515;
  color: #ffffff;
}

.blog-tab:active {
  transform: translateY(1px);
}

.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
}

.blog-card {
  width: calc((100% - 4.5vw) / 4);
  max-width: calc((100% - 4.5vw) / 4);
  background: #f8f9fc;
  border-radius: 18px;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-image {
  width: 100%;
  height: 10vw;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.blog-card-body {
  padding: 1.2vw 1.4vw 1.4vw;
  display: flex;
  flex-direction: column;
  gap: 0.5vw;
  flex: 1;
}

.blog-card-date {
  font-family: "Nunito", sans-serif;
  font-size: 0.85vw;
  color: #7a7a7a;
}

.blog-card-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.1vw;
  font-weight: 600;
  color: #151515;
  margin: 0;
}

.blog-card-desc {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  line-height: 1.5;
  color: #333333;
  margin: 0 0 0.6vw;
}

.blog-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.blog-card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55vw 1.2vw;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  border-radius: 28px;
  font-family: Manrope,var(--default-font-family) ;
  font-weight: 400;
  font-size: 0.95vw;
  text-decoration: none;
  box-shadow: 0 10px 18px rgba(254, 29, 37, 0.25);
  cursor:pointer;
}

.blog-card-meta {
  font-family: "Nunito", sans-serif;
  font-size: 0.9vw;
  color: #666666;
}

.blog-more-wrap {
  display: flex;
  justify-content: center;
}

.blog-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  padding: 0.8vw 1.6vw;
  border-radius: 26px;
  font-family: Manrope,var(--default-font-family) ;
  font-weight: 700;
  font-size: 1vw;
  text-decoration: none;
  box-shadow: 0 12px 1.25vw rgba(254, 29, 37, 0.25);
}





/* BLOG DETAIL */
.reputation-container,
.blog-detail-section{
  width: 100%;
  padding: 0 6vw;
  display: flex;
  justify-content: center;
}

.blog-detail-article {
  display: flex;
  flex-direction: column;
  gap: 2vw;
  width: 100%;
}

.blog-detail-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-detail-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.6vw;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8vw 1.6vw;
  font-family: "Nunito", sans-serif;
  font-size: 1vw;
  color: #555555;
  margin-top: 6px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reputation-container,
.blog-detail-body {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: "Nunito", sans-serif;
  font-size: 1.05vw;
  line-height: 1.75;
  color: #222222;
}

.reputation-container h4,
.reputation-container h5,
.reputation-container h6,
.blog-detail-body h3 {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.3vw;
  font-weight: 700;
  margin: 12px 0 0;
}

.blog-detail-body p {
  margin: 0;
}

.blog-detail-body ul,
.blog-detail-body ol {
  margin: 0;
  padding-left: 1.4vw;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.blog-detail-body li {
  list-style: disc;
}

.blog-detail-image {
  margin: 2vw auto 1vw;
  width: 100%;
  border-radius: 1.1vw;
  overflow: hidden;
}

.blog-detail-image img {
  width: 50%;
  display: block;
  border-radius: 1.1vw;
}

/* RELATED ARTICLES */
.related-articles-section {
  width: 100%;
  padding: 0 1vw;
  margin-bottom: 5vw;
}

.related-articles-container {
  display: flex;
  flex-direction: column;
  gap: 3vw;
}

.related-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.6vw;
  font-weight: 600;
  color: #151515;
  margin: 0;
}

.related-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4vw;
}

.related-card {
  width: 100%;
  max-width: 100%;
  background: #f8f9fc;
  border-radius: 16px 16px 4px 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.related-card-image {
  width: 100%;
  height: 9vw;
  overflow: hidden;
}

.related-card-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.related-card-body {
  padding: 1vw 1.2vw 1.2vw;
  display: flex;
  flex-direction: column;
  gap: 0.6vw;
  flex: 1;
}

.related-card-date {
  font-family: "Nunito", sans-serif;
  font-size: 0.9vw;
  color: #7a7a7a;
}

.related-card-title {
display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
  margin: 0;
  min-height: 90px;
}

.related-card-desc {
  font-family: "Nunito", sans-serif;
  font-size: 0.95vw;
  line-height: 1.5;
  color: #333333;
  margin: 0;
}

.related-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.related-card-btn {
display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  text-decoration: underline;
  white-space: normal;
}

.related-card-meta {
  font-family: "Nunito", sans-serif;
  font-size: 0.9vw;
  color: #666666;
}

.related-more-wrap {
  display: flex;
  justify-content: center;
}

.related-more-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  padding: 0.85vw 1.6vw;
  border-radius: 26px;
  font-family: Manrope,var(--default-font-family) ;
  font-weight: 400;
  font-size: 1vw;
  text-decoration: none;
  box-shadow: 0 12px 1.25vw; rgba(254, 29, 37, 0.25);
}


/* GLOBAL POPUP FORM */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 7777;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  padding: 1.25vw;
}

.popup-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.popup-card {
  background: #ffffff;
  border-radius: 1.05vw;
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.14);
  width: min(51.05vw, 90vw);
  padding: 32px;
  position: relative;
  font-family: "Nunito", sans-serif;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f3f4f6;
  color: #111;
  font-size: 1.05vw;
  font-weight: 700;
  cursor: pointer;
}

.popup-title {
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 700;
  color: #151515;
  margin: 0 0 8px;
}

.popup-subtitle {
  font-size: 15px;
  color: #4a4a4a;
  margin: 0 0 1.05vw;
}

.popup-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.popup-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.popup-field label {
  font-size: 14px;
  color: #2c2c2c;
}

.popup-field input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  font-size: 15px;
  color: #151515;
  background: #f8f9fc;
}

.popup-submit {
  margin-top: 8px;
  padding: 12px 18px;
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  color: #ffffff;
  border-radius: 14px;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 1.25vw; rgba(254, 29, 37, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.popup-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(254, 29, 37, 0.28);
}

.no-scroll {
  overflow: hidden;
}
.site-vakansii{
	overflow: hidden;
	width: 100%;
	  background: #ffffff;
	  padding:130px 5vw  2.6vw;
	  position: relative;
}
.site-vakansii img{
	display:block;
	width:100%;
}
/* new-h-block */
.new-h-block{
	display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width:100%;
  max-width:101.05vw;
  margin: 0 auto 2.6vw;
}
.new-title{
	color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 42px;
  font-weight: 400;
  line-height: 46.2px;
  text-align: center;
  margin: 0;
}
.new-title b,
.new-title strong{
  font-weight: 600;
}
/* o-kompanii */
.o-kompanii{
	margin-bottom: 6vw;
}

.new-banner-block{
	display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 0 1vw;
}
.new-banner-block .frame-4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: relative;
  z-index: 4;
}
.new-banner-block .frame-7 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 15px;
  position: relative;
  z-index: 12;
  align-items: stretch;
}
.new-banner-block .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 1vw;
  position: relative;
  width: 100%;
  max-width: 570px;
  height: auto;
  z-index: 5;
}
.new-banner-block .img {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 1235px;
  padding: 117px 0 117px 0;
  background: rgba(199, 199, 199, 0.2) url(../new_img/8RFzBKRjeo.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
  border-radius: 2.6vw;
  min-height:414px;
}
.new-banner-block .group {
  flex-shrink: 0;
  position: relative;
  width: 180px;
  height: 180px;
  background: url(../new_img/agzT0mNZ9H.png) no-repeat center;
    background-size: auto;
  background-size: 100% 100%;
  z-index: 11;
  margin: 0 auto;
  display:none;
}
.new-banner-block .frame-5 p{
	display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  max-width:  570px;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  z-index: 6;
}
.new-banner-block .frame-links{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-shrink: 0;
  gap: 20px;
  position: relative;
  width: 100%;
  z-index: 8;
}
.new-banner-block .frame-links a{
	color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  text-decoration: underline;
  white-space: normal;
}
.new-banner-block .frame-5 p.compliance-solutions{
	color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
}
.new-banner-block .preim-block-all{
	display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 33%;
  padding: 30px 30px 30px 30px;
  background: #ffffff;
  z-index: 13;
  border-radius: 2.6vw;
}
.new-banner-block .preim-block{
	display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 20px;
  position: relative;
  min-width: 0;
  z-index: 14;
}
.new-banner-block .preim-block-top{
	display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
}
.new-banner-block .chevron-down {
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
  background: url(../new_img/s36HRYwwOg.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 16;
  overflow: hidden;
}
.new-banner-block .heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.1vw;
  font-weight: 600;
  line-height: 28px;
  text-align: left;
  white-space: normal;
  z-index: 17;
}
.new-banner-block .preim-block-text{
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  z-index: 18;
  gap:1.05vw;
}
.medmap-doctors-working{
	font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
}
.medmap-doctors-working .comma {
  position: relative;
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.1vw;
  font-weight: 700;
  line-height: 43.2px;
  text-align: center;
}
.employees-block{
	width: 100%;
	padding: 0 1vw;
}
.new-h-block-sotr{
	width: 100%;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.new-h-block-sotr img{
	overflow: hidden;
  border-radius: 30px;
  display: flex;
}
.o-kompanii-sotr-info{
display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  min-width: 0;
  padding: 2.05vw 1.05vw 2.05vw 1.05vw;
  background: #fafaff;
  border-radius: 30px;
  margin-bottom: 30px;
  margin-top: -50px;
}

.o-kompanii-sotr-info.ruk{
  margin-bottom: 0;
  margin-top: 0;
	position: absolute;
  left: 0;
  width: 100%;
  bottom: -100%;
  transition: 0.3s;
  background: rgba(0,0,0,0.7);
}
.o-kompanii-sotr:hover .o-kompanii-sotr-info.ruk{
  bottom: 0;
}
.o-kompanii-sotr-name{
	color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.9vw;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
  margin-bottom:15px;
  display:block;
}
a.o-kompanii-sotr-name{
	text-decoration:underline;
}
.o-kompanii-sotr-info.ruk .o-kompanii-sotr-name,
.o-kompanii-sotr-info.ruk .o-kompanii-sotr-text,
.o-kompanii-sotr-info.ruk .o-kompanii-sotr-graf,
.o-kompanii-sotr-info.ruk .o-kompanii-sotr-staj,
.o-kompanii-sotr-info.ruk .o-kompanii-sotr-dolg{
	color: #ffffff;
}
.o-kompanii-sotr-text,
.o-kompanii-sotr-graf,
.o-kompanii-sotr-staj,
.o-kompanii-sotr-dolg{
	color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
}
.o-kompanii-sotr-dolg{
	margin-bottom: 15px;
}
.o-kompanii-sotr-graf{
	
}
.new-banner{
	width: 100%;
  position: relative;
  height: fit-content;
  margin: 0 auto 120px;
  padding: 0 1vw;
  border-radius: 11.05vw;
}
.new-banner .banner-inner {
  max-height: 800px;
}
.new-banner .banner-container{
	padding: 1.05vw 0;
}
.new-banner .banner-image {
  width: 41%;
}
.new-banner-subtitle{
	color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 25.2px;
  text-align: center;
}
.banner-text{
	color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  
}
.banner-text h1{
	margin-bottom:25px;
}
.banner-text h1 span{
	font-family: Manrope,var(--default-font-family);
	font-weight: 500;
	font-size: 2.2vw;
	line-height: 120%;
	letter-spacing: 0%;
	margin-top: 20px;
}
.new-banner.variant-2 .btn-primary,
.new-banner.variant-2 .btn-secondary{
	flex: 1;
  text-align: center;
}
.banner-text p{
	margin-bottom:40px;
}
.banner-text ul{
	padding-left:18px;
}
.banner-text li{
	color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  list-style: disc;
}
.feature-item span.feature-item-name{
	color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.1vw;
  font-weight: 600;
  line-height: 37px;
  text-align: left;
  white-space: normal;
}
.feature-item span.feature-item-desc{
	color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
}
/* bolock-vipusk-reis */
.bolock-vipusk-reis {
	width: 100%;
  
  padding: 0 1vw;
  margin-bottom: 6vw;
}

.bolock-vipusk-reis .frame-4 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  position: relative;
  align-items: stretch;
  gap: 50px;
}
.bolock-vipusk-reis .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 920px;
  z-index: 5;
}
.bolock-vipusk-reis .frame-15 {
display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 2.6vw;
  position: relative;
  width: 100%;
  max-width: 900px;
}
.bolock-vipusk-reis .div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  min-width: 0;
  min-height: 214px;
  padding: 33px 1.05vw 33px 1.05vw;
  background: #ffffff;
  z-index: 6;
  border-radius: 30px;
  box-shadow: 0 4px 4px 0 #f8faff;
}
.bolock-vipusk-reis .div-frame {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 30px;
  position: relative;
  z-index: 7;
}
.bolock-vipusk-reis .div-frame-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 50px;
  height: 50px;
  padding: 5px 17px 5px 17px;
  background: #fe1d25;
  z-index: 8;
  border-radius: 25px;
}
.bolock-vipusk-reis .div-frame-7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  z-index: 10;
}
.bolock-vipusk-reis .span {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 11px;
  height: 29px;
  color: #ffffff;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  z-index: 9;
}
.bolock-vipusk-reis .span-personality {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.1vw;
  font-weight: 600;
  line-height: 39.6px;
  text-align: left;
  white-space: normal;
  z-index: 11;
}
.bolock-vipusk-reis .span-pass-number {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
  white-space: normal;
  z-index: 12;
}
.bolock-vipusk-reis .rectangle {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 806px;
  background: #d9d9d9;
  border-radius: 30px;
  background-repeat: no-repeat;
  background-size: cover;
}
.bolock-vipusk-reis .buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 30px;
  position: relative;
  width: 100%;
  max-width: 885px;
  height: 60px;
}
.bolock-vipusk-reis .buttons-el1{
	display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 60px;
  padding: 12px 14px 12px 14px;
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
}
.bolock-vipusk-reis .buttons-el2{
	display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 430px;
  height: 60px;
  padding: 12px 14px 12px 14px;
  border: 1px solid #fe1d25;
  z-index: 39;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
}
.bolock-vipusk-reis .play {
  flex-shrink: 0;
  position: absolute;
  width: 170px;
  height: 170px;
  background: url(../new_img/sWxLJ6SFLi.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 41;
  top:0;
  bottom:0;
  left:0;
  right:0;
  margin:auto;
}
/* block-type-list */
.block-type-list{
	width: 100%;
  
  padding: 0 1vw;
  margin-bottom: 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.block-type-list .frame-2 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  min-width: 0;
  z-index: 4;
}
.block-type-list .empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 42.6vw;
  height: 215px;
  padding: 33px 1.05vw 33px 1.05vw;
  background: #ffffff;
  z-index: 5;
  border-radius: 30px;
  box-shadow: 0 4px 4px 0 #f8faff;
}
.block-type-list .frame-3 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  min-width: 0;
  z-index: 6;
}
.block-type-list .car-sports {
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
  background: url(../new_img/kT8kvmdGnz.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 7;
  overflow: hidden;
}
.block-type-list .for-passenger-cars {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 26px;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 26px;
  text-align: left;
  white-space: normal;
  z-index: 8;
}
.block-type-list.komy-poxodit .for-passenger-cars{
	text-align: center;
}
.block-type-list .frame-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 5px;
  position: relative;
  z-index: 9;
}
.block-type-list .form-number-3 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 18px;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 17.6px;
  text-align: left;
  white-space: normal;
  z-index: 10;
}
.block-type-list .bus-side {
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
  background: url(../new_img/OEbiKdxN8W.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 14;
  overflow: hidden;
}
.block-type-list .truck-minus {
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
  background: url(../new_img/taWOOwphBf.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 20;
  overflow: hidden;
}
.block-type-list .tractor {
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
  background: url(../new_img/OahkLrZHaL.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 26;
  overflow: hidden;
}
.block-type-list .frame-c {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  min-width: 0;
  height: 540px;
  padding: 1.05vw 1.05vw 1.05vw 1.05vw;
  background: url(../new_img/0W0SrpqukG.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 30;
  border-radius: 30px;
}
/* block-zakon-protect */
.block-zakon-protect{
	width: 100%;
  
  padding: 0 1vw;
  margin-bottom: 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5vw;
}
.block-zakon-protect .frame-2 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 20px;
  position: relative;
}
.block-zakon-protect .frame-3 {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  max-width: 920px;
  height: 420px;
  background: #fafbff;
  z-index: 5;
  border-radius: 2.6vw;
}
.block-zakon-protect .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 19px;
  position: relative;
  width: 100%;
  max-width: 920px;
  z-index: 10;
  align-self: stretch;
}
.block-zakon-protect .frame-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
  position: relative;
  width: 100%;
  max-width: 486px;
  margin: 63px 0 0 40px;
  z-index: 6;
}
.block-zakon-protect h3{
	  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 32px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
  white-space: normal;
}
.block-zakon-protect .built-in-camera {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  max-width: 617px;
  height: 48px;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  z-index: 14;
}
.block-zakon-protect .frame-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  max-width: 617px;
  z-index: 11;
}
.block-zakon-protect .photo {
  position: absolute;
  width: 943px;
  height: 452px;
  top: -40px;
  left: -23px;
  background: url(../new_img/h2gycTVhE9.jpg) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 16;
  border-radius: 30px 30px 0 0;
}
.block-zakon-protect .frame-8 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 305px;
  z-index: 15;
  overflow: hidden;
  border-radius: 2.6vw;
}
.block-zakon-protect .frame-8.noh3{
	 height: 100%;
}
.block-chto-vhodin h3{
  font-family: Manrope,var(--default-font-family) ;
font-weight: 400;
font-style: Regular;
font-size: 24px;
line-height: 1.1;
letter-spacing: 0%;
vertical-align: middle;
}
/* block-new-ul */
.new-banner-block .preim-block-all ul,
ul.block-new-ul{
	  padding-left: 1.4vw;
  display: flex;
  flex-direction: column;
  gap: 0.45vw;
}

.new-banner-block .preim-block-all li,
ul.block-new-ul li{
	list-style-type: disc;
	  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 300;
  line-height: 1.1;
  text-align: left;
}
/* block-format-oborudi */
.block-format-oborudi{
	width: 100%;
  padding: 0 1vw;
  margin-bottom: 6vw;
}
.block-format-oborudi .frame-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  width: 101.05vw;
}
.block-format-oborudi .equipment-formats {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 864px;
  height: 46px;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 42px;
  font-weight: 400;
  line-height: 46px;
  text-align: center;
  white-space: normal;
  z-index: 2;
}
.block-format-oborudi .configuration-selection {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 992px;
  height: 25px;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  z-index: 3;
}
.block-format-oborudi .frame-2 {
  display: flex;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  min-width: 0;
  z-index: 4;
}
.block-format-oborudi .frame-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  position: relative;
  height: 280px;
  padding: 1.05vw 1.05vw 1.05vw 1.05vw;
  background: #fafbff;
  z-index: 5;
  border-radius: 2.6vw;
}
.block-format-oborudi .frame-4 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  position: relative;
  height: 160px;
  z-index: 6;
  margin: auto 0;
}
.block-format-oborudi .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  z-index: 7;
}
.block-format-oborudi .frame-6 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 5px;
  position: relative;
  z-index: 8;
}
.block-format-oborudi .mobile-complex {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 35px;
  color: #010101;
  font-family: Manrope, var(--default-font-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  text-align: left;
  white-space: normal;
  z-index: 9;
}
.block-format-oborudi .small-companies {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 1.25vw;
  color: #010101;
  font-family: Manrope, var(--default-font-family);
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
  z-index: 10;
}
.block-format-oborudi .buttons {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  height: 60px;
  z-index: 11;
}
.block-format-oborudi .button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  gap: 10px;
  position: relative;
  height: 60px;
  padding: 12px 14px 12px 14px;
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  z-index: 12;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
}
.block-format-oborudi .more-info {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 88px;
  height: 17px;
  color: #ffffff;
  font-family: Manrope, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
  z-index: 13;
}
.block-format-oborudi .frame-7 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  position: relative;
  height: 280px;
  padding: 1.05vw 1.05vw 1.05vw 1.05vw;
  background: #fafbff;
  z-index: 14;
  border-radius: 2.6vw;
}
.block-format-oborudi .frame-8 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  height: 164px;
  z-index: 15;
  margin: auto 0;
}
.block-format-oborudi .frame-9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
  position: relative;
  width: 565px;
  margin: 0.5px 0 0 0;
  z-index: 16;
}
.block-format-oborudi .frame-a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  min-width: 0;
  z-index: 17;
}
.block-format-oborudi .frame-b {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 5px;
  position: relative;
  z-index: 18;
}
.block-format-oborudi .desktop-complex {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 35px;
  color: #010101;
  font-family: Manrope, var(--default-font-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  text-align: left;
  white-space: normal;
  z-index: 19;
}
.block-format-oborudi .text-7 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 1.25vw;
  color: #010101;
  font-family: Manrope, var(--default-font-family);
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
  z-index: 20;
}
.block-format-oborudi .box-3 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  min-width: 0;
  height: 60px;
  z-index: 21;
}
.block-format-oborudi .wrapper-3 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  gap: 10px;
  position: relative;
  height: 60px;
  padding: 12px 14px 12px 14px;
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  z-index: 22;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
}
.block-format-oborudi .text-8 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 88px;
  height: 17px;
  color: #ffffff;
  font-family: Manrope, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
  z-index: 23;
}
.block-format-oborudi .group-8 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  position: relative;
  height: 280px;
  padding: 1.05vw 1.05vw 1.05vw 1.05vw;
  background: #fafbff;
  z-index: 24;
  border-radius: 2.6vw;
}

.block-format-oborudi .frame-3,
.block-format-oborudi .frame-7,
.block-format-oborudi .group-8{
	width:33%;
}

.block-format-oborudi .wrapper-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  position: relative;
  height: 164px;
  z-index: 25;
  margin: auto 0;
}
.block-format-oborudi .wrapper-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  z-index: 26;
}
.block-format-oborudi .frame-c {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  z-index: 27;
}
.block-format-oborudi .frame-d {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 5px;
  position: relative;
  z-index: 28;
}
.block-format-oborudi .industrial-complex {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 35px;
  color: #010101;
  font-family: Manrope, var(--default-font-family);
  font-size: 32px;
  font-weight: 600;
  line-height: 35px;
  text-align: left;
  white-space: normal;
  z-index: 29;
}
.block-format-oborudi .high-throughput-enterprises {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 51.25vw;
  height: 1.25vw;
  color: #010101;
  font-family: Manrope, var(--default-font-family);
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
  z-index: 30;
}
.block-format-oborudi .buttons-e {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  height: 60px;
  z-index: 31;
}
.block-format-oborudi .button-f {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: 0;
  gap: 10px;
  position: relative;
  height: 60px;
  padding: 12px 14px 12px 14px;
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  z-index: 32;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
}
.block-format-oborudi .read-more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 88px;
  height: 17px;
  color: #ffffff;
  font-family: Manrope, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
  z-index: 33;
}
.main-container{
	width: 100%;
	padding: 0 1vw;
	margin-bottom: 6vw;
}
/* block-terms-guarantees */
.block-terms-guarantees {}
.block-terms-guarantees .frame-2 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  min-width: 0;
  z-index: 4;
}
.block-terms-guarantees .frame-3 {
  display: flex;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 45px;
  position: relative;
	width: 33%;
   min-height: 260px;
  padding: 30px;
  background: #ffffff;
  z-index: 5;
  border-radius: 30px;
}
.block-terms-guarantees .frame-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  width: calc(100% - 200px);
  min-height: 127px;
  top: 54px;
}
.block-terms-guarantees .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 100%;
  z-index: 7;
}
.block-terms-guarantees .contract-docs {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 100%;
  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 32px;
  font-weight: 400;
  line-height: 35px;
  text-align: left;
  white-space: normal;
  z-index: 8;
}
.block-terms-guarantees .text-4 {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 100%;
  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  z-index: 9;
}
.block-terms-guarantees .text-5 {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 17px;
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 14px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  text-decoration: underline;
  white-space: normal;
  z-index: 10;
}
.block-terms-guarantees .pic1,
.block-terms-guarantees .pic2,
.block-terms-guarantees .pic3 {
  flex-shrink: 0;
  width: 152px;
  height: 152px;
  background: url(../new_img/RFwjkg5Kex.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 11;
  overflow: hidden;
  border-radius: 30px;
}
.block-terms-guarantees .pic2{
  background: url(../new_img/5Ho8oyyODg.png) no-repeat center;
  background-size: cover;
  border: 1px solid #000;
}
.block-terms-guarantees .pic3{
  background: url(../new_img/A2DuTiLoN9.png) no-repeat center;
  border: 1px solid #000;
}
/* bolock-format-bisnes */
.bolock-format-bisnes{}
.bolock-format-bisnes .frame-5 {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  min-width: 0;
  z-index: 4;
}
.bolock-format-bisnes .frame-6 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 10px;
  position: relative;
  width: 33%;
  height: 418px;
  padding: 87px 44px 87px 44px;
  background: #ffffff;
  z-index: 5;
  border-radius: 2.6vw;
}
.bolock-format-bisnes .frame-7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  position: relative;
  width: 100%;
}
.bolock-format-bisnes .purchase-equipment {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  font-family: Nunito Sans,var(--default-font-family) ;
  font-size: 40px;
  font-weight: 700;
  line-height: 44px;
  text-align: left;
  z-index: 10;
}
.bolock-format-bisnes .purchase-equipment-b {
  position: relative;
  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 40px;
  font-weight: 400;
  line-height: 44px;
  text-align: left;
  display: flex;
}
.bolock-format-bisnes .purchase-equipment-c {
  position: relative;
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 2.1vw;
  font-weight: 400;
  line-height: 44px;
  text-align: left;
  display: flex;
}
.bolock-format-bisnes .equipment-price {
  flex-shrink: 0;
  position: relative;
  width: 100%;
  font-family: Nunito Sans,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  text-overflow: initial;
  white-space: normal;
  z-index: 11;
}
.bolock-format-bisnes .equipment-price-10 {
  position: relative;
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 700;
  line-height: 1.1;
  text-align: left;
}
.bolock-format-bisnes .frame-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  position: relative;
  min-width: 0;
  z-index: 7;
}
/* block-arenda-medmap */
.block-arenda-medmap{
	
}
.block-arenda-medmap .frame-4 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 21px;
  position: relative;
  min-width: 0;
  z-index: 3;
}
.block-arenda-medmap .frame-5 {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  position: relative;
  width:48%;
  height: 420px;
  background: #ffffff;
  z-index: 4;
  overflow: hidden;
  border-radius: 30px;
	padding:40px;
}
.block-arenda-medmap .frame-6 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 20px;
  position: relative;
  width: 49%;
  z-index: 6;
}
.block-arenda-medmap .frame-7 {
  flex-shrink: 0;
  position: relative;
  width: 33%;
  height: 420px;
  background: #ffffff;
  z-index: 7;
  overflow: hidden;
  border-radius: 30px;
}
.block-arenda-medmap .frame-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
  position: relative;
  width: 218px;
  margin: 107px 0 0 40px;
  z-index: 8;
}
.block-arenda-medmap .check {
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
  background: url(../new_img/qFeKSY0bVM.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 9;
  overflow: hidden;
}
.block-arenda-medmap .frame-9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  min-width: 0;
  z-index: 10;
}
.block-arenda-medmap .no-capital-investment {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 218px;
  height: 58px;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  z-index: 11;
}
.block-arenda-medmap .no-terminal-needed {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 209px;
  height: 57px;
  color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  z-index: 12;
}
.block-arenda-medmap ul.block-new-ul{
	width:100%;
	max-width:681px;
}
.block-arenda-medmap ul.block-new-ul li{
	color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
}
/* block-chto-vhodin */
.block-chto-vhodin{
	
}
.block-chto-vhodin .frame-2 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  min-width: 0px;
}
.block-chto-vhodin .frame-3 {
  flex-shrink: 1;
  position: relative;
  width: 50%;
  height: 440px;
  background: rgb(255, 255, 255);
  z-index: 5;
  border-radius: 2.6vw;
  padding:40px;
}
.block-chto-vhodin ul.block-new-ul li{
	color: #000000;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 1.05vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
}
.block-chto-vhodin .frame-5 {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	align-self: stretch;
	flex-wrap: nowrap;
	flex-shrink: 0;
	gap: 40px;
	position: relative;
	min-width: 0;
}
.block-chto-vhodin .frame-6 {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 12.6vw;
  position: relative;
}
.block-chto-vhodin .frame-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 30px;
  position: relative;
}
.block-chto-vhodin .download-documents {
  color: #fe1d25;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: left;
  text-decoration: underline;
  white-space: normal;
}
/* block-dokumenti-zashita */
.block-dokumenti-zashita{}

.block-dokumenti-zashita .frame-2 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 20px;
  position: relative;
  min-width: 0;
  z-index: 4;
}
.block-dokumenti-zashita .frame-3 {
  flex-shrink: 0;
  position: relative;
  width: 50%;
  height: 420px;
  background: #fafbff;
  z-index: 5;
  border-radius: 2.6vw;
}
.block-dokumenti-zashita .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 19px;
  position: relative;
  width: 50%;
  height: 420px;
  z-index: 10;
}
.block-dokumenti-zashita .frame-4 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  gap: 40px;
  position: relative;
  width: 100%;
  padding: 63px 40px;
  z-index: 6;
}
.block-dokumenti-zashita .frame-6 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 420px;
  z-index: 11;
  overflow: hidden;
  border-radius: 2.6vw;
}
.block-dokumenti-zashita .photo {
  position: relative;
  width: 943px;
  height: 452px;
  background: url(../new_img/QtqpfYE7H6.png) no-repeat center;
    background-size: auto;
  background-size: cover;
  z-index: 12;
  border-radius: 30px 30px 0 0;
}
/* .block-sostav-nast-termenal  */
.block-sostav-nast-termenal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.6vw;
}
.block-sostav-nast-termenal .frame-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  width: 780px;
}
.block-sostav-nast-termenal .ellipse {
  flex-shrink: 0;
  position: relative;
  width: 20px;
  height: 20px;
  background: url(../new_img/zCSiUUjG5m.png)
    no-repeat center;
  background-size: cover;
  z-index: 1;
  border-radius: 50%;
}
.block-sostav-nast-termenal .table-terminal {
  flex-shrink: 0;
  position: relative;
  width: 788px;
  height: 42px;
  font-family: Manrope, var(--default-font-family);
  font-size: 42px;
  font-weight: 400;
  line-height: 42px;
  text-align: center;
  text-overflow: initial;
  white-space: normal;
  z-index: 2;
}
.block-sostav-nast-termenal .composition {
  position: relative;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 42px;
  font-weight: 600;
  line-height: 46.2px;
  text-align: center;
}
.block-sostav-nast-termenal .table-terminal-esmo {
  position: relative;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 42px;
  font-weight: 400;
  line-height: 46.2px;
  text-align: center;
}
.block-sostav-nast-termenal .pre-flight-medical {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 694px;
  height: 25px;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 1.25vw;
  font-weight: 400;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  z-index: 3;
}
.block-sostav-nast-termenal .frame-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 2.6vw;
  position: relative;
  min-width: 0;
  z-index: 4;
}
.block-sostav-nast-termenal .frame-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 2.6vw;
  position: relative;
  z-index: 5;
}
.block-sostav-nast-termenal .frame-4 {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 30px;
  position: relative;
  z-index: 6;
  align-items: stretch;
}
.block-sostav-nast-termenal .frame-5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 50%;
  z-index: 7;
}
.block-sostav-nast-termenal .frame-6 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  /* height: 420px; */
  background: #fafbff;
  z-index: 8;
  border-radius: 2.6vw;
  padding-bottom:1vw;
}
.block-sostav-nast-termenal .frame-7 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 40px;
  position: relative;
  width: 776px;
  margin: 3.1vw 0 0 30px;
  z-index: 9;
}
.block-sostav-nast-termenal .frame-8 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  min-width: 0;
  z-index: 10;
}
.block-sostav-nast-termenal .frame-8 p{
	  color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
}
.block-sostav-nast-termenal.variant-2 .frame-8,
.block-sostav-nast-termenal.variant-2 .frame-8 p{
	font-size: 20px;
  font-weight: 500;
  line-height: 120%;
}
.rep-text-box ul,
.block-new-text ul {
  padding-left: 1.4vw;
  display: flex;
  flex-direction: column;
  gap: 0.45vw;
}
.rep-text-box div{
  flex-direction: column;
  display: flex;
	gap: 0.45vw;
}
.rep-text-box ul li,
.block-new-text ul li{
	list-style-type: disc;
}
.block-new-text p{
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
	margin: 10px 0;
}
.block-sostav-nast-termenal .medical-complex {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 594px;
  height: 96px;
  color: #010101;
  font-family: Manrope, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  z-index: 11;
}
.block-sostav-nast-termenal .workplace-transformer {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 580px;
  height: 96px;
  color: #010101;
  font-family: Manrope, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
  z-index: 12;
}
.block-sostav-nast-termenal .frame-9 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 40px;
  position: relative;
  width: 440px;
  z-index: 13;
}
.block-sostav-nast-termenal .button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 430px;
  height: 60px;
  padding: 12px 14px 12px 14px;
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  z-index: 14;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
}
.block-sostav-nast-termenal .order {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  width: 71px;
  height: 17px;
  color: #ffffff;
  font-family: Manrope, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  white-space: normal;
  z-index: 15;
}
.block-sostav-nast-termenal .frame-a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 10px;
  position: relative;
  width: 50%;
  /* height: 420px; */
  padding: 40px 41px 40px 41px;
  background: #fafbff;
  z-index: 16;
  border-radius: 2.6vw;
  overflow: hidden;
}
.block-sostav-nast-termenal .frame-a.no-feat{
  padding:0;
}
.no-feat .tr-block-all {
  height: 100%;
}
.block-sostav-nast-termenal.variant-2 .frame-a.no-feat{
  padding: 0;
}
.block-sostav-nast-termenal .frame-a.no-feat img {
  object-fit: cover;
}
.block-sostav-nast-termenal .frame-a img{
width: auto;
  height: 100%;
  display: block;
  max-width: 100%;
}
.tr-block-all{
  position: relative;
}
.block-sostav-nast-termenal .tr-block{
	position:absolute;
}
.tr-block .tr-text{
	position:absolute;
	top: -18px;
	right: -172px;
	width: 162px;
	padding: 12px 14px;
	border: 1px solid rgba(254, 29, 37, 1);
  font-family: Manrope, var(--default-font-family);
	font-weight: 400;
	font-size: 0.83vw;
	line-height: 105%;
	letter-spacing: 0%;
	text-align: center;
	vertical-align: middle;
	border-radius:10px;
	color: rgba(254, 29, 37, 1);
	display:none;
}
.tr-block:hover .tr-text{
	display:block;
}
.tr-block.vd-tr4 .tr-text,
.tr-block.vd-tr5 .tr-text,
.tr-block.vd-tr6 .tr-text{
	right: auto;
	left: -172px;
}
.tr-block.vd-tr1{
top: 39px;
  right: -42px;
}
.tr-block.vd-tr2{
top: 112px;
  right: -28px;
}
.tr-block.vd-tr3{
top: 212px;
  right: -40px;
}
.tr-block.vd-tr4{
top: 286px;
  left: -10px;
}
.tr-block.vd-tr5{
top: 157px;
  left: -10px;
}
.tr-block.vd-tr6{
top: 58px;
  left: -10px;
}











.block-sostav-nast-termenal .photo-room {
  flex-shrink: 1;
  position: relative;
  width: 268px;
  height: 402px;
  background: url(../new_img/A4SaLP06US.png) no-repeat center;
  background-size: cover;
  z-index: 17;
}
.block-sostav-nast-termenal .frame-b {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: absolute;
  width: 134px;
  height: 1.25vw;
  top: 69px;
  left: 308px;
  background: url(../new_img/UkqUiH2sEE.png)
    no-repeat center;
  background-size: cover;
  z-index: 18;
}
.block-sostav-nast-termenal .frame-c {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: absolute;
  width: 134px;
  height: 1.25vw;
  top: 164px;
  left: 308px;
  background: url(../new_img/wsRKva2eiX.png)
    no-repeat center;
  background-size: cover;
  z-index: 19;
}
.block-sostav-nast-termenal .frame-d {
   display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: -4px;
  position: absolute;
  width: 162px;
  height: 67px;
  top: 176px;
  left: 691px;
  z-index: 20;
}
.block-sostav-nast-termenal .call-back-button {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 162px;
  height: 67px;
  padding: 12px 14px 12px 14px;
  background: #ffffff;
  border: 1px solid #fe1d25;
  z-index: 21;
  border-radius: 10px;
}
.block-sostav-nast-termenal .vandal-resistant-case {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  width: 134px;
  height: 34px;
  color: #fe1d25;
  font-family: Manrope, var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 16.8px;
  text-align: center;
  z-index: 22;
}
.block-sostav-nast-termenal .frame-e {
   display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  position: absolute;
  width: 134px;
  height: 1.25vw;
  top: 306px;
  left: 310px;
  background: url(../new_img/ocsLnb8m3N.png)
    no-repeat center;
  background-size: cover;
  z-index: 23;
}
.block-sostav-nast-termenal .frame-f {
  display: flex;
  align-items: center;
  align-self: stretch;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 50px;
  position: relative;
  min-width: 0;
  z-index: 24;
}
.block-sostav-nast-termenal .frame-10 img{
	width:100%;
	height:100%;
	object-fit:cover;
}
.block-sostav-nast-termenal .frame-10 {
  flex-shrink: 1;
  position: relative;
  width: 51%;
  height: 575px;
  background: url(../new_img/2wLaV8E4NU.png)
    no-repeat center;
  background-size: cover;
  z-index: 25;
  border-radius: 2.6vw;
  overflow: hidden;
}
.block-sostav-nast-termenal .license {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4px;
  position: relative;
  width: 410px;
  height: 50px;
  margin: 505px 0 0 1.05vw;
  padding: 3px 7px 3px 7px;
  background: #ffffff;
  z-index: 27;
  border-radius: 30px;
  backdrop-filter: blur(10px);
}
.block-sostav-nast-termenal .material-symbols-info {
  flex-shrink: 0;
  position: relative;
  width: 32px;
  height: 32px;
  background: url(../new_img/MH91rtC2PR.png)
    no-repeat center;
  background-size: cover;
  z-index: 28;
  overflow: hidden;
}
.block-sostav-nast-termenal .throughput-capacity {
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  height: 17px;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 16px;
  font-weight: 700;
  line-height: 17px;
  text-align: left;
  white-space: normal;
  z-index: 29;
}
.block-sostav-nast-termenal .photo {
  position: absolute;
  width: 1701px;
  height: 794px;
  top: 0;
  left: 0;
  z-index: 26;
  border-radius: 2.6vw;
}
.block-sostav-nast-termenal .frame-11 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 10px;
  position: relative;
  width: 50%;
  height: 575px;
  background: #ffffff;
  z-index: 30;
  border-radius: 2.6vw;
}
.block-sostav-nast-termenal .photo-12 {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  min-width: 0;
  height: 794px;
  z-index: 31;
  border-radius: 2.6vw;
}
.block-sostav-nast-termenal .frame-13 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 50px;
  width: 90%;
  height: 457px;
}
.block-sostav-nast-termenal .frame-13 li{
	color: #010101;
  font-family: Manrope,var(--default-font-family) ;
  font-size: 16px;
  font-weight: 400;
  line-height: 19.2px;
  text-align: left;
}
.block-sostav-nast-termenal .included {
  align-self: stretch;
  flex-shrink: 0;
  flex-basis: auto;
  position: relative;
  min-width: 0;
  height: 40px;
  color: #2d2d2d;
  font-family: Manrope, var(--default-font-family);
  font-size: 2.1vw;
  font-weight: 600;
  line-height: 39.6px;
  text-align: left;
  white-space: normal;
  z-index: 33;
}
.owl-carousel.owl-loaded.mobi-slider{
	display:none;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span{
	background: #FE1D25;
}
.bolock-format-bisnes.bolock-nadegnosti .frame-6{
	height:192px;
	padding:30px;
	border-radius:30px;
}
.nadegnosti-item{
	display:flex;
	gap:45px;
}
.nadegnosti-item img{
	display:flex;
	height:50px;
	width:50px;
}
.nadegnosti-item h3{
  font-family: Manrope, var(--default-font-family);
  font-size: 36px;
  line-height: 1.1;
  
  font-weight: 400;
}
.nadegnosti-item p{
  font-family: Manrope, var(--default-font-family);
  font-size: 20px;
  line-height: 1.1;
  font-weight: 400;
}
.nadegnosti-button .btn-primary{
	margin:30px auto 0;
	display:block;
}
.bolock-vipusk-reis .blog-detail-body {
   height: 806px;
  overflow-x: auto; 
  gap: 5px;
}
/* detail-news-header */
.detail-news-header{
	background: rgba(250, 251, 255, 1);
	border-radius: 30px;
	padding: 20px;
	gap: 30px;
	display:flex;
	flex-wrap: wrap;
	flex-direction: column;
	padding:40px;
	font-family: Manrope, var(--default-font-family);
	font-weight: 300;
	font-style: Light;
	font-size: 16px;
	line-height: 105%;
	letter-spacing: 0%;

}
.baracumbs-news,
.detail-news-header span,
.detail-news-header a{
	color: rgba(1, 1, 1, 0.4);
}
.info-top-news {
	display:flex;
	gap:4vw;
}
.info-top-news  span{
	display:flex;
	margin-right:4wv;
}
.detail-news-header h1{
	font-family: Manrope, var(--default-font-family);
	font-weight: 500;
	font-style: Medium;
	font-size: 3vw;
	line-height: 110%;
	letter-spacing: 0%;
	margin:0;
}
.detail-news-content{
	display:flex;
	flex-wrap: nowrap;
	width:100%;
	max-width:1300px;
	margin-bottom: 50px;
	gap: 30px;
}
.info-top-cat{
	display:flex;
}
.info-top-cat span{
padding: 12px 14px;
	display:flex;
}
.info-top-cat a{
	display:flex;
border-radius: 10px;
gap: 10px;
padding: 12px 14px;
border: 1px solid rgba(158, 157, 157, 0.15)
}
.detail-article-left{
	display:flex;
	flex-wrap: wrap;
	width:70%;
	font-family: Manrope, var(--default-font-family);
	font-weight: 300;
	font-style: Light;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0%;
	gap: 1vw;
}
.detail-article-right{
	display:flex;
	width:30%;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap:50px;
}
.name-itog,
.detail-article-left h2,
.detail-article-right h2{
	font-family: Manrope, var(--default-font-family);
	font-weight: 600;
	font-style: SemiBold;
	font-size: 42px;
	line-height: 110%;
	letter-spacing: 0%;
	margin-bottom:20px;
}
.detail-news-content ul{
	padding-left:30px;
}
.detail-news-content li{
	list-style: disc;
}
.block-text_fff{
	display:flex;
	flex-wrap: wrap;
	border-radius: 30px;
	padding: 30px;
	gap: 16px;
	background: rgba(250, 251, 255, 1);
}
.detail-article-right .bnner-block{
	display:flex;
	flex-wrap: wrap;
	border-radius: 30px;
	padding: 30px;
	gap: 16px;
	background: rgba(250, 251, 255, 1);
	height: 340px;
}
.blog-section.newsin-block{
	padding:0;
}
.blog-section.newsin-block h2.blog-title{
	font-family: Manrope, var(--default-font-family);
	font-weight: 400;
	font-style: Regular;
	font-size: 24px;
	line-height: 110%;
	letter-spacing: 0%;
	text-align: center;
}
.blog-section.newsin-block .blog-header{
	gap:0;
}
.blog-section.newsin-block .ellipse{
	margin-bottom:0;
}
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw;
}
.blog-section.newsin-block .blog-card {
  width: 100%;
  max-width: 100%;
	font-family: Manrope, var(--default-font-family);
font-weight: 500;
font-style: Medium;
font-size: 24px;
line-height: 105%;
letter-spacing: 0%;

}
.blog-section.newsin-block .blog-card button{
	font-family: Manrope, var(--default-font-family);
	font-weight: 500;
	font-style: Medium;
	font-size: 16px;
	line-height: 105%;
	letter-spacing: 0%;
	text-decoration: underline;
	text-decoration-style: solid;
	color: rgba(254, 29, 37, 1);
	cursor:pointer;
}
.detail-article-right .bnner-block p{
	width: 100%;
	font-family: Manrope,var(--default-font-family) ;
	font-weight: 400;
	font-style: Regular;
	font-size: 20px;
	line-height: 110%;
	letter-spacing: 0%;
}
.detail-article-right .bnner-block .btn-primary{
	padding: 1.1vw 1.8vw;
	width: 100%;
}
.news-block-content.block-itog li::marker {
  color: red;
}
.news-block-content a{
	 color: red;
}
.news-block-content.block-citata{
	border-radius: 30px;
	padding: 20px;
	gap: 10px;
	border: 1px solid rgba(254, 29, 37, 1);
	width:100%;
	max-width:100%;
	font-family: Manrope,var(--default-font-family) ;
	font-weight: 600;
	font-style: SemiBold;
	font-size: 16px;
	line-height: 150%;
	letter-spacing: 0%;
}
.news-block-content.block-forma_text{
	display: flex;
	flex-wrap: wrap;
	border-radius: 30px;
	gap: 10px;
	padding: 33px 20px;
	flex-direction: column;
	background: rgba(250, 251, 255, 1);
}
.news-block-content.block-forma_img{
	padding: 27px;
	border-radius: 30px;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	gap: 20px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: cover;
}
.news-block-content.block-forma_img a{
	display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 10px;
  position: relative;
  width: 260px;
  height: 60px;
  padding: 12px 14px;
  background: linear-gradient(180deg, #ff7479, #fe1d25);
  z-index: 25;
  border-radius: 10px;
  box-shadow: 4px 4px 4px 0 rgba(254, 29, 37, 0.15);
  color: #ffffff;
  font-family: Manrope,var(--default-font-family);
  font-size: 16px;
  font-weight: 500;
  line-height: 17px;
  text-align: center;
  white-space: nowrap;
}
.news-block-content.block-forma_text h2,
.news-block-content.block-forma_text h3,
.news-block-content.block-forma_text h4{
  font-family: Manrope,var(--default-font-family);
font-weight: 600;
font-style: SemiBold;
font-size: 36px;
line-height: 110%;
letter-spacing: 0%;

}
.news-block-content.block-forma_text{
  font-family: Manrope,var(--default-font-family);
font-weight: 400;
font-style: Regular;
font-size: 24px;
line-height: 110.00000000000001%;
letter-spacing: 0%;

}
/* banner-tg-fon */
.banner-tg-fon{
	position:fixed;
	width:100%;
	height:100%;
	top:0;
	left:0;
	background: rgba(0,0,0,0.5);
	z-index:777;
	display:none;
}
.banner-tg{
	position:fixed;
	width:90%;
	height:fit-content;
	background: rgba(0,0,0,0);
	z-index:7777;
	max-width:1200px;
	top:0;
	left:0;
	bottom:0;
	right:0;
	margin: auto;
	display:none;
}
.banner-tg-fon.active,
.banner-tg.active{
	display:block;
}
.banner-tg img{
	width:100%;
	display:block;
	height:auto;
}
.banner-tg img.banner-tg-pc{
	display:block;
}
.banner-tg img.banner-tg-mobi{
	display:none;
}
.banner-tg-close{
	position:absolute;
	width: 4%;
	height: 6%;
	top: 4%;
	right: 2%;
	cursor:pointer;
	z-index:7;
}
.banner-tg a{
	position: absolute;
	width: 39%;
	height: 11%;
	left: 6%;
	bottom: 13%;
	cursor: pointer;
	z-index:7;
}
.banner-tg-in-fon{
	position: absolute;
	width:100%;
	height:100%;
	top:0;
	left:0;
	z-index:5;
}







@media (max-width: 1600px) {
	.remote-check-3 {
  font-size: 2.7vw;
	}
	.banner-title span.work-all-russia{
		font-size:1.7vw;
	}
.block-sostav-nast-termenal.variant-2 .frame-a img {
  width: 100%;
  max-width: 100%;
  height: 575px;
  object-fit: cover;
}

.block-sostav-nast-termenal.variant-2 .tr-block-all {
  margin-left: -70%;
}
	.tr-block.vd-tr4 .tr-text, .tr-block.vd-tr5 .tr-text, .tr-block.vd-tr6 .tr-text {
  right: auto;
  left: -112px;
}
.block-sostav-nast-termenal .frame-a .tr-block img.tr-img{
	width: 100px;
}
.tr-block .tr-text {
  top: -11px;
  right: -112px;
  width: 100px;
  padding: 10px 7px;
}

.tr-block.vd-tr1{
top: 43px;
  right: -20px;
}
.tr-block.vd-tr2{
top: 112px;
  right: -20px;
}
.tr-block.vd-tr3{
top: 212px;
  right: -20px;
}
.tr-block.vd-tr4{
top: 286px;
  left: 15px;
}
.tr-block.vd-tr5{
top: 157px;
  left: 15px;
}
.tr-block.vd-tr6{
top: 58px;
  left: 15px;
}

	.block-sostav-nast-termenal .frame-10{
		width: 53%;
  flex-shrink: 1;
	}
.block-sostav-nast-termenal .frame-11 {
  flex-shrink: 1;
  width: 50%;
}
.block-arenda-medmap .frame-4{
  flex-wrap: wrap;
  height: auto;
}
.block-arenda-medmap .frame-6{
	width:100%;
	gap: 20px;
}
.block-arenda-medmap .frame-6,
.block-arenda-medmap .frame-5{
	width: 49%;
}	
.block-arenda-medmap .frame-7 {
  flex-shrink: 1;
}  
.new-banner-block .frame-7 {
  gap: 1vw;
  height: fit-content;
}
.new-banner-block .preim-block-all {
  width: 33%;
  height: fit-content;
  min-height: 400px;
  flex-shrink: 1;
}	
.new-banner-block .img {
  width: 53%;	
}
.header-topmenu .callback-btn,
.header-topmenu .btn-primary {
    width: 100%;
    height: 30px;
	padding: 6px 14px;
	flex-shrink: 1;
	font-size: 14px;
	padding: 21px 16px;
}
.new-banner-block .frame-5 p {
  font-size: 1.5vw;
  line-height: 1.7vw;
}
.new-banner-block .preim-block-text {
  height: fit-content;
}
.new-banner-block .heading {
  font-size: 2.1vw;
}
.o-kompanii-sotr-info{
	min-height:120px;
}
.block-sostav-nast-termenal .frame-7{
	width: 90%;
    margin: 3.1vw auto;
}
.block-sostav-nast-termenal .frame-6{
	height: 100%;
}
.block-sostav-nast-termenal .frame-a{
	padding:3.1vw 0;
	height: fit-content;
	flex-shrink: 1;
}
.block-sostav-nast-termenal .frame-13 {
  width: 90%;
  height: auto;
}
.block-sostav-nast-termenal .frame-f,
.block-sostav-nast-termenal .frame-4,
.block-sostav-nast-termenal .frame-3,
.block-sostav-nast-termenal .frame-2{
	gap: 30px;
}
.new-banner .banner-content {
	max-width: 57%;
}
.work-all-russia {
  font-size: 1.75vw;
}
.bolock-vipusk-reis .span {
  line-height: 150%;
}

.block2 .main-container {
  flex-wrap: wrap;
  max-width: 99%;
}
.mobile-complex-right {
  max-height: none;
}
.bolock-vipusk-reis .frame-5{
	max-width: 50%;
}
.bolock-vipusk-reis .buttons {
  gap: 10px;
  flex-direction: row;
  height: auto;
}
.bolock-vipusk-reis .buttons-el2,
.bolock-vipusk-reis .buttons-el1 {
  flex-shrink: 1;
}
.block-type-list .frame-c {
  background-size: 100% auto;
}
.block-type-list .frame-c {
  height: 415px;
}
.block-zakon-protect .frame-3{
	width: 50%;
}
.block-zakon-protect .frame-5 {
  flex-shrink: 1;
  width: 50%;
}
.bolock-format-bisnes .frame-5,
.block-terms-guarantees .frame-2{
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}
.bolock-format-bisnes .frame-6,
.block-terms-guarantees .frame-3 {
  width: 32%;
}
.block-format-oborudi .frame-2 {
	gap: 20px;
}
.block-format-oborudi .frame-3,
.block-format-oborudi .frame-7,
.block-format-oborudi .group-8{
	width: 32%;
}
.block-format-oborudi .frame-9{
	width: 100%;
}
.block-format-oborudi .mobile-complex,
.block-format-oborudi .desktop-complex,
.block-format-oborudi .industrial-complex {
  height: auto;
  min-height:50px;
  font-size: 24px;
}
.related-grid .owl-nav,
.leaders-slider .owl-nav {
  position: relative;
  width: 120px;
}




  /* TOPBAR */
  .topbar {
    border-bottom: 0.096vw solid rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 99%;
  height: 96px;
  padding: 15px 30px;
  border-radius: 50px;
  }
  
  .topbar-inner {
    min-height: 5.28vw;
    padding: 1.02vw 0;
    gap: 1vw;
  }
  
  .logo-img {
    width: 7.44vw;
  }
  
  .logo-text {
    font-size: 0.84vw;
  }
  
  .topbar-info {
    gap: 0.4vw;
	max-width: 160px;
  }
  
  .info-icon {
    width: 1.02vw;
    height: 1.02vw;
  }
  
  .info-text {
    gap: 0.3vw;
  }
  
  .info-label,
  .info-value {
    font-size: 0.9vw;
  }
  
  .topbar-right {
display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 1;
  gap: 1vw;
  width: 350px;
}
  
  .topbar-flag-block {
    font-size: 1.02vw;
  }
  
  .lang-flag {
    width: 1.2vw;
  }
  
  .topbar-rutube {
    gap: 0.6vw;
    font-size: 1.02vw;
  }
  
  .r-logo {
    width: 1.2vw;
    height: 1.2vw;
  }
  
  .callback-btn {
    font-size: 1.02vw;
    padding: 0.66vw 2.16vw;
    border: 0.12vw solid #FE1D25;
    border-radius: 2.4vw;
  }
  
  /* NAV */
  .nav-list {
    padding: 0.84vw 0 0.72vw;
    gap: 1.92vw;
  }
  
  .nav-link {
    font-size: 1.02vw;
    padding-bottom: 0.36vw;
	white-space: nowrap;
  }
  
  /* BANNER */
  .banner-container {
    border-radius: 1.44vw;
  }
  
  .banner-inner {
    gap: 1.2vw;
    /* flex-direction: column; */
  }
  .banner-content {
    max-width: 100%;
  }
  .banner-content-inner {
    gap: 2.4vw;
    border-radius: 1.44vw;
    padding: 3vw;
  }
  .banner-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 70%;
	max-height: 579px;
}
  .banner-decor {
    bottom: 2.4vw;
    right: -3.6vw;
    width: 32.4vw;
  }
  
  .banner-title {
    font-size: 3.48vw;
  }
  
  .title-highlight {
    margin-right: 0.36vw;
  }
  
  .title-line {
    width: 4.8vw;
    margin-right: 0.24vw;
  }
  
  .banner-subtitle {
    font-size: 2.4vw;
  }
  
  .banner-features {
    gap: 1.2vw;
  }
  
  .feature-item {
    gap: 0.6vw;
    font-size: 1.02vw;
  }
  
  .check-icon {
    width: 1.44vw;
    height: 1.44vw;
  }
  
  .banner-buttons {
    gap: 1.8vw;
    margin-top: 0.96vw;
  }
  
  .btn-primary,
  .btn-secondary {
    font-size: 1.2vw;
    padding: 1.32vw 3.36vw;
    border-radius: 0.48vw;
  }
  
  .btn-secondary {
    border: 0.144vw solid #FE1D25;
  }
  
  .main-photo {
    border-radius: 0.6vw;
  }
  
  .banner-badge {
    gap: 0.96vw;
    padding: 0.96vw 1.44vw;
    border-radius: 0.48vw;
  }
  
  .badge-logo {
    width: 8.4vw;
  }
  
  .badge-right {
    bottom: 1.2vw;
    right: 1.2vw;
    padding: 0.6vw 1.02vw;
  }
  
  .license-text {
    font-size: 0.9vw;
  }
  
  /* VIDEO SECTION */
  .video-inner {
    gap: 2.4vw;
  }
  
  .video-left {
    gap: 1.8vw;
  }
  
  .video-thumbnail {
    border-radius: 0.6vw;
  }
  
  .video-caption {
    font-size: 1.14vw;
    padding: 0 7.2vw;
  }
  
  .video-content {
    border-radius: 0.6vw;
    gap: 3vw;
  }
  
  .video-title {
    font-size: 2.88vw;
  }
  
  .video-features {
    gap: 1.2vw;
  }
  
  .video-feature-item {
    gap: 1.44vw;
  }
  
  .video-feature-icon {
    width: 2.4vw;
  }
  
  .video-feature-text {
    gap: 0.6vw;
  }
  
  .video-feature-main {
    font-size: 1.56vw;
  }
  
  .video-feature-sub {
    font-size: 1.2vw;
  }
  
  /* PROCESS SECTION */
  .process-container {
    gap: 1.2vw;
  }
  
  .process-header {
    margin-bottom: 2.4vw;
  }
  
  .process-title,
  .process-title-sub {
    font-size: 3.36vw;
  }
  
  .process-title-sub {
    margin: 0 0 0.72vw 0;
  }
  
  .process-subtitle {
    font-size: 1.32vw;
  }
  
  .process-steps {
    gap: 1.8vw;
  }
  
  .step-content {
    gap: 1.44vw;
    padding: 1.2vw 0.6vw;
  }
  
  .step-title {
    font-size: 1.32vw;
  }
  
  .step-description {
    font-size: 1.02vw;
  }
  
  .step-result {
    font-size: 1.02vw;
    gap: 0.36vw;
  }
  
  .step-result strong {
    margin-bottom: 0.24vw;
  }
  
  /* MOBILE COMPLEX SECTION */
  .mobile-complex-section {
    margin-top: 6vw;
  }
  
  .mobile-complex-container {
    gap: 1.8vw;
  }
  
  .mobile-complex-header {
    margin-bottom: 2.4vw;
  }
  
  .mobile-complex-title {
	width: 100%;
	max-width: 97%;
  }
  
  .mobile-complex-subtitle {
    font-size: 1.32vw;
  }
  
  .mobile-complex-content {
	  align-items: stretch;
  }
  
  .complex-content-inner {
    gap: 1.8vw;
    padding: 1.8vw 0 1.8vw 1.2vw;
	  justify-content: space-between;
  height: 100%;
  }
  
  .complex-title {
    font-size: 2.76vw;
  }
  
  .complex-subtitle {
    font-size: 1.32vw;
  }
  
  .feature-text {
    font-size: 1.26vw;
    text-align: center;
  }
  
  .complex-target {
    font-size: 1.14vw;
  }
  
  .complex-buttons {
    gap: 1.2vw;
  }
  
  .btn-details,
  .btn-price {
    font-size: 1.2vw;
    padding: 1.2vw 2.4vw;
    border-radius: 3vw;
  }
  
  .btn-price {
    border: 2.4px solid #FE1D25;
  }
  
  .play-icon-link {
    width: 7.2vw;
    height: 7.2vw;
  }
  
  .mobile-complex-decor {
    bottom: 0vw;
    right: -7.2vw;
    width: 32.4vw;
  }
  
  .complex-badge {
    width: 15.6vw;
    bottom: 1.8vw;
    left: 1.8vw;
    padding: 0.6vw;
    border-radius: 0.6vw;
  }
  
  .badge-text {
    font-size: 1.08vw;
  }
  
  /* LEGAL SECTION */
  .legal-section {
    margin-top: 6vw;
  }
  
  .legal-content {
    gap: 3.6vw;
  }
  
  .legal-left {
    gap: 2.4vw;
  }
  
  .legal-title {
    font-size: 2.76vw;
    gap: 0.36vw;
  }
  
  .legal-title-line {
    width: 6vw;
  }
  
  .legal-item {
    gap: 0.96vw;
  }
  
  .legal-bullet {
    width: 0.6vw;
    height: 0.6vw;
    margin-top: 0.48vw;
  }
  
  .legal-text {
    font-size: 1.2vw;
  }
  
  .legal-info {
    font-size: 1.14vw;
  }
  
  .legal-links {
    gap: 2.4vw;
  }
  
  .legal-link {
    font-size: 1.08vw;
  }

  .legal-partners-section {
    padding: 0 5vw;
    margin-top: 2.4vw;
  }
  
  .partners-list {
    gap: 1vw;
  }
  .partners-list-img {
  width: 48%;
  height: 127px;
}
  .partner-logo {
    height: 100%;
  }
  
  .legal-support-section {
    padding: 6vw 5vw 0 5vw;
  }

  .legal-support-card {
    border-radius: 1.92vw;
    box-shadow: none;
  }

  .legal-support-image {
    padding: 0;
  }

  .legal-support-photo {
    border-radius: 1.44vw;
  }
  .legal-support-content {
    gap: 1.92vw;
    padding: 3.6vw;
  }

  .legal-support-title {
    font-size: 3.12vw;
  }

  .legal-support-item {
    gap: 1.08vw;
  }

  .legal-support-bullet {
    width: 0.66vw;
    height: 0.66vw;
    margin-top: 0.54vw;
  }

  .legal-support-desc {
    font-size: 1.3vw;
  }

  .legal-support-text {
    font-size: 1.2vw;
  }

  .medmap-details-section {
    padding: 6vw 5vw 0 5vw;
  }

  .medmap-details-container {
    gap: 2.4vw;
  }

  .medmap-details-content {
    width: 49%;
    gap: 1.4vw;
  }

  .medmap-details-title {
    font-size: 3.1vw;
  }

  .medmap-details-desc {
    font-size: 1.25vw;
  }

  .medmap-details-subtitle {
    font-size: 1.45vw;
  }

  .medmap-details-bullet {
    width: 1.6vw;
    height: 1.6vw;
    font-size: 1vw;
  }

  .medmap-details-text {
    font-size: 1.24vw;
  }

  .medmap-details-note {
    font-size: 1.2vw;
  }

  .details-btn {
    font-size: 1.15vw;
    padding: 1.1vw 2.6vw;
  }

  .medmap-details-image {
    width: 49%;
  }

  .medmap-details-decor {
    left: 18%;
    bottom: 4vw;
    width: 22vw;
  }

  .legal-support-note {
    font-size: 1.14vw;
  }

  /* BUSINESS FORMAT */
  .business-format {
    margin-top: 7.2vw;
  }
  
  .bf-container {
    gap: 2.4vw;
  }
  
  .bf-title {
    font-size: 2.76vw;
    margin: 0 0 1.08vw 0;
  }
  
  .bf-subtitle {
    font-size: 1.2vw;
  }
  
  .bf-cards {
    gap: 2.4vw;
  }
  
  .bf-card {
    border-radius: 1.92vw;
    padding: 2.4vw;
    border: 0.168vw solid transparent;
    gap: 1.44vw;
    min-height: 36vw;
  }
  
  .bf-card::before {
    border-radius: 1.92vw;
    padding: 0.168vw;
  }
  
  .bf-card:hover {
    transform: translateY(-0.48vw);
  }
  
  .bf-card-title {
    font-size: 1.68vw;
  }
  
  .bf-intro {
    font-size: 1.2vw;
  }
  
  .bf-list {
    gap: 0.66vw;
    padding-left: 1.44vw;
  }
  
  .bf-list li::before {
    left: -1.44vw;
    font-size: 1.08vw;
  }
  
  .bf-list li span {
    font-size: 1.2vw;
  }
  
  .bf-price {
    gap: 0.36vw;
  }
  
  .price-main {
    font-size: 1.2vw;
  }
  
  .bf-btn {
    margin-top: 1.2vw;
    padding: 1.2vw 0;
    border-radius: 2.4vw;
    font-size: 1vw;
  }
  
  .bf-btn:hover {
    transform: translateY(-0.3vw);
  }
  
  /* RELIABILITY SECTION */
  .reliability-section {
    margin-top: 7.2vw;
  }
  
  .reliability-container {
    gap: 4.8vw;
  }
  
  .rel-title {
    font-size: 2.76vw;
    margin-bottom: 1.8vw;
  }
  
  .rel-subtitle {
    font-size: 1.44vw;
    margin-bottom: 1.8vw;
  }
  
  .rel-quote-block {
    gap: 1.44vw;
    margin-bottom: 2.4vw;
  }
  
  .rel-line-img {
    width: 0.72vw;
    margin-top: 0.36vw;
  }
  
  .rel-quote-text {
    font-size: 1.14vw;
  }
  
  .rel-list {
    gap: 1.2vw;
    margin-bottom: 2.4vw;
  }
  
  .rel-item {
    gap: 0.96vw;
  }
  
  .rel-num {
    width: 1.92vw;
    height: 1.92vw;
    font-size: 1.08vw;
    margin-top: 0.12vw;
  }
  
  .rel-text {
    font-size: 1.2vw;
  }
  
  .rel-btn {
    border-radius: 3vw;
    padding: 1.2vw 3vw;
    font-size: 1.2vw;
  }
  
  .rel-img {
    border-radius: 2.4vw;
  }
  
  /* REPUTATION SECTION */
  .reputation-section {
  }
  
  .rep-title {
    font-size: 3vw;
    margin-bottom: 3.6vw;
  }
  
  .rep-content {
    gap: 2.4vw;
    margin-bottom: 3.6vw;
  }
  
  .rep-img-wrapper {
    border-radius: 2.4vw;
  }
  
  .rep-text-box {
    gap: 1.8vw;
  }
  
  .rep-text-box p {
    font-size: 1.14vw;
  }
  
  .rep-right {
    border-radius: 2.4vw;
    padding: 3.6vw 2.4vw;
    gap: 3vw;
  }
  
  .rep-icon-row {
    gap: 1.2vw;
  }
  
  .rep-icon-row.center-row {
    gap: 3.6vw;
  }
  
  .rep-icon-item img {
    height: 3vw;
    margin-bottom: 1.2vw;
  }
  
  .rep-icon-item p {
    font-size: 1.08vw;
  }
  
  .rep-btn {
    border-radius: 3vw;
    padding: 1.2vw 3.6vw;
    font-size: 1.2vw;
  }
  
  /* COMPLEX SOLUTION SECTION */
  .complex-solution-section {
    margin-top: 6vw;
  }
  
  .complex-container {
    gap: 3.6vw;
  }
  
  .complex-top {
    gap: 3.6vw;
  }
  
  .complex-header-block {
    margin-bottom: 1.8vw;
  }
  
  .complex-title {
    font-size: 2.88vw;
  }
  
  .complex-subtitle-row {
    gap: 1.2vw;
    margin-top: 0.6vw;
  }
  
  .complex-decor-line {
    width: 7.2vw;
  }
  
  .complex-list {
    gap: 0.96vw;
  }
  
  .complex-list li {
    font-size: 1.14vw;
    padding-left: 1.44vw;
	min-height: auto;
  }
  .complex-list.two-row {
  gap: 10px;
}
.block-type-list .frame-2 {
  gap: 1vw;
}
.block-type-list .empty {
  width: 24%;
}

  .complex-list li::before {
    font-size: 1.44vw;
  }
  
  .complex-main-img {
    border-radius: 2.4vw;
  }
  
  .complex-vehicles {
    /* padding: 0 2.4vw; */
    margin-top: 2.4vw;
  }
  
  /* LEADERS SECTION */
  .leaders-section {
    margin-top: 6vw;
  }
  
  .leaders-title {
    margin-bottom: 3.6vw;
  }
  
  .leaders-slider {
    margin-bottom: 3.6vw;
    /* padding: 0 3.6vw; */
  }
  
  .leader-item {
	width: calc(100% - 20px);
  }
  
  .leaders-slider .owl-nav button.owl-prev,
  .leaders-slider .owl-nav button.owl-next {
    width: 3.6vw;
    height: 3.6vw;
  }
  
  .nav-arrow-svg {
    width: 1.2vw;
    height: 1.2vw;
  }
  
  .leaders-slider .owl-nav button.owl-prev {
    left: 1.2vw;
  }
  
  .leaders-slider .owl-nav button.owl-next {
    right: 1.2vw;
  }
  
  .leaders-btn {
    border-radius: 3vw;
    padding: 1.2vw 3.6vw;
    font-size: 1.2vw;
  }
  
  /* RESULTS SECTION */
  
  .results-title {
    font-size: 2.88vw;
    margin-bottom: 4.8vw;
  }
  
  .results-card {
    gap: 1.8vw;
  }
  
  .card-category {
    font-size: 1.02vw;
    min-height: 3vw;
  }
  
  .card-quote {
    font-size: 1.08vw;
  }
  
  /* FAQ SECTION */
  
  .faq-title {
    font-size: 2.88vw;
    margin-bottom: 3.6vw;
  }
  
  .faq-list {
    gap: 0.96vw;
    margin-bottom: 3.6vw;
  }
  .faq-header {
    padding: 1.8vw 2.4vw;
    gap: 2.4vw;
  }
  
  .faq-question {
    font-size: 1.2vw;
  }
  
  .faq-body {
    padding: 0 2.4vw 1.8vw 2.4vw;
  }
  
  .faq-body p {
    font-size: 1.14vw;
  }
  
  .faq-btn {
    border-radius: 3vw;
    padding: 1.2vw 3.6vw;
    font-size: 1.2vw;
  }
  .contact-details.footer-nav a {
  white-space: normal;
}
.contact-col.button-block {
  flex-direction: column;
  justify-content: center;
  gap: 1vw;
}
.contact-col.button-block .button-left, .contact-col.button-block .button-right {
  width: 100%;
}
.contact-col.button-block .button-left {
  justify-content: flex-start;
}
  /* CONTACTS SECTION */
  .contacts-section {
  }
  
  .contacts-container {
    gap: 1vw;
    justify-content: space-between;
  }
  .contacts-left {
  width: 49%;
}
.contacts-right {
  width: 49%;
}
  .form-box {
    padding: 3.6vw;
    border-radius: 2.4vw;
  }
  
  .form-title {
    font-size: 2.16vw;
    margin-bottom: 0.6vw;
  }
  
  .form-subtitle {
    font-size: 1.14vw;
    margin-bottom: 2.4vw;
  }
  
  .main-form {
    gap: 1.44vw;
  }
  
  .form-group {
    gap: 0.6vw;
  }
  
  .form-group label {
    font-size: 1.08vw;
    margin-left: 0.6vw;
  }
  
  .form-group input {
    padding: 1.2vw 1.8vw;
    border-radius: 2.4vw;
    font-size: 1.2vw;
  }
  
  .form-submit-btn {
    margin-top: 1.2vw;
    padding: 1.2vw;
    border-radius: 2.4vw;
    font-size: 1.32vw;
  }
  
  .form-agreement {
    font-size: 0.9vw;
    margin-top: 1.2vw;
  }
  
  .dept-list {
    gap: 0.9vw;
  }
  
  .dept-item {
    border-radius: 2.4vw;
  }
  
  .dept-header {
    padding: 1.2vw 2.4vw;
  }
  
  .dept-name {
    font-size: 1.32vw;
  }
  
  .dept-arrow {
    width: 1.44vw;
    height: 1.44vw;
  }
  
  .dept-content {
    padding: 1.2vw 2.4vw 1.8vw 2.4vw;
  }
  
  .dept-content p {
    font-size: 1.2vw;
  }
  
  .contacts-link-btn {
    padding: 1.2vw 3vw;
    border-radius: 2.4vw;
    font-size: 1.2vw;
    margin-top: 1.2vw;
  }
  
  .contacts-decor-img {
    bottom: -10.8vw;
    right: 2.4vw;
    width: 26.4vw;
  }
  
  /* FOOTER */
  .main-footer {
  }
  
  .footer-decor-img {
    top: -12vw;
    width: 60vw;
  }
  
  .footer-top {
    margin-bottom: 3.6vw;
  }
  
  .brand-col {
    width: 20%;
  }
  
  .footer-logo img {
    width: 9.6vw;
  }
  
  .footer-desc {
    font-size: 0.96vw;
  }
  
  .footer-copyright-text {
    font-size: 1.08vw;
  }
  
  .footer-heading {
    font-size: 1.32vw;
    margin-bottom: 1.44vw;
  }
  
  .footer-nav {
    gap: 0.72vw;
  }
  
  .footer-nav li a {
    font-size: 1.14vw;
  }
  
  .contact-details {
    gap: 0.48vw;
    margin-bottom: 1.8vw;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 1.2vw;
  }
  
  .footer-rutube-big img {
    width: 2.4vw;
    height: 2.4vw;
  }
  
  .action-col {
    gap: 1.2vw;
    width: 30%;
  }
  
  .footer-rutube-small {
    gap: 0.6vw;
  }
  
  .footer-rutube-small span {
    font-size: 1.02vw;
  }
  
  .footer-rutube-small img {
    width: 1.44vw;
    height: 1.44vw;
  }
  
  .footer-btn {
    padding: 0.72vw 1.8vw;
    border-radius: 2.4vw;
    font-size: 1.08vw;
  }
  
  .footer-divider {
    margin-bottom: 1.8vw;
  }
  
  .footer-bottom {
    font-size: 1.02vw;
  }




  .serv-line-fix {
    width: 4.8vw;
    margin: 0 0.6vw 0.6vw 0.6vw;
  }

  .serv-badge {
    font-size: 0.9vw;
    padding: 0.6vw 1.2vw;
    top: -1.8vw;
    right: -3vw;
  }

  .serv-license-box {
    max-width: 26.4vw;
    padding: 1.2vw 1.8vw;
  }

  .sl-block span {
    font-size: 0.9vw;
  }

  .sl-block strong {
    font-size: 1.02vw;
  }




  .article-section {
    padding: 5vw 5vw 6vw 5vw;
  }
  .article-container {
    gap: 1.5vw;
  }
  .article-image-wrapper {
    border-radius: 1.92vw;
  }
  .article-title {
    font-size: 2.5vw;
  }
  .article-subtitle {
    font-size: 1.6vw;
  }
  .article-date {
    font-size: 1.1vw;
  }
  .article-btn {
    font-size: 1.15vw;
    padding: 1vw 2.6vw;
    border-radius: 1.2vw;
  }

  .device-features-section {
    padding: 6vw 4.5vw 0 3.5vw;
  }
  .device-features-title {
    font-size: 2.1vw;
  }
  .device-features-desktop {
    gap: 2.5vw;
  }
  .device-features-col {
    gap: 1.4vw;
  }
  .device-main-image {
    border-radius: 1.4vw;
  }
  .device-features-section .feature-card {
    border-radius: 1.2vw;
    padding: 1.2vw 1.4vw;
    gap: 1vw;
    flex-direction: column;
    align-items: center;
  }
  .device-features-section .feature-icon {
    width: 5.4vw;
    height: 5.4vw;
  }
  .device-features-section .feature-text h4 {
    font-size: 1.25vw;
  }
  .device-features-section .feature-text p {
    font-size: 1.05vw;
  }
  .device-features-left .feature-card {
    text-align: center;
    align-items: center;
  }
  .device-features-left .feature-text {
    align-items: flex-start;
  }
  .device-features-btn {
    font-size: 1.1vw;
    padding: 1.1vw 2.6vw;
    border-radius: 1vw;
  }



.line-left-1::after {
  width: 31vw;
  right: -21.1vw;
  transform: rotate(386deg);
  top: 57%;
}

.line-left-2::after {
  width: 26.5vw;
  right: -17.5vw;
  top: -11%;
  transform: rotate(
156deg);
}

.line-left-3::after {
  width: 30vw;
  right: -18vw;
  transform: rotate(
138deg);
  top: -34%;
}

.line-right-1::after {
  width: 22vw;
  left: -11vw;
  top: 56%;
  transform: rotate(
327deg);
}

.line-right-2::after {
  width: 21.5vw;
  left: -11.5vw;
  top: 17%;
  transform: rotate(365deg);
}

.line-right-3::after {
  width: 37vw;
  left: -27vw;
  top: -5%;
  transform: rotate(374deg);
}





  .device-features-note p {
    font-size: 1.05vw;
  }

    .quiz-section {
      padding: 0 1vw;
    }
  
    .quiz-content-wrapper {
      border-radius: 1.44vw;
      /* padding: 2.4vw 3vw; */
    }
  
    .quiz-header {
      margin-bottom: 3vw;
    }
	
    .quiz-subtitle {
      font-size: 1.26vw;
    }
  .quiz-form-wrapper{
	  padding: 1.44vw 1.44vw;
  }
    .quiz-progress-bar {
      gap: 1.2vw;
      padding: 1.44vw 1.44vw;
      border-radius: 30px;
    }
  
    .progress-icon {
      width: 2.16vw;
      height: 2.16vw;
    }
  
    .progress-text {
      font-size: 2.14vw;
    }
  
    .progress-counter {
      font-size: 2.32vw;
    }
  
    .quiz-content {
      gap: 2.4vw;
      margin-bottom: 3vw;
    }
  
    .quiz-question {
      font-size: 2.16vw;
      margin-bottom: 2.4vw;
    }
  
    .quiz-options {
      gap: 1.44vw;
    }
  
    .quiz-option {
      gap: 1.2vw;
    }
  
    .option-radio,
    .option-checkbox {
      width: 1.68vw;
      height: 1.68vw;
      border-width: 0.156vw;
    }
  
    .quiz-option input[type="radio"]:checked ~ .option-radio {
      border-width: 0.3vw;
    }
  
    .option-checkbox::after {
      width: 0.42vw;
      height: 0.78vw;
      border-width: 0 0.18vw 0.18vw 0;
      top: 0.24vw;
    }
  
    .option-text {
      font-size: 1.2vw;
    }
  
    .quiz-form {
      gap: 1.2vw;
    }
  
    .quiz-form-group {
      gap: 0.6vw;
    }
  
    .quiz-form-group label {
      font-size: 1.08vw;
    }
  
    .quiz-form-group input {
      font-size: 1.44vw;
      padding: 1.08vw 1.44vw;
      border-width: 0.12vw;
      border-radius: 0.48vw;
    }
  
    .quiz-image-wrapper {
      border-radius: 1.2vw;
    }
  
    .quiz-navigation {
      gap: 2.4vw;
    }
  
    .quiz-btn {
      font-size: 1.2vw;
      padding: 1.2vw 3vw;
      border-radius: 0.72vw;
      gap: 0.72vw;
      border-width: 0.12vw;
    }
  
    .quiz-btn svg {
      width: 1.44vw;
      height: 1.44vw;
    }
 
  .agreement-section {
    padding: 5vw 5vw;
  }
  .agreement-container {
    gap: 28px;
  }
  .agreement-title {
    font-size: 22px;
  }
  .agreement-text {
    font-size: 16px;
  }
  .agreement-photo {
    border-radius: 22px;
  }
  .agreement-decor {
    right: 4%;
    top: 8%;
    width: 260px;
  }

  .remote-check-section {
    padding: 40px 40px 0;
  }
  .remote-check-container {
    gap: 26px;
  }
  .remote-check-title {
    font-size: 22px;
  }
  .remote-check-subtitle {
    font-size: 16px;
  }
  .remote-check-grid {
    gap: 1.4vw;
  }
  .remote-card {
    border-radius: 18px;
  }
  .remote-card-image {
    height: 230px;
  }
  .remote-card-body {
    gap: 12px;
    padding: 16px 18px 18px 18px;
  }
  .remote-card-title {
    font-size: 17px;
    gap: 8px;
  }
  .remote-card-text,
  .remote-card-list li {
    font-size: 15px;
  }

  .rental-benefits-section {
    padding: 40px 40px 0;
  }
  .rental-benefits-container {
    gap: 30px;
  }
  .rental-benefits-title {
    font-size: 22px;
  }
  .rental-benefits-subtitle,
  .rental-benefits-tagline {
    font-size: 16px;
  }
  .rental-benefits-grid {
    gap: 22px;
  }
  .rental-card {
    border-radius: 18px;
  }
  .rental-card-image {
    height: 22.6vw;
  }
  .rental-card-text {
    font-size: 16px;
    padding: 16px 18px 18px 18px;
  }
  .rental-benefits-btn {
    font-size: 15px;
    padding: 14px 1.25vw;
    border-radius: 22px;
  }
  .rental-benefits-note {
    font-size: 14px;
  }

  .fraud-protection-section {
    padding: 40px 40px;
  }
  .fraud-protection-container {
    gap: 28px;
  }
  .fraud-protection-title {
    font-size: 22px;
  }
  .fraud-protection-grid {
    gap: 22px;
  }
  .fraud-card {
    border-radius: 18px;
  }
  .fraud-card-image {
    height: 260px;
  }
  .fraud-card-content {
    padding: 18px 18px 1.05vw 18px;
    gap: 10px;
  }
  .fraud-card-heading {
    font-size: 17px;
  }
  .fraud-card-text,
  .fraud-card-subtitle,
  .fraud-card-list li {
    font-size: 15px;
  }
  .fraud-decor {
    width: 25vw;
    left: 44%;
    bottom: 1%;
  }

  .order-section {
    padding: 0 1vw;
  }

  .order-waybill .order-decor {
    left: 2%;
    top: 8%;
    width: 28vw;
  }

  .order-content {
    gap: 4.8vw;
  }

  .order-left {
    gap: 2.4vw;
  }

  .order-title {
    font-size: 2.76vw;
  }

  .order-list {
    gap: 1.44vw;
  }

  .order-item {
    gap: 1.2vw;
  }

  .order-number {
    width: 2.16vw;
    height: 2.16vw;
    min-width: 2.16vw;
    font-size: 1.14vw;
  }

  .order-text {
    font-size: 1.2vw;
    padding-top: 0.24vw;
  }

  .order-image-wrapper {
    border-radius: 1.44vw;
  }

    .comparison-section {
      padding: 0 1vw;
    }
  
    .comparison-header {
      margin-bottom: 3.6vw;
    }
  
    .comparison-title {
      font-size: 2.76vw;
      margin-bottom: 0.96vw;
    }
  
    .comparison-subtitle {
      font-size: 1.2vw;
    }
  
    .comparison-table-wrapper {
      margin-bottom: 3vw;
    }
  
    .comparison-table {
      border-radius: 1.44vw;
    }
  
    .comparison-table thead th {
      font-size: 1.2vw;
      padding: 1.2vw 1.8vw;
    }
  
    .td-content {
      gap: 0.96vw;
      padding: 1.44vw 1.8vw;
    }
  
    .comp-item {
      gap: 0.6vw;
    }
  
    .comparison-table p {
      font-size: 1.08vw;
    }
  
    .comp-col-label p {
      font-size: 1.14vw;
    }
  
    .comp-check,
    .comp-cross {
      font-size: 1.8vw;
    }
  
    .comparison-features {
      gap: 1vw;
    }
  
    .comp-feature {
      gap: 1.2vw;
    }
  
    .comp-feature-icon {
      width: 3vw;
      height: 3vw;
      min-width: 3vw;
    }
  
    .comp-feature-text {
      font-size: 1.08vw;
      padding-top: 0.24vw;
    }
 
  .rent-section {
    padding: 0 1vw;
  }

  .rent-header {
    margin-bottom: 3.6vw;
  }

  .rent-title {
    font-size: 2.76vw;
    margin-bottom: 0.96vw;
  }

  .rent-subtitle {
    font-size: 1.2vw;
  }

  .rent-cards {
    gap: 2.4vw;
    margin-bottom: 3.6vw;
  }

  .rent-row {
    gap: 2.4vw;
  }

  .rent-card {
    border-radius: 1.92vw;
  }

  .rent-card::before {
    border-radius: 1.92vw;
  }

  .rent-card:hover {
    transform: translateY(-0.48vw);
    box-shadow: 0 1.2vw 2.64vw rgba(0, 0, 0, 0.12);
  }

  .rent-card-image {
    height: 14.4vw;
    border-radius: 1.92vw 1.92vw 0 0;
  }

  .rent-card-title {
    font-size: 1.32vw;
    padding: 1.8vw 2.4vw 2.4vw 2.4vw;
  }

  .rent-footer {
    gap: 1.2vw;
  }

  .rent-btn {
    padding: 1.44vw 3.6vw;
    border-radius: 2.4vw;
    font-size: 1.32vw;
    box-shadow: 0 0.36vw 1.2vw rgba(254, 29, 37, 0.25);
  }

  .rent-btn:hover {
    box-shadow: 0 0.6vw 1.8vw rgba(254, 29, 37, 0.35);
    transform: translateY(-0.24vw);
  }

  .rent-note {
    font-size: 1.2vw;
  }

  .remote-check-section {
    padding: 6vw 5vw 0 5vw;
  }
  .remote-check-container {
    gap: 26px;
  }
  .remote-check-title {
    font-size: 22px;
  }
  .remote-check-subtitle {
    font-size: 16px;
  }
  .remote-check-grid {
    gap: 50px;
  }
  .remote-card {
    border-radius: 18px;
  }
  .remote-card-image {
    height: 16vw;
  }
  .remote-card-body {
    gap: 12px;
    padding: 16px 18px 18px 18px;
  }
  .remote-card-title {
    font-size: 17px;
    gap: 8px;
  }
  .remote-card-text,
  .remote-card-list li {
    font-size: 15px;
  }

  .equipment-proof-section {
    padding: 5vw 5vw;
  }
  .equipment-proof-container {
    gap: 30px;
  }
  .equipment-proof-title {
    font-size: 22px;
  }
  .equipment-proof-rows {
    gap: 50px;
  }
  .equipment-proof-row {
    gap: 2%;
  }
  .row-top .equip-card {
    width: 32%;
    max-width: 100%;
    margin-bottom: 2%;
  }
  .row-bottom .equip-card {
    width: 48%;
    max-width: 48%;
    margin-bottom: 2%;
  }
  .equip-card {
    border-radius: 18px;
  }
  .equip-card-image {
    height: 15vw;
  }
  .equip-card-body {
    gap: 12px;
    padding: 16px 18px 18px 18px;
  }
  .equip-card-title {
    font-size: 17px;
  }
  .equip-card-text {
    font-size: 15px;
  }
  .equip-btn {
    padding: 14px 26px;
    font-size: 16px;
    border-radius: 28px;
  }
  .authenticity-section {
    padding: 5vw 5vw;
  }
  .authenticity-container {
    gap: 30px;
  }
  .authenticity-title {
    font-size: 22px;
  }
  .authenticity-grid {
    gap: 2%;
  }
  .auth-card {
    width: 32%;
    max-width: 32%;
    border-radius: 18px;
    margin-bottom: 2%;
  }
  .auth-card-image {
    height: 15vw;
  }
  .auth-card-body {
    gap: 12px;
    padding: 16px 18px 18px 18px;
  }
  .auth-card-title {
    font-size: 17px;
  }
  .auth-card-text {
    font-size: 15px;
  }

  .contact-hero-card {
    gap: 1.25vw;
  }
  .contact-hero-info {
    padding: 32px;
  }
  .contact-hero-title {
    font-size: 22px;
  }
  .contact-hero-desc {
    font-size: 16px;
  }
  .contact-hero-phone {
    font-size: 26px;
  }
  .contact-hero-mail {
    font-size: 16px;
  }
  .contact-hero-btn {
    padding: 14px 1.05vw;
    font-size: 15px;
  }
  .contact-decor-img {
    width: 280px;
  }

  .blog-section {
    padding: 60px 5vw 70px;
  }
  .blog-title {
    font-size: 22px;
  }
  .blog-tabs-scroll {
    gap: 12px;
  }
  .blog-header {
    display: flex;
    flex-direction: column;
    gap: 2vw;
}
  .blog-tab {
    font-size: 15px;
    padding: 10px 18px;
  }
  .blog-grid {
    gap: 50px;
  }
  .blog-card {
    width: calc((100% - 60px) / 4);
    max-width: calc((100% - 60px) / 4);
  }
  .blog-card-image {
    height: 21.05vw;
  }
  .blog-card-body {
    padding: 16px 18px 18px;
    gap: 10px;
  }
  .blog-card-date {
    font-size: 14px;
  }
  .blog-card-title {
    font-size: 16px;
  }
  .blog-card-desc {
    font-size: 15px;
  }
  .blog-card-link {
    font-size: 15px;
    padding: 10px 18px;
  }
  .blog-card-meta {
    font-size: 14px;
  }
  .blog-more-btn {
    font-size: 16px;
    padding: 14px 22px;
  }

  .blog-detail-section {
    padding: 60px 5vw 70px;
  }
  .blog-detail-title {
    font-size: 22px;
  }
  .blog-detail-body h3 {
    font-size: 1.05vw;
  }
  .blog-detail-meta {
    font-size: 14px;
  }
  .blog-detail-body {
    font-size: 16px;
    gap: 16px;
  }
  .related-articles-container {
    gap: 32px;
  }
  .related-title {
    font-size: 22px;
  }
  .related-grid {
    gap: 50px;
  }
  .related-card-image {
    height: 200px;
  }
  .related-card-body {
    padding: 16px 18px 18px;
    gap: 10px;
  }
  .related-card-date {
    font-size: 14px;
  }
  .related-card-title {
    font-size: 16px;
  }
  .related-card-desc {
    font-size: 15px;
  }
  .related-card-btn {
    font-size: 15px;
    padding: 10px 18px;
  }
  .related-card-meta {
    font-size: 14px;
  }
  .related-more-btn {
    font-size: 16px;
    padding: 14px 22px;
  }
  .block-arenda-medmap .frame-5 {
  height: auto;
  min-height:240px;
  }
  .block-arenda-medmap .frame-7 {
  height: auto;
}
 .block-arenda-medmap .frame-8 {
  width: 100%;
  margin: 0; 
  padding: 25px;
  gap: 10px;
  min-height:140px;
 }
  .block-arenda-medmap .no-capital-investment,
  .block-arenda-medmap .no-terminal-needed{
	  width: 100%;
	  height: auto;
  }
  .block-arenda-medmap .check {
  width: 30px;
  height: 30px;
  }
  .block-dokumenti-zashita .frame-2,
  .block-chto-vhodin .frame-2{
	  gap: 25px;
  }
  .complex-list.two-row li {
  max-width: 24%;
}
  .complex-list.two-row li:last-child{
	  display:none;
  }
  .new-banner-block .preim-block{
	  gap:20px;
  }
 .nadegnosti-item h3 {
  font-size: 26px;
} 
  .nadegnosti-item p {
  font-size: 16px;
}
  
  
  
}


@media (max-width: 1040px) {
  .article-section {
    padding: 7vw 3vw 7vw 3vw;
  }
  .article-image-wrapper {
    border-radius: 2.3vw;
  }
  .article-title {
    font-size: 22px;
  }
  .article-subtitle {
    font-size: 2.3vw;
    text-align: left;
  }
  .article-date {
    font-size: 12px;
    align-self: flex-start;
  }
  .article-btn {
    font-size: 2vw;
    padding: 1.5vw 3.1vw;
    border-radius: 1.4vw;
  }

  .device-features-section {
    padding: 6vw 4.5vw 3.5vw;
  }
  .device-features-title {
    font-size: 2.1vw;
  }
  .device-features-desktop {
    gap: 2.5vw;
  }
  .device-features-col {
    width: 25%;
    gap: 1.4vw;
  }
  .device-main-wrap {
    width: 50%;
  }
  .device-features-section .feature-card {
    border-radius: 1.2vw;
    padding: 1.2vw 1.4vw;
    gap: 1vw;
    flex-direction: column;
    align-items: center;
  }
  .device-features-section .feature-icon {
    width: 5.4vw;
    height: 5.4vw;
  }
  .device-features-section .feature-text h4 {
    font-size: 1.25vw;
  }
  .device-features-section .feature-text p {
    font-size: 1.05vw;
  }
  .device-features-left .feature-card {
    text-align: center;
    align-items: center;
  }
  .device-features-left .feature-text {
    align-items: flex-start;
  }
  .device-features-btn {
    font-size: 1.1vw;
    padding: 1.1vw 2.6vw;
    border-radius: 1vw;
  }


.line-left-1::after {
  width: 32vw;
  right: -20.1vw;
  transform: rotate(388deg);
  top: 61%;
}

.line-left-2::after {
  width: 26.5vw;
  right: -16.5vw;
  top: -9%;
  transform: rotate(
159deg);
}

.line-left-3::after {
  width: 30vw;
  right: -18vw;
  transform: rotate(
141deg);
  top: -34%;
}

.line-right-1::after {
  width: 22vw;
  left: -11vw;
  top: 61%;
  transform: rotate(
325deg);
}

.line-right-2::after {
  width: 21.5vw;
  left: -11.5vw;
  top: 17%;
  transform: rotate(361deg);
}

.line-right-3::after {
  width: 37vw;
  left: -27vw;
  top: -5%;
  transform: rotate(376deg);
}
  .device-features-note p {
    font-size: 1.15vw;
  }
  

  .device-features-section {
    /* padding: 2.6vw 4vw 0 2.6vw; */
  }
  .device-features-title {
    font-size: 22px;
  }
  .device-title-break {
    display: none;
  }
  .feature-card {
    border-radius: 16px;
    padding: 14px 16px;
    max-width: 31.05vw;
  }
  .feature-icon {
    width: 62px;
    height: 62px;
  }
  .feature-text h4 {
    font-size: 17px;
  }
  .feature-text p {
    font-size: 15px;
  }
  .device-main-wrap {
    flex: 1;
  }
  .device-features-desktop {
    gap: 22px;
  }
  .device-features-btn {
    font-size: 15px;
    border-radius: 12px;
    padding: 14px 30px;
  }

  .waybill-vehicles-section {
    padding: 8vw 4vw 0 4vw;
  }
  
  .waybill-vehicles-header {
    max-width: 100%;
  }
  
  .waybill-vehicles-title {
    font-size: 2.2vw;
  }
  
  .waybill-vehicles-title-br {
    display: none;
  }
  
  .waybill-vehicle-title {
    font-size: 1.1vw;
  }
  
  .waybill-vehicle-form {
    font-size: 0.95vw;
  }
  
  .waybill-process-section {
    padding: 4vw 4vw 0 4vw;
  }
  
  .waybill-process-title {
    font-size: 2.5vw;
  }
  
  .waybill-process-subtitle {
    font-size: 1vw;
  }
  
  .waybill-step-title {
    font-size: 1vw;
  }
  
  .waybill-step-description {
    font-size: 0.9vw;
  }

  .topbar {
    padding: 0 3vw;
    border-bottom: 0.1152vw solid rgba(0, 0, 0, 0.06);
  }
  
  .main-nav {
    padding: 0 3vw;
  }
  
  .banner {
    padding: 4vw 3vw 0 3vw;
  }
  
  .video-section {
    padding: 9vw 3vw 0 3vw;
  }
  
  .process-section {
    padding: 4vw 3vw 0 3vw;
  }
  
  .waybill-process-section {
    padding: 4vw 3vw 0 3vw;
  }
  
  .waybill-process-title {
    font-size: 22px;
  }
  
  .waybill-process-subtitle {
    font-size: 16px;
  }
  
  .waybill-step-title {
    font-size: 16px;
  }
  
  .waybill-step-description {
    font-size: 14px;
  }
  
  .mobile-complex-section {
    padding: 0 3vw;
  }
  
  .legal-section {
    padding: 0 3vw;
  }

  .legal-partners-section {
    padding: 0 3vw;
    margin-top: 3vw;
  }
  
  .business-format {
    padding: 0 3vw;
  }
  
  .reliability-section {
    padding: 0 3vw;
  }
  
  .reputation-section {
    padding: 0 3vw 4vw 3vw;
  }
  
  .complex-solution-section {
    padding: 0 3vw;
  }
  
  .leaders-section {
    padding: 0 3vw;
  }
  
  .results-section {
    padding: 0 3vw;
  }
  
  .faq-section {
    padding: 0 3vw;
  }
  
  .contacts-section {
    padding: 0 3vw;
  }
  
  .waybill-vehicles-section {
    padding: 8vw 3vw 0 3vw;
  }
  
  .waybill-vehicles-header {
    max-width: 100%;
  }
  
  .waybill-vehicles-title {
    font-size: 22px;
  }
  
  .waybill-vehicles-title-br {
    display: none;
  }
  
  .waybill-vehicle-title {
    font-size: 16px;
  }
  
  .waybill-vehicle-form {
    font-size: 14px;
  }
  
  .main-footer {
    padding: 60px 1.05vw 30px 1.05vw;
  }
  
  /* TOPBAR */
  .topbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }
  
  .topbar-inner {
    min-height: 60px;
    padding: 10px 0;
    gap: 15px;
  }
  
  .logo-img {
    width: 80px;
  }
  
  .logo-text {
    font-size: 10px;
  }
  
  .topbar-info {
    gap: 10px;
  }
  
  
  .info-icon {
    width: 14px;
    height: 14px;
  }
  
  .info-text {
    gap: 3px;
  }
  
  .info-label,
  .info-value {
    font-size: 12px;
  }
  
  .topbar-right {
    gap: 15px;
    flex-direction: column;
  }
  
  .topbar-flag-block {
    font-size: 14px;
  }
  
  .lang-flag {
    width: 16px;
  }
  
  .topbar-rutube {
    display: none;
  }
  
  .r-logo {
    width: 16px;
    height: 16px;
  }
  
  .callback-btn {
    font-size: 14px;
    padding: 8px 1.05vw;
    border: 1px solid #FE1D25;
    border-radius: 1.05vw;
  }
  
  /* NAV */
  .nav-list {
    padding: 10px 0 8px;
    gap: 15px;
  }
  
  .nav-link {
    font-size: 14px;
    padding-bottom: 5px;
  }
  
  /* BANNER */
  .banner-container {
    border-radius: 1.05vw;
  }
  
  .banner-inner {
    gap: 50px;
  }
  
  .banner-content-inner {
    gap: 50px;
    border-radius: 1.05vw;
    padding: 1.05vw;
    flex-direction: column;
  }
  
  .banner-decor {
    bottom: 50px;
    right: -30px;
    width: 300px;
  }
  
  .banner-title {
    font-size: 22px;
  }
  
  .title-highlight {
    margin-right: 5px;
  }
  
  .title-line {
    width: 50px;
    margin-right: 3px;
  }
  
  .banner-subtitle {
    font-size: 1.05vw;
  }
  
  .banner-features {
    gap: 15px;
    flex-direction: column;
  }
  
  .feature-item {
    gap: 8px;
    font-size: 14px;
  }
   .feature-item span br{
     display:none;
   }
  .check-icon {
    width: 20px;
    height: 20px;
  }
  
  .banner-buttons {
    gap: 15px;
    margin-top: 15px;
  }
  
  .btn-primary,
  .btn-secondary {
    font-size: 16px;
    padding: 15px 1.05vw;
    border-radius: 1.05vw;
  }
  
  .btn-secondary {
    border: 2px solid #FE1D25;
  }
  
  .main-photo {
    border-radius: 30px;
  }
  
  .banner-badge {
    gap: 10px;
    padding: 10px 15px;
    border-radius: 10px;
  }
  
  .badge-logo {
    width: 121px;
  }
  
  .badge-right {
    bottom: 10px;
    right: 41px;
    padding: 10px 15px;
  }
  
  .license-text {
    font-size: 16px;
  }
  
  /* VIDEO SECTION */
  .video-inner {
    gap: 2.88vw;
  }
  
  .video-left {
    gap: 2.16vw;
  }
  
  .video-thumbnail {
    border-radius: 0.72vw;
  }
  
  .video-caption {
    font-size: 1.368vw;
    padding: 0 8.64vw;
  }
  
  .video-content {
    border-radius: 0.72vw;
    gap: 3.6vw;
  }
  
  .video-title {
    font-size: 3.456vw;
  }
  
  .video-features {
    gap: 1.44vw;
  }
  
  .video-feature-item {
    gap: 1.728vw;
  }
  
  .video-feature-icon {
    width: 2.88vw;
  }
  
  .video-feature-text {
    gap: 0.72vw;
  }
  
  .video-feature-main {
    font-size: 1.872vw;
  }
  
  .video-feature-sub {
    font-size: 1.44vw;
  }
  
  /* PROCESS SECTION */
  .process-container {
    gap: 1.44vw;
  }
  
  .process-header {
    margin-bottom: 2.88vw;
  }
  
  .process-title,
  .process-title-sub {
    font-size: 4.032vw;
  }
  
  .process-title {
    margin: 0 0 0.432vw 0;
  }
  
  .process-title-sub {
    margin: 0 0 0.864vw 0;
  }
  
  .process-subtitle {
    font-size: 1.584vw;
  }
  
  .process-steps {
    gap: 2.16vw;
    flex-wrap: wrap;
  }
  
  .process-step {
    flex: 0 0 calc(50% - 1.08vw);
    max-width: calc(50% - 1.08vw);
  }
  
  .step-content {
    gap: 1.728vw;
    padding: 1.44vw 0.72vw;
  }
  
  .step-title {
    font-size: 1.584vw;
  }
  
  .step-description {
    font-size: 1.224vw;
  }
  
  .step-result {
    font-size: 1.224vw;
    gap: 0.432vw;
  }
  
  .step-result strong {
    margin-bottom: 0.288vw;
  }
  
  /* MOBILE COMPLEX SECTION */
  .mobile-complex-section {
    margin-top: 7.2vw;
  }
  
  .mobile-complex-container {
    gap: 2.16vw;
  }
  
  .mobile-complex-header {
    margin-bottom: 2.88vw;
  }
  
  .mobile-complex-title {
    font-size: 4.032vw;
    margin: 0 0 0.864vw 0;
    padding: 0 20.16vw;
  }
  
  .mobile-complex-subtitle {
    font-size: 1.584vw;
  }
  
  .mobile-complex-content {
    gap: 4.32vw;
    border-radius: 2.88vw;
  }
  
  .complex-content-inner {
    gap: 2.16vw;
    padding: 2.16vw 0 2.16vw 1.44vw;
  }
  
  .complex-title {
    font-size: 3.312vw;
  }
  
  .complex-subtitle {
    font-size: 1.584vw;
  }
  
  .complex-features {
    padding-left: 3.6vw;
  }
  
  .feature-item {
    gap: 1.152vw;
  }
  
  .feature-text {
    font-size: 1.512vw;
  }
  
  .complex-target {
    font-size: 1.368vw;
  }
  
  .complex-buttons {
    gap: 1.44vw;
  }
  
  .btn-details,
  .btn-price {
    font-size: 1.44vw;
    padding: 1.44vw 2.88vw;
    border-radius: 3.6vw;
  }
  
  .btn-price {
    border: 2.88px solid #FE1D25;
  }
  
  .play-icon-link {
    width: 5.04vw;
    height: 5.04vw;
  }
  
  .mobile-complex-decor {
    bottom: 0vw;
    right: -8.64vw;
    width: 38.88vw;
  }
  
  .complex-badge {
    width: 18.72vw;
    bottom: 2.16vw;
    left: 2.16vw;
    padding: 0.72vw;
    border-radius: 0.72vw;
  }
  
  .badge-text {
    font-size: 1.296vw;
  }
  
  /* LEGAL SECTION */
  .legal-section {
    margin-top: 7.2vw;
  }
  
  .legal-content {
    gap: 4.32vw;
  }
  
  .legal-left {
    gap: 2.88vw;
  }
  
  .legal-title {
    font-size: 3.312vw;
    gap: 0.432vw;
  }
  
  .legal-title-line {
    width: 7.2vw;
  }
  
  .legal-item {
    gap: 1.152vw;
  }
  
  .legal-bullet {
    width: 0.72vw;
    height: 0.72vw;
    margin-top: 0.576vw;
  }
  
  .legal-text {
    font-size: 1.44vw;
  }
  
  .legal-info {
    font-size: 1.368vw;
  }
  
  .legal-links {
    gap: 2.88vw;
  }
  
  .legal-link {
    font-size: 1.296vw;
  }
  
  .legal-partners {
    margin-top: 2.88vw;
  }
  
  .partners-list {
    gap: 2.16vw;
  }
  
  .partner-logo {
    height: 3.6vw;
  }

  .legal-support-section {
    padding: 0 3vw;
    margin-top: 8vw;
  }

  .legal-support-card {
    flex-direction: column-reverse;
    border-radius: 2.3vw;
    box-shadow: none;
  }

  .legal-support-image,
  .legal-support-content {
    width: 100%;
  }

  .legal-support-image {
    padding: 0;
  }

  .legal-support-photo {
    border-radius: 2vw;
  }

  .legal-support-content {
    gap: 2vw;
    padding: 3vw;
  }

  .legal-support-title {
    font-size: 3.3vw;
  }

  .legal-support-desc {
    font-size: 1.6vw;
  }

  .legal-support-item {
    gap: 1.3vw;
  }

  .legal-support-bullet {
    width: 0.8vw;
    height: 0.8vw;
    margin-top: 0.6vw;
  }

  .legal-support-text {
    font-size: 1.44vw;
  }

  .legal-support-note {
    font-size: 1.36vw;
  }

  .medmap-details-section {
    padding: 0 3vw;
    margin-top: 8vw;
  }

  .medmap-details-container {
    flex-direction: column;
    gap: 3vw;
  }

  .medmap-details-content,
  .medmap-details-image {
    width: 100%;
  }

  .medmap-details-title {
    font-size: 3.4vw;
  }

  .medmap-details-desc {
    font-size: 1.7vw;
  }

  .medmap-details-subtitle {
    font-size: 1.8vw;
  }

  .medmap-details-bullet {
    width: 2vw;
    height: 2vw;
    font-size: 1.2vw;
  }

  .medmap-details-text {
    font-size: 1.6vw;
  }

  .medmap-details-note {
    font-size: 1.5vw;
  }

  .details-btn {
    font-size: 1.4vw;
    padding: 1.2vw 2.8vw;
    border-radius: 1.2vw;
  }

  .medmap-details-decor {
    left: auto;
    bottom: auto;
    width: 32vw;
    right: 0;
    top: 6%;
  }
  
  /* BUSINESS FORMAT */
  .business-format {
    margin-top: 8.64vw;
  }
  
  .bf-container {
    gap: 2.88vw;
  }
  
  .bf-title {
    font-size: 3.312vw;
    margin: 0 0 1.296vw 0;
  }
  
  .bf-subtitle {
    font-size: 1.44vw;
  }
  
  .bf-cards {
    gap: 2.88vw;
  }
  
  .bf-card {
    border-radius: 2.304vw;
    padding: 2.88vw;
    border: 0.2016vw solid transparent;
    gap: 1.728vw;
    min-height: 43.2vw;
  }
  
  .bf-card::before {
    border-radius: 2.304vw;
    padding: 0.2016vw;
  }
  
  .bf-card:hover {
    transform: translateY(-0.576vw);
  }
  
  .bf-card-title {
    font-size: 2.016vw;
  }
  
  .bf-intro {
    font-size: 1.44vw;
  }
  
  .bf-list {
    gap: 0.792vw;
    padding-left: 1.728vw;
  }
  
  .bf-list li::before {
    left: -1.728vw;
    font-size: 1.296vw;
  }
  
  .bf-list li span {
    font-size: 1.44vw;
  }
  
  .bf-price {
    gap: 0.432vw;
  }
  
  .price-main {
    font-size: 1.44vw;
  }
  
  .bf-btn {
    margin-top: 1.44vw;
    padding: 1.44vw 0;
    border-radius: 2.88vw;
    font-size: 1.44vw;
  }
  
  .bf-btn:hover {
    transform: translateY(-0.36vw);
  }
  
  /* RELIABILITY SECTION */
  .reliability-section {
    margin-top: 8.64vw;
  }
  
  .reliability-container {
    gap: 5.76vw;
  }
  
  .rel-title {
    font-size: 3.312vw;
    margin-bottom: 2.16vw;
  }
  
  .rel-subtitle {
    font-size: 1.728vw;
    margin-bottom: 2.16vw;
  }
  
  .rel-quote-block {
    gap: 1.728vw;
    margin-bottom: 2.88vw;
  }
  
  .rel-line-img {
    width: 0.864vw;
    margin-top: 0.432vw;
  }
  
  .rel-quote-text {
    font-size: 1.368vw;
  }
  
  .rel-list {
    gap: 1.44vw;
    margin-bottom: 2.88vw;
  }
  
  .rel-item {
    gap: 1.152vw;
  }
  
  .rel-num {
    width: 2.304vw;
    height: 2.304vw;
    font-size: 1.296vw;
    margin-top: 0.144vw;
  }
  
  .rel-text {
    font-size: 1.44vw;
  }
  
  .rel-btn {
    border-radius: 3.6vw;
    padding: 1.44vw 3.6vw;
    font-size: 1.44vw;
  }
  
  .rel-img {
    border-radius: 2.88vw;
  }
  
  /* REPUTATION SECTION */
  .reputation-section {
    margin-top: 8.64vw;
  }
  
  .rep-title {
    font-size: 3.6vw;
    margin-bottom: 4.32vw;
  }
  
  .rep-content {
    gap: 2.88vw;
    margin-bottom: 4.32vw;
  }
  
  .rep-img-wrapper {
    border-radius: 2.88vw;
  }
  
  .rep-text-box {
    padding: 2.88vw 3.6vw;
    gap: 2.16vw;
  }
  
  .rep-text-box p {
    font-size: 1.368vw;
  }
  
  .rep-right {
    border-radius: 2.88vw;
    padding: 4.32vw 2.88vw;
    gap: 3.6vw;
  }
  
  .rep-icon-row {
    gap: 1.44vw;
  }
  
  .rep-icon-row.center-row {
    gap: 4.32vw;
  }
  
  .rep-icon-item img {
    height: 3.6vw;
    margin-bottom: 1.44vw;
  }
  
  .rep-icon-item p {
    font-size: 1.296vw;
  }
  
  .rep-btn {
    border-radius: 3.6vw;
    padding: 1.44vw 4.32vw;
    font-size: 1.44vw;
  }
  
  /* COMPLEX SOLUTION SECTION */
  .complex-solution-section {
    margin-top: 7.2vw;
  }
  
  .complex-container {
    gap: 4.32vw;
  }
  
  .complex-top {
    gap: 4.32vw;
  }
  
  .complex-header-block {
    margin-bottom: 2.16vw;
  }
  
  .complex-title {
    font-size: 3.456vw;
  }
  
  .complex-subtitle-row {
    gap: 1.44vw;
    margin-top: 0.72vw;
  }
  
  .complex-decor-line {
    width: 8.64vw;
  }
  
  .complex-list {
    gap: 1.152vw;
  }
  
  .complex-list li {
    font-size: 1.368vw;
    padding-left: 1.728vw;
  }
  
  .complex-list li::before {
    font-size: 1.728vw;
  }
  
  .complex-main-img {
    border-radius: 2.88vw;
  }
  
  .complex-vehicles {
    padding: 0 2.88vw;
    margin-top: 2.88vw;
  }
  
  /* LEADERS SECTION */
  .leaders-section {
    margin-top: 7.2vw;
  }
  
  .leaders-title {
    font-size: 3.456vw;
    margin-bottom: 4.32vw;
  }
  
  .leaders-slider {
    margin-bottom: 4.32vw;
    /* padding: 0 4.32vw; */
  }
  
  .leader-item {
    border-radius: 1.152vw;
  }
  
  .leaders-slider .owl-nav button.owl-prev,
  .leaders-slider .owl-nav button.owl-next {
    width: 4.32vw;
    height: 4.32vw;
  }
  
  .nav-arrow-svg {
    width: 1.44vw;
    height: 1.44vw;
  }
  
  .leaders-slider .owl-nav button.owl-prev {
    left: -2vw;
  }
  
  .leaders-slider .owl-nav button.owl-next {
    right: -2vw;
  }
  
  .leaders-btn {
    border-radius: 3.6vw;
    padding: 1.44vw 4.32vw;
    font-size: 1.44vw;
  }
  
  /* RESULTS SECTION */
  .results-section {
    margin-top: 8.64vw;
    margin-bottom: 8.64vw;
  }
  
  .results-title {
    font-size: 3.456vw;
    margin-bottom: 5.76vw;
  }
  
  .results-grid {
    gap: 4.32vw;
  }
  
  .results-card {
    gap: 2.16vw;
  }
  
  .card-category {
    font-size: 1.224vw;
    min-height: 3.6vw;
  }
  
  .card-logo-wrapper {
    height: 5.76vw;
  }
  
  .card-quote {
    font-size: 1.296vw;
  }
  
  /* FAQ SECTION */
  .faq-section {
    margin-top: 8.64vw;
  }
  
  .faq-title {
    font-size: 3.456vw;
    margin-bottom: 4.32vw;
  }
  
  .faq-list {
    gap: 1.152vw;
    margin-bottom: 4.32vw;
  }
  
  .faq-item {
    border-radius: 0.72vw;
  }
  
  .faq-header {
    padding: 2.16vw 2.88vw;
    gap: 2.88vw;
  }
  
  .faq-question {
    font-size: 1.44vw;
  }
  
  .faq-body {
    padding: 0 2.88vw 2.16vw 2.88vw;
  }
  
  .faq-body p {
    font-size: 1.368vw;
  }
  
  .faq-btn {
    border-radius: 3.6vw;
    padding: 1.44vw 4.32vw;
    font-size: 1.44vw;
  }
  
  /* CONTACTS SECTION */
  .contacts-section {
    margin-top: 7.2vw;
  }
  
  .contacts-container {
    gap: 5.76vw;
  }
  
  .form-box {
    padding: 4.32vw;
    border-radius: 2.88vw;
  }
  
  .form-title {
    font-size: 2.592vw;
    margin-bottom: 0.72vw;
  }
  
  .form-subtitle {
    font-size: 1.368vw;
    margin-bottom: 2.88vw;
  }
  
  .main-form {
    gap: 1.728vw;
  }
  
  .form-group {
    gap: 0.72vw;
  }
  
  .form-group label {
    font-size: 1.296vw;
    margin-left: 0.72vw;
  }
  
  .form-group input {
    padding: 1.44vw 2.16vw;
    border-radius: 2.88vw;
    font-size: 1.44vw;
  }
  
  .form-submit-btn {
    margin-top: 1.44vw;
    padding: 1.44vw;
    border-radius: 2.88vw;
    font-size: 1.584vw;
  }
  
  .form-agreement {
    font-size: 1.08vw;
    margin-top: 1.44vw;
  }
  
  .dept-list {
    gap: 1.08vw;
  }
  
  .dept-item {
    border-radius: 2.88vw;
  }
  
  .dept-header {
    padding: 1.44vw 2.88vw;
  }
  
  .dept-name {
    font-size: 1.584vw;
  }
  
  .dept-arrow {
    width: 1.728vw;
    height: 1.728vw;
  }
  
  .dept-content {
    padding: 1.44vw 2.88vw 2.16vw 2.88vw;
  }
  
  .dept-content p {
    font-size: 1.44vw;
  }
  
  .contacts-link-btn {
    padding: 1.44vw 3.6vw;
    border-radius: 2.88vw;
    font-size: 1.44vw;
    margin-top: 1.44vw;
  }
  
  .contacts-decor-img {
    bottom: -12.96vw;
    right: 2.88vw;
    width: 31.68vw;
  }
  
  /* FOOTER */
  .main-footer {
    margin-top: 7.2vw;
  }
  
  .footer-decor-img {
    top: -14.4vw;
    width: 72vw;
  }
  
  .footer-top {
    margin-bottom: 4.32vw;
  }
  
  .brand-col {
    gap: 1.44vw;
    width: 20%;
  }
  
  .footer-logo img {
    width: 11.52vw;
  }
  
  .footer-desc {
    font-size: 1.152vw;
  }
  
  .footer-copyright-text {
    font-size: 1.296vw;
    margin-top: 4.32vw;
  }
  
  .footer-heading {
    font-size: 1.584vw;
    margin-bottom: 1.728vw;
  }
  
  .footer-nav {
    gap: 0.864vw;
  }
  
  .footer-nav li a {
    font-size: 1.368vw;
  }
  
  .contact-details {
    gap: 0.576vw;
    margin-bottom: 2.16vw;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 1.44vw;
  }
  
  .footer-rutube-big img {
    width: 2.88vw;
    height: 2.88vw;
  }
  
  .action-col {
    gap: 1.44vw;
    width: 30%;
  }
  
  .footer-rutube-small {
    gap: 0.72vw;
  }
  
  .footer-rutube-small span {
    font-size: 1.224vw;
  }
  
  .footer-rutube-small img {
    width: 1.728vw;
    height: 1.728vw;
  }
  
  .footer-btn {
    padding: 0.864vw 2.16vw;
    border-radius: 2.88vw;
    font-size: 1.296vw;
  }
  
  .footer-divider {
    margin-bottom: 2.16vw;
  }
  
  .footer-bottom {
    font-size: 1.224vw;
  }



  .serv-title-custom {
    max-width: 100%;
    font-size: 22px;
  }

  .serv-desc-text {
    font-size: 1.05vw;
    max-width: 100%;
    margin-bottom: 50px;
  }

  .serv-line-fix {
    width: 50px;
    margin: 0 5px 5px 5px;
  }

  .serv-badge {
    font-size: 11px;
    padding: 6px 12px;
    top: -1.05vw;
    right: -10px;
    border-radius: 10px;
  }

  .serv-license-box {
    max-width: 22.6vw;
    padding: 15px;
    bottom: 15px;
    right: 15px;
    border-radius: 10px;
  }

  .sl-block span {
    font-size: 10px;
  }

  .sl-block strong {
    font-size: 11px;
  }



    .quiz-section {
      padding: 4vw 3vw 0 3vw;
    }
  
    .quiz-content-wrapper {
      border-radius: 1.728vw;
      /* padding: 2.88vw 3.6vw; */
    }
  
    .quiz-header {
      margin-bottom: 3.6vw;
    }
  
    .quiz-main-title {
      font-size: 3.6vw;
      margin-bottom: 1.44vw;
    }
  
    .quiz-subtitle {
      font-size: 1.512vw;
    }
  
    .quiz-progress-bar {
      gap: 1.44vw;
      padding: 1.728vw 2.88vw;
      border-radius: 1.152vw;
      margin-bottom: 3.6vw;
    }
  
    .progress-icon {
      width: 2.592vw;
      height: 2.592vw;
    }
  
    .progress-text {
      font-size: 1.368vw;
    }
  
    .progress-counter {
      font-size: 1.584vw;
    }
  
    .quiz-content {
      gap: 2.88vw;
      margin-bottom: 3.6vw;
    }
  
    .quiz-question {
      font-size: 2.592vw;
      margin-bottom: 2.88vw;
    }
  
    .quiz-options {
      gap: 1.728vw;
    }
  
    .quiz-option {
      gap: 1.44vw;
    }
  
    .option-radio,
    .option-checkbox {
      width: 2.016vw;
      height: 2.016vw;
      border-width: 0.1872vw;
    }
  
    .quiz-option input[type="radio"]:checked ~ .option-radio {
      border-width: 0.36vw;
    }
  
    .option-checkbox::after {
      width: 0.504vw;
      height: 0.936vw;
      border-width: 0 0.216vw 0.216vw 0;
      top: 0.288vw;
    }
  
    .option-text {
      font-size: 1.44vw;
    }
  
    .quiz-form {
      gap: 1.44vw;
    }
  
    .quiz-form-group {
      gap: 0.72vw;
    }
  
    .quiz-form-group label {
      font-size: 1.296vw;
    }
  
    .quiz-form-group input {
      font-size: 1.728vw;
      padding: 1.296vw 1.728vw;
      border-width: 0.144vw;
      border-radius: 0.576vw;
    }
  
    .quiz-image-wrapper {
      border-radius: 1.44vw;
    }
  
    .quiz-navigation {
      gap: 2.88vw;
    }
  
    .quiz-btn {
      font-size: 1.44vw;
      padding: 1.44vw 3.6vw;
      border-radius: 0.864vw;
      gap: 0.864vw;
      border-width: 0.144vw;
    }
  
    .quiz-btn svg {
      width: 1.728vw;
      height: 1.728vw;
    }
  
  .agreement-section {
    padding: 2.1vw 32px 0;
  }
  .agreement-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 1.25vw;
  }
  .agreement-image,
  .agreement-content {
    width: 100%;
    gap: 50px;
  }
  .agreement-title {
    font-size: 26px;
  }
  .agreement-text {
    font-size: 15px;
  }
  .agreement-photo {
    border-radius: 1.05vw;
  }
  .agreement-decor {
    right: 2%;
    top: -17%;
    width: 48vw;
    max-width: 360px;
  }

  .remote-check-section {
    padding: 2.1vw 32px 0;
  }
  .remote-check-title {
    font-size: 26px;
  }
  .remote-check-subtitle {
    font-size: 15px;
  }
  .remote-check-grid {
    gap: 18px;
  }
  .remote-card-image {
    height: 21.05vw;
  }
  .remote-card-body {
    padding: 15px 16px 16px 16px;
    gap: 12px;
  }
  .remote-card-title {
    font-size: 16px;
  }
  .remote-card-text,
  .remote-card-list li {
    font-size: 14px;
  }
  .remote-card-list {
    padding-left: 1.4em;
  }

  .rental-benefits-section {
    padding: 2.1vw 32px 0;
  }
  .rental-benefits-title {
    font-size: 26px;
  }
  .rental-benefits-subtitle,
  .rental-benefits-tagline {
    font-size: 15px;
  }
  .rental-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .rental-card-image {
    height: 21.05vw;
  }
  .rental-card-text {
    font-size: 15px;
    padding: 15px 16px 16px 16px;
  }
  .rental-benefits-btn {
    font-size: 15px;
    padding: 13px 22px;
  }

  .fraud-protection-section {
    padding: 2.1vw 32px;
  }
  .fraud-protection-title {
    font-size: 26px;
  }
  .fraud-protection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .fraud-card-image {
    height: 21.05vw;
  }
  .fraud-card-content {
    padding: 16px 16px 18px 16px;
  }
  .fraud-card-heading {
    font-size: 16px;
  }
  .fraud-card-text,
  .fraud-card-subtitle,
  .fraud-card-list li {
    font-size: 14px;
  }
  .fraud-decor {
    width: 28vw;
    left: 45%;
    bottom: -2%;
  }

  .order-section {
    padding: 4vw 3vw 0 3vw;
  }

  .order-waybill .order-decor {
    left: 3%;
    top: 10%;
    width: 32vw;
  }

  .order-content {
    gap: 5.76vw;
  }

  .order-left {
    gap: 2.88vw;
  }

  .order-title {
    font-size: 3.312vw;
  }

  .order-list {
    gap: 1.728vw;
  }

  .order-item {
    gap: 1.44vw;
  }

  .order-number {
    width: 2.592vw;
    height: 2.592vw;
    min-width: 2.592vw;
    font-size: 1.368vw;
  }

  .order-text {
    font-size: 1.44vw;
    padding-top: 0.288vw;
  }

  .order-image-wrapper {
    border-radius: 1.728vw;
  }

    .comparison-section {
      padding: 4vw 3vw 0 3vw;
    }
  
    .title-break {
      display: none;
    }
  
    .comparison-header {
      margin-bottom: 4.32vw;
    }
  
    .comparison-title {
      font-size: 3.312vw;
      margin-bottom: 1.152vw;
    }
  
    .comparison-subtitle {
      font-size: 1.44vw;
    }
  
    .comparison-table-wrapper {
      margin-bottom: 3.6vw;
    }
  
    .comparison-table {
      border-radius: 1.728vw;
    }
  
    .comparison-table thead th {
      font-size: 1.44vw;
      padding: 1.44vw 2.16vw;
    }
  
    .td-content {
      gap: 1.152vw;
      padding: 1.728vw 2.16vw;
    }
  
    .comp-item {
      gap: 0.72vw;
    }
  
    .comparison-table p {
      font-size: 1.296vw;
    }
  
    .comp-col-label p {
      font-size: 1.368vw;
    }
  
    .comp-check,
    .comp-cross {
      font-size: 2.16vw;
    }
  
    .comparison-features {
      gap: 2.88vw;
    }
  
    .comp-feature {
      gap: 1.44vw;
    }
  
    .comp-feature-icon {
      width: 3.6vw;
      height: 3.6vw;
      min-width: 3.6vw;
    }
  
    .comp-feature-text {
      font-size: 1.296vw;
      padding-top: 0.288vw;
    }

  .rent-section {
    padding: 4vw 3vw 0 3vw;
  }

  .rent-header {
    margin-bottom: 4.32vw;
  }

  .rent-title {
    font-size: 3.312vw;
    margin-bottom: 1.152vw;
  }

  .rent-title br {
    display: none;
  }

  .rent-subtitle {
    font-size: 1.44vw;
  }

  .rent-cards {
    gap: 2.88vw;
    margin-bottom: 4.32vw;
  }

  .rent-row {
    gap: 2.88vw;
  }

  .rent-row-3,
  .rent-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rent-card {
    border-radius: 2.304vw;
  }

  .rent-card::before {
    border-radius: 2.304vw;
  }

  .rent-card:hover {
    transform: translateY(-0.576vw);
    box-shadow: 0 1.44vw 3.168vw rgba(0, 0, 0, 0.12);
  }

  .rent-card-image {
    height: 17.28vw;
    border-radius: 2.304vw 2.304vw 0 0;
  }

  .rent-card-title {
    font-size: 1.584vw;
    padding: 1.8vw 2.3vw 2.3vw 2.3vw;
  }

  .rent-footer {
    gap: 1.44vw;
  }

  .rent-btn {
    padding: 1.728vw 4.32vw;
    border-radius: 2.88vw;
    font-size: 1.584vw;
    box-shadow: 0 0.432vw 1.44vw rgba(254, 29, 37, 0.25);
  }

  .rent-btn:hover {
    box-shadow: 0 0.72vw 2.16vw rgba(254, 29, 37, 0.35);
    transform: translateY(-0.288vw);
  }

  .rent-note {
    font-size: 1.44vw;
  }

  .remote-check-section {
    padding: 6vw 3vw;
  }
  .remote-check-title {
    font-size: 26px;
  }
  .remote-check-subtitle {
    font-size: 15px;
  }
  .remote-check-grid {
    gap: 18px;
  }
  .remote-card-image {
    height: 21.05vw;
  }
  .remote-card-body {
    padding: 15px 16px 16px 16px;
    gap: 12px;
  }
  .remote-card-title {
    font-size: 16px;
  }
  .remote-card-text,
  .remote-card-list li {
    font-size: 14px;
  }
  .remote-card-list {
    padding-left: 1.4em;
  }
  .remote-card {
    flex: 1 1 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
    align-self: stretch;
  }

  .equipment-proof-section {
    padding: 6vw 3vw;
  }
  .equipment-proof-title {
    font-size: 26px;
  }
  .equipment-proof-rows {
    gap: 2%;
  }
  .equipment-proof-row {
    gap: 4%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .row-top .equip-card {
    width: 48%;
    max-width: 48%;
  }

  
  .row-bottom .equip-card {
    width: 48%;
    max-width: 48%;
    margin-bottom: 4%;
  }
  .equip-card-image {
    height: 21.05vw;
  }
  .equip-card-body {
    gap: 12px;
    padding: 15px 16px 16px 16px;
  }
  .equip-card-title {
    font-size: 16px;
  }
  .equip-card-text {
    font-size: 14px;
  }
  .equip-btn {
    padding: 13px 1.25vw;
    font-size: 15px;
  }
  .authenticity-section {
    padding: 6vw 3vw;
  }
  .authenticity-title {
    font-size: 26px;
  }
  .authenticity-grid {
    gap: 4%;
  }
  .auth-card {
    width: 48%;
    max-width: 48%;
    margin-bottom: 4%;
  }
  .auth-card-image {
    height: 21.05vw;
  }
  .auth-card-body {
    gap: 12px;
    padding: 15px 16px 16px 16px;
  }
  .auth-card-title {
    font-size: 16px;
  }
  .auth-card-text {
    font-size: 14px;
  }

  .remote-check-grid {
    gap: 18px;
  }
  .remote-card {
    flex: 0 0 calc((100% - 18px) / 2);
    max-width: calc((100% - 18px) / 2);
  }

  .contact-hero-section {
    padding: 60px 3vw 0;
  }
  .contact-hero-card {
    grid-template-columns: 1fr;
    gap: 1.25vw;
  }
  .contact-hero-info {
    padding: 28px;
  }
  .contact-hero-title {
    font-size: 26px;
  }
  .contact-hero-desc {
    font-size: 15px;
  }
  .contact-hero-phone {
    font-size: 1.25vw;
  }
  .contact-hero-mail {
    font-size: 16px;
  }
  .contact-hero-btn {
    font-size: 14px;
  }
  .contact-decor-img {
    width: 240px;
  }
  .map-embed {
    min-height: 31.05vw;
  }

  .blog-section {
    padding: 2.6vw 3vw 60px;
  }
  .blog-grid {
    gap: 18px;
  }
  .blog-card {
    width: calc((100% - 2.1vw) / 3);
    max-width: calc((100% - 2.1vw) / 3);
  }
  .blog-card-image {
    height: 200px;
  }
  .blog-card-body {
    padding: 15px 16px 16px;
  }
  .blog-card-link {
    font-size: 14px;
    padding: 10px 16px;
  }
  .blog-more-btn {
    font-size: 15px;
  }

  .blog-detail-section {
    padding: 2.6vw 4vw 60px;
  }
  .blog-detail-title {
    font-size: 26px;
  }
  .blog-detail-body h3 {
    font-size: 16px;
  }
  .blog-detail-meta {
    font-size: 14px;
  }
  .blog-detail-body {
    font-size: 15px;
    gap: 14px;
  }
  .blog-detail-body ul,
  .blog-detail-body ol {
    padding-left: 1.05vw;
  }
  .blog-detail-image,
  .blog-detail-image img {
    border-radius: 16px;
  }
  .related-articles-section {
    padding: 2.6vw 4vw 60px;
  }
  .related-articles-container {
    gap: 28px;
  }
  .related-title {
    font-size: 26px;
  }
  .related-grid {
    gap: 18px;
  }
  .related-card {
    width: calc((100% - 2.1vw) / 3);
    max-width: calc((100% - 2.1vw) / 3);
  }
  .related-card-image {
    height: 180px;
  }
  .related-card-body {
    padding: 15px 16px 16px;
  }
  .related-card-btn {
    font-size: 14px;
  }
  .related-more-btn {
    font-size: 15px;
  }
}





.pc{
	display:flex!important;
}

.mobi{
	display:none!important;
}
.button-right.mobi,
.button-right.pc{
	flex-direction: column;
}

@media (max-width: 768px) {

	.banner-tg img.banner-tg-pc{
		display:none;
	}
	.banner-tg img.banner-tg-mobi{
		display:block;
	}
	.banner-tg-close {
	  width: 15%;
	  height: 8%;
	  top: 1%;
	  right: 2%;
	}
	.banner-tg a {
	  width: 87%;
	  height: 11%;
	  left: 6%;
	  bottom: 6.5%;
	}


.detail-news-content {
  flex-direction: column;
    padding: 0 10px;
}
.detail-article-left,
.detail-article-right{
	width:100%;
}
.news-block-content.block-forma_text h2, .news-block-content.block-forma_text h3, .news-block-content.block-forma_text h4,
.name-itog, .detail-article-left h2, .detail-article-right h2 {
  font-size: 26px;
}
.detail-article-right .bnner-block {
  gap: 0px;
}
.detail-news-header {
  margin-top: 90px;
}
.news-block-content.block-forma_text {
  font-size: 20px;
}
.news-block-content.block-forma_img a{
	width:100%;
}
.detail-article-right .bnner-block .btn-primary {
  padding: 5.1vw 1.8vw;
}
.baracumbs-news,
.detail-news-header span,
.detail-news-header a {
  font-size: 14px;
}
.detail-news-header h1 {
  font-size: 5vw;
}




	.banner-title span.work-all-russia {
    font-size: 4.9vw;
  }
.block-sostav-nast-termenal.variant-2 .frame-8,
.block-sostav-nast-termenal.variant-2 .frame-8 p {
  font-size: 16px;
}
.rep-text-box {
  font-size: 4.25vw;
}
.banner-text h1 span {
  font-size: 7vw;
}
.banner-text h1 span.work-all-russia{
	 font-size: 5vw;
}

.button-right.mobi{
	flex-direction: column;
	gap:10px;
	width:100%;
}
.mobi{
	display:flex!important;
}
	
.pc{
	display:none!important;
}
.frame-8.mobi{
	width:100%;
}
.frame-8.mobi a{
	color:#000;
}
	.block-terms-guarantees .frame-3 {
  gap: 10px;
	}
	.block-terms-guarantees .contract-docs{
		font-size: 20px;
		line-height:1.1;
	}
	  .block-type-list .frame-c {
    background: url(../new_img/0W0SrpqukG-mobi.png) no-repeat center;
    background-size: contain;
    height: 475px;
  }
  .bolock-format-bisnes .frame-5,
  .block-format-oborudi .frame-2,
  .bolock-vipusk-reis .frame-5,
	.block-type-list .frame-2{
		display: none;
	}
	 .block-format-oborudi .frame-2{
		 display:flex;
	 }
.owl-carousel.owl-loaded.mobi-slider {
  display: block;
}
	.bolock-vipusk-reis .buttons {
  flex-wrap: wrap;
	}
	.new-banner {
  margin-bottom: 6vw;
	}
	.block2 .icon {
    width: 40px;
    height: 40px;
  }
	.block-sostav-nast-termenal .frame-4, 
	.block-sostav-nast-termenal .frame-3, 
	.block-sostav-nast-termenal .frame-2
	{
    gap: 10px;
  }
	.nav-list-lv2 {
  position: relative;
  top: 0;
  padding: 0;
  background-color: #fff;
  left: 0;
  display: block;
}
	.quiz-section {
  margin-bottom: 14vw;
}
.block2 .quiz-main-title {
  width: 90%;
}
.quiz-navigation {
  width: 100%;
}
.block8 .photo, .block2 .photo {
  background-size: cover !important;
  border-radius: 30px;
    height: 310px;
}
	.remote-check-3 {
  position: relative;
  color: #2d2d2d;
  font-family: Manrope,var(--default-font-family);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
}
.rf {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 8px;
  width: 100%;
  height: fit-content;
  padding: 10px 14px;
  background: #ffffff;
  border: 2px solid #f5f5f5;
  z-index: 5;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 4px 8.7px 0 rgba(158, 156, 156, 0.15);
  margin-left: 0;
}
.work-all-russia {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
}
.block8 .license, .block2 .license {
	width: 94%;
  margin: 0 auto;
  left: 0;
  bottom: 20px;
  right: 0;
}


	  .topbar {
    border-bottom: 0.096vw solid rgba(0, 0, 0, 0.06);
    width: 100%;
    max-width: 100%;
    height: 96px;
    padding: 15px 30px;
    border-radius:0;
  }
  .topbar {
    padding: 0 3vw;
    position: relative;
    z-index: 1000;
  }
  
  .topbar-container {
    position: relative;
  }
  
  .topbar .callback-btn {
    display: none !important;
  }
  
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    z-index: 999;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    max-height: 0;
    overflow: hidden;
    padding: 0;
  }
  
  .main-nav.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    overflow-y: auto;
    align-items: center;
    justify-content: center;
    width: 100%;
	padding: 110px 0 30px;
    height: 100%;
    max-height: 100%;
  }
  
  .main-nav .nav-container {
    padding: 1.05vw;
  }
  
  .main-nav .nav-list {
    flex-direction: column;
    padding: 0;
    gap: 0;
    display: none;
  }
  
  .main-nav.active .nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  
  .main-nav .nav-link {
    padding: 15px 1.05vw;
    border-bottom: 1px solid #f0f0f0;
    display: block;
    width: 100%;
    text-align: center;
    font-size: 16px;
  }
  
  .main-nav .nav-link:last-child {
    border-bottom: none;
  }
  
  /* Menü içindeki callback butonu - menünün altında, sağ tarafta */
  .main-nav {
    display: flex;
    flex-direction: column;
  }
  
  .main-nav .mobile-callback-btn {
    display: none;
    justify-content: center;
    align-self: center;
    margin: 1.05vw auto;
    font-size: 14px;
    padding: 15px 30px;
    border: 1px solid #FE1D25;
    border-radius: 25px;
    background: transparent;
    color: #FE1D25;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .main-nav.active .mobile-callback-btn {
    display: block;
  }
  
  .main-nav .mobile-callback-btn:hover {
    background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
    color: #ffffff;
  }
  
  /* Hamburger butonu topbar'da görünür background: #7C2E31; */
  .mobile-menu-toggle {
    display: flex;
    width: 30px;
    height: 30px;
    
    border: none;
    border-radius: 50%;
    cursor: pointer;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  
  .mobile-menu-toggle:hover {
    background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
  }
  
  .mobile-menu-toggle .menu-icon {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 15px;
    height: 16px;
    position: relative;
    transition: all 0.3s ease;
    justify-content: center;
    align-items: center;
  }
  
  .mobile-menu-toggle .menu-line {
    width: 100%;
    height: 2px;
    background: #000;
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
  }
  
  .mobile-menu-toggle.active .menu-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-menu-toggle.active .menu-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
  }
  
  .mobile-menu-toggle.active .menu-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  
  /* Menü açıldığında topbar'ın altında görünsün - JavaScript ile dinamik ayarlanacak */
  
  body.menu-open {
    overflow: hidden;
  }
  
  .banner {
    padding: 100px 3vw 0 3vw;
	margin: 0 auto 14vw;
  }
  
  .video-section {
    padding: 60px 3vw 0 3vw;
  }
  
  .waybill-vehicles-section {
    padding: 60px 1.05vw;
  }
  
  .waybill-vehicles-container {
    gap: 30px;
  }
  
  .waybill-vehicles-header {
    max-width: 100%;
  }
  
  .waybill-vehicles-title {
    font-size: 1.25vw;
  }
  
  .waybill-vehicles-title-br {
    display: none;
  }
  
  .waybill-vehicles-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  
  .waybill-vehicle-image {
    padding: 15px;
    min-height: 12.6vw;
  }
  
  .waybill-vehicle-content {
    padding: 1.05vw;
    gap: 15px;
  }
  
  .waybill-vehicle-title {
    font-size: 16px;
  }
  
  .waybill-vehicle-form {
    font-size: 14px;
  }
  
  .process-section {
    padding: 1.05vw;
	margin-bottom: 14vw;
  }
  
  .mobile-complex-section {
    padding: 0 3vw;
  }
  
  .legal-section {
    padding: 0 3vw;
  }
  
  .business-format {
    padding: 0 3vw;
  }
  
  .reliability-section {
    padding: 0 3vw;
  }
  
  .reputation-section {
    padding: 0 3vw 4vw 3vw;
  }
  
  .complex-solution-section {
    padding: 0 3vw;
  }
  
  .leaders-section {
    padding: 0 3vw;
  }
  
  .results-section {
    padding: 0 3vw;
  }
  
  .faq-section {
    padding: 0 3vw;
  }
  
  .contacts-section {
    padding: 0 3vw;
  }
  
  .main-footer {
    padding: 4vw 3vw 2vw 3vw;
  }
  
  /* BANNER - Alta geç */
  .banner-inner {
    flex-direction: column;
    gap: 2vw;
  }
  
  .banner-content {
    max-width: 100%;
    width: 100%;
  }
  
  .banner-image {
    width: 100%;
  }
  .banner-content .banner-image {
    width: calc(100% + 30px)!important;
    left: -15px;
	margin-bottom: 20px;
	height: auto !important;
  }
  /* VIDEO SECTION - Alta geç */
  .video-inner {
    flex-direction: column-reverse;
    gap: 50px;
  }
   .block-sostav-nast-termenal.variant-2 .tr-block-all {
    margin-left: -150%;
  } 
  .video-left {
    max-width: 100%;
    width: 100%;
  }
  
  .video-content {
    width: 100%;
  }
  
  /* PROCESS STEPS - Tek sütun */
  .process-steps {
    flex-direction: column;
    gap: 50px;
	display:none;
  }
  
  .process-step {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  
  .waybill-process-section {
    padding: 70px 1.05vw 0 1.05vw;
  }
  
  .waybill-process-container {
    gap: 50px;
  }
  
  .waybill-process-header {
    margin-bottom: 50px;
  }
  
  .waybill-process-title {
    font-size: 22px;
    margin: 0 0 10px 0;
  }
  
  .waybill-process-subtitle {
    font-size: 14px;
  }
  
  .waybill-process-steps {
    flex-direction: column;
    gap: 50px;
  }
  
  .waybill-process-step {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  
  .waybill-step-content {
    gap: 15px;
    padding: 10px 10px 1.05vw 10px;
  }
  
  .waybill-step-title {
    font-size: 16px;
  }
  
  .waybill-step-description {
    font-size: 14px;
  }
  
  /* MOBILE COMPLEX - Alta geç */
  .mobile-complex-content {
    flex-direction: column;
  }
  
  .mobile-complex-left {
    width: 100%;
  }
  
  .mobile-complex-right {
    width: 100%;
  }
  
  /* LEGAL SECTION - Alta geç */
  .legal-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .legal-left {
    width: 100%;
  }
  
  .legal-right {
    width: 100%;
  }
  
  /* BUSINESS FORMAT CARDS - Alta geç */
  .bf-cards {
    flex-direction: column;
  }
  
  .bf-card {
    width: 100%;
  }
  
  /* RELIABILITY SECTION - Alta geç */
  .reliability-container {
    flex-direction: column;
    gap: 30px;
  }
  
  .reliability-content {
    width: 100%;
  }
  
  .reliability-image {
    width: 100%;
    border-radius: 30px;
	overflow:hidden;
  }
  
  /* REPUTATION SECTION - Alta geç */
  .rep-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .rep-left {
    width: 100%;
	border-radius: 30px;
  }
  
  .rep-right {
    width: 100%;
  }
  
  /* COMPLEX SOLUTION - Alta geç */
  .complex-top {
    flex-direction: column;
    gap: 30px;
  }
  
  .complex-text-col {
    width: 100%;
	position:relative;
  }
  
  .complex-img-col {
    width: 100%;
  }
  
  /* RESULTS GRID - Alta geç */
  .results-grid {
    flex-direction: column;
    gap: 30px;
  }
  
  .results-card {
    width: 100%;
  }
  
  /* CONTACTS SECTION - Alta geç */
  .contacts-container {
    flex-direction: column;
    gap: 30px;
  }
  .complex-list {
  flex-direction: column;
  }
  .complex-text-col {
  width: 100%;
  left: 0;
  bottom: 0;
  display:none;
  }
  .complex-list.two-row li {
  max-width: 100%;
}
  .contacts-left {
    width: 100%;
  }
  
  .contacts-right {
    width: 100%;
  }
  
  /* FOOTER - Görüntüdeki gibi düzenle */
  .footer-top {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
  }
  
  .brand-col {
    width: calc(50% - 15px);
    order: 1;
  }
  
  .action-col {
    width: calc(50% - 15px);
    order: 2;
    align-items: flex-end;
    justify-content: flex-start;
    flex-direction: column;
  }
  .contact-details.footer-nav a {
  font-size: 3.95vw;
  }
  .links-col {
    width: calc(100% - 15px);
    order: 3;
  }
  
  .contact-col {
    width: calc(100% - 15px);
    order: 4;
  }
  
  /* Brand-col'dan copyright'ı gizle */
  .brand-col .footer-copyright-text {
    display: none;
  }
  
  /* Action-col'u düzenle */
  .footer-rutube-small {
    display: none;
  }
  
  .footer-btn {
    width: auto;
    padding: 10px 1.05vw;
    font-size: 14px;
  }
  
  /* Footer logo ve desc düzenle */
  .footer-logo img {
    width: 100px;
  }
  
  /* VW değerlerini px'e çevir */
  .topbar {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    /* display: none; */
  }
  
  .topbar-inner {
    min-height: 60px;
    padding: 12px 0;
    gap: 15px;
  }
  
  .logo-img {
    width: 11.05vw;
  }
  
  .logo-text {
    font-size: 10px;
	line-height: 10.795px;
  }
  
  .topbar-info {
    gap: 10px;
	align-items: flex-end;
  }
  
   .info-clock {
   display: none !important;
  }
  
  .info-icon {
    width: 20px;
    height: 20px;
  }
  
  .info-text {
    gap: 3px;
  }
  
  .info-label,
  .info-value {
    font-size: 12px;
    display: none;
  }
  
  .topbar-right {
    gap: 10px;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
	width: auto;
  }
  
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  .topbar-flag-block {
    font-size: 12px;
  }
  
  .lang-flag {
    width: 20px;
    flex-shrink: 0;
  }
  
  .topbar-rutube {
    display: none;
  }
  
  .r-logo {
    width: 16px;
    height: 16px;
  }
  
  .callback-btn {
	font-size: 16px;
    border: 1px solid #FE1D25;
    border-radius: 1.05vw;
    padding: 12px 3.05vw;
  }
  
  .nav-list {
    padding: 10px 0 8px;
    gap: 15px;
  }
  
  .nav-link {
    font-size: 14px;
    padding-bottom: 5px;
  }
  
  .banner-container {
    border-radius: 1.05vw;
  }
  
  .banner-content-inner {
    gap: 50px;
    border-radius: 1.05vw;
    padding: 1.05vw;
  }
  
  .banner-decor {
    bottom: 50px;
    right: -30px;
    width: 300px;
  }
  
  .banner-title {
    font-size: 22px;
	line-height: 1.1;
  }
  .new-banner .banner-container {
  padding: 1.05vw 0;
  padding-top: 100px;
}
  .title-highlight {
    margin-right: 5px;
  }
  .banner-text {
  font-size: 16px;
  line-height: 1.1;
}
.new-title {
  font-size: 22px;
  line-height: 100%;
}
  .title-line {
    width: 50px;
    margin-right: 3px;
  }
  
  .banner-subtitle {
    font-size: 16px;
  }
  
  .banner-features {
    gap: 15px;
	flex-direction: row;
    overflow-y: auto;
  }
  
  .feature-item {
    gap: 8px;
    font-size: 14px;
  }
  
  .check-icon {
    width: 40px;
    height: 40px;
  }
  
  .banner-buttons {
    gap: 15px;
    margin-top: 15px;
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    font-size: 16px;
    padding: 15px 3.05vw;
    border-radius: 20px;
    width: 100%;
  }
  .reputation-section.o-kompanii{
	  padding-top:100px;
  }
  .btn-secondary {
    border: 2px solid #FE1D25;
  }
  
  .main-photo {
    border-radius: 0;
    position: relative;
    z-index: 1;
  }
  
  .banner-badge {
    gap: 10px;
    padding: 10px 15px;
    border-radius: 10px;
  }
  
  .badge-logo {
    width: 129px;
	z-index: 7;
  }
  
  .badge-right {
    bottom: 10px;
    right: 10px;
    padding: 10px 1.05vw;
  }
  
  .license-text {
    font-size: 14px;
  }
  
  .video-thumbnail {
    border-radius: 0 0 30px 30px;
  }
  
  .video-caption {
    font-size: 14px;
    padding: 0 1.05vw;
  }
  
  .video-content {
    border-radius: 0;
    gap: 30px;
  }
  
  .video-title {
    font-size: 22px;
  }
  
  .video-features {
    gap: 50px;
  }
  
  .video-feature-item {
    gap: 15px;
  }
  
  .video-feature-icon {
    width: 26px;
  }
  
  .video-feature-text {
    gap: 5px;
  }
  
  .video-feature-main {
    font-size: 16px;
  }
  
  .video-feature-sub {
    font-size: 14px;
  }
  
  .process-container {
    gap: 20px;
  }
  
  .process-header {
    margin-bottom: 0;
  }
  
  .process-title,
  .process-title-sub {
    font-size: 22px;
  }
  
  .process-title {
    margin: 0 auto;
  }
  
  .process-title-sub {
    margin: 0 0 10px 0;
  }
  
  .process-subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
  
  .step-content {
    gap: 15px;
    padding: 30px 10px;
	min-height: 221px;
  }
  
  .step-title {
    font-size: 16px;
  }
  
  .step-description {
    font-size: 14px;
  }
  
  .step-result {
    font-size: 14px;
    gap: 5px;
  }
  
  .step-result strong {
    margin-bottom: 5px;
  }
  
  .mobile-complex-section {
    margin-bottom: 14vw;
  }
  
  .mobile-complex-container {
    gap: 20px;
  }
  
  .mobile-complex-header {
    margin-bottom: 20px;
  }
  
  .mobile-complex-title {
    font-size: 22px;
    margin: 0 0 10px 0;
    padding: 0 1.05vw;
    line-height: 1.1;
  }
  
  .mobile-complex-subtitle {
    font-size: 16px;
  }
  
  .mobile-complex-content {
    gap: 10px;
    border-radius: 1.05vw;
  }
  
  .complex-content-inner {
    gap: 50px;
    padding: 1.05vw 0 1.05vw 15px;
  }
  
  .complex-title {
    font-size: 22px;
  }
  
  .complex-subtitle {
    font-size: 16px;
  }
  .btn-price,
  .btn-details {
  width: 100%;
  }
   .complex-features {
    padding-left: 0;
  }
  .complex-decor {
    position: absolute;
    width: auto;
    height: 100%;
    left: -10px;
    top: 0;
}
  .feature-item {
    gap: 10px;
	padding: 20px 20px;
  }
  
  .feature-text {
    font-size: 16px;
	text-align: left;
  }
  
  .complex-target {
    font-size: 14px;
  }
  
  .complex-buttons {
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .btn-details,
  .btn-price {
    font-size: 16px;
    padding: 15px 25px;
    border-radius: 30px;
  }
  
  .btn-price {
    border: 2px solid #FE1D25;
  }
  
  .play-icon-link {
    width: 50px;
    height: 50px;
  }
  
  .mobile-complex-decor {
    bottom: 0;
    right: -70px;
    width: 300px;
  }
  
  .complex-badge {
    width: 270px;
    bottom: 20px;
    left: 20px;
    padding: 15px;
    border-radius: 30px;
  }
  .mobile-complex-section .complex-features {
  flex-direction: column;
  }
  .legal-list {
  padding-left: 5.4vw;
}
  .mobile-complex-section .feature-item {
  width: 100%;
  background-color: transparent;
  }
  .badge-text {
    font-size: 14px;
  }
  
  .legal-section {
    margin-top: 0;
	margin-bottom: 14vw;
  }
  .price-main strong {
  font-size: 4.25vw;
}
.price-main strong span {
  font-size: 4.25vw;
}
  .legal-content {
    gap: 30px;
  border-radius: 1.05vw;
  padding: 2vw;
  }
  .legal-container {
  flex-direction: column;
}
  .legal-left {
    gap: 25px;
  }
  
  .legal-title {
    font-size: 22px;
    gap: 5px;
  }
  
  .legal-title-line {
    width: 60px;
  }
  
  .legal-item {
    gap: 10px;
  }
  
  .legal-bullet {
    width: 6px;
    height: 6px;
    margin-top: 5px;
  }
  
  .legal-text {
    font-size: 16px;
  }
  
  .legal-info {
    font-size: 14px;
  }
  
  .legal-links {
    gap: 25px;
  }
  
  .legal-link {
    font-size: 14px;
  }
  
  .legal-partners {
    margin-top: 25px;
  }
  
  .partners-list {
    gap: 1vw;
    flex-wrap: wrap;
  }
  
  .partner-logo {
    height: auto;
    max-width: 77%;
  }
.partners-list-img {
    height: auto;
    align-items: center;
    justify-content: center;
  }
  .legal-partners-section {
    padding: 2.6vw 1.05vw 0 1.05vw;
    margin-top: 40px;
  }
.reliability-section .mobile-complex-title {
  font-size: 22px;
  line-height: 1.1;
}
.block8 .quick-easy, .block2 .quick-easy {
  font-size: 13px;
}
  .legal-support-section {
    padding: 2.6vw 1.05vw 0 1.05vw;
    margin-top: 70px;
  }

  .legal-support-card {
    /* flex-direction: column; */
    border-radius: 18px;
    box-shadow: none;
  }

  .legal-support-image,
  .legal-support-content {
    width: 100%;
  }

  .legal-support-image {
    padding: 0;
  }

  .legal-support-photo {
    border-radius: 14px;
  }

  .legal-support-content {
    padding: 1.25vw;
    gap: 16px;
  }

  .legal-support-title {
    font-size: 1.25vw;
  }

  .legal-support-desc {
    font-size: 16px;
  }

  .legal-support-item {
    gap: 12px;
  }

  .legal-support-bullet {
    width: 10px;
    height: 10px;
    margin-top: 6px;
  }

  .legal-support-text {
    font-size: 14px;
  }

  .legal-support-note {
    font-size: 13px;
  }

  .medmap-details-section {
    padding: 40px 15px 0 15px;
    margin-top: 60px;
  }

  .medmap-details-container {
    flex-direction: column;
    gap: 39px;
  }

  .medmap-details-content,
  .medmap-details-image {
    width: 100%;
  }

  .medmap-details-title {
    font-size: 22px;
  }

  .medmap-details-desc {
    font-size: 15px;
    line-height: 1.45;
  }

  .medmap-details-subtitle {
    font-size: 16px;
  }

  .medmap-details-list {
    gap: 12px;
  }

  .medmap-details-bullet {
    width: 18px;
    height: 18px;
    font-size: 12px;
    border-width: 1px;
  }

  .medmap-details-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .medmap-details-note {
    font-size: 13px;
  }

  .details-btn {
    font-size: 14px;
    padding: 14px 1.25vw;
    border-radius: 14px;
    width: 100%;
    text-align: center;
  }

  .medmap-details-actions {
    flex-direction: column;
    gap: 12px;
  }

  .medmap-details-decor {
    left: auto;
    bottom: auto;
    width: 21.05vw;
    /* border: 5px solid red; */
    top: 10%;
    right: 75px;
  }
  
  .business-format {
    margin-top: 0;
	margin-bottom: 14vw;
  }
  
  .bf-container {
    gap: 30px;
  }
  
  .bf-title {
    font-size: 22px;
    margin: 0 0 15px 0;
  }
  
  .bf-subtitle {
    font-size: 16px;
  }
  
  .bf-cards {
    gap: 30px;
	display:none;
  }
  
  .bf-card {
    border-radius: 1.05vw;
    padding: 25px;
    border: 2px solid transparent;
    gap: 15px;
    min-height: auto;
  }
  
  .bf-card::before {
    border-radius: 1.05vw;
    padding: 2px;
  }
  
  .bf-card:hover {
    transform: translateY(-5px);
  }
  
  .bf-card-title {
    font-size: 5.05vw;
  }
  .rel-item {
  padding: 33px 5.05vw;
  }
  .bf-intro {
    font-size: 16px;
  }
  
  .bf-list {
    gap: 8px;
    padding-left: 15px;
  }
  
  .bf-list li::before {
    left: -15px;
    font-size: 14px;
  }
  
  .bf-list li span {
    font-size: 16px;
  }
  
  .bf-price {
    gap: 5px;
  }
  
  .price-main {
    font-size: 16px;
  }
  
  .bf-btn {
    margin-top: 15px;
    padding: 15px 0;
    border-radius: 25px;
    font-size: 14px;
  }
  
  .bf-btn:hover {
    transform: translateY(-3px);
  }
  
  .reliability-section {
    margin-top: 0;
	margin-bottom: 14vw;
  }
  
  .reliability-container {
    gap: 10px;
  }
  
  .rel-title {
    font-size: 22px;
    margin-bottom: 50px;
  }
  
  .rel-subtitle {
    font-size: 16px;
    margin-bottom: 50px;
  }
  
  .rel-quote-block {
    gap: 15px;
    margin-bottom: 25px;
  }
  
  .rel-line-img {
    width: 8px;
    margin-top: 4px;
  }
  
  .rel-quote-text {
    font-size: 14px;
  }
  
  .rel-list {
    gap: 15px;
    margin-bottom: 25px;
	flex-direction: column;
	display: none;
  }
  
  .rel-item {
    gap: 10px;
  }
  
  .rel-num {
    width: 5.25vw;
    height: 5.25vw;
    font-size: 14px;
    margin-top: 2px;
  }
  
  .rel-text {
    font-size: 16px;
  }
  
  .rel-btn {
    border-radius: 30px;
    padding: 15px 30px;
    font-size: 16px;
  }
  
  .rel-img {
	width: auto;
    height: 100%;
    left: 165%;
    display: block;
    position: relative;
  }
  
  .reputation-section {
    margin-top: 0;
	margin-bottom: 14vw;
  }
  
  .rep-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .reputation-container,
  .blog-detail-section {
  padding: 5vw 0vw 0vw;
}
  .rep-content {
    gap: 25px;
    margin-bottom: 0;
  }
  
  .rep-img-wrapper {
    border-radius: 25px;
  }
  
  .rep-text-box {
    padding: 25px 30px;
    gap: 50px;
  }
  
  .rep-text-box p {
    font-size: 16px;
    line-height: 1.1;
  }
  
  .rep-right {
    border-radius: 25px;
    padding: 40px 25px;
    gap: 30px;
  }
  
  .rep-icon-row {
    gap: 15px;
	flex-direction: column;
  }
  .rep-icon-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  width:100%;
  align-items: center;
  justify-content: left;
  gap: 30px;
}
.wide-item {
  max-width: 100%;
}
  .rep-icon-row.center-row {
    gap: 40px;
  }
  
  .rep-icon-item img {
    height: 30px;
    margin-bottom: 0;
  }
  
  .rep-icon-item p {
    font-size: 14px;
	line-height: 1.1;
  }
  .complex-list li strong, .complex-list li b {
  font-size: 4.25vw;
  }
  .rep-btn {
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 16px;
  }
  
  .complex-solution-section {
    margin-top: 0;
	margin-bottom: 14vw;
  }
  
  .complex-container {
    gap: 40px;
  }
  
  .complex-top {
    gap: 10px;
  }
  
  .complex-header-block {
    margin-bottom: 50px;
  }
  
  .complex-title {
    font-size: 22px;
  }
  
  .complex-subtitle-row {
    gap: 15px;
    margin-top: 8px;
  }
  
  .complex-decor-line {
    width: 80px;
  }
  
  .complex-list {
    gap: 12px;
  }
  
  .complex-list li {
    font-size: 14px;
    padding: 15px;
  }
  
  .complex-list li::before {
    font-size: 16px;
  }
  
  .complex-main-img {
    border-radius: 25px;
  }
  
  .complex-vehicles {
    /* padding: 0 25px; */
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 15px;
  }
  .leader-item {
  width: 100%;
  }
  .card-logo-wrapper {
  min-height: auto;
  }
  .vehicle-img {
    width: 47%;
  }
  
  .leaders-section {
    margin-top: 0;
	margin-bottom: 14vw;
  }
  
  .leaders-title {
    font-size: 22px;
    margin-bottom: 40px;
	line-height:120%;
  }
  
  .leaders-slider {
    margin-bottom: 40px;
    padding: 0;
  }
  
  .leader-item {
    border-radius: 30px;
  }
  
  .leaders-slider .owl-nav button.owl-prev,
  .leaders-slider .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }
  
  .nav-arrow-svg {
    width: 14px;
    height: 14px;
  }
  
  .leaders-slider .owl-nav button.owl-prev {
    left: 0px;
  }
  
  .leaders-slider .owl-nav button.owl-next {
    right: 0px;
  }
  
  .leaders-btn {
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 16px;
  }
  
  .results-section {
    margin-top: 0;
    margin-bottom: 14vw;
  }
  
  .results-title {
    font-size: 22px;
    margin-bottom: 2.6vw;
  }
  
  .results-grid {
    gap: 40px;
  }
  .rewes-new .results-grid {
    gap: 40px;
    width: 100%;
    overflow: auto;
	flex-direction: row;
  }
  .results-section.rewes-new{
	  overflow: hidden;
  }
  .rewes-new  .results-card {
    width: 160px;
    min-width: 160px;
  }
  
  .results-card {
    gap: 0;
  }
  .card-category .card-textp{
	  font-size: 16px;
  }
  .card-category {
    font-size: 16px;
    min-height: 30px;
	padding: 20px;
  }
  
  .card-logo-wrapper {
    height: 200px;
  }
  
  .card-quote {
    font-size: 14px;
  }
  
  .faq-section {
    margin-top: 0;
	margin-bottom: 14vw;
  }
  
  .faq-title {
    font-size: 22px;
    margin-bottom: 40px;
  }
  
  .faq-list {
    gap: 12px;
    margin-bottom: 40px;
  }
  
  .faq-item {
    border-radius: 30px;
	width: 100%;
  }
  
  .faq-header {
    padding: 15px 25px;
    gap: 50px;
  }
  
  .faq-question {
    font-size: 16px;
  }
  
  .faq-body {
    padding: 0 25px 1.05vw 25px;
  }
  .contact-nis .contact-details > div {
  display: flex;
  flex-direction: column;
  gap: 2.3vw;
}
.contact-col.button-block button.callback-btn,
.contact-col.button-block button.btn-primary {
  max-width: 100%;
  }
  .contact-nis .contact-details > div > div {
display: flex;
    gap: 2vw;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: left;
}
  .faq-body p {
    font-size: 14px;
  }
  
  .faq-btn {
    border-radius: 30px;
    padding: 15px 40px;
    font-size: 16px;
	border-radius: 30px !important;
  }
  
  .contacts-section {
    margin-top: 0;
	margin-bottom: 14vw;
  }
  
  .contacts-container {
    gap: 2.6vw;
  }
  
  .form-box {
    padding: 40px;
    border-radius: 25px;
  }
  
  .form-title {
    font-size: 4.25vw;
    margin-bottom: 8px;
  }
  
  .form-subtitle {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .main-form {
    gap: 15px;
  }
  
  .form-group {
    gap: 8px;
  }
  
  .form-group label {
    font-size: 14px;
    margin-left: 8px;
  }
  
  .form-group input {
    padding: 15px 1.05vw;
    border-radius: 25px;
    font-size: 16px;
  }
  
  .form-submit-btn {
    margin-top: 15px;
    padding: 15px;
    border-radius: 25px;
    font-size: 16px;
  }
  
  .form-agreement {
    font-size: 12px;
    margin-top: 15px;
  }
  
  .dept-list {
    gap: 10px;
  }
  
  .dept-item {
    border-radius: 2vw;
  }
  
  .dept-header {
    padding: 15px 10px 15px 25px;
  }
  
  .dept-name {
    font-size: 16px;
  }
  
  .dept-arrow {
    width: 26px;
    height: 26px;
	min-width: 26px;
  }
  
  .dept-content {
    padding: 15px 25px 1.05vw 25px;
  }
  
  .dept-content p {
    font-size: 16px;
  }
  
  .contacts-link-btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 16px;
    margin-top: 15px;
  }
  
  .contacts-decor-img {
    bottom: -100px;
    right: 25px;
    width: 22.6vw;
  }
  
  .main-footer {
    margin-top: 60px;
  }
  
  .footer-decor-img {
    top: -11.05vw;
    width: 600px;
  }
  
  .footer-top {
    margin-bottom: 0;
  }
  
  .brand-col {
    gap: 15px;
	width:100%;
  }
  
  .footer-logo img {
    width: 300px;
	margin:0 auto;
  }
  
  .footer-desc {
    font-size: 16px;
    text-align: center;
  }
  
  .footer-copyright-text {
    font-size: 14px;
    margin-top: 40px;
  }
  
  .footer-heading {
    font-size: 20px;
    margin-bottom: 15px;
  }
  .footer-heading:after{
	background: url(../new_img/menu-down.png) no-repeat  100% 50%/ 24px;
	content:'';
	display:inline-block;
	width: 30px;
    height: 19px;
  }
  .footer-col.contact-col .footer-heading+div.footer-nav,
  .footer-col.links-col .footer-heading+ul.footer-nav{
	  display:none;
  }
  .footer-col.contact-col .footer-heading.activ+div.footer-nav,
  .footer-col.links-col .footer-heading.activ+ul.footer-nav{
	  display:flex;
  }
  .popup-close {
  font-size: 7.05vw;
  }
  
  .footer-nav {
    gap: 8px;
  }
  
  .footer-nav li a {
    font-size: 14px;
  }
  
  .contact-details {
    gap: 5px;
    margin-bottom: 50px;
  }
  
  .footer-phone,
  .footer-email {
    font-size: 16px;
  }
  
  .footer-rutube-big img {
    width: 28px;
    height: 28px;
  }
  
  .action-col {
    gap: 15px;
  }
  
  .footer-rutube-small {
    gap: 8px;
  }
  
  .footer-rutube-small span {
    font-size: 14px;
  }
  
  .footer-rutube-small img {
    width: 16px;
    height: 16px;
  }
  
  .footer-btn {
    padding: 8px 1.05vw;
    border-radius: 25px;
    font-size: 14px;
  }
  
  .footer-divider {
    margin-bottom: 50px;
  }
  
  .footer-bottom {
    font-size: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    position: relative;
  }
  
  .fb-left {
    order: 1;
    width: 100%;
  }
  
  .fb-left::before {
    content: "© 2025 ООО \"Medmap\"";
  }
  
  .fb-left {
    font-size: 0;
    line-height: 0;
  }
  
  .fb-left::before {
    font-size: 14px;
    line-height: 1.4;
    display: block;
  }
  
  .fb-center {
    order: 2;
    width: 100%;
    text-align: left;
  }
  
  .fb-right {
    order: 3;
    width: 100%;
    text-align: left;
    margin-top: -10px;
  }
  
  .fb-right a {
    display: block;
  }
  
  .fb-center a {
    display: block;
    margin-bottom: 5px;
  }
  
  .footer-bottom::after {
    content: "© Все права защищены";
    display: block;
    width: 100%;
    margin-top: 10px;
    order: 4;
  }
  
  .footer-divider {
    margin-bottom: 50px;
  }


  .serv-title-custom {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .serv-title-sub {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  .serv-desc-text {
    font-size: 16px !important;
    margin-bottom: 1.05vw !important;
  }

  .serv-buttons-row {
    flex-direction: column;
    align-items: stretch;
    width: fit-content;
    gap: 2.6vw;
  }

  .serv-btn-wrap {
    width: 100%;
  }

  .serv-btn-wrap .btn-secondary {
    width: 300px;
  }

  .serv-badge {
    top: -25px;
    right: -34px;
    transform: rotate(
13deg);
    width: auto;
    display: inline-block;
  }

  .serv-license-box {
    bottom: auto;
    right: auto;
    width: 100%;
    max-width: 100%;
    background: #3335;
    border-radius: 0 0 1.05vw 1.05vw;
    padding: 1.05vw;
    z-index: 2;
    bottom: 0;
  }

  .sl-block span {
    font-size: 12px;
  }

  .sl-block strong {
    font-size: 14px;
  }



  .device-features-section {
    padding: 6vw 4.5vw 3.5vw;
  }
  .device-features-title {
    font-size: 2.1vw;
    line-height: 1.3;
  }
  .device-features-desktop {
    flex-direction: column;
    gap: 2vw;
    align-items: stretch;
  }
  .device-features-left { order: 1; width: 100%; }
  .device-features-right { order: 2; width: 100%; }
  .device-main-wrap { order: 3; width: 100%; margin-top: 10px; }
  .device-features-col,
  .device-main-wrap {
    width: 100%;
    align-items: stretch;
    gap: 40px;
  }
  .device-features-section .feature-card {
    background: transparent;
    border: none;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    gap: 40px;
    flex-direction: row;
    align-items: center;
    position: relative;
    width: 100%;
    max-width: none;
  }
  .feature-card{
    position:relative;
    z-index:1;
  }
  .device-features-section .feature-icon {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
  }
  .device-features-section .feature-text h4 {
    font-size: 17px;
  }
  .device-features-section .feature-text p {
    font-size: 14px;
  }
  .device-main-image {
    border-radius: 14px;
  }
  .device-features-btn {
    font-size: 15px;
    padding: 13px 1.25vw;
    border-radius: 12px;
  }
  .device-features-section .feature-text {
    background: #ffffff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    padding: 16px 18px;
    box-shadow: 0 10px 1.05vw rgba(0, 0, 0, 0.08);
    width: 100%;
    flex: 1 1 0;
    min-width: 0;
  }
  .device-features-section .feature-card::after {
    display: block;
    width: 37px;
    height: 1.5px;
    background: #cfcfcf;
    position: absolute;
    left: 100px;
    top: 50%;
    transform: translateY(-50%);
  }

  .device-features-note p {
    font-size: 14px;
  }

    .quiz-section {
      padding: 30px 1.05vw;
    }
  
    .quiz-content-wrapper {
      border-radius: 15px;
      /* padding: 1.05vw; */
    }
  
    .quiz-header {
      margin-bottom: 25px;
    }
  
    .quiz-main-title {
      font-size: 22px;
      margin-bottom: 12px;
    }
  
    .quiz-subtitle {
      font-size: 15px;
    }
  
    .quiz-progress-bar {
      padding: 15px 1.05vw;
      border-radius: 10px;
      margin-bottom: 30px;
      gap: 15px;
    }
  
    .progress-icon {
      width: 1.25vw;
      height: 1.25vw;
    }
  
    .progress-text {
      font-size: 14px;
    }
  
    .progress-counter {
      font-size: 16px;
      flex-shrink: 0;
    }
  
    .quiz-content {
      flex-direction: column;
      gap: 30px;
      margin-bottom: 25px;
    }
  
    .quiz-right {
      width: 100%;
      max-width: 500px;
      margin: 0 auto;
    }
  .quiz-left {
    flex: 1;
    min-width: 100%;
}
    .quiz-question {
      font-size: 16px;
      margin-bottom: 50px;
    }
  
    .quiz-options {
      gap: 10px;
    flex-wrap: wrap;
    }
  .quiz-options-st {
  gap: 10px;
}
    .quiz-option {
      gap: 12px;
    }
  
    .option-radio,
    .option-checkbox {
      width: 20px;
      height: 20px;
      border-width: 2px;
    }
  
    .quiz-option input[type="radio"]:checked ~ .option-radio {
      border-width: 4px;
    }
  
    .option-checkbox::after {
      width: 5px;
      height: 10px;
      border-width: 0 2px 2px 0;
      top: 2px;
    }
  
    .option-text {
      font-size: 16px;
    }
  
    .quiz-form {
      gap: 18px;
    }
  
    .quiz-form-group {
      gap: 8px;
    }
  
    .quiz-form-group label {
      font-size: 14px;
    }
  
    .quiz-form-group input {
      font-size: 15px;
      padding: 12px 15px;
      border-width: 1.5px;
      border-radius: 6px;
    }
  
    .quiz-image-wrapper {
      border-radius: 12px;
      display: none;
    }
  
    .quiz-navigation {
      gap: 15px;
    }
  
    .quiz-btn {
      font-size: 16px;
      padding: 12px 1.25vw;
      border-radius: 8px;
      gap: 8px;
      border-width: 1.5px;
    }
  
    .quiz-btn svg {
      width: 18px;
      height: 18px;
    }
 
  .agreement-section {
    padding: 32px 1.05vw;
  }
  .agreement-container {
    /* flex-direction: column; */
    align-items: center;
    gap: 22px;
  }
  .agreement-image,
  .agreement-content {
    width: 100%;
  }
  .agreement-title {
    font-size: 22px;
  }
  .agreement-text {
    font-size: 14px;
  }
  .agreement-photo {
    border-radius: 18px;
  }
  .agreement-decor {
    left: 43%;
    right: auto;
    top: -20%;
    width: 60%;
    max-width: 380px;
  }

  .remote-check-section {
    padding: 32px 18px 0;
  }
  .remote-check-container {
    gap: 22px;
  }
  .remote-check-title {
    font-size: 22px;
    line-height: 1.3;
  }
  .remote-check-subtitle {
    font-size: 14px;
  }
  .remote-check-grid {
    gap: 16px;
  }
  .remote-card {
    border-radius: 16px;
    width: 100%;
  }
  .remote-card-image {
    height: 21.05vw;
  }
  .remote-card-body {
    padding: 14px 14px 16px 14px;
    gap: 10px;
  }
  .remote-card-title {
    font-size: 15px;
  }
  .remote-card-text,
  .remote-card-list li {
    font-size: 13px;
  }

  .rental-benefits-section {
    padding: 32px 18px 0;
  }
  .rental-benefits-container {
    gap: 1.25vw;
  }
  .rental-benefits-title {
    font-size: 1.25vw;
  }
  .rental-benefits-subtitle,
  .rental-benefits-tagline {
    font-size: 14px;
  }
  .rental-benefits-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .rental-card {
    border-radius: 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.07);
  }
  .rental-card-image {
    height: 21.05vw;
  }
  .rental-card-text {
    font-size: 14px;
    padding: 14px 16px 16px 16px;
  }
  .rental-benefits-btn {
    font-size: 14px;
    padding: 13px 1.05vw;
    border-radius: 22px;
  }
  .rental-benefits-note {
    font-size: 13px;
  }

  .fraud-protection-section {
    padding: 32px 18px;
  }
  .fraud-protection-container {
    gap: 22px;
  }
  .fraud-protection-title {
    font-size: 22px;
  }
  .fraud-title-break {
    display: none;
  }
  .fraud-protection-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fraud-card {
    border-radius: 16px;
  }
  .fraud-card-image {
    height: 21.05vw;
  }
  .fraud-card-content {
    padding: 14px 16px 16px 16px;
    gap: 10px;
  }
  .fraud-card-heading {
    font-size: 16px;
  }
  .fraud-card-text,
  .fraud-card-subtitle,
  .fraud-card-list li {
    font-size: 14px;
  }
  .fraud-decor {
    width: 29vw;
    left: 45%;
    bottom: -4%;
  }

  .order-section {
    padding: 2.6vw 1.05vw;
  }

  .order-waybill .order-decor {
    left: 5%;
    top: 12%;
    width: 46vw;
  }

  .order-content {
    flex-direction: column;
    gap: 40px;
  }

  .order-left {
    gap: 25px;
  }

  .order-right {
    width: 100%;
    /* max-width: 500px; */
    margin: 0 auto;
  }

  .order-title {
    font-size: 26px;
  }

  .order-list {
    gap: 18px;
  }

  .order-item {
    gap: 15px;
  }

  .order-number {
    width: 28px;
    height: 28px;
    min-width: 28px;
    font-size: 14px;
  }

  .order-text {
    font-size: 15px;
    padding-top: 3px;
  }

  .order-image-wrapper {
    border-radius: 15px;
  }

    .comparison-section {
      padding: 2.6vw 1.05vw;
    }
  
    .comparison-header {
      margin-bottom: 35px;
    }
  
    .comparison-title {
      font-size: 22px;
    line-height: 100%;
      margin-bottom: 10px;
    }
  
    .comparison-subtitle {
      font-size: 16px;
    line-height: 100%;
    }
  
    .comparison-table-wrapper {
      margin-bottom: 35px;
    }
  
    /* TABLE SABİT KALIR - SCROLL */
    .comparison-table {
      min-width: 700px;
      border-radius: 12px;
    }
  
    .comparison-table thead th {
      font-size: 13px;
      padding: 12px 18px;
	  line-height: 1;
    }
  
    .td-content {
      gap: 10px;
      padding: 15px 18px;
    }
  
    .comp-item {
      gap: 8px;
    }
  
    .comparison-table p {
      font-size: 12px;
    }
  
    .comp-col-label p {
      font-size: 13px;
    }
  
    .comp-check,
    .comp-cross {
      font-size: 16px;
    }
  
    .comparison-features {
      grid-template-columns: repeat(2, 1fr);
      gap: 50px;
    }
  
    .comp-feature {
      gap: 12px;
    }
  
    .comp-feature-icon {
      width: 30px;
      height: 30px;
      min-width: 30px;
    }
  
    .comp-feature-text {
      font-size: 13px;
      padding-top: 2px;
    }
 
  .rent-section {
    padding: 2.6vw 1.05vw;
  }

  .rent-header {
    margin-bottom: 35px;
  }

  .rent-title {
    font-size: 26px;
    margin-bottom: 10px;
  }

  .rent-subtitle {
    font-size: 15px;
  }

  .rent-cards {
    gap: 50px;
    margin-bottom: 35px;
  }

  .rent-row {
    gap: 50px;
  }

  .rent-row-3,
  .rent-row-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .rent-card {
    border-radius: 15px;
  }

  .rent-card::before {
    border-radius: 15px;
  }

  .rent-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }

  .rent-card-image {
    height: 12.6vw;
    border-radius: 15px 15px 0 0;
  }

  .rent-card-title {
    font-size: 14px;
    padding: 14px 16px 16px 16px;
  }

  .rent-footer {
    gap: 15px;
  }

  .rent-btn {
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(254, 29, 37, 0.25);
  }

  .rent-btn:hover {
    box-shadow: 0 6px 18px rgba(254, 29, 37, 0.35);
    transform: translateY(-2px);
  }

  .rent-note {
    font-size: 13px;
  }

  .remote-check-section {
    padding: 2.6vw 3vw;
  }
  .remote-check-container {
    gap: 22px;
  }
  .remote-check-title {
    font-size: 22px;
    line-height: 1.3;
  }
  .remote-check-subtitle {
    font-size: 14px;
  }
  .remote-check-grid {
    gap: 16px;
  }
  .remote-card {
    border-radius: 16px;
    flex: 1 1 100%;
    max-width: 100%;
    align-self: stretch;
  }
  .remote-card-image {
    height: 21.05vw;
  }
  .remote-card-body {
    padding: 14px 14px 16px 14px;
    gap: 10px;
  }
  .remote-card-title {
    font-size: 16px;
  }
  .remote-card-text,
  .remote-card-list li {
    font-size: 14px;
  }
  .remote-card {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .equipment-proof-section {
    padding: 70px 3vw;
  }
  .equipment-proof-title {
    font-size: 22px;
    line-height: 1.3;
  }
  .equipment-proof-rows {
    gap: 16px;
  }
 .row-top .equip-card,
  .row-bottom .equip-card {
    width: 100%;
    max-width: 100%;
    flex: 100%;
}
  .equipment-proof-row {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .equip-card {
    flex: 0 0 100%;
    max-width: 100%;
    border-radius: 16px;
  }
  .equip-card-image {
    height: 21.05vw;
  }
  .equip-card-body {
    gap: 10px;
    padding: 14px 14px 16px 14px;
  }
  .equip-card-title {
    font-size: 15px;
  }
  .equip-card-text {
    font-size: 13px;
  }
  .equip-btn {
    padding: 13px 1.05vw;
    font-size: 14px;
  }
  .authenticity-section {
    padding: 70px 3vw;
  }
  .authenticity-title {
    font-size: 22px;
    line-height: 1.3;
  }
  .authenticity-grid {
    gap: 16px;
  }
  .auth-card {
    width: 100%;
    max-width: 100%;
  }
  .auth-card-image {
    height: 21.05vw;
  }
  .auth-card-body {
    gap: 10px;
    padding: 14px 14px 16px 14px;
  }
  .auth-card-title {
    font-size: 15px;
  }
  .auth-card-text {
    font-size: 13px;
  }

  .remote-check-grid {
    gap: 16px;
  }
  .remote-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .contact-hero-section {
    padding: 100px 3vw 0;
  }
  .contact-hero-card {
    gap: 18px;
  }
  .contact-hero-info {
    padding: 1.05vw;
  }
  .contact-hero-text {
    gap: 12px;
  }
  .contact-hero-title {
    font-size: 22px;
  }
  .contact-hero-desc {
    font-size: 14px;
  }
  .contact-hero-phone {
    font-size: 22px;
  }
  .contact-hero-mail {
    font-size: 15px;
  }
  .contact-hero-btn {
    font-size: 13px;
    padding: 12px 16px;
  }
  .contact-decor-img {
    width: 200px;
  }

  .blog-section {
    padding: 2.6vw 14px 60px;
  }
  .blog-title {
    font-size: 1.25vw;
  }
  .blog-tabs-scroll {
    gap: 10px;
  }
   .blog-header {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
  .blog-tab {
    font-size: 13px;
    padding: 10px 14px;
  }
  .blog-grid {
    gap: 16px;
  }
  .blog-card {
    width: 48%;
    max-width: 48%;
  }
  .blog-card-image {
    height: 200px;
  }
  .blog-card-body {
    gap: 10px;
  }
  .blog-card-link {
    font-size: 13px;
    padding: 9px 14px;
  }
  .blog-more-btn {
    width: 100%;
    justify-content: center;
  }

  .blog-detail-section {
    padding: 40px 14px 2.6vw;
  }
  .blog-detail-title {
    font-size: 22px;
  }
  .blog-detail-body h3 {
    font-size: 17px;
  }
  .blog-detail-meta {
    font-size: 13px;
  }
  .blog-detail-body {
    font-size: 14px;
    gap: 12px;
  }
  .blog-detail-body ul,
  .blog-detail-body ol {
    padding-left: 18px;
  }
  .blog-detail-image,
  .blog-detail-image img {
    border-radius: 16px;
    width: 100%;
  }
  .related-articles-section {
    padding: 40px 14px 2.6vw;
  }
  .related-articles-container {
    gap: 1.25vw;
  }
  .related-title {
    font-size: 22px;
  }
  .related-grid {
    gap: 16px;
  }
  .related-card {
    width: 100%;
    max-width: 100%;
  }
  .related-card-image {
    height: 200px;
  }
  .related-card-body {
    gap: 10px;
  }
  .related-card-btn {
    font-size: 13px;
    padding: 10px 21px;
  }
  .related-more-btn {
    width: 100%;
    justify-content: center;
  }

  .popup-card {
    width: 100%;
    padding: 26px 22px;
    border-radius: 16px;
  }
  .popup-title {
    font-size: 1.05vw;
  }
  .popup-subtitle {
    font-size: 14px;
  }
  .popup-field input {
    font-size: 14px;
  }
  .popup-submit {
    width: 100%;
  }
  body > div,
  body > section{
	width: 100%;  
	max-width: 100%;
	overflow-y:hidden;
  }
  .new-banner .banner-inner {
	  max-height: none;
	}
	.new-banner {
  border-radius: 0;
}
.new-banner .banner-image {
  width: 100%;
}
.image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5vw;
}
.block-arenda-medmap .frame-6,
.block-arenda-medmap .frame-4 {
  flex-direction: column;
}
.block-arenda-medmap .frame-7,
.block-arenda-medmap .frame-6,
.block-arenda-medmap .frame-5 {
  width: 100%;
  height: auto;
}
.block-arenda-medmap .frame-8 {
  width: 100%;
  padding-bottom: 30px;
}
.block-chto-vhodin ul.block-new-ul li {
  font-size: 4.05vw;
}
.block-arenda-medmap .no-capital-investment {
  font-size: 5.25vw;
}
.block-arenda-medmap ul.block-new-ul li {
  font-size: 16px;
  line-height: 1.1;
}
.main-container {
  width: 100%;
  padding: 0 1vw;
  margin-bottom: 6vw;
}
.new-h-block {
  width: 95%;
  margin: 0 auto 30px;
}
.bolock-format-bisnes .equipment-price,
.medmap-doctors-working {
  font-size: 16px;
  line-height: 1.1;
}
.block-format-oborudi .frame-2,
.block-zakon-protect .frame-2,
.block-type-list .frame-2,
.block-sostav-nast-termenal .frame-f,
.new-banner-block .frame-7,
.new-banner-block .frame-links,
.bolock-format-bisnes .frame-5,
.block-dokumenti-zashita .frame-2,
.block-chto-vhodin .frame-2 {
  flex-direction: column;
}
.block-sostav-nast-termenal .frame-4,
.block-dokumenti-zashita .frame-2{
	flex-direction: column-reverse;
}
.block-sostav-nast-termenal .frame-5,
.new-banner-block .preim-block-text,
.bolock-format-bisnes .frame-6,
.block-dokumenti-zashita .frame-5,
.block-dokumenti-zashita .frame-3,
.block-chto-vhodin .frame-3 {
  width: 100%;
  height: auto;
}
.comparison-section {
  margin-bottom: 30px;
}
.block-dokumenti-zashita .photo,
.block-dokumenti-zashita .frame-3,
.bolock-format-bisnes .frame-6{
	border-radius: 1.05vw;
}
.bolock-format-bisnes .frame-6{
	padding: 0;
	background:transparent;
}
.new-banner-block .frame-links{
	gap:1.05vw;
}
.new-banner-block .frame-5 p {
width: 95%;
    max-width: 570px;
    height: auto;
    margin: 0 auto;
    text-align: left;
    font-size: 16px;
    line-height: 1.1;
}
.new-banner-block .frame-5{
	gap:12px;
}
.new-banner-block .frame-4 {
  flex-direction: column;
}
.new-banner-block .img {
    width: 100%;
	border-radius: 30px;
	min-height: 217px;
  }
.new-banner-block .preim-block-all{
	width: 100%;
	border-radius: 30px;
	min-height: 200px;
	max-width: 100%;
}
h2 br{
	display:none;
}
.new-banner-block .preim-block-all ul, ul.block-new-ul {
  padding: 0 1.4vw;
  gap: 0.45vw;
}
  .new-banner-block .preim-block {
    gap: 10px;
  }
.new-banner-block .chevron-down {
  flex-shrink: 0;
  position: relative;
  width: 50px;
  height: 50px;
}
.medmap-doctors-working .comma {
  font-size: 5.1vw;
}
.new-banner-block .preim-block-all,
.new-banner-block .frame-7,
.new-banner-block .frame-5 {
  height: auto;
  margin-bottom: 20px;
}
.block-sostav-nast-termenal .included,
.new-banner-block .heading {
font-size: 22px;
line-height:120%;
}
.new-banner-block .preim-block-all li,
ul.block-new-ul li {
  font-size: 16px;
line-height:120%;
}
.o-kompanii {
  margin-bottom: 30px;
}
.block-sostav-nast-termenal .frame-7 {
  width: 87%;
  margin: 0 auto;
}
.block-sostav-nast-termenal .frame-6 {
  height: auto;
  border-radius: 5.05vw;
padding: 40px 0;
}
.block-sostav-nast-termenal .photo,
.block-sostav-nast-termenal .frame-9,
.block-sostav-nast-termenal .button {
  width: 100%;
}
.block-sostav-nast-termenal .frame-11,
.block-sostav-nast-termenal .frame-a{
	width: 100%;
  border-radius: 5.05vw;
  height:auto;
}
.block-sostav-nast-termenal .frame-e,
.block-sostav-nast-termenal .frame-d,
.block-sostav-nast-termenal .frame-c,
.block-sostav-nast-termenal .frame-b{
	display:none;
}
.block-sostav-nast-termenal .frame-10 {
width: 100%;
    height: 240px;
    border-radius: 5.05vw;
}
.block-sostav-nast-termenal .throughput-capacity {
  font-size: 13px;
}
.block-sostav-nast-termenal .frame-13,
.block-sostav-nast-termenal .license {
width: 96%;
    height: auto;
    margin-top: 185px;
}
 .block-sostav-nast-termenal .frame-13{
	 margin-top: 20px;
	 gap: 10px;
 }
.reputation-section.o-kompanii .o-kompanii{
	padding-top:0;
}
.o-kompanii-sotr, .o-kompanii-ruk {
  width: 100%;
  position: relative;
  border-radius: 30px;
  overflow: hidden;
}
.new-h-block-sotr {
  gap: 2vw;
  align-items: center;
  justify-content: center;
}
.o-kompanii-sotr-info{
	padding:30px;
	border-radius: 30px;
	margin-bottom: 2vw;
	min-height: auto;
}
.new-h-block-sotr img {
  border-radius: 10px;
}
.o-kompanii-sotr-name {
color: #000000;
    font-family: Manrope,var(--default-font-family);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
    text-align: left;
    white-space: normal;
    margin-bottom: 15px;
    min-height: auto;
}
.texttop, .banner-content-inner > p.texttop {
  font-size: 4.25vw;
  display:none;
}
 .quiz-form-wrapper {
    padding: 3.44vw 3.44vw;
  }
.o-kompanii-sotr-text, .o-kompanii-sotr-graf, .o-kompanii-sotr-staj, .o-kompanii-sotr-dolg {
  color: #000000;
  font-family: Manrope,var(--default-font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.1;
  text-align: left;
  white-space: normal;
}
.bolock-vipusk-reis .span-pass-number,
.bolock-vipusk-reis .span-personality{
	white-space: normal;
}
.block-zakon-protect .frame-4 .btn-primary{
    width: 77%;
    margin: 0 auto;
  }
  .block-format-oborudi .wrapper-4,
.block-format-oborudi .group-8,
.block-format-oborudi .frame-7,
.block-format-oborudi .frame-3,
.block-zakon-protect .frame-5,
.block-zakon-protect .frame-3 {
  border-radius: 5.05vw;
  width: 100%;
	height: auto;
}
.block-format-oborudi .frame-4,
.block-zakon-protect .built-in-camera{
	height:auto;
}
.block-format-oborudi .frame-d,
.block-format-oborudi .frame-b,
.block-format-oborudi .frame-6{
	padding:10px;
}
.block-arenda-medmap .frame-5{
	padding:20px;
}
.block-zakon-protect .photo {
  position: absolute;
  width: 100%;
  height: 452px;
  top: 0;
  left: 0;
  background: url(../new_img/h2gycTVhE9.jpg) no-repeat center;
    background-size: auto;
  background-size: auto;
  background-size: cover;
  z-index: 16;
  border-radius: 5.05vw;
}
  ul.block-new-ul {
    max-width: 95%;
    border-radius: 30px;
    padding: 0 32px 32px;
    width: 100%;
    margin: 0 auto;
  }
.block-zakon-protect .frame-2{
	overflow: hidden;
	flex-direction: column-reverse;
}
.block-zakon-protect .frame-6 {
  display: none;
}
.block-zakon-protect .frame-8{
	border-radius: 5.05vw;
}
.bolock-vipusk-reis .frame-5 {
    max-width: 100%;
  }
.bolock-vipusk-reis .frame-4 {
  flex-direction: column;
}
.bolock-vipusk-reis .rectangle {
  height: 300px;
}
.bolock-format-bisnes .equipment-price,
.block-terms-guarantees .text-4,
.block-terms-guarantees .contract-docs,
.block-format-oborudi .high-throughput-enterprises,
.block-format-oborudi .industrial-complex,
.block-format-oborudi .text-7,
.block-format-oborudi .desktop-complex,
.block-format-oborudi .mobile-complex,
.block-format-oborudi .small-companies{
	white-space: normal;
	width: 100%;
	height: auto;
}
.block-format-oborudi .frame-9{
	width: 100%;
}
  .bolock-format-bisnes .frame-6, .block-terms-guarantees .frame-3 {
    width: 100%;
	min-height: 200px;
  }
  .block-terms-guarantees .pic1, .block-terms-guarantees .pic2, .block-terms-guarantees .pic3 {
    width: 90px;
    height: 90px;
    border-radius: 16px;
  }
.block-terms-guarantees .frame-4 {
width: calc(100% - 100px);
  
}
.feature-item span {
  font-size: 4.05vw;
  line-height: 3.25vw;
  min-width: 190px;
}
.block2 .drivers-daily {
  height: auto;
  font-size: 4.25vw;
}
.complex-image {
  margin-left: -49%;
  width: auto;
  height: 310px;
  display: block;
  object-fit: cover;
  border-radius: 30px;
}
.complex-image-wrapper{
	border-radius: 30px;
	overflow:hidden;
}
  .new-banner .banner-content {
    max-width: 100%;
  }
.quiz-progress-bar .frame-4 {
  gap: 10px;
}
.banner-text li {
  font-size: 4.05vw;
  line-height: 5.25vw;
}
.feature-item span.feature-item-name,	
.feature-item span.feature-item-desc{
	font-size: 5.1vw;
  line-height: 5.1vw;
}
.main-photo {
  width: 100%;
  height: auto;
}
  .bolock-vipusk-reis .span {
    line-height: 150%;
    font-size: 4.25vw;
  }
.bolock-vipusk-reis .span-personality {
  font-size: 5.1vw;
}
.bolock-vipusk-reis .span-pass-number {
  font-size: 4.25vw;
}
.bolock-vipusk-reis .div {
  padding: 33px 3.05vw;
}
  .block-type-list .empty {
    width: 100%;
	max-width: 100%;
  padding: 33px 3.05vw;
  height: auto;
  }
.block-type-list .for-passenger-cars {
  font-size: 4.25vw;
}
.block-format-oborudi .small-companies,
.block-format-oborudi .text-7,
.block-format-oborudi .high-throughput-enterprises{
	font-size: 3.25vw;
}
.block-terms-guarantees .text-4{
	font-size: 4.25vw;
	line-height: 4.25vw;
}
.bolock-format-bisnes .purchase-equipment-b,
.bolock-format-bisnes .purchase-equipment-c{
	font-size: 6.1vw;
	line-height: 1.1;
}
.bolock-format-bisnes .equipment-price-10{
	font-size: 4.25vw;
}
.footer-contacts .telegram-logo-block,
.footer-contacts .telegram-logo-block-9 {
  width: 40px;
  height: 40px;
}
.footer-contacts .frame-1{
	height: auto;
	gap: 10px;
}
.footer-contacts .contact-info{
	font-size: 4.25vw;
}
.tr-block .tr-text {
  font-size: 2.83vw;
}
.tr-block.vd-tr1 .tr-text,
.tr-block.vd-tr2 .tr-text,
.tr-block.vd-tr3 .tr-text,
.tr-block.vd-tr4 .tr-text,
.tr-block.vd-tr5 .tr-text,
.tr-block.vd-tr6 .tr-text {
right: auto;
left: auto;
top: 24px;
background: #fff;
}
.block-zakon-protect .frame-3{
	background: transparent;
}
.block-zakon-protect .frame-4 {
  margin: 0;
}
.bolock-format-bisnes .frame-8{
	padding:30px;
	border-radius:30px;
	background:#fff;
	width: 90%;
	margin:0 auto;
}
.bolock-format-bisnes .button{
	margin:0 auto;
	width: 90%;
}
.bolock-format-bisnes .frame-7 {
  gap: 10px;
}
.banner-title {
  /* padding-bottom: 60px; */
}
.banner-title .rf {
  position: relative;
    bottom: 0;
    left: 0;
}
.banner-text p {
  margin-bottom: 10px;
}
.block8 .play, .block2 .play {
  width: 90px;
  height: 90px;
}
  .block2 .main-container {
    flex-wrap: nowrap;
    max-width: 99%;
    overflow-y: auto;
  }
.complex-list-two-row .owl-item div{
border-radius: 30px;
padding: 20px;
  font-family: Manrope,var(--default-font-family) ;
font-weight: 400;
font-style: Regular;
font-size: 16px;
line-height: 130%;
letter-spacing: 0%;
background:#fff;
display:flex;
gap:12px;
flex-wrap: wrap;
min-height: 210px;
}
.complex-list-two-row .owl-item div strong,
.complex-list-two-row .owl-item div b{
  font-family: Manrope,var(--default-font-family) ;
font-weight: 500;
font-style: Medium;
font-size: 20px;
line-height: 105%;
letter-spacing: 0%;

}
  .related-grid .owl-nav, .leaders-slider .owl-nav {
    position: relative;
    width: 130px;
    padding-top: 10px;
  }
.o-kompanii-sotr-info2{
	width:100%;
}
.bolock-format-bisnes.bolock-nadegnosti .frame-5{
	display:flex;
}
.bolock-format-bisnes.bolock-nadegnosti .frame-6 {
  height: auto;
  padding: 30px;
  border-radius: 30px;
  background:#fff;
}
.block-chto-vhodin .button{
	width:100%;
}



}




@media (max-width: 480px) {




  /* Topbar'daki callback butonu gizle */
  .header-topmenu .btn-primary,
  .topbar .callback-btn {
    display: none !important;
  }
  
  .btn-details, .btn-price {
    font-size: 14px;
    padding: 10px 15px;
    border-radius: 30px;
  }

  /* WAYBILL VEHICLES SECTION - Mobile */
  .waybill-vehicles-section {
    padding: 40px 3vw;
  }
  
  .waybill-vehicles-container {
    gap: 25px;
  }
  
  .waybill-vehicles-header {
    max-width: 100%;
  }
  
  .waybill-vehicles-title {
    font-size: 1.05vw;
  }
  
  .waybill-vehicles-title-br {
    display: none;
  }
  
  .waybill-vehicles-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .waybill-vehicle-image {
    padding: 12px;
    min-height: 11.05vw;
  }
  
  .waybill-vehicle-content {
    padding: 15px;
    gap: 10px;
  }
  
  .waybill-vehicle-title {
    font-size: 16px;
  }
  
  .waybill-vehicle-form {
    font-size: 13px;
  }

  .waybill-process-section {
    padding: 40px 15px 0 15px;
  }
  
  .waybill-process-container {
    gap: 50px;
  }
  
  .waybill-process-header {
    margin-bottom: 50px;
  }
  
  .waybill-process-title {
    font-size: 1.25vw;
    margin: 0 0 10px 0;
  }
  
  .waybill-process-subtitle {
    font-size: 14px;
  }
  
  .waybill-process-steps {
    flex-direction: column;
    gap: 15px;
  }
  
  .waybill-process-step {
    flex: 1 1 100%;
    max-width: 100%;
    width: 100%;
  }
  
  .waybill-step-content {
    gap: 12px;
    padding: 15px;
  }
  
  .waybill-step-title {
    font-size: 16px;
  }
  
  .waybill-step-description {
    font-size: 13px;
  }

.footer-top {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
}

.footer-heading {
  font-size: 20px;
  margin-bottom: 15px;
}


.footer-btn {
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 14px;
}

.footer-bottom {
  font-size: 14px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: relative;
  justify-content: center;
}

.fb-left::before {
  font-size: 14px;
  line-height: 1.4;
  display: block;
  text-align: center;
}



.fb-center a {
  display: block;
  margin-bottom: 5px;
  text-align: center;
}


.fb-right {
  order: 3;
  width: 100%;
  text-align: center;
  margin-top: -10px;
}

.footer-bottom::after {
  content: "© Все права защищены";
  display: block;
  width: 100%;
  margin-top: 10px;
  order: 4;
  text-align: center;
}


.form-box {
  padding: 10px;
  border-radius: 25px;
}

.form-group input {
  padding: 12px 1.05vw;
  border-radius: 25px;
  font-size: 15px;
}


.faq-header {
  padding: 15px 20px;
  gap: 50px;
}

.decor-line {
  width: 30px;
  height: 100%;
  display: block;
  
  object-fit:cover;
}


.rep-right {
  border-radius: 25px;
  padding: 30px 15px;
  gap: 30px;
}




.footer-decor-img {
  top: auto;
  width: 387px;
  right: -100px;
  bottom: 0;
  left: auto;
}


.badge-right {
  bottom: 10px;
  right: 10px;
  padding: 5px 10px;
}

.license-text {
  font-size: 10px;
}



.badge-logo {
  width: 100px;
}

.banner-content-inner {
  gap: 20px;
  border-radius: 1.05vw;
  padding: 15px;
}

.complex-content-inner {
  gap: 20px;
  padding: 1.05vw 15px;
}

.complex-subtitle {
  font-size: 14px;
}


.feature-text {
  font-size: 14px;
}


.bf-card {
  border-radius: 1.05vw;
  padding: 15px;
  border: 2px solid transparent;
  gap: 15px;
  min-height: auto;
}


.bf-list li span {
  font-size: 14px;
}

.rel-text {
  font-size: 16px;
  line-height: 1.1;
  
}


.rep-text-box {
  padding: 0;
  gap: 20px;
}

.main-nav .nav-container {
  position: relative;
}

.main-nav .mobile-menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: #7C2E31;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0;
  transition: all 0.3s ease;
  margin: 1.05vw auto 0;
  flex-shrink: 0;
}

.main-nav .mobile-menu-toggle:hover {
  background: linear-gradient(180deg, #FF7479 2.01%, #FE1D25 64.9%);
}

.main-nav .mobile-menu-toggle .menu-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 18px;
  height: 14px;
  position: relative;
  transition: all 0.3s ease;
  justify-content: center;
  align-items: center;
}

.main-nav .mobile-menu-toggle .menu-line {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

.main-nav .mobile-menu-toggle.active .menu-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.main-nav .mobile-menu-toggle.active .menu-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.main-nav .mobile-menu-toggle.active .menu-line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

body.menu-open {
  overflow: hidden;
}


.flag-text {
  white-space: wrap;
}


.logo-img {
  width: 125px;
}
.topbar-flag-block {
  font-size: 10px;
  gap: 5px;
}

.info-mail {
  display: none;
}


.serv-btn-wrap .btn-secondary {
  width: 200px;
}

.serv-badge {
  font-size: 8px;
  padding: 8px 15px;
  top: -25px;
  right: -15px;
  border-radius: 10px;
}


.vehicle-img {
  width: 100%;
}




 
    .quiz-section {
      padding: 2.6vw 3vw;
    }
  
    .quiz-content-wrapper {
      border-radius: 15px;
      /* padding: 15px; */
	  background: #fafbff;
    }
  
    .quiz-header {
      margin-bottom: 20px;
    }
  
    .quiz-main-title {
      font-size: 22px;
      margin-bottom: 10px;
      line-height: 1.25;
    }
  
    .quiz-subtitle {
      font-size: 13px;
      line-height: 1.4;
    }
  
    .quiz-progress-bar {
      padding: 12px 15px;
      border-radius: 30px;
      margin-bottom: 0;
      gap: 10px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
    }
  a.process-step {
  border-radius: 8.6vw !important;
}
    .progress-icon {
		width: 5.05vw;
		height: 5.05vw;
		flex-shrink: 0;
    }
  .banner-content-inner .banner-image{
	  margin-bottom:0;
  }
    .progress-text {
      font-size: 16px;
      flex: 1;
      line-height: 1.3;
      /* white-space: normal; */
    }
  .main-container.block-arenda-medmap ul.block-new-ul{
	  padding: 0 32px;
  }
   .bolock-format-bisnes .frame-5{
	   display:flex;
   }
    .progress-counter {
      font-size: 16px;
      flex-shrink: 0;
      margin:0 auto;
    }
  
    .quiz-content {
      gap: 0;
      margin-bottom: 50px;
    }
  
    .quiz-right {
      display: none;
    }
  
    .quiz-question {
      font-size: 16px;
      margin-bottom: 15px;
    }
  
    .quiz-options {
      gap: 10px;
    }
  
    .quiz-option {
      gap: 10px;
    }
  
    .option-radio,
    .option-checkbox {
      width: 18px;
      height: 18px;
      border-width: 1.5px;
    }
  
    .quiz-option input[type="radio"]:checked ~ .option-radio {
      border-width: 3px;
    }
  
    .option-checkbox::after {
      width: 4px;
      height: 8px;
      border-width: 0 1.5px 1.5px 0;
      top: 1.5px;
    }
  
    .option-text {
      font-size: 14px;
      line-height: 1.3;
    }
  
    .quiz-form {
      gap: 15px;
    }
  
    .quiz-form-group {
      gap: 6px;
    }
  
    .quiz-form-group label {
      font-size: 13px;
    }
  
    .quiz-form-group input {
      font-size: 14px;
      padding: 11px 13px;
      border-width: 1.5px;
      border-radius: 6px;
      width: 100%;
    }
  
    .quiz-image-wrapper {
      border-radius: 10px;
    }
  
    .quiz-navigation {
      flex-direction: row;
      gap: 10px;
    }
  
    .quiz-btn {
      font-size: 14px;
      padding: 10px 1.05vw;
      border-radius: 25px;
      gap: 6px;
      border-width: 1.5px;
      flex: 1;
      justify-content: center;
    }
  
    .quiz-btn svg {
      width: 16px;
      height: 16px;
    }
  
    .quiz-btn-back {
      order: 1;
    }
  
    .quiz-btn-next {
      order: 2;
    }

  .agreement-section {
    padding: 2.6vw 3vw;
  }
  .agreement-container {
    /* flex-direction: column; */
    align-items: center;
    gap: 18px;
  }
  .agreement-title {
    font-size: 1.05vw;
    line-height: 1.25;
  }
  .agreement-text {
    font-size: 13px;
  }
  .agreement-photo {
    border-radius: 16px;
  }
  .agreement-decor {
    left: 49%;
    right: auto;
    top: -10%;
    width: 52%;
    max-width: 41.05vw;
  }

  .remote-check-section {
    padding: 28px 14px 0;
  }
  .remote-check-title {
    font-size: 1.05vw;
  }
  .remote-check-subtitle {
    font-size: 13px;
  }
  .remote-card-image {
    height: 200px;
  }
  .remote-card-body {
    gap: 10px;
    padding: 13px 13px 15px 13px;
  }
  .remote-card-title {
    font-size: 14px;
    gap: 6px;
  }
  .remote-card-text,
  .remote-card-list li {
    font-size: 12.5px;
  }

  .rental-benefits-section {
    padding: 28px 14px 0;
  }
  .rental-benefits-title {
    font-size: 1.05vw;
  }
  .rental-benefits-subtitle,
  .rental-benefits-tagline {
    font-size: 13px;
  }
  .rental-card-image {
    height: 200px;
  }
  .rental-card-text {
    font-size: 13px;
    padding: 12px 14px 14px 14px;
  }
  .rental-benefits-btn {
    font-size: 13px;
    padding: 12px 18px;
    border-radius: 1.05vw;
  }
  .rental-benefits-note {
    font-size: 12px;
  }

  .order-section {
    padding: 40px 15px;
  }

  .order-waybill .order-decor {
    left: 8%;
    top: 14%;
    width: 55vw;
  }

  .order-content {
    gap: 30px;
  }

  .order-left {
    gap: 50px;
  }

  .order-right {
    max-width: 100%;
  }

  .order-title {
    font-size: 1.05vw;
    line-height: 1.3;
  }

  .order-list {
    gap: 15px;
  }

  .order-item {
    gap: 12px;
  }

  .order-number {
    width: 1.25vw;
    height: 1.25vw;
    min-width: 1.25vw;
    font-size: 12px;
  }

  .order-text {
    font-size: 14px;
    line-height: 1.4;
    padding-top: 2px;
  }

  .order-image-wrapper {
    border-radius: 12px;
  }

    .comparison-section {
      padding: 40px 15px;
    }
  
    .comparison-header {
      margin-bottom: 25px;
    }
    .comparison-table-wrapper {
      margin-bottom: 30px;
    }
  
    /* TABLE SABİT KALIR - SCROLL */
    .comparison-table {
      min-width: 62.6vw;
      border-radius: 10px;
    }

    .td-content {
      gap: 8px;
      padding: 12px 15px;
    }
  
    .comp-item {
      gap: 6px;
    }
  
    .comparison-table p {
      font-size: 11px;
      line-height: 1.3;
    }
  
    .comp-col-label p {
      font-size: 12px;
    }
  
    .comp-check,
    .comp-cross {
      font-size: 16px;
    }
  
    .comparison-features {
      grid-template-columns: 1fr;
      gap: 15px;
    }
  
    .comp-feature {
      gap: 10px;
    }
  
    .comp-feature-icon {
      width: 32px;
      height: 32px;
      min-width: 26px;
    }
  
    .comp-feature-text {
      font-size: 16px;
      line-height: 1.4;
      padding-top: 1px;
    }
 
  .rent-section {
    padding: 40px 15px;
  }

  .rent-header {
    margin-bottom: 25px;
  }

  .rent-title {
    font-size: 1.05vw;
    line-height: 1.3;
    margin-bottom: 8px;
  }

  .rent-subtitle {
    font-size: 13px;
  }

  .rent-cards {
    gap: 15px;
    margin-bottom: 30px;
  }

  .rent-row {
    gap: 15px;
  }

  .rent-row-3,
  .rent-row-4 {
    grid-template-columns: 1fr;
  }

  .rent-card {
    border-radius: 12px;
  }

  .rent-card::before {
    border-radius: 12px;
  }

  .rent-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 1.05vw rgba(0, 0, 0, 0.1);
  }

  .rent-card-image {
    height: 180px;
    border-radius: 12px 12px 0 0;
  }

  .rent-card-title {
    font-size: 13px;
    line-height: 1.4;
    padding: 12px 14px 14px 14px;
  }

  .legal-partners-section {
    padding: 40px 15px 0 15px;
    margin-top: 30px;
  }

  .legal-support-section {
    padding: 40px 15px 0 15px;
    margin-top: 60px;
  }

  .legal-support-card {
    border-radius: 16px;
    box-shadow: none;
  }

  .legal-support-image {
    padding: 0;
  }

  .legal-support-photo {
    border-radius: 12px;
  }

  .legal-support-content {
    padding: 1.05vw;
    gap: 14px;
  }

  .legal-support-title {
    font-size: 1.05vw;
    line-height: 1.3;
  }

  .legal-support-item {
    gap: 10px;
  }

  .legal-support-desc {
    font-size: 15px;
  }

  .legal-support-bullet {
    width: 8px;
    height: 8px;
    margin-top: 5px;
  }

  .legal-support-text {
    font-size: 13px;
    line-height: 1.4;
  }

  .legal-support-note {
    font-size: 12px;
  }

  .rent-footer {
    gap: 12px;
  }

  .rent-btn {
    padding: 14px 25px;
    border-radius: 25px;
    font-size: 13px;
    width: 100%;
    box-shadow: 0 3px 10px rgba(254, 29, 37, 0.25);
  }

  .rent-btn:hover {
    box-shadow: 0 5px 15px rgba(254, 29, 37, 0.35);
    transform: translateY(-2px);
  }

  .rent-note {
    font-size: 12px;
  }

  .remote-check-section {
    padding: 2.6vw 3vw;
  }
  .remote-check-title {
    font-size: 1.05vw;
  }
  .remote-check-subtitle {
    font-size: 13px;
  }
  .remote-card-image {
    height: 200px;
  }
  .remote-card-body {
    gap: 10px;
    padding: 13px 13px 15px 13px;
  }
  .remote-card-title {
    font-size: 14px;
    gap: 6px;
  }
  .remote-card-text,
  .remote-card-list li {
    font-size: 12.5px;
  }
  .remote-card {
    flex: 1 1 100%;
  }

  .equipment-proof-section {
    padding: 2.6vw 14px 0;
  }
  .equipment-proof-title {
    font-size: 1.05vw;
  }
  .equipment-proof-row {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
  .equip-card-image {
    height: 200px;
  }
  .equip-card-body {
    gap: 10px;
    padding: 13px 13px 15px 13px;
  }
  .equip-card-title {
    font-size: 14px;
  }
  .equip-card-text {
    font-size: 12.5px;
  }
  .equip-btn {
    padding: 12px 18px;
    font-size: 13px;
    border-radius: 1.25vw;
  }
  .authenticity-section {
    padding: 2.6vw 3vw;
  }
  .authenticity-title {
    font-size: 1.05vw;
  }
  .authenticity-grid {
    gap: 16px;
  }
  .auth-card {
    width: 100%;
    max-width: 100%;
  }
  .auth-card-image {
    height: 200px;
  }
  .auth-card-body {
    gap: 10px;
    padding: 13px 13px 15px 13px;
  }
  .auth-card-title {
    font-size: 14px;
  }
  .auth-card-text {
    font-size: 12.5px;
  }

  .contact-hero-card {
    gap: 30px;
  }
  .contact-hero-info {
    padding: 16px;
  }
  .contact-hero-title {
    font-size: 7.05vw;
  }
  .contact-hero-desc {
    font-size: 13px;
  }
  .contact-hero-phone {
    font-size: 5.05vw;
  }
  .contact-hero-mail {
    font-size: 14px;
    /* padding: 10px 1.05vw; */
  }
  .contact-hero-actions {
    gap: 50px;
  }
  .contact-hero-btn {
    width: 100%;
    justify-content: center;
    font-size: 16px;
    padding: 15px 14px;
  }
  .map-embed {
    min-height: 260px;
  }
  .remote-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .blog-title {
    font-size: 22px;
  }
  .blog-tab {
    font-size: 12px;
    padding: 8px 12px;
  }
  .blog-card-image {
    height: 180px;
  }
  .blog-card-date {
    font-size: 12.5px;
  }
  .blog-card-title {
    font-size: 16px;
  }
  .blog-card-desc {
    font-size: 13px;
  }
  .blog-card {
    width: 100%;
    max-width: 100%;
  }
  .blog-card-link {
    font-size: 12.5px;
    padding: 9px 12px;
  }
  .blog-card-meta {
    font-size: 12.5px;
  }

  .blog-detail-section {
    padding: 32px 12px 44px;
  }
  .blog-detail-title {
    font-size: 1.05vw;
  }
  .blog-detail-body h3 {
    font-size: 16px;
  }
  .blog-detail-meta {
    font-size: 12.5px;
  }
  .blog-detail-body {
    font-size: 14px;
  }
  .blog-detail-body ul,
  .blog-detail-body ol {
    padding-left: 16px;
  }
  .related-articles-section {
    padding: 32px 12px 40px;
  }
  .related-articles-container {
    gap: 30px;
  }
  .related-title {
    font-size: 1.05vw;
  }
  .related-grid {
    gap: 30px;
  }
  .related-card-image {
    height: 180px;
  }
  .related-card-date {
    font-size: 12.5px;
  }
  .related-card-title {
    font-size: 16px;
  }
  .related-card-desc {
    font-size: 13px;
  }
  .related-card-btn {
    font-size: 16.5px;
  }
  .related-card-meta {
    font-size: 12.5px;
  }

  .popup-overlay {
    padding: 14px;
  }
  .popup-card {
    padding: 52px 18px 22px;
  }
  .popup-title {
    font-size: 16px;
  }

  .article-section {
    padding: 0 15px 2.6vw 15px;
  }
  .article-container {
    gap: 16px;
  }
  .article-image-wrapper {
    border-radius: 16px;
  }
  .article-title {
    font-size: 1.25vw;
  }
  .article-subtitle {
    font-size: 1.05vw;
    text-align: left;
  }
  .article-date {
    font-size: 15px;
    align-self: flex-start;
  }
  .article-btn {
    font-size: 15px;
    padding: 13px 1.25vw;
    border-radius: 12px;
  }

  .device-features-section {
    padding: 38px 14px 30px;
  }
  .device-features-title {
    font-size: 1.05vw;
  }
  .device-features-col, .device-main-wrap {
    width: 100%;
    align-items: stretch;
    gap: 40px;
}
  .device-features-section .feature-card {
    /* padding: 14px 16px; */
    gap: 40px;
    border-radius: 12px;
    flex-direction: column;
  }
  .device-features-section .feature-icon {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
  }
  .device-features-section .feature-text h4 {
    font-size: 16px;
  }
  .device-features-section .feature-text p {
    font-size: 13px;
  }
  .device-features-btn {
    font-size: 14px;
    padding: 12px 1.05vw;
    border-radius: 12px;
  }
.device-features-section .feature-card::after {
    display: block;
    width: 2px;
    height: 50px;
    background: #cfcfcf;
    position: absolute;
    left: 50%;
    top: 44%;
    transform: translateY(-50%);
    z-index: -1;
}
  .device-features-note p {
    font-size: 13px;
  }
  
}







