@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700&display=swap");
html:has(> .cc) {
  overflow-x: hidden;
  max-width: 100%;
}

.cc {
  margin: 0;
  overflow-x: hidden;
  max-width: 100%;
  background: #000000;
  color: #FFFFFF;
  font-family: "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.cc, .cc * {
  box-sizing: border-box;
}
.cc a {
  color: inherit;
  text-decoration: none;
}
.cc ul, .cc li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cc img {
  max-width: 100%;
  display: block;
}
.cc :where(h1,h2,h3,h4,h5,h6) {
  margin: 0;
  font-weight: 400;
}
.cc :where(p) {
  margin: 0;
}
.cc button {
  font-family: inherit;
}

.cc-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 64px;
}

.cc-h1 {
  font-size: 56px;
  line-height: 64px;
}

.cc-h2 {
  font-size: 48px;
  line-height: 56px;
}

.cc-h5 {
  font-size: 24px;
  line-height: 28px;
}

.cc-h6 {
  font-size: 18px;
  line-height: 22px;
}

.cc-body1 {
  font-size: 16px;
  line-height: 20px;
}

.cc-body2 {
  font-size: 14px;
  line-height: 16px;
}

.cc-muted {
  color: #797979;
}

.cc-red {
  color: #F11010;
}

.cc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border: 0;
  border-radius: 100px;
  font: 600 16px/1 "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.cc-btn svg, .cc-btn .cc-arrow {
  width: 16px;
  height: 16px;
  flex: none;
}

.cc .cc-btn--primary {
  background: #FFFFFF;
  color: #000000;
}
.cc .cc-btn--primary:hover {
  background: #ebebeb;
}

.cc .cc-btn--dark {
  background: #000000;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.cc .cc-btn--dark:hover {
  background: #171717;
}

.cc .cc-btn--red {
  background: #F11010;
  color: #FFFFFF;
}
.cc .cc-btn--red:hover {
  background: #cc0c0c;
}

.cc-btn--sm {
  height: 40px;
  padding: 0 20px;
}

.cc-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  padding: 24px 0;
}
.cc-header .cc-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
}

.cc-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #FFFFFF;
  color: #000000;
  border-radius: 100px;
  padding: 8px 8px 8px 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.cc-nav__logo {
  width: 60px;
  height: 60px;
  margin-right: 16px;
  flex: none;
}
.cc-nav__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cc-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.cc-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: 100px;
  white-space: nowrap;
  color: #000000;
  font: 600 15px/1 "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.cc-nav__link:hover {
  background: rgba(0, 0, 0, 0.06);
}
.cc-nav__link.is-active {
  background: #000000;
  color: #FFFFFF;
}
.cc-nav__link svg {
  width: 14px;
  height: 14px;
}

.cc-nav__cta {
  margin-left: 4px;
}

.cc-nav__item {
  position: relative;
}

.cc-nav__link svg {
  transition: transform 0.2s;
}

.cc-nav__item.is-open > .cc-nav__link {
  background: #000000;
  color: #FFFFFF;
}

.cc-nav__item.is-open > .cc-nav__link svg {
  transform: rotate(180deg);
}

.cc-drop {
  position: absolute;
  top: calc(100% + 14px);
  left: -12px;
  min-width: 320px;
  background: #FFFFFF;
  border-radius: 12px;
  padding: 8px 0;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
}
.cc-drop a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 24px;
  color: #000000;
  font-size: 15px;
  line-height: 20px;
}
.cc-drop a:hover {
  background: rgba(0, 0, 0, 0.06);
}
.cc-drop a svg {
  width: 14px;
  height: 14px;
  flex: none;
  opacity: 0.5;
}

.cc-nav__item.is-open .cc-drop {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cc-header__meta {
  margin-left: auto;
  display: flex;
  gap: 40px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  line-height: 20px;
}
.cc-header__meta div span {
  display: block;
  white-space: nowrap;
}

.cc-burger {
  display: none;
}

.cc-hero {
  position: relative;
  min-height: 720px;
  background: #000000 url("/images/new/hero-car.jpg") no-repeat left center;
  background-size: cover;
  overflow: hidden;
}
.cc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0) 22%, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.9) 75%, #000 100%);
}
.cc-hero .cc-wrap {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 80px;
  min-height: 760px;
  display: flex;
  flex-direction: column;
}

.cc-hero__lead {
  margin-left: auto;
  max-width: 380px;
  text-align: left;
  margin-top: 150px;
}
.cc-hero__lead p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 24px;
}

.cc-hero__bottom {
  margin-top: auto;
}

.cc-hero__label {
  color: #F11010;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 8px;
}

.cc-hero__title {
  font-size: 56px;
  line-height: 64px;
  max-width: 900px;
}

.cc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 72px 0 88px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-stat__num {
  font-size: 56px;
  line-height: 1;
  margin-bottom: 16px;
}

.cc-stat__label {
  color: #797979;
  font-size: 16px;
  line-height: 20px;
  max-width: 220px;
}

.cc-section {
  padding: 96px 0;
}

.cc-section__title {
  font-size: 48px;
  line-height: 56px;
  max-width: 760px;
  margin-bottom: 48px;
}

.cc-section__intro {
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 48px;
}

.cc-grad {
  background: linear-gradient(90deg, #C4130F 0%, #F11010 45%, #FF5B3C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cc-services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cc-service {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  transition: border-color 0.2s, transform 0.2s;
}
.cc-service:hover {
  border-color: rgba(241, 16, 16, 0.5);
}
.cc-service__img {
  aspect-ratio: 358/200;
  background: #111 center/cover no-repeat;
}
.cc-service__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cc-service__title {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 12px;
}
.cc-service__desc {
  color: #797979;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 24px;
  flex: 1;
}

.cc-trust__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.cc-trust__title {
  font-size: 48px;
  line-height: 56px;
}

.cc-trust__title b {
  display: block;
  font-weight: 400;
  background: linear-gradient(90deg, #C4130F 0%, #F11010 45%, #FF5B3C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cc-trust__lead {
  color: rgba(255, 255, 255, 0.85);
  align-self: end;
  max-width: 480px;
}

.cc-trust__row {
  display: grid;
  grid-template-columns: 80px 1fr 40px;
  align-items: start;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cc-trust__row:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-trust__num {
  color: #797979;
  font-size: 24px;
}

.cc-trust__name {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 8px;
}

.cc-trust__text {
  color: #797979;
  font-size: 14px;
  line-height: 18px;
  max-width: 420px;
}

.cc-trust__check {
  color: #F11010;
  text-align: right;
}
.cc-trust__check svg {
  width: 24px;
  height: 24px;
  display: inline;
}

.cc-cta__title {
  font-size: 48px;
  line-height: 56px;
}

.cc-contact__cols {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  grid-template-rows: auto auto;
  column-gap: 80px;
  row-gap: 150px;
}

.cc-contact__consult p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 32px;
  max-width: 360px;
}

.cc-phone {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 8px 8px 8px 32px;
}

.cc-phone__num {
  font-size: 24px;
  line-height: 28px;
}

.cc-contact__info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.cc-contact__h {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
}

.cc-contact__val {
  color: #797979;
  font-size: 16px;
  line-height: 20px;
}

.cc-msgr {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  font-size: 16px;
  color: #FFFFFF;
}
.cc-msgr:first-of-type {
  margin-top: 0;
}
.cc-msgr span {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: #FFFFFF;
  color: #000000;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cc-msgr svg {
  width: 20px;
  height: 20px;
}

.cc-booking {
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  padding: 80px 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  background: url("/images/new/booking-streak.jpg") no-repeat 58% -12%/72% auto, radial-gradient(115% 135% at 56% 4%, #c9161c 0%, #9c1015 34%, #560a0d 64%, #220305 100%);
  background-blend-mode: screen, normal;
}

.cc-booking__left {
  position: relative;
  z-index: 2;
}

.cc-booking__title {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 24px;
}

.cc-booking__sub {
  color: rgba(255, 255, 255, 0.9);
  max-width: 420px;
  font-size: 18px;
  line-height: 22px;
}

.cc-booking__car {
  position: absolute;
  left: 24px;
  bottom: -8px;
  width: 52%;
  max-width: 620px;
  z-index: 1;
  pointer-events: none;
}

.cc-booking__form {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cc-booking .cc-input {
  height: 64px;
  border: 0;
  border-radius: 100px;
  background: #fff;
  color: #111;
  padding: 0 28px;
  font: 400 16px/1 "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  width: 100%;
}
.cc-booking .cc-input::placeholder {
  color: #797979;
}
.cc-booking .cc-input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
}

.cc-check {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  margin: 8px 0 4px;
  cursor: pointer;
}

.cc-check input {
  display: none;
}

.cc-check__box {
  width: 24px;
  height: 24px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  position: relative;
}

.cc-check input:checked + .cc-check__box {
  background: #fff;
}

.cc-check input:checked + .cc-check__box::after {
  content: "✓";
  position: absolute;
  inset: 0;
  color: #d81414;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-check__text {
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.92);
}
.cc-check__text a {
  text-decoration: underline;
}

.cc-booking__submit {
  height: 64px;
  border: 0;
  border-radius: 100px;
  background: #F11010;
  color: #fff;
  font: 600 16px/1 "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
}
.cc-booking__submit:hover {
  background: #cc0c0c;
}

.cc-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 56px 0 40px;
}

.cc-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.cc-footer__brand {
  font-size: 32px;
  margin-bottom: 8px;
}

.cc-footer__sub {
  color: #797979;
  margin-bottom: 40px;
}

.cc-footer__label {
  margin-bottom: 4px;
}

.cc-footer__legal {
  color: #797979;
  font-size: 14px;
  line-height: 20px;
}

.cc-footer__links a {
  display: block;
  color: #797979;
  margin-bottom: 8px;
}
.cc-footer__links a:hover {
  color: #FFFFFF;
}

.cc-footer__row {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 20px;
}
.cc-footer__row div {
  margin-bottom: 4px;
}

.cc-shero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #000 no-repeat right center;
  background-size: cover;
}
.cc-shero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.5) 45%, rgba(0, 0, 0, 0.25) 100%);
}
.cc-shero .cc-wrap {
  position: relative;
  z-index: 2;
  padding-top: 130px;
  padding-bottom: 56px;
  min-height: 720px;
  display: flex;
  flex-direction: column;
}

.cc-shero__top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.cc-shero__head {
  max-width: 720px;
}

.cc-shero__title {
  font-size: 56px;
  line-height: 64px;
  max-width: 720px;
}

.cc-shero__intro {
  color: rgba(255, 255, 255, 0.85);
  max-width: 460px;
  margin-top: 24px;
}

.cc-shero__aside {
  margin-left: auto;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 24px;
}

.cc-shero__intro--right {
  text-align: left;
  max-width: 340px;
  margin-top: 0;
}

.cc-shero__tag {
  font-size: 24px;
  line-height: 28px;
  max-width: 320px;
  text-align: right;
  padding-top: 8px;
  background: linear-gradient(90deg, #C4130F 0%, #F11010 45%, #FF5B3C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cc-shero__feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  margin-top: 40px;
  max-width: 640px;
}

.cc-feat {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.cc-feat svg {
  width: 20px;
  height: 20px;
  color: #fff;
  margin-top: 2px;
}
.cc-feat span {
  font-size: 16px;
  line-height: 20px;
}

.cc-shero__bottom {
  margin-top: auto;
  display: flex;
  align-items: flex-end;
  gap: 48px;
  flex-wrap: wrap;
}

.cc-shero__stat {
  max-width: 220px;
}

.cc-shero__statnum {
  font-size: 32px;
  line-height: 36px;
  margin-bottom: 8px;
}

.cc-shero__statlabel {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 18px;
}

.cc-adv__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cc-adv__head {
  grid-column: span 2;
  display: flex;
  align-items: flex-start;
  padding-top: 8px;
}

.cc-adv__head.cc-adv__head--one {
  grid-column: span 1;
}

.cc-adv__note {
  color: #797979;
  font-size: 16px;
  line-height: 20px;
  margin-top: 20px;
  max-width: 340px;
}

.cc-adv__title {
  font-size: 48px;
  line-height: 56px;
  max-width: 560px;
}
.cc-adv__title b {
  font-weight: 400;
  background: linear-gradient(90deg, #C4130F 0%, #F11010 45%, #FF5B3C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cc-advcard {
  min-height: 300px;
}

.cc-404 {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: #000 no-repeat center/cover;
}
.cc-404::before {
  content: "404";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(180px, 30vw, 460px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: rgba(241, 16, 16, 0.42);
  z-index: 1;
  pointer-events: none;
  white-space: nowrap;
}
.cc-404::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 60% at 50% 55%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 2;
}
.cc-404__inner {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.cc-404__title {
  font-size: 48px;
  line-height: 56px;
}

.cc-legal__title {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 40px;
}

.cc-legal__body {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  line-height: 24px;
  max-width: 1000px;
}
.cc-legal__body p {
  margin-bottom: 16px;
}
.cc-legal__body h2 {
  font-size: 24px;
  line-height: 30px;
  margin: 40px 0 16px;
}
.cc-legal__body ul {
  margin: 0 0 16px;
  padding-left: 22px;
}
.cc-legal__body li {
  list-style: disc;
  margin-bottom: 8px;
}
.cc-legal__body a {
  color: #F11010;
  text-decoration: underline;
}

.cc-ceyebrow {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin-bottom: 24px;
}

.cc-chero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 110px;
}

.cc-chero__title {
  font-size: 48px;
  line-height: 60px;
  max-width: 760px;
}

.cc-cinfo {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}

.cc-cinfo__h {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 20px;
}

.cc-cinfo__v {
  color: #797979;
  font-size: 16px;
  line-height: 22px;
}

.cc-map {
  display: block;
  width: 100%;
  margin-top: 40px;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  height: 460px;
}
.cc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.cc-cinfo .cc-msgr {
  display: flex;
}

.cc-maphead {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}

.cc-maphead__title {
  font-size: 48px;
  line-height: 56px;
  max-width: 700px;
}

.cc-crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: #797979;
  font-size: 14px;
  margin-bottom: 32px;
}
.cc-crumbs a {
  color: #797979;
}
.cc-crumbs a:hover {
  color: #FFFFFF;
}
.cc-crumbs span.sep {
  opacity: 0.5;
}
.cc-crumbs b {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
}

.cc-wtitle {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 24px;
}
.cc-wtitle b {
  display: block;
  font-weight: 400;
  background: linear-gradient(90deg, #C4130F 0%, #F11010 45%, #FF5B3C 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cc-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cc-work {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
  transition: border-color 0.2s;
}
.cc-work:hover {
  border-color: rgba(241, 16, 16, 0.5);
}
.cc-work__img {
  aspect-ratio: 16/11;
  background: #1a1a1a center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 14px;
}
.cc-work__body {
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.cc-work__name {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 10px;
}
.cc-work__meta {
  color: #797979;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
  flex: 1;
}

.cc-workhero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.cc-workhero__img {
  aspect-ratio: 4/3;
  background: #1a1a1a center/cover no-repeat;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
}

.cc-specs {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  line-height: 26px;
}
.cc-specs dt {
  color: #797979;
  display: inline;
}
.cc-specs div {
  margin-bottom: 2px;
}

.cc-worktext__title {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 20px;
}

.cc-worktext__p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: 40px;
}

.cc-sys__item {
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 60px;
  padding: 40px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cc-sys__item:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.cc-sys__title {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 16px;
}

.cc-sys__desc {
  color: #797979;
  font-size: 16px;
  line-height: 20px;
  max-width: 340px;
}

.cc-sys__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
  align-content: start;
}

.cc-gives__head.cc-gives__head--stack {
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 760px;
}
.cc-gives__head.cc-gives__head--stack .cc-gives__p {
  max-width: 460px;
}

.cc-cases__note {
  color: #797979;
  font-size: 14px;
  line-height: 18px;
  margin-top: 28px;
  max-width: 720px;
}

.cc-cases__sub {
  font-size: 24px;
  line-height: 28px;
  margin: 8px 0 32px;
}

.cc-cases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 24px;
}

.cc-case {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.cc-case__ic svg {
  width: 24px;
  height: 24px;
  color: #F11010;
}

.cc-case__text {
  font-size: 18px;
  line-height: 22px;
}

.cc-seo__title {
  font-size: 32px;
  line-height: 38px;
  margin-bottom: 24px;
  max-width: 900px;
}

.cc-seo__body {
  color: #797979;
  max-width: 1000px;
}
.cc-seo__body p {
  margin-bottom: 16px;
  line-height: 22px;
}

.cc-gives__head {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.cc-gives__title {
  font-size: 48px;
  line-height: 56px;
}

.cc-gives__p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 20px;
}

.cc-gives__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cc-gives__spacer {
  display: block;
}

.cc-gcard {
  min-height: 320px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #0a0a0a;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.cc-gcard__num {
  position: absolute;
  top: 24px;
  right: 28px;
  font-size: 40px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.9);
  z-index: 3;
}
.cc-gcard__img {
  position: absolute;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 1;
}
.cc-gcard__title {
  position: relative;
  z-index: 2;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 12px;
}
.cc-gcard__desc {
  position: relative;
  z-index: 2;
  color: #797979;
  font-size: 14px;
  line-height: 18px;
  max-width: 340px;
}
.cc-gcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 42%, rgba(0, 0, 0, 0.55) 100%);
}

.cc-procsteps {
  position: relative;
  overflow: hidden;
}

.cc-procsteps__streak {
  transform: rotate(-180deg);
  position: absolute;
  right: -60px;
  top: 40px;
  width: 80%;
  max-width: 820px;
  z-index: 0;
  opacity: 0.9;
  pointer-events: none;
}

.cc-procsteps__list {
  position: relative;
  z-index: 2;
}

.cc-pstep {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin-bottom: 40px;
  margin-left: calc(var(--i, 0) * 100px);
}

.cc-pstep__label {
  color: #797979;
  font-size: 16px;
  margin-bottom: 12px;
}

.cc-pstep__name {
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 8px;
}

.cc-pstep__text {
  color: #797979;
  font-size: 14px;
  line-height: 18px;
  max-width: 320px;
}

.cc-price2 {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: start;
  overflow: hidden;
}

.cc-price2__streak {
  position: absolute;
  left: 0%;
  top: -20%;
  width: 70%;
  z-index: 0;
  opacity: 0.85;
  pointer-events: none;
}

.cc-price2__left, .cc-price2__form {
  position: relative;
  z-index: 2;
}

.cc-price2 .cc-input {
  height: 64px;
  border: 0;
  border-radius: 100px;
  background: #fff;
  color: #111;
  padding: 0 28px;
  font: 400 16px/1 "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  width: 100%;
}
.cc-price2 .cc-input::placeholder {
  color: #797979;
}
.cc-price2 .cc-input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
}

.cc-price2__title {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 24px;
}

.cc-price2__text {
  color: rgba(255, 255, 255, 0.85);
  max-width: 420px;
  margin-bottom: 48px;
}

.cc-price2__dep {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}

.cc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cc-pill {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
}

.cc-faq__title {
  font-size: 48px;
  line-height: 56px;
  text-align: center;
  margin-bottom: 48px;
}

.cc-acc {
  max-width: 1000px;
  margin: 0 auto;
}

.cc-acc__item {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.cc-acc__item:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-acc__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 28px 0;
  cursor: pointer;
  font-size: 22px;
  line-height: 26px;
}

.cc-acc__icon {
  flex: none;
  width: 24px;
  height: 24px;
  position: relative;
}
.cc-acc__icon::before, .cc-acc__icon::after {
  content: "";
  position: absolute;
  background: #FFFFFF;
}
.cc-acc__icon::before {
  left: 0;
  top: 11px;
  width: 24px;
  height: 2px;
}
.cc-acc__icon::after {
  left: 11px;
  top: 0;
  width: 2px;
  height: 24px;
  transition: transform 0.2s;
}

.cc-acc__a {
  color: #797979;
  font-size: 16px;
  line-height: 22px;
  max-width: 860px;
  height: 0;
  overflow: hidden;
}

.cc-acc__item.is-open .cc-acc__icon::after {
  transform: scaleY(0);
}
.cc-acc__item.is-open .cc-acc__a {
  height: auto;
  padding-bottom: 28px;
}

@media (max-width: 1024px) {
  .cc-wrap {
    padding: 0 24px;
  }

  .cc-header__meta {
    display: none;
  }

  .cc-nav__list {
    display: none;
  }

  .cc-nav {
    width: 100%;
    justify-content: space-between;
    padding: 8px 8px 8px 10px;
  }

  .cc-nav__cta {
    margin-left: auto;
    margin-right: 8px;
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
  }

  .cc-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background: #000000;
    color: #FFFFFF;
    border: 0;
    cursor: pointer;
    flex: none;
  }

  .cc-hero__title, .cc-section__title, .cc-trust__title, .cc-cta__title {
    font-size: 40px;
    line-height: 46px;
  }

  .cc-services {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .cc-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .cc-stat__num {
    font-size: 44px;
  }

  .cc-booking {
    padding: 56px 48px;
    gap: 40px;
  }

  .cc-gives__head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cc-gives__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-gives__spacer {
    display: none;
  }

  .cc-price2 {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .cc-price2__streak {
    display: none;
  }

  .cc-adv__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-adv__head {
    grid-column: 1/-1;
  }

  .cc-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-sys__item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cc-works {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-workhero {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cc-chero, .cc-maphead {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .cc-cinfo {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .cc-shero {
    min-height: 560px;
  }

  .cc-shero .cc-wrap {
    min-height: 560px;
    padding-top: 110px;
  }

  .cc-shero__top {
    flex-direction: column;
  }

  .cc-shero__aside {
    margin-left: 0;
    align-items: flex-start;
    max-width: none;
  }

  .cc-shero__tag {
    text-align: left;
    max-width: none;
  }

  .cc-shero__intro--right {
    max-width: none;
  }

  .cc-shero__feats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .cc-shero__title {
    font-size: 32px;
    line-height: 38px;
  }

  .cc-shero__bottom {
    gap: 24px;
  }

  .cc-shero__cta {
    margin-left: 0 !important;
    width: 100%;
    justify-content: center;
  }

  .cc-adv__grid {
    grid-template-columns: 1fr;
  }

  .cc-adv__head {
    grid-column: auto;
  }

  .cc-adv__title, .cc-seo__title {
    font-size: 26px;
    line-height: 32px;
  }

  .cc-cases__grid {
    grid-template-columns: 1fr;
  }

  .cc-cases__sub {
    font-size: 20px;
  }

  .cc-sys__cards {
    grid-template-columns: 1fr;
  }

  .cc-works {
    grid-template-columns: 1fr;
  }

  .cc-wtitle {
    font-size: 28px;
    line-height: 34px;
  }

  .cc-cinfo {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .cc-chero {
    margin-bottom: 56px;
  }

  .cc-404__title {
    font-size: 28px;
    line-height: 34px;
  }

  .cc-404::before {
    font-size: 46vw;
  }

  .cc-legal__title {
    font-size: 28px;
    line-height: 34px;
  }

  .cc-chero__title, .cc-maphead__title {
    font-size: 28px;
    line-height: 36px;
  }

  .cc-map {
    height: 320px;
  }

  .cc-worktext__title {
    font-size: 24px;
    line-height: 30px;
  }

  .cc-gives__grid {
    grid-template-columns: 1fr;
  }

  .cc-gcard {
    min-height: 240px;
  }

  .cc-gives__title, .cc-price2__title, .cc-faq__title {
    font-size: 28px;
    line-height: 34px;
  }

  .cc-pstep {
    margin-left: 0 !important;
    max-width: none;
    margin-bottom: 28px;
  }

  .cc-procsteps__streak {
    display: none;
  }

  .cc-acc__q {
    font-size: 18px;
    line-height: 22px;
  }
}
@media (max-width: 640px) {
  .cc-wrap {
    padding: 0 16px;
  }

  .cc-nav__logo {
    width: 48px;
    height: 48px;
    margin-right: 8px;
  }

  .cc-nav__cta {
    height: 36px;
    padding: 0 16px;
    font-size: 13px;
    margin-right: 6px;
  }

  .cc-burger {
    width: 40px;
    height: 40px;
  }

  .cc-hero {
    min-height: 560px;
    background-position: center bottom;
  }

  .cc-hero .cc-wrap {
    min-height: 560px;
    padding-top: 110px;
  }

  .cc-hero__lead {
    margin: 40px 0 0;
    max-width: none;
  }

  .cc-hero__title {
    font-size: 32px;
    line-height: 38px;
  }

  .cc-hero__label {
    font-size: 18px;
  }

  .cc-section {
    padding: 48px 0;
  }

  .cc-section__title, .cc-trust__title, .cc-cta__title {
    font-size: 28px;
    line-height: 34px;
  }

  .cc-services {
    grid-template-columns: 1fr;
  }

  .cc-stats {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding: 40px 0 48px;
  }

  .cc-stat__num {
    font-size: 36px;
  }

  .cc-trust__head, .cc-footer__grid {
    grid-template-columns: 1fr;
  }

  .cc-booking {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px 20px;
    border-radius: 24px;
  }

  .cc-booking__title {
    font-size: 28px;
    line-height: 34px;
  }

  .cc-booking__car {
    display: none;
  }

  .cc-booking .cc-input, .cc-booking__submit {
    height: 56px;
  }

  .cc-contact__cols {
    grid-template-columns: 1fr;
    row-gap: 40px;
  }

  .cc-contact__info {
    gap: 24px;
  }

  .cc-phone {
    padding: 6px 6px 6px 20px;
  }

  .cc-phone__num {
    font-size: 18px;
  }

  .cc-trust__row {
    grid-template-columns: 40px 1fr 24px;
    gap: 12px;
    padding: 24px 0;
  }

  .cc-trust__name, .cc-service__title {
    font-size: 20px;
    line-height: 24px;
  }

  .cc-footer__brand {
    font-size: 24px;
  }
}
.cc-page-hero {
  padding: 160px 0 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-crumbs {
  color: #797979;
  font-size: 14px;
  margin-bottom: 24px;
}
.cc-crumbs a:hover {
  color: #FFFFFF;
}
.cc-crumbs span {
  padding: 0 8px;
}

.cc-page-hero__title {
  font-size: 48px;
  line-height: 56px;
  max-width: 900px;
  margin-bottom: 20px;
}

.cc-page-hero__intro {
  color: rgba(255, 255, 255, 0.8);
  max-width: 640px;
}

.cc-block {
  padding: 56px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-block__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
}

.cc-block__title {
  font-size: 32px;
  line-height: 38px;
}

.cc-block__text {
  color: rgba(255, 255, 255, 0.85);
}
.cc-block__text p {
  margin-bottom: 16px;
}

.cc-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cc-step {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 24px;
}

.cc-step__num {
  color: #F11010;
  font-size: 24px;
  margin-bottom: 12px;
}

.cc-step__name {
  font-size: 18px;
  margin-bottom: 8px;
}

.cc-step__text {
  color: #797979;
  font-size: 14px;
  line-height: 18px;
}

.cc-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 8px;
}

.cc-price__val {
  font-size: 40px;
  color: #FFFFFF;
}

.cc-price__from {
  color: #797979;
}

.cc-faq__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cc-faq__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  cursor: pointer;
  font-size: 20px;
  list-style: none;
}
.cc-faq__q::-webkit-details-marker {
  display: none;
}

.cc-faq__q .cc-faq__ic {
  color: #F11010;
  transition: transform 0.2s;
  flex: none;
}

.cc-faq__item[open] .cc-faq__ic {
  transform: rotate(45deg);
}

.cc-faq__a {
  color: #797979;
  padding: 0 0 24px;
  max-width: 760px;
  line-height: 22px;
}

.cc-form {
  display: grid;
  gap: 16px;
  max-width: 480px;
}

.cc-form--row {
  grid-template-columns: 1fr 1fr;
}

.cc-input {
  height: 48px;
  padding: 0 20px;
  border-radius: 100px;
  background: #0f0f0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
  font: 400 16px "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.cc-input::placeholder {
  color: #797979;
}
.cc-input:focus {
  outline: none;
  border-color: #F11010;
}

.cc-form__note {
  color: #797979;
  font-size: 12px;
  line-height: 16px;
}

.cc-formband {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.cc-formband__title {
  font-size: 40px;
  line-height: 46px;
  margin-bottom: 16px;
}

.cc-formband__text {
  color: rgba(255, 255, 255, 0.8);
}

.cc-works {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cc-work {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  background: #0a0a0a;
}
.cc-work:hover {
  border-color: rgba(241, 16, 16, 0.5);
}

.cc-work__img {
  aspect-ratio: 4/3;
  background: #111 center/cover no-repeat;
}

.cc-work__body {
  padding: 20px;
}

.cc-work__cat {
  display: inline-block;
  background: rgba(241, 16, 16, 0.15);
  color: #F11010;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}

.cc-work__title {
  font-size: 18px;
  line-height: 22px;
}

.cc-contacts {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
}

.cc-contacts__item {
  margin-bottom: 24px;
}

.cc-contacts__label {
  color: #797979;
  font-size: 14px;
  margin-bottom: 4px;
}

.cc-contacts__val {
  font-size: 20px;
}

.cc-map {
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
}
.cc-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.cc-prose {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 24px;
}
.cc-prose h2 {
  font-size: 28px;
  margin: 32px 0 12px;
  color: #FFFFFF;
}
.cc-prose p {
  margin-bottom: 16px;
}
.cc-prose ul {
  padding-left: 20px;
  margin-bottom: 16px;
}
.cc-prose li {
  list-style: disc;
  margin-bottom: 8px;
}

@media (max-width: 1024px) {
  .cc-block__grid, .cc-contacts, .cc-formband, .cc-cta {
    grid-template-columns: 1fr;
  }

  .cc-works {
    grid-template-columns: repeat(2, 1fr);
  }

  .cc-page-hero__title {
    font-size: 36px;
    line-height: 42px;
  }
}
@media (max-width: 640px) {
  .cc-page-hero {
    padding: 120px 0 40px;
  }

  .cc-page-hero__title {
    font-size: 28px;
    line-height: 34px;
  }

  .cc-steps, .cc-works, .cc-form--row {
    grid-template-columns: 1fr;
  }
}
.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  overflow-y: auto;
}
.cc-modal.is-open {
  display: block;
}
.cc-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
.cc-modal__box {
  position: relative;
  z-index: 1;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 90px 24px 60px;
  text-align: center;
  background: #000000 url("/images/new/booking-streak.jpg") no-repeat left top/62% auto;
  background-size: cover;
}
.cc-modal__closewrap {
  position: absolute;
  top: 32px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 2;
}
.cc-modal__closelabel {
  color: #FFFFFF;
  font-size: 16px;
}
.cc-modal__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: #FFFFFF;
  color: #000000;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cc-modal__close:hover {
  background: #e6e6e6;
}
.cc-modal__title {
  font-size: 48px;
  line-height: 56px;
  margin-bottom: 16px;
}
.cc-modal__sub {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  line-height: 22px;
  margin-bottom: 40px;
}
.cc-modal__form {
  width: 100%;
  max-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}
.cc-modal .cc-input {
  height: 48px;
  border: 0;
  border-radius: 100px;
  background: #fff;
  color: #111;
  padding: 0 24px;
  font: 400 16px/1 "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  width: 100%;
}
.cc-modal .cc-input::placeholder {
  color: #797979;
}
.cc-modal .cc-input:focus {
  outline: 2px solid rgba(255, 255, 255, 0.6);
}
.cc-modal__submit {
  height: 48px;
  border: 0;
  border-radius: 100px;
  background: #F11010;
  color: #fff;
  font: 600 16px/1 "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  cursor: pointer;
  width: 100%;
  margin-top: 8px;
}
.cc-modal__submit:hover {
  background: #cc0c0c;
}

@media (max-width: 640px) {
  .cc-modal__title {
    font-size: 28px;
    line-height: 34px;
  }

  .cc-modal__closewrap {
    top: 20px;
    right: 20px;
  }

  .cc-modal__box {
    padding: 80px 20px 48px;
    background-size: 140% auto;
  }
}
.cc-mmenu {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: #FFFFFF;
  color: #000000;
  transform: translateX(100%);
  overflow-y: auto;
  transition: transform 0.3s, visibility 0.3s;
  visibility: hidden;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  padding: 32px 40px 40px;
}
.cc-mmenu.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}
.cc-mmenu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 48px;
}
.cc-mmenu__logo {
  width: 48px;
  height: 48px;
}
.cc-mmenu__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cc-mmenu__closewrap {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cc-mmenu__closelabel {
  color: #000000;
  font-size: 16px;
}
.cc-mmenu__close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  background: #000000;
  color: #FFFFFF;
  font-size: 18px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.cc-mmenu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.cc-mmenu__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #000000;
  font-size: 36px;
  line-height: 52px;
  padding: 2px 0;
  background: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.cc-mmenu__link svg {
  width: 20px;
  height: 20px;
  transition: transform 0.2s;
}
.cc-mmenu__sub {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0 8px 16px;
}
.cc-mmenu__sub a {
  color: rgba(0, 0, 0, 0.75);
  font-size: 20px;
  line-height: 32px;
}
.cc-mmenu__item.is-open .cc-mmenu__sub {
  display: flex;
}
.cc-mmenu__item.is-open .cc-mmenu__link svg {
  transform: rotate(180deg);
}
.cc-mmenu__foot {
  margin-top: auto;
  padding-top: 56px;
}
.cc-mmenu__brand {
  font-size: 28px;
  line-height: 34px;
}
.cc-mmenu__brandsub {
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 32px;
}
.cc-mmenu__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 40px;
  font-size: 14px;
  line-height: 22px;
  color: rgba(0, 0, 0, 0.75);
}
.cc-mmenu__cols b {
  font-weight: 400;
  color: #000000;
  display: block;
}
.cc-mmenu__cols a {
  color: rgba(0, 0, 0, 0.75);
  display: block;
}

.cc-formmsg {
  margin-top: 14px;
  font-size: 14px;
  line-height: 18px;
}
.cc-formmsg.is-ok {
  color: #7CE08A;
}
.cc-formmsg.is-err {
  color: #FF6B5A;
}

.cc-pager {
  margin-top: 56px;
}

.cc-pg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cc-pg__pages {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.cc .cc-pg__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: #FFFFFF;
  font: 600 16px/1 "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cc .cc-pg__page:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}
.cc .cc-pg__page.is-active {
  background: #FFFFFF;
  border-color: #FFFFFF;
  color: #000000;
  pointer-events: none;
}

.cc-pg__dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 48px;
  color: #797979;
}

.cc .cc-pg__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  color: #FFFFFF;
  font: 600 16px/1 "Inter Tight", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s, opacity 0.2s;
}
.cc .cc-pg__nav svg {
  width: 16px;
  height: 16px;
  flex: none;
}
.cc .cc-pg__nav:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
}
.cc .cc-pg__nav.is-disabled {
  opacity: 0.3;
  pointer-events: none;
}

.cc-pg__nav:first-child {
  margin-right: 8px;
}

.cc-pg__nav:last-child {
  margin-left: 8px;
}

@media (max-width: 767px) {
  .cc-pager {
    margin-top: 40px;
  }

  .cc .cc-pg__nav {
    padding: 0 16px;
  }
  .cc .cc-pg__nav span {
    display: none;
  }

  .cc-pg__nav:first-child, .cc-pg__nav:last-child {
    margin: 0;
  }

  .cc .cc-pg__page {
    min-width: 44px;
    height: 44px;
    font-size: 15px;
  }

  .cc-pg__dots {
    height: 44px;
    min-width: 20px;
  }
}
.cc .cc-drop a.is-active {
  background: rgba(0, 0, 0, 0.06);
  font-weight: 600;
}

.cc .cc-mmenu__sub a.is-active {
  color: #000000;
  font-weight: 600;
}

/*# sourceMappingURL=new.css.map */
