@charset "UTF-8";
/*=========================================================================================
UTILITIES
=========================================================================================== */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
:root {
/*   --bg-gray: rgba(51, 51, 51, 0.2); */
  --bg-black: #333333;
  --bg-white:#FDFDFD;
  --bg-blue:#0000A2;
  --bg-lightBlue:#A2C3E0;
  --bg-gray:rgba(21,21,21,0.20);
  --bg-lightGray: #f8f8f8;
  --bg-darkGreen: rgba(0, 72, 49, 1);
  --bg-lineGreen: rgba(0, 175, 38, 1);
  --bg-lightGreen:#EDF9E8;
  --bg-yellow: rgba(255, 221, 75, 1);
  --bg-pink: rgba(255, 0, 102, 1);
  --bg-watermarkGreen:#D6E8D6;
  --bg-yellowWhite:#EDF9E8;
  --text-gray: rgba(51, 51, 51, 1);
  --text-black: #333333;
  --text-gray:rgba(21,21,21,0.20);
  --text-blue:#0000A2;
  --text-white:#FDFDFD;
  --text-darkGreen: rgba(0, 72, 49, 1);
  --text-lineGreen: rgba(0, 175, 38, 1);
  --text-lightGreen:#EDF9E8;
  --text-yellow: rgba(255, 221, 75, 1);
  --text-pink: rgba(255, 0, 102, 1);
  --text-watermarkGreen:#D6E8D6;
  --box-shadow-green: 5px 4px 0px 0px rgba(0, 26, 18, 1);
  --box-shadow-greenM:7px 7px 0px 0px rgba(0, 72, 49, 1);
  --box-shadow-greenL: 25px 25px 0px 0px rgba(0, 72, 49, 1);
  /* ─── FILTERS ─── */
  --filter-white:brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(19%) hue-rotate(225deg) brightness(107%) contrast(106%);
  --filter-green:brightness(0) saturate(100%) invert(24%) sepia(27%) saturate(1648%) hue-rotate(117deg) brightness(86%) contrast(106%);
  --filter-lineGreen:brightness(0) saturate(100%) invert(63%) sepia(68%) saturate(5826%) hue-rotate(104deg) brightness(94%) contrast(101%);
  --filter-pink:brightness(0) saturate(100%) invert(14%) sepia(88%) saturate(6460%) hue-rotate(330deg) brightness(101%) contrast(105%);
  --filter-yellow: brightness(0) saturate(100%) invert(84%) sepia(41%) saturate(682%) hue-rotate(349deg) brightness(101%) contrast(102%);
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  font-family: "Zen Kaku Gothic New", serif;
  font-weight: 400;
  scroll-behavior: smooth;
  scroll-margin-top: 20px;
}

body,
html {
  margin: 0px !important;
  padding: 0px !important;
  overflow-x: hidden;
  color: var(--text-black);
/*   height: 100%; */
  width: 100%;
  background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6, span, p {
  text-wrap: wrap;
  line-height: 100%;
}

ul {
  list-style-type: none !important;
	padding-left:0px !important;
}

a, a p {
  color: var(--text-black);
  text-decoration: none;
}
a:hover{
	color:var(--text-darkGreen) !important;
}
/* ===========================================
   BODY RESIZES BASED ON HEADER HEIGHT
   =========================================== */
body{
	padding-top:106px !important;
}
body.no-scroll {
  overflow-x: hidden;
}
@media screen and (max-width:1000px){
	body{
		padding-top:75px !important;
	}
}
/* ===========================================
   SCROLLBAR
   =========================================== */
@media screen and (min-width: 1201px) {
  ::-webkit-scrollbar {
    width: 12px;
  }

  ::-webkit-scrollbar-track {
    background: #f1f1f1;
  }

  ::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 14px;
  }

  ::-webkit-scrollbar-thumb:hover {
    background: #555;
  }
}
 
/* ===========================================
   TEXT/ COLOR UTILITIES
   =========================================== */
/* ─── Background Colors ─── */
.bg-gray {
  background-color: var(--bg-gray);
}

.bg-black {
  background-color: var(--bg-black);
}

.bg-white {
  background-color: var(--bg-white);
}

.bg-darkGreen {
  background-color: var(--bg-darkGreen);
}

.bg-lineGreen {
  background-color: var(--bg-lineGreen);
}

.bg-lightGreen {
  background-color: var(--bg-lightGreen);
}

.bg-yellow {
  background-color: var(--bg-yellow);
}

.bg-pink {
  background-color: var(--bg-pink);
}

.bg-watermarkGreen {
  background-color: var(--bg-watermarkGreen);
}

/* ─── Text Colors ─── */
.text-gray {
  color: var(--text-gray);
}

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

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

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

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

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

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

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

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

/* ─── Box Shadow ─── */
.shadow-green {
  box-shadow: var(--box-shadow-green);
}

/* ─── Fonts ─── */
.font-roboto {
  font-family: "Roboto";
}

.font-noto {
  font-family: "Noto Sans JP";
}

.font-mon {
  font-family: "Montserrat";
}

/* ===========================================
   GAP (px-based)
   =========================================== */
.gap-0px {
  gap: 0px;
}

.gap-2px {
  gap: 2px;
}

.gap-3px {
  gap: 3px;
}

.gap-5px {
  gap: 5px;
}

.gap-6px {
  gap: 6px;
}

.gap-7px {
  gap: 7px;
}

.gap-8px {
  gap: 8px;
}

.gap-10px {
  gap: 10px;
}

.gap-12px {
  gap: 12px;
}

.gap-14px {
  gap: 14px;
}

.gap-15px {
  gap: 15px;
}

.gap-16px {
  gap: 16px;
}

.gap-17px {
  gap: 17px;
}

.gap-18px {
  gap: 18px;
}

.gap-20px {
  gap: 20px;
}

.gap-24px {
  gap: 24px;
}

.gap-25px {
  gap: 25px;
}

.gap-26px {
  gap: 26px;
}

.gap-29px {
  gap: 29px;
}

.gap-30px {
  gap: 30px;
}

.gap-32px {
  gap: 32px;
}

.gap-34px {
  gap: 34px;
}

.gap-38px {
  gap: 38px;
}

.gap-40px {
  gap: 40px;
}

.gap-44px {
  gap: 44px;
}

.gap-45px {
  gap: 45px;
}

.gap-48px {
  gap: 48px;
}

.gap-50px {
  gap: 50px;
}

.gap-54px {
  gap: 54px;
}

.gap-55px {
  gap: 55px;
}

.gap-59px {
  gap: 59px;
}

.gap-60px {
  gap: 60px;
}

.gap-63px {
  gap: 63px;
}

.gap-70px {
  gap: 70px;
}

.gap-75px {
  gap: 75px;
}

.gap-80px {
  gap: 80px;
}

.gap-84px {
  gap: 84px;
}

.gap-90px {
  gap: 90px;
}

.gap-100px {
  gap: 100px;
}

.gap-124px {
  gap: 124px;
}

.gap-150px {
  gap: 150px;
}

/* ===========================================
   FONT SIZE (px-based)
   =========================================== */
.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-20 {
  font-size: 20px;
}

.fs-22 {
  font-size: 22px;
}

.fs-24 {
  font-size: 24px;
}

.fs-26 {
  font-size: 26px;
}

.fs-28 {
  font-size: 28px;
}

.fs-30 {
  font-size: 30px;
}

.fs-32 {
  font-size: 32px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

.fs-38 {
  font-size: 38px;
}

.fs-40 {
  font-size: 40px;
}

.fs-46 {
  font-size: 46px;
}

.fs-48 {
  font-size: 48px;
}

.fs-50 {
  font-size: 50px;
}

.fs-54 {
  font-size: 54px;
}

.fs-56 {
  font-size: 56px;
}

.fs-64 {
  font-size: 64px;
}

.fs-122 {
  font-size: 122px;
}

/* ===========================================
   LINE HEIGHT (px-based or unitless)
   =========================================== */
.lh-normal {
  line-height: normal;
}

.lh-5 {
  line-height: 0.05em;
}

.lh-10 {
  line-height: 0.1em;
}

.lh-15 {
  line-height: 0.15em;
}

.lh-20 {
  line-height: 0.2em;
}

.lh-21 {
  line-height: 0.21em;
}

.lh-25 {
  line-height: 0.25em;
}

.lh-26 {
  line-height: 0.26em;
}

.lh-30 {
  line-height: 0.3em;
}

.lh-40 {
  line-height: 0.4em;
}

.lh-50 {
  line-height: 0.5em;
}

.lh-75 {
  line-height: 0.75em;
}

.lh-100 {
  line-height: 1em;
}

.lh-120 {
  line-height: 1.2em;
}

.lh-130 {
  line-height: 1.3em;
}

.lh-140 {
  line-height: 1.4em;
}

.lh-150 {
  line-height: 1.5em;
}

.lh-160 {
  line-height: 1.6em;
}

.lh-170 {
  line-height: 1.7em;
}

.lh-180 {
  line-height: 1.8em;
}

.lh-200 {
  line-height: 2em;
}

/* ===========================================
   FONT WEIGHT (px-based or unitless)
   =========================================== */
.fw-100 {
  font-weight: 100;
}

.fw-200 {
  font-weight: 200;
}

.fw-300 {
  font-weight: 300;
}

.fw-350 {
  font-weight: 350;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-550 {
  font-weight: 550;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fw-900 {
  font-weight: 900;
}

/* ===========================================
   LETTER SPACING (in em, generated)
   =========================================== */
.ls-2 {
  letter-spacing: 0.02em;
}

.ls-3 {
  letter-spacing: 0.03em;
}

.ls-4 {
  letter-spacing: 0.04em;
}

.ls-5 {
  letter-spacing: 0.05em;
}

.ls-7 {
  letter-spacing: 0.07em;
}

.ls-8 {
  letter-spacing: 0.08em;
}

.ls-10 {
  letter-spacing: 0.1em;
}

.ls-15 {
  letter-spacing: 0.15em;
}

.ls-20 {
  letter-spacing: 0.2em;
}

.ls-25 {
  letter-spacing: 0.25em;
}

.ls-30 {
  letter-spacing: 0.3em;
}

.ls-40 {
  letter-spacing: 0.4em;
}

.ls-50 {
  letter-spacing: 0.5em;
}

/* ===========================================
   DISPLAY
   =========================================== */
.d-flex {
  display: flex;
}

.d-inline-flex {
  display: inline-flex;
}

.d-block {
  display: block;
}

.d-inline {
  display: inline;
}

.d-none {
  display: none;
}

/* ===========================================
   FLEX DIRECTION
   =========================================== */
.flex-row {
  flex-direction: row;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

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

.flex-column-reverse {
  flex-direction: column-reverse;
}

.flex-none {
  flex-direction: none;
}

/* ===========================================
   ALIGN ITEMS
   =========================================== */
.items-start {
  align-items: flex-start;
}

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

.items-end {
  align-items: flex-end;
}

.items-stretch {
  align-items: stretch;
}

.items-baseline {
  align-items: baseline;
}

/* ===========================================
   JUSTIFY ITEMS
   =========================================== */
.justify-start {
  justify-content: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-evenly {
  justify-content: space-evenly;
}

/* ===========================================
   TEXT ALIGN ITEMS
   =========================================== */
.text-left {
  text-align: left;
}

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

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

/* ===========================================
  WIDTH
   =========================================== */
.w-100 {
  width: 100%;
}

.w-50 {
  width: 50%;
}

.w-25 {
  width: 25%;
}

/* ===========================================
   POSITION
   =========================================== */
.rel {
  position: relative;
}

.abs {
  position: absolute;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
}

/* ===========================================
  BREAKPOINTS
   =========================================== */
.c-break-point {
  display: block;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  color: inherit;
}
.c-pc-display{
	display:block;
}
.c-sp-display{
	display:none;
}
/* Mobile: Stay on same line */
@media (max-width: 768px) {
  .c-break-point {
    display: inline;
  }
  .c-reverse-break-point {
    display: block;
  }
  .c-pc-display{
	display:none;
 }
  .c-sp-display{
	display:block;
  }
}
/* ===========================================
  HOVER
   =========================================== */
.c-text-link:hover {
  color: var(--text-darkGreen);
  transition: all 0.3s ease-in-out;
}

/* ===========================================
 LIGHTGREEN CURVE BG
   =========================================== */
.c-curve-wrapper {
  width: 100vw;
}

.c-bg-lightGreen-curve {
  width: 100%;
  transform-origin: center;
}

@media screen and (max-width: 1200px) {
  .c-bg-lightGreen-curve {
    transform: scale(1.5);
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .c-bg-lightGreen-curve {
    transform: scale(2);
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 650px) {
  .c-bg-lightGreen-curve {
    width: 100%;
    transform: scale(2.5);
    transform-origin: center;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 550px) {
  .c-bg-lightGreen-curve {
    width: 100%;
    transform: scale(1);
    transform-origin: center;
  }
}
/* ===========================================
   KEYFRAME ANIMATIONS
   =========================================== */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: translateX(-50%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
@keyframes subtlePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.1);
  }
  50% {
    transform: scale(1.01);
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes zoomJumpIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.05);
  }
  70% {
    transform: translate(-50%, -50%) scale(0.98);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes zoomJumpInBounce {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.3);
  }
  40% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1.1);
  }
  60% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  80% {
    transform: translate(-50%, -50%) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
@keyframes zoomJumpInSpring {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.6);
  }
  30% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.96);
  }
  70% {
    transform: translate(-50%, -50%) scale(1.03);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* ===========================================
   REVEAL CLASSES (Scroll Triggered)
   =========================================== */
/* Zoom Jump In - For centered elements (like .p-hero__title) */
.reveal-zoom-jump-in {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform, opacity;
  backface-visibility: hidden; /* Prevents blurriness during transform */
  -webkit-font-smoothing: antialiased; /* Keeps text crisp */
}

.reveal-zoom-jump-in.revealed {
  opacity: 1;
  transform: translate(-45%, -50%, 0); /* Hardware acceleration */
}

/* Fade In Up - For elements that fade and slide up */
.reveal-fade-in-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: transform, opacity;
}

.reveal-fade-in-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Scale In - For elements that scale in */
.reveal-scale-in {
  opacity: 0;
  transform: scale(0.92);
  transition: all 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform, opacity;
}

.reveal-scale-in.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Slide In Right - For elements sliding from right */
.reveal-slide-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: transform, opacity;
}

.reveal-slide-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Slide In Left - For elements sliding from left */
.reveal-slide-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: transform, opacity;
}

.reveal-slide-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Fade Scale - For centered elements that fade and scale */
.reveal-fade-scale {
  opacity: 0;
  transform: translateX(-50%) scale(0.8);
  transition: all 0.5s ease;
  will-change: transform, opacity;
  display: inline-block;
}

.reveal-fade-scale.revealed {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* Zoom Jump - For inline elements that zoom in place */
.reveal-zoom-jump {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s cubic-bezier(0.34, 1.2, 0.64, 1);
  will-change: transform, opacity;
  display: inline-block;
}

.reveal-zoom-jump.revealed {
  opacity: 1;
  transform: scale(1);
}

/* Zoom Bounce - For elements with bounce effect */
.reveal-zoom-bounce {
  opacity: 0;
  transform: scale(0.5);
  will-change: transform, opacity;
  display: inline-block;
}

.reveal-zoom-bounce.revealed {
  animation: zoomJumpInBounce 0.8s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

/* Zoom Spring - For elements with spring effect */
.reveal-zoom-spring {
  opacity: 0;
  transform: scale(0.5);
  will-change: transform, opacity;
  display: inline-block;
}

.reveal-zoom-spring.revealed {
  animation: zoomJumpInSpring 0.8s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

/* Reveal Pulse - For elements that pulse */
.reveal-pulse {
  will-change: transform;
}

.reveal-pulse.revealed {
  animation: subtlePulse 0.6s ease forwards;
}

/* Basic Reveal - Simple fade up */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Reveal Left - Slide from left */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal Right - Slide from right */
.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.8s cubic-bezier(0.23, 1, 0.32, 1), transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Reveal Scale - Scale in */
.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform, opacity;
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ===========================================
   DELAYS
   =========================================== */
.reveal-delay-1.revealed,
.reveal-left.reveal-delay-1.revealed,
.reveal-right.reveal-delay-1.revealed,
.reveal-scale.reveal-delay-1.revealed,
.reveal-zoom-jump-in.reveal-delay-1.revealed,
.reveal-fade-in-up.reveal-delay-1.revealed,
.reveal-scale-in.reveal-delay-1.revealed,
.reveal-slide-right.reveal-delay-1.revealed,
.reveal-slide-left.reveal-delay-1.revealed,
.reveal-fade-scale.reveal-delay-1.revealed,
.reveal-zoom-jump.reveal-delay-1.revealed,
.reveal-zoom-bounce.reveal-delay-1.revealed,
.reveal-zoom-spring.reveal-delay-1.revealed {
  transition-delay: 0.1s;
  animation-delay: 0.1s;
}

.reveal-delay-2.revealed,
.reveal-left.reveal-delay-2.revealed,
.reveal-right.reveal-delay-2.revealed,
.reveal-scale.reveal-delay-2.revealed,
.reveal-zoom-jump-in.reveal-delay-2.revealed,
.reveal-fade-in-up.reveal-delay-2.revealed,
.reveal-scale-in.reveal-delay-2.revealed,
.reveal-slide-right.reveal-delay-2.revealed,
.reveal-slide-left.reveal-delay-2.revealed,
.reveal-fade-scale.reveal-delay-2.revealed,
.reveal-zoom-jump.reveal-delay-2.revealed,
.reveal-zoom-bounce.reveal-delay-2.revealed,
.reveal-zoom-spring.reveal-delay-2.revealed {
  transition-delay: 0.2s;
  animation-delay: 0.2s;
}

.reveal-delay-3.revealed,
.reveal-left.reveal-delay-3.revealed,
.reveal-right.reveal-delay-3.revealed,
.reveal-scale.reveal-delay-3.revealed,
.reveal-zoom-jump-in.reveal-delay-3.revealed,
.reveal-fade-in-up.reveal-delay-3.revealed,
.reveal-scale-in.reveal-delay-3.revealed,
.reveal-slide-right.reveal-delay-3.revealed,
.reveal-slide-left.reveal-delay-3.revealed,
.reveal-fade-scale.reveal-delay-3.revealed,
.reveal-zoom-jump.reveal-delay-3.revealed,
.reveal-zoom-bounce.reveal-delay-3.revealed,
.reveal-zoom-spring.reveal-delay-3.revealed {
  transition-delay: 0.3s;
  animation-delay: 0.3s;
}

.reveal-delay-4.revealed {
  transition-delay: 0.4s;
  animation-delay: 0.4s;
}

.reveal-delay-5.revealed {
  transition-delay: 0.5s;
  animation-delay: 0.5s;
}

.reveal-delay-6.revealed {
  transition-delay: 0.6s;
  animation-delay: 0.6s;
}

.reveal-delay-7.revealed {
  transition-delay: 0.7s;
  animation-delay: 0.7s;
}

.reveal-delay-8.revealed {
  transition-delay: 0.8s;
  animation-delay: 0.8s;
}

.reveal-delay-9.revealed {
  transition-delay: 0.9s;
  animation-delay: 0.9s;
}

.reveal-delay-10.revealed {
  transition-delay: 1s;
  animation-delay: 1s;
}

/* Optional: Subtle blur effect for extra smoothness */
/*WHEEL ROTATION*/
@keyframes rotateWheelLeft {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes rotateWheelRight {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/*CAR ANIMATIONS*/
@keyframes moveCar {
  0% {
    transform: translateX(0);
  }
  20% {
    transform: translateX(-100px);
  }
  50% {
    transform: translateX(-400px);
  }
  70% {
    transform: translateX(-600px);
  }
  70% {
    transform: translateX(-700px);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes bounceCar {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-15px) rotate(-5deg);
  }
  50% {
    transform: translateY(0) rotate(0deg);
  }
  75% {
    transform: translateY(-8px) rotate(5deg);
  }
}
.bounceCar {
  animation: bounceCar 1.2s ease-in-out infinite;
  display: inline-block;
}

.moveCar {
  animation: moveCar 9s ease-in-out infinite;
  display: inline-block;
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-35px); /* moves upward smoothly, then resets */
  }
}
@keyframes gentleSway {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    transform: translateY(-35px) rotate(3deg);
  }
}
.balloon {
  animation: floatUpDown 3.8s ease-in-out infinite alternate, gentleSway 5s ease-in-out infinite alternate;
  display: inline-block;
}

@keyframes driftCloudRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(100px);
  }
  80% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0px);
  }
}
/* Moving from right to left */
@keyframes driftCloudLeft {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0px);
  }
}
.cloud-left {
  animation: driftCloudLeft 45s infinite linear;
}

.cloud-right {
  animation: driftCloudRight 45s infinite linear;
}

/*=========================================================================================
TITLE FORMATTING
=========================================================================================== */
.c-section__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.c-section__title p {
  color: var(--text-white);
  font-size: 24px;
  font-weight: 500;
  font-family: "Roboto";
  background-color: var(--bg-darkGreen);
  padding: 7px 30px;
  border-radius: 40px;
}

.c-section__title h2,
.c-section__title span {
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.05em;
  line-height: 130%;
  color: var(--bg-darkGreen);
  text-align: center;
}

.c-section-block{
  color: var(--text-white);
  font-size: 44px;
  font-weight: 900;
  letter-spacing: 0.05em;
  background-color: var(--bg-darkGreen);
  border-radius: 12px;
  padding: 15px 50px;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 95%;
}
.c-section-block span{
	font-size:44px;
	font-weight:900;
	letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-section__title h2,
  .c-section__title span {
    font-size: 25px;
  }
  .c-section__title p {
    font-size: 14px;
    padding: 7px 20px;
  }
  .c-section-block {
    padding: 8px 14px;
    border-radius: 8px;
  }
	.c-section-block{
		font-weight:700;
	}
	.c-section-block span{
		font-size:22px;
	  font-weight:700;
	}	
		
}
@media screen and (max-width: 550px) {
  .c-section-block {
    max-width: 281px;
  }
}
/* ===========================================
  BUTTONS
   =========================================== */
.btn-riffle-base {
  position: relative;
  overflow: hidden;
  transition-duration: 0.4s;
  z-index: 2;
}

.btn-riffle-base::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: height 0.4s ease;
  z-index: 0;
}

.btn-riffle-base:hover::before {
  height: 100%;
}

.btn-riffle-base:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

/* Riffle effect colors */
.btn-riffle-green::before {
  background: var(--bg-white);
}

.btn-riffle-darkGreen::before {
  background: var(--bg-white);
}

.btn-riffle-pink::before {
  background: var(--bg-white);
}

.btn-riffle-yellow::before {
  background: var(--bg-white);
}

/* ===========================================
   BUTTON GREEN
   =========================================== */
.c-btn-green {
  background-color: var(--bg-lineGreen);
  border-radius: 40px;
  padding: 18px 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-lineGreen);
  min-width: 274px;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition-duration: 0.4s;
  z-index: 2;
}
.c-btn-green p{
	color:var(--text-white);
}
/* Riffle effect */
.c-btn-green::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 40px;
}

.c-btn-green:hover::before {
  height: 100%;
}

.c-btn-green:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn__wrapper {
  background-color: var(--bg-white);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.c-btn-green:hover p {
  color: var(--text-lineGreen) !important;
  position: relative;
  z-index: 2;
}

.c-btn-green:hover img {
  filter: brightness(0) saturate(100%) invert(45%) sepia(79%) saturate(1018%) hue-rotate(96deg) brightness(89%) contrast(101%);
  position: relative;
  z-index: 2;
}

.c-btn-green:hover .c-btn__wrapper {
  background-color: var(--bg-lineGreen);
}

.c-btn-green:hover .c-btn__wrapper img {
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(984%) hue-rotate(102deg) brightness(112%) contrast(100%);
}

/* ===========================================
   BUTTON DARK GREEN
   =========================================== */
.c-btn-darkGreen {
  background-color: var(--bg-darkGreen);
  border-radius: 40px;
  padding: 18px 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-darkGreen);
  min-width: 274px;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition-duration: 0.4s;
  z-index: 2;
}
.c-btn-darkGreen p{
	color:var(--text-white);
}
/* Riffle effect */
.c-btn-darkGreen::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 40px;
}

.c-btn-darkGreen:hover::before {
  height: 100%;
}

.c-btn-darkGreen:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn__wrapper-darkGreen {
  background-color: var(--bg-white);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.c-btn-darkGreen:hover p {
  color: var(--text-darkGreen);
  position: relative;
  z-index: 2;
}

.c-btn-darkGreen:hover img {
  filter: brightness(0) saturate(100%) invert(21%) sepia(13%) saturate(4811%) hue-rotate(124deg) brightness(94%) contrast(103%);
  position: relative;
  z-index: 2;
}

.c-btn-darkGreen:hover .c-btn__wrapper-darkGreen {
  background-color: var(--bg-darkGreen);
}

.c-btn-darkGreen:hover .c-btn__wrapper-darkGreen img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(88%) saturate(1%) hue-rotate(53deg) brightness(106%) contrast(101%);
}

/* ===========================================
   BUTTON PINK
   =========================================== */
.c-btn-pink {
  background-color: var(--bg-pink);
  border-radius: 40px;
  padding: 18px 24px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bg-pink);
  min-width: 274px;
  color: var(--text-white);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition-duration: 0.4s;
  z-index: 2;
}
.c-btn-pink p{
	color:var(--text-white);
}
/* Riffle effect */
.c-btn-pink::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 40px;
}

.c-btn-pink:hover::before {
  height: 100%;
}

.c-btn-pink:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn__wrapper-pink {
  background-color: var(--bg-white);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.c-btn-pink:hover p {
  color: var(--text-pink) !important;
  position: relative;
  z-index: 2;
}

.c-btn-pink:hover img {
  filter: brightness(0) saturate(100%) invert(13%) sepia(85%) saturate(7213%) hue-rotate(331deg) brightness(102%) contrast(103%);
  position: relative;
  z-index: 2;
}

.c-btn-pink:hover .c-btn__wrapper-pink {
  background-color: var(--bg-pink);
}

.c-btn-pink:hover .c-btn__wrapper-pink img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(88%) saturate(1%) hue-rotate(53deg) brightness(106%) contrast(101%);
}

/* ===========================================
   BUTTON YELLOW HALF (with riffle effect)
   =========================================== */
.c-btn-yellow-half {
  background: var(--bg-yellow);
  display: inline-block;
  color: var(--text-black);
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
  padding: 16px 30px;
  min-width: 248px;
  box-shadow: 5px 4px 0px 0px rgb(0, 26, 18);
  text-align: center;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition-duration: 0.4s;
  z-index: 2;
}

/* Riffle effect for yellow button */
.c-btn-yellow-half::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-top-right-radius: 100px;
  border-bottom-right-radius: 100px;
}

.c-btn-yellow-half:hover::before {
  height: 100%;
}

.c-btn-yellow-half:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn-yellow-half:hover {
  color: var(--text-black);
  box-shadow: 5px 4px 0px 0px var(--bg-yellow);
}

.c-btn-yellow-half:hover p {
  position: relative;
  z-index: 2;
}

/* ===========================================
   BUTTON YELLOW BORDER
   =========================================== */
.c-btn-yellow-border {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  min-width: 215px;
  background-color: var(--bg-yellow);
  width: -moz-fit-content;
  width: fit-content;
  border: 4px solid var(--bg-darkGreen);
  border-radius: 40px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.3s ease;
}

/* Riffle effect for yellow border button */
.c-btn-yellow-border::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 40px;
}

.c-btn-yellow-border:hover::before {
  height: 100%;
}

.c-btn-yellow-border:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn-yellow-border p {
  color: var(--text-darkGreen);
  font-weight: 700 !important;
  font-size: 18px;
  position: relative;
  z-index: 2;
  transition: color 0.3s ease;
}

.c-btn-yellow-border:hover p {
  color: var(--text-darkGreen);
}

.c-btn__wrapper-yellow-border {
  background-color: var(--bg-darkGreen);
  border-radius: 50%;
  height: 20px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: background-color 0.3s ease;
}

.c-btn-yellow-border:hover .c-btn__wrapper-yellow-border {
  background-color: var(--bg-darkGreen);
}

.c-btn-yellow-border .c-btn__wrapper-yellow-border img {
  position: relative;
  z-index: 2;
  transition: filter 0.3s ease;
}

.c-btn-yellow-border:active {
  transform: scale(0.98);
}

.c-btn__yellow-borderyellow {
  border: 2px solid var(--bg-yellow) !important;
  padding: 12px 15px !important;
  min-width: 139px !important;
}

.c-btn__yellow-borderyellow:hover img {
  filter: var(--filter-green);
}

/* ===========================================
   RECTANGLE BUTTONS
   =========================================== */
/* ===========================================
   1. GREEN BUTTONS
   =========================================== */
.c-btn-rect-green {
  background-color: var(--bg-lineGreen);
  border-radius: 8px;
  position: relative;
  padding: 26px 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0px 6px 0px 0px rgb(0, 54, 12);
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid var(--bg-lineGreen);
}

.c-btn-rect-green p {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--text-white);
}

.c-btn-rect-green::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 8px;
}

.c-btn-rect-green:hover::before {
  height: 100%;
}

.c-btn-rect-green:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn-rect-green:hover p {
  color: var(--text-lineGreen);
  position: relative;
  z-index: 2;
}

.c-btn-rect-green:hover img {
  filter: var(--filter-lineGreen);
  z-index: 2;
}

.c-btn-rect-green:hover .c-btn__wrapper-darkGreen {
  background-color: var(--bg-darkGreen);
}

/* ===========================================
   2. PINK BUTTONS
   =========================================== */
.c-btn-rect-pink {
  background-color: var(--bg-pink);
  border-radius: 8px;
  position: relative;
  padding: 26px 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  box-shadow: 0px 6px 0px 0px rgb(66, 0, 26);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border: 2px solid var(--bg-pink);
}

.c-btn-rect-pink p {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--text-white);
}

.c-btn-rect-pink p span {
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 0.05em;
}

.c-btn-rect-pink::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 8px;
}

.c-btn-rect-pink:hover::before {
  height: 100%;
}

.c-btn-rect-pink:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn-rect-pink:hover p {
  color: var(--text-pink);
  position: relative;
  z-index: 2;
}

.c-btn-rect-pink:hover img {
  filter: var(--filter-pink);
  z-index: 2;
}

/* ===========================================
   3. YELLOW RECT BUTTONS
   =========================================== */
.c-btn-rect-yellow {
  background-color: var(--bg-yellow);
  border-radius: 8px;
  position: relative;
  padding: 26px 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0px 6px 0px 0px rgb(26, 21, 0);
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid var(--bg-yellow);
}

.c-btn-rect-yellow p {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--text-darkGreen);
}

.c-btn-rect-yellow::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 8px;
}

.c-btn-rect-yellow:hover::before {
  height: 100%;
}

.c-btn-rect-yellow:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn-rect-yellow:hover p {
  color: var(--text-darkGreen);
  position: relative;
  z-index: 2;
}

.c-btn-rect-yellow:hover img {
  filter: var(--filter-green);
  z-index: 2;
}

/* ===========================================
   4. LINE GREEN BUTTONS
   =========================================== */
.c-btn-rect-lineGreen {
  background-color: var(--bg-lineGreen);
  border-radius: 8px;
  position: relative;
  padding: 26px 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0px 6px 0px 0px rgb(0, 54, 12);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border: 2px solid var(--bg-lineGreen);
}

.c-btn-rect-lineGreen p {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--text-white);
}

.c-btn-rect-lineGreen p span {
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 0.05em;
}

.c-btn-rect-lineGreen::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 8px;
}

.c-btn-rect-lineGreen:hover::before {
  height: 100%;
}

.c-btn-rect-lineGreen:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn-rect-lineGreen:hover p {
  color: var(--text-lineGreen);
  position: relative;
  z-index: 2;
}

.c-btn-rect-lineGreen:hover img {
  filter: var(--filter-lineGreen);
  z-index: 2;
}

/* ===========================================
   4. DARK GREEN RECT BUTTONS
   =========================================== */
.c-btn-rect-darkGreen {
  background-color: var(--bg-darkGreen);
  border-radius: 8px;
  position: relative;
  padding: 26px 40px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  box-shadow: 0px 6px 0px 0px rgb(0, 54, 12);
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border: 2px solid var(--bg-darkGreen);
}

.c-btn-rect-darkGreen p {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--text-white);
}

.c-btn-rect-darkGreen p span {
  font-size: 14px;
  margin-top: 5px;
  letter-spacing: 0.05em;
}

.c-btn-rect-darkGreen::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 8px;
}

.c-btn-rect-darkGreen:hover::before {
  height: 100%;
}

.c-btn-rect-darkGreen:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

.c-btn-rect-darkGreen:hover p {
  color: var(--text-darkGreen);
  position: relative;
  z-index: 2;
}

.c-btn-rect-darkGreen:hover img {
  filter: var(--filter-green);
  z-index: 2;
}

/* ===========================================
   BUTTON NORMAL VARIANT
   =========================================== */
.c-btn-normal {
  border-radius: 8px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 320px;
}

/* Override border-radius for normal buttons */
.c-btn-green.c-btn-normal,
.c-btn-pink.c-btn-normal,
.c-btn-darkGreen.c-btn-normal {
  border-radius: 8px;
}

.c-btn-green.c-btn-normal::before,
.c-btn-pink.c-btn-normal::before,
.c-btn-darkGreen.c-btn-normal::before {
  border-radius: 8px;
}

.c-btn-normal p img {
  margin-right: 8px;
  margin-top:-8px;
}

.c-btn-normal p span {
  margin-top: 6px;
  display: block;
  font-size:14px;
}

/* ===========================================
   BUTTON HOVER TRANSITIONS
   =========================================== */
.c-btn-green,
.c-btn-darkGreen,
.c-btn-pink,
.c-btn-yellow-half {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.c-btn-green:active,
.c-btn-darkGreen:active,
.c-btn-pink:active,
.c-btn-yellow-half:active {
  transform: scale(0.98);
}

/* Ensure content stays above riffle effect */
.c-btn-green > *,
.c-btn-darkGreen > *,
.c-btn-pink > *,
.c-btn-yellow-half > * {
  position: relative;
  z-index: 2;
}

/* ===========================================
   ACTION BUTTONS
   =========================================== */
/* ===========================================
 1. CLEAR BUTTONS
 =========================================== */
.c-btn--clear {
  background-color: rgba(51, 51, 51, 0.1);
  letter-spacing: 0.05em;
  border-radius: 4px;
  padding: 20px 30px;
  color: var(--text-black);
  box-shadow: 0px 2px 5px 0px rgba(51, 51, 51, 0.2);
  text-align: center;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}

.c-btn--clear span,
.c-btn--clear p,
.c-btn--clear .btn-text {
  position: relative;
  z-index: 2;
  color: var(--text-black);
  font-size: 20px;
  font-weight: 700;
}

.c-btn--clear::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-darkGreen);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 4px;
}

.c-btn--clear:hover {
  color: var(--bg-darkGreen) !important;
}

.c-btn--clear:hover span {
  color: var(--text-white);
}

.c-btn--clear:hover::before {
  height: 100%;
}

.c-btn--clear:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

/* ===========================================
 2. SEARCH BUTTONS
 =========================================== */
.c-btn--search {
  background-color: var(--bg-darkGreen);
  letter-spacing: 0.05em;
  border-radius: 4px;
  padding: 20px 30px;
  color: var(--text-white);
  box-shadow: 0px 2px 5px 0px rgba(51, 51, 51, 0.2);
  text-align: center;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 220px;
  border: 2px solid var(--bg-darkGreen);
}

.c-btn--search > * {
  position: relative;
  z-index: 2;
}

.c-btn--search span {
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: 0.05em;
  font-size: 20px;
  transition: color 0.3s ease;
}

.c-btn--search img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
  position: relative;
  z-index: 2;
}

.c-btn--search::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-white);
  transition: height 0.4s ease;
  border-radius: 4px;
}

.c-btn--search:hover span {
  color: var(--text-darkGreen);
}

.c-btn--search:hover img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(36%) saturate(3130%) hue-rotate(138deg) brightness(93%) contrast(101%);
}

.c-btn--search:hover::before {
  height: 100%;
}

.c-btn--search:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.4s ease;
}

/* ===========================================
   BUTTON BORDER
   =========================================== */
.c-btn-border-green {
  box-shadow: 0px 6px 0px 0px rgb(0, 54, 12);
}

/* ===========================================
   SPEECH BUBBLE
   =========================================== */
/* ===========================================
   1. YELLOW SPEECH BUBBLE
   =========================================== */
.c-bubble-yellow {
  position: relative;
  display: inline-block;
  background: var(--bg-yellow);
  border-radius: 999px;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  white-space: normal;
  max-width: 100%;
  margin: 0 auto;
  line-height:130%;
}
.c-bubble-yellow span{
	font-weight: 700;
	line-height:150%;

}
.c-bubble-yellow::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--bg-yellow);
}
@media screen and (max-width:767px){
	.c-car-slug__form .c-bubble-yellow {
		padding:12px 32px;
	}
}
/* ===========================================
   2. GREEN SPEECH BUBBLE
   =========================================== */
.c-bubble-green {
  position: relative;
  display: inline-block;
  background: var(--bg-darkGreen);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 38px;
  font-weight: 700;
  color: var(--text-white);
  white-space: normal;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  line-height: 130%;
}

.c-bubble-green::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--bg-darkGreen);
}

/* ===========================================
   3. GREEN SPEECH BUBBLE SMALL
   =========================================== */
.c-bubble-green-small {
  position: relative;
  display: inline-block;
  background: var(--bg-darkGreen);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
  white-space: normal;
  max-width: 100%;
  margin: 0 auto;
  text-wrap: nowrap;
}

.c-bubble-green-small::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--bg-darkGreen);
}

/* ===========================================
   3. PINK SPEECH BUBBLE SMALL
   =========================================== */
.c-bubble-pink-small {
  position: relative;
  display: inline-block;
  background: var(--bg-yellowWhite);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-pink);
  white-space: normal;
  max-width: 100%;
  margin: 0 auto;
  text-wrap: nowrap;
}

.c-bubble-pink-small::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 15px solid var(--bg-yellowWhite);
}

@media screen and (max-width: 767px) {
  .c-bubble-green {
    font-size: 23px;
    max-width: 343px;
    text-align: center;
    line-height: 140%;
    padding-left: 30px;
    padding-right: 30px;
  }
  .c-bubble-yellow {
    font-size: 16px;
  }
  .c-btn-border-green p {
    font-size: 16px !important;
  }
  .c-btn-yellow-border p {
    font-size: 16px;
  }
}
/*=========================================================================================
HEADER
=========================================================================================== */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 28px;
  background-color: var(--bg-white);
}

.logo {
  font-family: "Noto Serif JP", serif;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.14em;
  color: #fff;
  text-decoration: none;
  z-index: 10;
}

.c-header__wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.menu-btn {
  position: relative;
  z-index: 600;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border-radius: 8px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-btn::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--bg-darkGreen);
  transition: height 0.4s ease;
  z-index: 0;
  border-radius: 8px;
}

.menu-btn:hover::before {
  height: 100%;
  bottom: 0;
}

.menu-btn:not(:hover)::before {
  bottom: auto;
  top: 0;
  transition: height 0.3s ease;
}

.menu-btn:active {
  transform: scale(0.75);
  transition: transform 0.1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-btn:hover .c-btn-label__menu {
  filter: brightness(0) saturate(100%) invert(100%);
}

.menu-btn:hover .c-btn-label__close {
  filter: brightness(0) saturate(100%) invert(100%);
}

.c-btn-label {
  overflow: hidden;
  position: relative;
  display: block;
  width: 52px;
  height: 56px;
  flex-shrink: 0;
}

.c-btn-label__menu,
.c-btn-label__close {
  display: block;
  width: 100%;
  height: 100%;
  color: var(--green-dark);
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.18, 1), color 0.3s cubic-bezier(0.26, 0.06, 0, 1);
}

.c-btn-label__menu {
  transform: translateY(0);
}

.c-btn-label__close {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(110%);
  transition: transform 0.42s cubic-bezier(0.77, 0, 0.18, 1), color 0.3s cubic-bezier(0.26, 0.06, 0, 1);
}

.menu-btn.is-open .c-btn-label__menu {
  transform: translateY(-110%);
}

.menu-btn.is-open .c-btn-label__close {
  transform: translateY(0);
}

.c-header__nav{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	gap:12px;
}
.c-header__nav__text{
	font-size:17px;
	color:var(--text-white);
	font-weight:700;
	letter-spacing:0.05em;
}
.c-nav-overlay__content__wrapper{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	gap:10px;
}
.c-nav-overlay__content__wrapper h2{
	font-size:28px;
	letter-spacing:0.05em;
	line-height:140%;
	font-weight:900;
}
/* ═══════════════════════════════════════════
   RIFFLE (rectangle top-right) + FADE
═══════════════════════════════════════════ */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 400;
  background-color: var(--bg-white);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  scrollbar-width: thin;
  pointer-events: none;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  transition: clip-path 0.68s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s ease, visibility 0s 0.68s;
  max-height: 620px;
  will-change: clip-path, opacity;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  transition: clip-path 0.68s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s ease, visibility 0s 0s;
}

.nav-overlay.is-closing {
  opacity: 0;
  pointer-events: none;
  border-bottom-right-radius: 100px;
  border-bottom-left-radius: 100px;
  clip-path: polygon(100% 0%, 100% 0%, 100% 0%, 100% 0%);
  transition: clip-path 0.55s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.45s ease, visibility 0s 0.58s;
}

/* ===========================================
   STAGGERED REVEAL EFFECT FOR NAV OVERLAY
   =========================================== */
/* Base styles for staggered elements */
.nav-overlay .p-overlay-logo,
.nav-overlay .c-nav-overlay__content > *,
.nav-overlay .c-nav-overlay__content .c-nav-overlay__content__wrapper:first-child,
.nav-overlay .c-nav-overlay__content nav:first-of-type,
.nav-overlay .c-nav-overlay__content .c-nav-links {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Logo - appears first */
.nav-overlay.is-open .p-overlay-logo {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.1s;
}

/* Heading and search section */
.nav-overlay.is-open .c-nav-overlay__content .c-nav-overlay__content__wrapper:first-child {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

/* Three buttons (first nav) */
.nav-overlay.is-open .c-nav-overlay__content nav:first-of-type {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.35s;
}

/* Navigation links list */
.nav-overlay.is-open .c-nav-overlay__content .c-nav-links {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Individual list items stagger */
.c-nav-links ul li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.nav-overlay.is-open .c-nav-links ul li {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for each list item */
.c-nav-links ul li:nth-child(1) {
  transition-delay: 0.55s;
}

.c-nav-links ul li:nth-child(2) {
  transition-delay: 0.59s;
}

.c-nav-links ul li:nth-child(3) {
  transition-delay: 0.63s;
}

.c-nav-links ul li:nth-child(4) {
  transition-delay: 0.67s;
}

.c-nav-links ul li:nth-child(5) {
  transition-delay: 0.71s;
}

.c-nav-links ul li:nth-child(6) {
  transition-delay: 0.75s;
}

.c-nav-links ul li:nth-child(7) {
  transition-delay: 0.79s;
}

.c-nav-links ul li:nth-child(8) {
  transition-delay: 0.83s;
}

.c-nav-links ul li:nth-child(9) {
  transition-delay: 0.87s;
}

.c-nav-links ul li:nth-child(10) {
  transition-delay: 0.91s;
}

.c-nav-links ul li:nth-child(11) {
  transition-delay: 0.95s;
}

.c-nav-links ul li:nth-child(12) {
  transition-delay: 0.99s;
}

/* Reset delays when closing */
.nav-overlay:not(.is-open) .p-overlay-logo,
.nav-overlay:not(.is-open) .c-nav-overlay__content > *,
.nav-overlay:not(.is-open) .c-nav-overlay__content .c-nav-overlay__content__wrapper:first-child,
.nav-overlay:not(.is-open) .c-nav-overlay__content nav:first-of-type,
.nav-overlay:not(.is-open) .c-nav-overlay__content .c-nav-links,
.nav-overlay:not(.is-open) .c-nav-links ul li {
  transition-delay: 0s !important;
}

/* ── NAV LINKS STYLES ── */
.c-nav-overlay__content {
  padding: 120px 16px 60px 16px;
}

.c-nav-overlay__content h2 {
  font-weight: 1000;
}

.p-overlay-search-wrapper {
  width: 100% !important;
  max-width: 600px !important;
}

.p-overlay-logo {
  position: fixed;
  left: 0px;
  top: 0px;
  width:calc(100% - 15px);
  padding:17px 20px 20px 28px;
  background-color:var(--bg-white);	
  display:flex;
  align-items:left;
}

.c-nav-links ul {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-nav-links ul li {
  transition: all 0.3s ease-in-out;
}

.c-nav-links ul li a {
  display: inline-flex;
  gap: 4px;
  align-items: flex-end;
  justify-content: center;
  color: var(--bg-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.c-nav-links ul li a p,
.c-nav-links ul li a img{
	transition:all 0.3s ease-in-out;
}

.c-nav-links ul li a:hover p{
  color:var(--text-darkGreen);
}
.c-nav-links ul li a:hover img{
  filter:var(--filter-green);
}

/*HEADER SEARCH*/
.c-search-wrapper {
  display: flex;
  align-items: stretch;
  width: 420px;
  height: 52px;
  border: 1.5px solid var(--bg-black);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-white);
  max-width: 300px;
}

.c-text-input {
  flex: 1;
  padding: 0 18px;
  color: var(--bg-black);
  background: transparent;
  border: none;
  outline: none;
  font-family: inherit;
  font-size: 18px;
  font-weight: 700;
  font-family:'Roboto' !important;
}

.c-text-input::-moz-placeholder {
   color: rgba(51,51,51, 0.2) !important;
  font-size: 18px;
  font-weight: 700;
}

.c-text-input::placeholder {
  color: rgba(51,51,51, 0.2) !important;
  font-size: 18px;
  font-weight: 700;
}

.c-search-button {
  width: 56px;
  background: var(--bg-black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.15s;
}

.c-search-button:hover {
  background: #444;
}

.c-nav-overlay__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.c-nav-overlay__content__wrapper {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.c-nav-overlay__content2 {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.c-nav-overlay__content2__btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.c-nav-overlay__content2__btns p{
	font-size:22px;
	letter-spacing:0.05em;
	font-weight:700;
	text-align:center;
}
.c-nav-overlay__content2__btns p  span{
	font-size:13px;
}
.c-nav-links ul li a p{
	font-size:16px;
	font-weight:700;
	letter-spacing:0.05em;
}
@media screen and (max-width: 1280px) {
  
  .c-header__wrapper {
    gap: 30px;
  }
  .c-nav-overlay__content {
    padding: 100px 20px 25px 20px;
  }
  .c-nav-overlay__content2 {
    flex-direction: column-reverse;
  }
  .nav-overlay {
    height: 100vh;
    max-height: 100vh;
    border-bottom-right-radius: 20px !important;
    border-bottom-left-radius: 20px !important;
  }
  .nav-overlay .c-nav-car-sliderRight,
  .nav-overlay .c-nav-car-sliderLeft {
    height: 1000px !important;
  }
  .c-nav-overlay__content2__btns {
    flex-direction: column;
  }
  .c-nav-links ul {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-nav-overlay__content2__btns a {
    width: 100%;
  }
}
@media screen and (max-width:1250px){
	.c-header__nav .c-btn-green,
  .c-header__nav .c-btn-pink {
    display: none;
  }
}
@media screen and (max-width: 1000px) {
  header {
    padding: 8px 16px;
  }
  header .logo img,
  .logo .p-overlay-logo {
    width: 120px;
    max-width: 120px;
  }
  .p-overlay-logo {
    padding:17px 20px 20px 16px;
  }
  header .c-search-wrapper:not(.c-nav-overlay__content .c-search-wrapper) {
    display: none;
  }
  .c-btn-label {
    height: 39px;
    width: auto;
  }
}
@media screen and (max-width: 850px) {
  header .c-nav-car-sliderRight,
  header .c-nav-car-sliderLeft {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-nav-overlay__content {
    padding: 90px 20px 25px 20px;
  }
  .c-nav-overlay__content h2 {
    font-size: 22px;
  }
  .c-text-input {
    font-size: 15px;
  }
  .c-text-input::-moz-placeholder {
    font-size: 15px;
  }
  .c-text-input::placeholder {
    font-size: 15px;
  }
  .c-nav-links ul li a p {
    font-size: 14px;
  }
  .c-nav-links ul li a img {
    width: 12px;
    height: auto;
  }
  .c-nav-overlay__content2 {
    margin-top: 20px;
  }
  .c-nav-overlay__content2__btns {
    gap: 12px;
  }
  .c-nav-overlay__content2__btns .c-btn-normal {
    border-radius: 15px !important;
    max-width: 290px !important;
    min-width: 290px;
  }
  .c-nav-overlay__content2__btns .c-btn-normal p {
    font-size: 20px;
  }
  .c-nav-overlay__content2__btns .c-btn-normal p span {
    font-size: 12px;
    margin-top: 5px;
  }
  .c-nav-overlay__content2 {
    gap: 30px;
  }
  .c-nav-overlay__content2__btns .c-btn-normal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  }
  .nav-overlay.is-open .c-nav-overlay__content2__btns .c-btn-normal {
    opacity: 1;
    transform: translateY(0);
  }
  .c-nav-overlay__content2__btns .c-btn-normal:nth-child(1) {
    transition-delay: 0.45s;
  }
  .c-nav-overlay__content2__btns .c-btn-normal:nth-child(2) {
    transition-delay: 0.55s;
  }
  .c-nav-overlay__content2__btns .c-btn-normal:nth-child(3) {
    transition-delay: 0.65s;
  }
  .nav-overlay:not(.is-open) .c-nav-overlay__content2__btns .c-btn-normal {
    transition-delay: 0s !important;
  }
}
@media screen and (max-width:370px){
  .c-nav-links ul{
    column-gap:15px;
  }
}
/*=========================================================================================
FOOTER
=========================================================================================== */
footer{
	background-color:var(--bg-white)
}
.c-footer__bg {
  width: 100%;
}
.c-footer__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
/*   background-image: url("/funcars/wp-content/uploads/2026/03/bg_footer_stripes.svg"); */
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 16px 30px 16px;
  margin-top: -1px;
  gap: 100px;
}

.c-footer__container__desc {
  width: 100%;
  max-width: 1130px;
  background-color: var(--bg-white);
  padding-top: 60px;
  padding-bottom: 60px;
  padding-right: 16px;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 60px;
  position: relative;
  border-radius: 20px;
}

.c-footer__contact-icon {
  position: absolute;
  top: -50px;
  left: 270px;
}

.c-footer__contact-p-desc{
  margin-top: 20px;
  line-height:140%
  font-size:20px;
  font-weight:500;
  line-height:150%;
  letter-spacing:0.05em;
}
.c-footer__text-whirl{
  line-height:180%;
  font-size:20px;
  font-weight:500;
  line-height:150%;
  letter-spacing:0.05em;
}
.c-footer__text-whirl span {
  position: relative;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 150%;
  font-weight: 500;
}

.c-footer__text-whirl span svg {
  position: absolute;
  bottom: -5px;
  left: 10px;
}

.c-footer__nav ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.c-footer__nav ul li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}

.c-footer__nav .c-bubble-green-small,
.c-footer__nav .c-bubble-pink-small {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  z-index: 2;
}

.c-footer__container__desc2 {
  width: 100%;
  max-width: 1360px;
  background-color: var(--bg-white);
  border-radius: 40px;
  height: auto;
  padding: 60px 80px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  position: relative;
}

.c-car-red {
  position: absolute;
  top: -68px;
  left: 0px;
}

.c-car-black {
  position: absolute;
  top: -66px;
  right: 0px;
}

.c-footer__container__desc2__left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
}

.c-footer__container__desc2__left ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.c-footer__contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-footer__contact-details p {
  font-size: 16px;
  letter-spacing: 0.05em;
}

.c-footer__contact-details-link {
  display: row;
  flex-direction: row;
  gap: 20px;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-family: "Roboto";
  font-weight: 500;
}

.c-footer__contact-details-link img {
  margin-right: 5px;
  margin-top:-3px;
}
.c-footer__contact-details-link__address {
	margin-top:-10px;
}
.c-footer__sub-links a {
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--text-black);
}

.c-footer__contact-details .c-btn-darkGreen {
  margin-top: 20px;
}

.c-footer__contact-details .c-footer__sub-links {
  margin-top: 20px;
}

.c-footer__contact-details .c-footer__sub-links a {
  font-size: 13px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: var(--text-black);
}

.c-footer__container__desc2__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.c-footer__container__links-container {
  display: flex;
  flex-direction: row;
  gap: 25px;
}

.c-footer__nav-links ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 20px;
  -moz-column-gap: 20px;
       column-gap: 15px;
}

.c-footer__nav-links ul li a {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

.c-footer__nav-links ul li a p {
  line-height: 120%;
}

.c-footer__nav-links ul li a:hover {
  color: var(--text-darkGreen);
}
.c-footer__nav-links ul li a:hover p{
	color:var(--text-darkGreen);
}
.c-footer__nav-links ul li a:hover img {
  filter: var(--filter-green);
}

.c-footer__nav-btns {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.c-footer__nav-btns a {
  box-shadow: none;
  width: 100%;
  max-width: 340px;
  padding: 18px 22px;
}

.c-footer__nav-btns a p {
  font-size: 22px;
}
.c-footer__nav-btns a span {
  font-size: 14px;
	margin-top:4px;
}

.c-footer__copyright,
.c-footer__copyright span {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 140%;
}
.c-footer__container__content hgroup{
	margin-bottom:30px;
}
.c-footer__container__content hgroup h2{
	font-size:38px;
	font-weight:900;
	letter-spacing:0.05em;
	color:var(--text-darkGreen);
	margin-top:15px;
}
.c-footer__container__content hgroup p{
	font-size:24px;
	font-family:var(--font-roboto);
	font-weight:900;
	color:var(--text-darkGreen);
	letter-spacing:0.05em;
}
.c-btn-fc p{
	font-size:17px;
	color:var(--text-white);
	font-weight:700;
	letter-spacing:0.05em;
}
.c-footer__nav-links ul li a p{
	font-size:16px;
	font-weight:700;
	letter-spacing:0.05em;
}
.c-footer__nav-btns a p{
	font-size:22px;
	letter-spacing:0.05em;
	font-weight:700;
	text-align:center;
}
.c-footer__copyright span{
	font-size:11px;
	font-weight:500;
	letter-spacing:0.04em;
	line-height:140%;
}
@media screen and (max-width: 1300px) {
  .c-footer__container__desc2 {
    justify-content: space-between;
  }
  .c-footer__container__desc2__right {
    gap: 20px;
  }
  .c-footer__nav-links ul li a p{
	 font-size:14px;
  }	
  .c-footer__container__desc2{
		gap:10px;
  }
	.c-footer__container__desc2{
		padding:60px 50px;
	}
	
	
}

@media screen and (max-width:1200px){
	.c-footer__container__links-container {
    flex-direction: column;
  }
  .c-footer__container__desc2{
		gap:80px;
	   justify-content:center
  }
	
}
@media screen and (max-width: 1100px) {
  .c-footer__contact-icon {
    position: absolute;
    top: -50px;
    left: 150px;
  }
  .c-footer__container__desc2 {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
  }
  .c-footer__container__desc2__right {
    align-items: center;
    width: 100%;
  }
  .c-footer__container__desc2__left {
    align-items: center;
  }
  .c-footer__container__desc2__left {
    align-items: center;
    width: 100%;
  }
  .c-footer__container__desc2__left p,
  .c-footer__contact-details-link {
    text-align: center;
  }
  .c-footer__container__desc2__right {
    align-items: center;
    justify-content: center;
  }
  .c-footer__nav-btns {
    justify-content: center !important;
    width: 100%;
    padding: 0px;
  }
  .c-footer__nav-btns .c-btn-normal {
    width: 100% !important;
    max-width: 60px;
    margin: 0px auto;
    min-width: 360px;
    border-radius: 15px !important;
  }
  .c-footer__nav-links ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 24px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 1000px) {
  .c-footer__nav ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 900px) {
  .c-footer__contact-icon {
    width: 100px;
  }
}
@media screen and (max-width: 767px) {
  .c-footer__container {
    padding-top: 80px;
/*     background-image: url("/funcars/wp-content/uploads/2026/04/bg_footer_stripes_sp.svg"); */
  }
  .c-footer__contact-icon {
    width: 85px;
  }
  .c-footer__container hgroup p {
    font-size: 14px;
  }
  .c-footer__container hgroup h2 {
    font-size: 25px;
  }
  .c-footer__container__desc {
    padding-top: 30px;
  }
  .c-footer__contact-p-desc,
  .c-footer__text-whirl,
  .c-footer__text-whirl span {
    font-size: 14px;
  }
  .c-footer__text-whirl span svg {
    max-width: 145px;
    margin-left: 10px;
  }
  .c-footer__nav ul {
    gap: 50px;
  }
  .c-footer__container .c-btn-rect-green,
  .c-footer__container .c-btn-rect-pink,
  .c-footer__container .c-btn-rect-yellow {
    padding: 22px 20px;
    min-width: 275px;
    text-align: center;
  }
  .c-footer__container .c-btn-rect-green p,
  .c-footer__container .c-btn-rect-pink p,
  .c-footer__container .c-btn-rect-yellow p {
    font-size: 20px;
  }
  .c-footer__container__desc2__right {
    flex-direction: column-reverse;
  }
  .c-footer__nav-btns .c-btn-normal {
    width: 100% !important;
    max-width: 300px;
    margin: 0px auto;
    min-width: 280px;
    border-radius: 15px !important;
  }
  .c-footer__nav-btns .c-btn-normal p {
    font-size: 20px;
  }
  .c-footer__nav-btns .c-btn-normal span {
    font-size: 12px;
    margin-top: 2px;
  }
  .c-footer__container__desc2 {
    padding-top: 35px;
    padding-left: 16px;
    padding-right: 16px;
    padding-bottom: 25px;
    gap: 10px;
    border-radius: 20px;
  }
  .c-footer__nav-links ul li a p {
    font-size: 13px;
  }
  .c-footer__nav-links ul li a img {
    width: 12px;
    height: auto;
  }
  .c-footer__copyright,
  .c-footer__copyright span {
    text-align: center;
    line-height: 140%;
  }
  .c-footer__contact-details .c-footer__sub-links {
    margin-top: 10px;
  }
  .c-car-red {
    width: 83px;
    top: -30px;
  }
  .c-car-black {
    width: 119px;
    top: -30px;
  }
  .c-footer__text-whirl span svg{
	left:0px;
  }
  .c-footer__container__content hgroup{
	margin-bottom:20px;
}
.c-footer__container__content hgroup h2{
	margin-top:10px;
}
}
@media screen and (max-width: 600px) {
  .c-footer__contact-icon {
    left: 100px;
  }
}
@media screen and (max-width: 500px) {
  .c-footer__contact-icon {
    left: 20px;
  }
}

@media screen and (max-width:380px){
	.c-footer__container__desc{
		max-width:315px;
		padding-bottom:30px;
	}
}
/*=========================================================================================
CAR SLIDER HORIZONTAL
=========================================================================================== */
.c-nav-car-sliderHorizontal {
  position: relative;
  bottom: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Horizontal scroll animation - right to left direction */
@keyframes scrollHorizontalRightToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-750px);
  }
}
.c-slider-cars-horizontal {
  width: 100%;
  height: auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.c-slider-cars-horizontal .c-slider-cars-horizontal__track {
  animation: scrollHorizontalRightToLeft 25s linear infinite;
  display: flex;
  flex-direction: row;
  width: 1500px;
  height: 100%;
  gap: 30px;
  margin-left: 0;
}

.c-slider-cars-horizontal .c-slider-cars-horizontal__track__slide {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 30px;
}

.c-slider-cars-horizontal__track__slide img {
  width: auto !important;
  height: auto !important;
  max-width: -moz-fit-content !important;
  max-width: fit-content !important;
}

@media screen and (max-width: 767px) {
  .c-slider-cars-horizontal__track__slide img {
    height: 55px !important;
    width: auto;
  }
  .c-slider-cars-horizontal .c-slider-cars-horizontal__track {
    gap: 20px;
  }
}
/*=========================================================================================
CAR SLIDER LEFT
=========================================================================================== */
.c-nav-car-sliderLeft {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
  width: 93px;
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}

/* Vertical scroll animation - upward direction */
@keyframes scrollVerticalUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-750px);
  }
}
.c-slider-cars-left {
  height: 100%;
  width: 93px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-slider-cars-left::before {
  top: 0;
  left: 0;
}

.c-slider-cars-left::after {
  bottom: 0;
  left: 0;
  transform: rotateZ(180deg);
}

.c-slider-cars-left .c-slider-cars-left__track {
  animation: scrollVerticalUp 20s linear infinite;
  display: flex;
  flex-direction: column;
  width: 93px;
  height: 1500px;
  gap: 30px;
  margin-top: 0;
}

.c-slider-cars-left .c-slider-cars-left__track__slide {
  width: 93px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items horizontally */
  justify-content: center;
  gap: 30px;
  margin: 0 auto; /* Center the slide itself */
}

/* Adjust slide content for narrow width */
.c-slider-cars-left .c-slider-cars-left__track__slide img {
  max-width: 100%;
  height: auto;
  display: block; /* Remove extra spacing */
  margin: 0 auto; /* Center images */
}

/* Scale down images to fit 93px width */
.c-slider-cars-left .c-slider-cars-left__track__slide img:first-child {
  width: 50px;
  height: auto;
}

.c-slider-cars-left .c-slider-cars-left__track__slide img:last-child {
  width: 60px;
  height: auto;
}

/*=========================================================================================
CAR SLIDER RIGHT
=========================================================================================== */
.c-nav-car-sliderRight {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 93px;
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: center; /* Center horizontally */
}

/* Vertical scroll animation - downward direction */
@keyframes scrollVertical {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.c-slider-cars {
  height: 100%;
  width: 93px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-slider-cars::before {
  top: 0;
  left: 0;
}

.c-slider-cars::after {
  bottom: 0;
  left: 0;
  transform: rotateZ(180deg);
}

.c-slider-cars .c-slider-cars__track {
  animation: scrollVertical 40s linear infinite;
  display: flex;
  flex-direction: column;
  width: 93px;
  height: 1500px;
  gap: 30px;
  /* Ensure track starts from top */
  margin-top: 0;
}

.c-slider-cars .c-slider-cars__track__slide {
  width: 93px;
  display: flex;
  flex-direction: column;
  align-items: center; /* Center items horizontally */
  justify-content: center;
  gap: 30px;
  margin: 0 auto; /* Center the slide itself */
}

/* Adjust slide content for narrow width */
.c-slider-cars .c-slider-cars__track__slide img {
  max-width: 100%;
  height: auto;
  display: block; /* Remove extra spacing */
  margin: 0 auto; /* Center images */
}

/* Scale down images to fit 93px width */
.c-slider-cars .c-slider-cars__track__slide img:first-child {
  width: 50px;
  height: auto;
}

.c-slider-cars .c-slider-cars__track__slide img:last-child {
  width: 60px;
  height: auto;
}


/*=========================================================================================
HERO BREADCRUMBS
=========================================================================================== */
.c-hero-breacumbs {
  padding: 10px 40px;
  background-color: var(--bg-lightGray);
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  min-width:400px;
  overflow:auto;
  white-space:nowrap;
}

.c-hero-breacumbs a {
  font-weight: 900;
  font-size: 15px;
  color: var(--bg-gray);
  transition: all 0.3s ease-in-out;
}

.c-hero-breacumbs a:hover {
  color: var(--text-darkGreen);
}

.c-hero-breacumbs svg {
  margin-top: 2px;
}

@media screen and (max-width: 767px) {
  .c-hero-breacumbs {
    padding: 4px 10px;
    gap: 6px;
  }
  .c-hero-breacumbs a {
    font-size: 12px;
  }
  .c-hero-breacumbs svg {
    height: 8px;
    min-width: 9px;
  }
}
/*=========================================================================================
HERO PAGE BANNER
=========================================================================================== */

.c-hero-page-banner {
  width: 100%;
  padding-left: 5px;
  padding-right: 5px;
}

.c-hero-page-banner__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.c-hero-page-banner_wrapper {
  width: 100%;
  background-color: #d2e7ff;
  position: absolute;
  border-radius: 50px;
  top: 0;
  bottom: 0;
  z-index: 0;
}

.c-hero-page-banner__container picture {
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}

.c-hero-page-banner__container__bg {
  width: 100%;
  height: auto; 
  display: block;
  position: relative;
  z-index: 2;
}

.c-hero-page-banner__container__balloon {
  position: absolute;
  top: -20px;
  right: 22%;
  z-index: 3;
}

.c-hero-page-banner__container__clouds-left {
  position: absolute;
  top: -40px;
  left: 0px;
  z-index: 1;
}

.c-hero-page-banner__container__clouds-right {
  position: absolute;
  top: -60px;
  right: -150px;
  z-index: 1;
}

.c-hero-page-banner__container__h1-wrapper {
  background-color: var(--bg-darkGreen);
  padding: 5px 40px;
  width: fit-content;
  position: absolute;
  z-index: 3;
  border-radius: 12px;
  left: 50%;
  transform: translateX(-50%);
  top: 100px;
}

.c-hero-page-banner__container h1 {
  font-size: 40px;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 170%;
  text-align: center;
  text-wrap: nowrap;
}

/* Media queries */
@media screen and (max-width: 1200px) {
  .c-hero-page-banner__container__h1-wrapper {
    top: 21%;
  }
  .c-hero-page-banner__container__h1-wrapper h1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 900px) {
  .c-hero-page-banner_wrapper {
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .c-hero-page-banner__container__clouds-left {
    left: -280px;
    top: -20px;
  }
  .c-hero-page-banner__container__clouds-right {
    right: -320px;
    top: -60px;
  }
  .c-hero-page-banner__container__balloon {
    top: 30px;
    right: 42px;
  }
  .c-hero-page-banner__container__h1-wrapper h1 {
    font-size: 24px;
  }
  .c-hero-page-banner__container__h1-wrapper {
    padding: 0px 18px;
    top: 15%;
    border-radius: 6px;
  }
}
/*=========================================================================================
PERSONA MESSAGE REUSABLE 
=========================================================================================== */
.c-person-message__container {
  padding: 100px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-person-message__container__details {
  width: 100%;
  max-width: 1120px;
  box-shadow: var(--box-shadow-greenL);
  background-color: var(--bg-white);
  padding: 50px 104px;
  border-radius: 25px;
}

.c-person-message__container__details__content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

.c-person-message__container__details__content h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-darkGreen);
  padding-bottom: 8px;
  border-bottom: 2px dashed var(--bg-gray);
}

.c-person-message__container__details__content p {
  margin-top: 10px;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.07em;
  font-weight: 500;
}

.c-person-message__container__details__content img {
  width: 100%;
  min-height:290px;
  max-width: 441px;
  border-radius:8px;
  border:4px solid var(--bg-darkGreen);
}

@media screen and (max-width: 1024px) {
  .c-person-message__container__details__content {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .c-person-message__container {
    padding: 70px 16px;
  }
  .c-person-message__container__details {
    padding: 30px 16px;
    box-shadow: 7px 7px 0px 0px rgb(0, 72, 49);
  }
  .c-person-message__container__details__content h3 {
    font-size: 20px;
  }
  .c-person-message__container__details__content p {
    font-size: 14px;
  }
	.c-person-message__container__details__content img {
  min-height:auto;

}

}
/*=========================================================================================
SHOP SECTION W/ WHITE BG
=========================================================================================== */
.c-shop-white {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 16px 100px 16px;
  background-color:var(--bg-white);
}

.c-shop-white__container {
  width: 100%;
  max-width: 880px;
}

.c-shop-white__container .c-section--store__ul {
  margin-top: 40px;
}

.c-shop-white__container .c-btn-yellow-border {
  margin: 0px auto;
  margin-top: 50px;
}

/*=========================================================================================
LINE BANNER
=========================================================================================== */
.c-line-banner {
  width: 100%;
  max-width: 755px;
  border-radius: 50px;
/*   background-image: url("/funcars/wp-content/uploads/2026/04/bg_line_banner.svg"); */
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 80px;
  display: flex;
  flex-direction: row;
  gap: 50px;
  justify-content: center;
}

.c-line-banner__desc {
  color: var(--text-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.c-line-banner__desc h2 {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-line-banner__desc .c-line-banner__desc__p,
.c-line-banner__desc .c-line-banner__desc__span {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 130%;
  margin-top: 5px;
  font-weight: 500;
}

.c-line-banner__desc .c-btn-border-green {
  padding: 24px 30px;
  min-width: 344px;
/*   gap: 30px; */
  margin-top: 5px;
}

.c-line-banner__desc .c-btn-border-green .c-btn__wrapper {
  height: 24px;
  width: 24px;
}

.c-line-banner__desc .c-btn-border-green p {
  font-size: 24px;
  font-weight:700;
}

@media screen and (max-width: 767px) {
  .c-line-banner {
    border-radius: 20px;
/*     background-image: url("/funcars/wp-content/uploads/2026/04/bg_line_banner.svg"); */
    padding: 16px 12px 16px 12px;
    gap: 20px;
    max-width: 343px;
    align-items: center;
  }
  .c-line-banner__line-img {
    height: 100px;
    width: auto;
  }
  .c-line-banner__desc {
    gap: 10px;
  }
  .c-line-banner__desc h2 {
    font-size: 20px;
  }
  .c-line-banner__desc .c-line-banner__desc__p,
  .c-line-banner__desc .c-line-banner__desc__span {
    font-size: 14px;
    font-weight: 500;
  }
  .c-line-banner__desc .c-btn-border-green {
    padding: 14px 18px;
    min-width: 210px;
    gap: 10px;
  }
  .c-line-banner__desc .c-btn-border-green .c-btn__wrapper {
    height: 22px;
    width: 22px;
  }
  .c-line-banner__desc .c-btn-border-green p {
    font-size: 16px;
  }
}
/*=========================================================================================
HERO CONSULTATION CSS
=========================================================================================== */
.p-top {
  background-color: var(--bg-lightGreen);
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

.p-hero-consut {
  position: relative;
  width: 100%;
	background-color:var(--bg-lightGreen);
}

.p-hero-main {
  position: relative;
  
}

.p-hero-img {
  width: 100%;
  z-index: 1;
  position: relative;
}

.p-hero-img__cars {
  position: absolute;
  bottom: -50px;
  z-index: 3;
  width: 100%;
}

.p-hero__nav {
  position: absolute;
  top: 80px;
  left: 0px;
  z-index: 5;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:20px;
}
.p-hero__nav div p{
	font-size:20px;
	font-weight:700;
	letter-spacing:0.05em;
	line-height:150%;
}
.p-hero__title {
  position: absolute;
  top: 44%;
  left: 50%;
  z-index: 2;
  max-width: 810px;
  width: 100%;
  transform: translate(-50%, -50%);
}

.p-hero__title h2:not(.p-hero__title-main h2) {
  background-color: var(--bg-darkGreen);
  padding: 2px 24px;
  border-radius: 100px;
  display: inline-block;
}

.p-hero__title-main {
  text-align: center;
  padding: 25px 16px 15px 16px;
  width: 100%;
  max-width: 673px;
  background-color: var(--bg-white);
  margin: 0px auto;
  color: var(--text-darkGreen);
  border: 6px solid var(--bg-darkGreen);
  border-top: 0px;
  border-bottom-right-radius: 23px;
  border-bottom-left-radius: 23px;
  z-index: 3;
  position: relative;
}

.p-rect {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-top: -22px;
  margin-left: 1px;
  z-index: 1;
}

.p-payment {
  background-color: var(--bg-white);
  position: absolute;
  margin-top: -50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: row;
  height: auto;
  border: 3px solid var(--bg-darkGreen);
  border-radius: 12px;
  gap: 14px;
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  transform: translate3d(-50%, 0, 0);
}

.p-payment * {
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
}

.c-highlighted__item {
  min-width: 191px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-darkGreen);
  padding: 35px 12px 12px 12px;
  position: relative;
  z-index: 1;
}

.payment__item p {
  z-index: 3;
}

.c-highlighted__item p.rel {
  display: inline-block;
  position: relative;
}

.c-highlighted__item p.rel::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 81px;
  height: 9px;
  background-color: var(--bg-yellow);
  z-index: -1;
  border-radius: 2px;
}

.p-payment__icon {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.p-payment__num {
  letter-spacing: -0.03em;
  margin-right: 2px;
}

.p-hero__title__lead {
  font-size: 35px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0.07em;
  color: var(--text-white);
  position: relative;
  z-index: 5;
}

.p-hero__title-main__lead {
  font-size: 46px;
  line-height: 140%;
  font-weight: 900;
}

.p-hero__title-main h1{
  font-size: 122px;
  line-height: 100%;
  font-weight: 900;
  letter-spacing: -0.12em;
  margin-left:-25px;

}
.p-hero__title-main h1 span{
	font-size:74px;
	font-weight:900;
	margin-right:-18px;
	margin-left:-18px;
	letter-spacing: -0.12em;
}
.p-hero__title-main h1 span:last-of-type{
		margin-right:0px;
		margin-left:15px;
	    display: inline-block;
    transform: translateY(-16px);
	}

@media screen and (max-width:1300px){
	.c-highlighted__item{
		min-width:190px;
	}
	.p-payment{
		min-width:650px;
	}
}
@media screen and (max-width:1100px){
	.p-payment{
		min-width:560px;
	}
}
@media screen and (max-width:802px){
	.p-payment{
		min-width:345px;
	}
}
/*P-CONSULE MAIN*/
.p-consult-main {
  padding: 200px 16px 60px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-consult-main__wrapper {
  width: 100%;
  max-width: 850px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.p-consult-main__wrapper hgroup h2 {
  margin-top: 10px;
}

.p-consult-main__wrapper-ul {
  display: inline-flex;
  gap: 45px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.p-consult-main__wrapper-ul li {
  background-color: var(--bg-white);
  border-radius: 12px;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid var(--bg-darkGreen);
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  cursor: pointer;
}

.p-consult-main__wrapper-ul li .p-consult-main__wrapper-ul-span {
  padding-bottom: 3px;
  border-bottom: 1px solid var(--bg-darkGreen);
  transition: all 0.3s ease-in-out;
}

.p-consult-main__wrapper-ul li .p-consult-main__wrapper-ul-span img {
  transition: all 0.3s ease-in-out;
}

.p-consult-main__wrapper-ul li:hover .p-consult-main__wrapper-ul-span {
  color: var(--bg-lineGreen);
  border-bottom: 1px solid var(--bg-lineGreen);
}

.p-consult-main__wrapper-ul li:hover .p-consult-main__wrapper-ul-span img {
  filter: brightness(0) saturate(100%) invert(50%) sepia(73%) saturate(4415%) hue-rotate(111deg) brightness(96%) contrast(105%);
}

.p-payment__tag {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.p-payment__label {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
  position: relative;
}
.p-payment__label span{
	font-size:54px;
	font-weight:700;
	letter-spacing:0.05em;
	font-family:var(--font-roboto);
}
.p-payment__num {
  font-size: 54px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Roboto";
}

.p-payment__subTag {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.p-consult-main__wrapper hgroup{
	display:flex;
	flex-direction:column;
	align-items:cetner;
	justify-content:center
}
.p-consult-main__wrapper hgroup h2 {
  color: var(--text-darkGreen);
	font-size:40px;
	font-weight:700;
	letter-spacing:0.05em;
}
.p-consult-main__wrapper-ul li a p{
	font-size:18px;
	font-weight:700;
	line-height:150%;
	letter-spacing:0.05em;
	color:var(--text-darkGreen);
}
.p-consult-main__wrapper-ul li a p span{
	font-size:18px;
	font-weight:700;
	line-height:150%;
	letter-spacing:0.05em;
}
.p-consult-main__wrapper-ul-span{
	font-size:18px;
	font-weight:700;
	line-height:150%;
	letter-spacing:0.05em;
	color:var(--text-darkGreen);
}
@media screen and (max-width:1780px){
	.p-hero__title{
		top:42%;
	}
}
@media screen and (max-width:1490px){
	.p-hero__title{
		top:40%;
	}
}
@media screen and (max-width: 1440px) {
  .p-hero-img__cars {
    bottom: -70px;
  }
  .p-payment {
    margin-top: 10px;
  }
}
@media screen and (max-width:1450px){
	 .p-hero-main {
    background-color:var(--bg-white);
 }
}

@media screen and (max-width: 1200px) {
  .p-hero__nav {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
 .p-hero-main {
    background-color:var(--bg-lightGreen);
  }

  .p-hero__title .p-hero__title__lead {
    font-size: 25px;
    text-align: center;
    margin-left: 5px;
    margin-bottom: -5px;
    padding-top: 4px !important;
    padding-bottom: 4px !important;
    z-index: 9;
  }
  .p-hero__title {
    top: 45%;
    width: 100%;
    max-width: 380px;
  }
  .p-hero__title-main {
    max-width: 500px;
  }
  .p-hero__title-main__lead {
    font-size: 26px;
  }
  .p-hero__title-main h1 {
    font-size: 90px;
  }
  .p-rect {
    max-width: 520px;
    z-index: 2;
    margin-top: -17px;
	margin-left:-1px;
	
  }
  .p-hero__title .p-hero__title__lead {
    width: -moz-fit-content;
    width: fit-content;
    font-size: 15px;
  }
  .p-hero__title-main__lead {
    font-size: 30px;
  }
  .p-hero__title-main h1 {
    font-size: 65px;
  }
  .p-hero__title-main,
  .p-rect {
    max-width: 360px;
  }
  .p-hero-img__cars {
    top: 250px;
  }
  .c-highlighted__item .p-payment__tag {
    font-size: 24px;
  }
  .p-payment__label,
  .p-payment__subTag {
    font-size: 25px;
  }
  .p-payment__label span {
    font-size: 42px;
  }
  .c-highlighted__item p.rel::after {
    min-width: 50px;
  }
	.p-hero__title-main h1{
		margin-right:10px;
	}
	.p-hero__title-main h1 span{
		font-size:40px;
		margin-right:-5px;
		margin-left:-5px;
	}
	.p-hero__title-main h1 span:last-of-type{
		margin-left:10px;
        transform: translateY(-8px);
	}
	
}
@media screen and (max-width:900px){
	.p-hero-main {
    background-color:var(--bg-white);
  }
	.p-hero__title {
    top: 45%;
  }
}
@media screen and (max-width: 800px) {
  .p-hero-img__cars {
    top: 220px;
  }
  .p-payment {
    margin-top: 30px;
  }
  .p-payment {
    margin-top: 30px;
    max-width: 343px;
    gap: 0px;
    max-height: 91px;
  }
  .c-highlighted__item {
    min-width: 110px;
    padding: 10px 0px 0px 0px;
  }
  .p-payment__icon {
    height: 30px;
    width: auto;
    margin-top: 10px;
  }
  .c-highlighted__item .p-payment__tag {
    font-size: 14px;
  }
  .p-payment__label,
  .p-payment__subTag {
    font-size: 15px;
  }
  .p-payment__label span {
    font-size: 32px;
  }
  .c-highlighted__item p.rel::after {
    min-width: 50px;
  }
	  .p-rect {
    margin-top: -17px;
  }
}
@media screen and (max-width:780px){
	  .p-rect {
    margin-top: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__title {
    top: 28%;
  }
  .p-hero-img__cars {
    top: 50px;
    transform: scale(1.6);
  }
  .p-hero__title-main {
    padding: 15px 0px 10px 0px;
    margin-top: -5px;
	border-radius:12px;
  }
  .p-hero__title-main {
    max-width: 341px;
  }
  .p-rect {
    max-width: 341px;
  }
  .p-hero__title .p-hero__title__lead {
    font-size: 15px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
    margin: 0 auto;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    width: -moz-fit-content;
    width: fit-content;
    display: block; 
  }
  .p-payment {
    margin-top: 0px;
  }
	.p-hero__title-main h1 span{
	font-size:40px;
		margin-left:-5px;
		margin-right:-5px;
}
	.p-hero__title-main h1{
		margin-left:-5px;
	}
	.p-consult-main__wrapper-ul li a p span{
		font-size:14px;
	}

}
@media screen and (max-width: 600px) {
  .p-hero__title {
    top: 40%;
  }
  .p-hero-img__cars {
    top: 120px;
    transform: scale(1.6);
  }
  .p-payment {
    margin-top: 0px;
  }
}
@media screen and (max-width: 450px) {
  .p-payment {
    margin-top: 60px;
  }
}
@media screen and (max-width: 380px) {
  .p-hero-img__cars {
    top: 115px;
  }
}
@media screen and (max-width:370px){
   .c-highlighted__item:first-of-type{
    min-width:100px;
  }
    .c-highlighted__item:last-of-type{
    min-width:130px;
  }
}
@media screen and (max-width: 365px) {
  .p-hero__title__lead {
    font-size: 13px !important;
    width: 100% !important;
  }
}
.p-consult-main__arrow {
  background-color: var(--bg-darkGreen);
  height: 30px !important;
  width: 30px !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  display: none;
}

.p-consult-main__arrow img {
  width: 15px !important;
  height: auto !important;
  -o-object-fit: contain;
     object-fit: contain;
}

@media screen and (max-width: 1000px) {
  .p-hero-consut .c-nav-car-sliderRight,
  .p-hero-consut .c-nav-car-sliderLeft {
    display: none;
  }
  .p-consult-main__arrow {
    display: flex;
    margin-left: auto; /* This pushes the arrow to the right */
  }
  /* Make sure the anchor tag uses flex to enable margin auto */
  .p-consult-main__wrapper-ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Alternative approach */
    width: 100%; /* Take full width */
    gap: 8px;
  }
  /* Or use this approach with margin-left:auto on the arrow */
  .p-consult-main__wrapper-ul li a p {
    flex: 1; /* Takes remaining space, pushing arrow to right */
  }
  .p-consult-main__wrapper hgroup h2 {
    line-height: 160%;
  }
  .p-consult-main__wrapper-ul {
    flex-direction: column;
    max-width: 375px;
    gap: 12px;
  }
  .p-consult-main__wrapper-ul-span {
    display: none;
  }
  .p-consult-main__wrapper-ul li a p {
    text-align: left;
    flex: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-consult-main {
    padding-bottom: 50px;
  }
  .p-consult-main__arrow {
    display: flex;
  }
  .p-consult-main__wrapper hgroup h2 {
    font-size: 24px;
    line-height: 160%;
  }
  .p-consult-main__wrapper-ul {
    flex-direction: column;
    max-width: 275px;
    gap: 12px;
  }
  .p-consult-main__wrapper-ul-span {
    display: none;
  }
  .p-consult-main__wrapper-ul li {
    padding: 18px;
  }
  .p-consult-main__wrapper-ul li a {
    flex-direction: row;
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%; /* Ensure anchor takes full width */
  }
  .p-consult-main__wrapper-ul li a img:first-of-type {
    width: 37px;
    height: auto;
  }
  .p-consult-main__wrapper-ul li a p {
    text-align: left;
    font-size: 14px;
    margin-right: 5px;
    flex: 1; /* This pushes the arrow to the right */
  }
	
}
/*=========================================================================================
ABOUT SECTION
=========================================================================================== */
.p-about {
  width: 100%;
  padding: 100px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
}

.p-about__container {
  width: 100%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.p-about__description-title,
.p-about__description-title span {
  color: var(--text-darkGreen);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 170%;
  text-align: center;
}

.p-about__sub-desc {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 170%;
  text-align: center;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .p-about {
    padding: 60px 16px;
  }
  .p-about__container {
    gap: 35px;
  }
  .p-about__container .p-about__logo {
    width: 100%;
    max-width: 311px;
  }
  .p-about__description-title,
  .p-about__description-title span {
    font-size: 17px;
    text-align: left;
  }
  .p-about__sub-desc,
  .p-about__sub-desc span {
    font-size: 15px;
    text-align: left;
  }
  .p-about__container .c-btn-yellow-border {
    max-width: 180px !important;
    min-width: 180px !important;
    gap: 10px !important;
    padding-top: 18px;
    padding-bottom: 18px;
  }
}
/*=========================================================================================
CONTACT BANNER SECTION
=========================================================================================== */
.c-contact-banner {
  position: relative;
}

.c-contact-banner__nav {
  display: flex;
  flex-direction: row;
  gap: 48px;
  width: 100%;
  align-items: center;
  justify-content: center;
  position: relative;
}

.c-contact-banner__nav div:first-child {
  border: 3px solid var(--bg-black) !important;
}

.c-contact-banner__rect {
  position: absolute;
  bottom: 0px;
  background-color: var(--bg-darkGreen);
  height: 170px;
  width: 100%;
}

.c-contact-banner__item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  width: 100%;
  max-width: 530px;
  padding: 30px 3px;
  border-radius: 10px;
  border: 2px solid var(--bg-darkGreen);
  margin-bottom: 60px;
}

.c-contact-banner .c-contact-banner__item {
  width: calc(100% - 32px);
}

.c-contact-banner__item2 {
  border: 2px solid var(--bg-pink);
}

.c-line__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
}

.c-line__content .c-btn-green,
.c-line__content .c-btn-pink {
  margin-top: 15px;
}

@media screen and (max-width: 1200px) {
  .c-contact-banner__nav {
    flex-direction: column;
  }
  .c-contact-banner .c-contact-banner__item:first-child {
    margin-bottom: 0px;
  }
  .c-contact-banner__rect {
    height: 375px;
  }
}
@media screen and (max-width: 767px) {
  .c-contact-banner__nav {
    gap: 30px;
  }
  .c-contact-banner__item {
    max-width: 480px;
  }
}
/*=========================================================================================
CAR SEARCH SECTION
=========================================================================================== */
.p-car__search {
  width: 100%;
  min-height: 500px;
  background-color: var(--bg-white);
  position: relative;
  display: block;
}

.p-car__search .p-curve {
  width: 100vw;
}

.p-car-search__container {
  background-color: var(--bg-lightGreen);
  padding: 0px;
  margin-top: -10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.p-buildings__header {
  width: 100%;
  position: relative;
}

.p-buildings__header img {
  width: 100%;
}

.p-buildings__header h2 {
  margin: 0px auto;
  margin-top: -50px;
  text-align: center;
  line-height: 170%;
}

.c-car__search-filter {
  width: calc(100% - 32px);
  max-width: 940px;
  background-color: var(--bg-white);
  padding: 50px 40px;
  border-radius: 25px;
  border: 5px solid var(--bg-darkGreen);
  margin-bottom: 120px;
}

.c-car__search-filter .c-btn-yellow-border {
  margin: 0px auto;
  margin-top: 50px;
}

.c-section__title {
  font-size: 38px;
  line-height: 140%;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-darkGreen);
}

.c-section__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

/* ─── Filter Grid ─── */
.c-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 16px;
}

.c-filter-item__label {
  display: block;
  color: var(--text-darkGreen);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.c-filter-item__select-wrap {
  position: relative;
}

.c-filter-item__select {
  width: 100%;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  background: var(--bg-white);
  border: 2px solid var(--bg-black);
  border-radius: 8px;
  padding: 15px 16px;
  font-size: 16px;
  color: var(--bg-gray);
  cursor: pointer;
  transition: border-color 0.2s;
  outline: none;
  font-weight: 900;
}

.c-filter-item__select:focus {
  border-color: var(--bg-darkGreen);
  color: var(--text-darkGreen);
}

.c-filter-item__select-arrow {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  pointer-events: none;
  color: var(--bg-black);
}

.c-filter-item__select option {
  background-color: var(--bg-white);
}

.c-filter-item__select option {
  padding: 20px !important;
  background-color: var(--bg-white);
  color: var(--text-darkGreen);
  border: none;
  font-weight: 600;
}

.c-filter-item__select option[disabled] {
  color: var(--text-gray);
  background-color: #f5f5f5;
}

.c-filter-item__select option:checked {
  background-color: var(--bg-darkGreen);
  color: var(--text-white);
}

.c-actions {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-top: 50px;
}

.c-section--store {
  margin-top: 80px;
}

.c-section--store__ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 22px;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin-top: 25px;
}

.c-section--store__ul li {
    border: 4px solid var(--bg-darkGreen);
    border-radius: 8px;
    padding: 0;
    transition: all 0.3s ease-in-out;
    display: flex;
}

.c-section--store__ul li a {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 20px 18px;
    box-sizing: border-box;
    text-decoration: none;
}

.c-section--store__ul li a p {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-darkGreen);
  transition: all 0.3s ease-in-out;
  line-height: 140%;
  margin-right:10px;
}

.c-section--store__ul li a p img {
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}

.c-section--store__ul li:hover {
  background: var(--bg-darkGreen);
}

.c-section--store__ul li:hover p {
  color: var(--text-white);
}

.c-section--store__ul li:hover img {
  filter: var(--filter-white);
}
.c-filter-item__select:invalid {
  color: var(--text-gray) !important;
}

.c-filter-item__select:valid {
  color: var(--text-darkGreen);
}
@media screen and (max-width:767px){
	.c-section--store__ul li a {
   
    padding: 0;
 
}

}
/*CAR SLIDER*/
.p-car__slider-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding-bottom: 100px;
}

.p-car__slider-wrapper .c-btn-yellow-border {
  margin-top: 50px;
}

.c-car__slider {
  width: 100%;
  position: relative;
  height: 100%;
}

.c-car__slider-container {
  width: 100%;
  position: relative;
  overflow: visible;
}

.c-car__slider-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-inline: 1rem;
  scroll-behavior: smooth;
  scroll-padding: 30px;
  list-style-type: none;
  padding: 0;
  margin-right: -1rem;
  height: auto;
  max-height: none;
}


.c-car__slider-track::-webkit-scrollbar {
  display: none;
}

.c-car__slider-item {
  width: 450px;
  max-width: 450px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding-right: 1rem;
  flex-shrink: 0;
}
.c-car-filter .c-car__slider-item{
	padding-right:0rem;
}
.c-car__slide {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 20px;
/*   background-image: url("/funcars/wp-content/uploads/2026/03/bg_card_slider.svg"); */
  background-repeat: no-repeat;
  background-size: cover;
  border: 5px solid rgba(0, 72, 49, 0.5);
  background-color: var(--bg-white);
  position: relative;
  padding: 30px 20px 20px 20px;
  box-shadow: 0px 0px 15px 0px rgba(40, 40, 40, 0.1);
  min-height:650px;
}

.c-car__slider-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
  padding: 0 16px;
  position: relative;
  z-index: 10;
}

.c-car__slider-button {
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  margin-top: -7px;
}

/* .c-car__slider-button:hover:not([disabled]) {
  transform: translateY(-2px);
}
 */
.c-car__slider-button:active:not([disabled]) {
  transform: translateY(0);
}

.c-car__slider-button[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
  transform: none;
}

.c-car__label {
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  background-color: var(--bg-darkGreen);
  position: absolute;
  top: -5px;
  left: -5px;
  padding: 8px 10px;
  z-index: 2;
}
.c-car__slide-wrapper{
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	width:100%;
}
.c-car__slide-img {
  max-width: 400px;
  height: auto;
  max-height:230px;
  width:auto;

}

.c-car__slider-img-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: flex-start;
  margin-top:30px;
}
.c-car__slider-img-details p:first-of-type{
	line-height:120%;
}
.c-car__slider-img-details-tag,
.c-car__slider-img-details-tag-outline {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  width: 100%;
}

.c-car__slider-img-details-tag p {
  font-size: 15px;
  letter-spacing: 0.05em;
  font-weight: 900;
  font-family: "Noto Sans JP";
  background: var(--bg-darkGreen);
  padding: 6px 8px;
  border-radius: 4px;
  color: var(--text-white);
}

.c-car__slider-img-details-tag-outline p {
  font-size: 16px;
  letter-spacing: 0.05em;
  font-weight: 900;
  background: var(--bg-white);
  padding: 6px 6px;
  border-radius: 4px;
  margin-top: 10px;
  color: var(--text-darkGreen);
  border: 1px solid var(--bg-darkGreen);
  line-height:100% !important;
}

.c-car__slider-img-details-tag2 {
  display: flex;
  align-items: baseline;
  gap: 37px;
 
}

.c-car__slider-img-details-tag3 {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  color: var(--text-darkGreen);
}

.c-car__slide .c-btn-yellow-border {
  margin: 0px auto;
  margin-top: 20px;
}

.c-car__slider {
  position: relative;
  width: 100%;
}

.c-car__slider-container {
  width: 100%;
  overflow: visible;
}

.c-car__slider-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: calc(100% - 32px);
  max-width: -moz-fit-content;
  max-width: fit-content;
  border: 1px solid var(--bg-darkGreen);
  margin: 0px auto;
  margin-top: 20px;
  border-radius: 40px;
  padding: 10px 20px;
  margin-top: 50px;
}

.c-car__slider-buttons {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 8px;
}

.c-car__slider-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: -5px;
  margin-right: 18px;
  margin-left: 18px;
}

/* Controls container */
.c-car__slider-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.c-car__slider-indicator {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: #bed5c4;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(215, 230, 225, 0.5);
  z-index: 99;
}

.c-car__slider-indicator .indicator-svg-img {
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -o-object-fit: contain;
     object-fit: contain;
}

.c-car__slider-indicator.inactive {
  transform: scale(0.8);
  border-color: transparent;
}

.c-car__slider-indicator.inactive .indicator-svg-img {
  opacity: 0;
  transform: scale(0.5);
}

.c-car__slider-indicator.active {
/*   width: 22px;
  height: 22px;
  background: var(--bg-white);
  border-color: var(--bg-white); */
	transform:scale(1.2);
 background: var(--bg-white);
  
  border-radius: 50%;
}
.c-car__slider-indicator img{
	transform:scale(1.1)
}
.c-car__slider-indicator.active .indicator-svg-img {
  opacity: 1;
  transform: scale(1);
  width: 100%;
  height: 100%;
}

.c-car__slider-indicator:hover {
  transform: scale(1.05);
}

.c-car__slider-indicator.inactive:hover {
  border-color: transparent;
  background: rgba(0, 72, 49, 0.3);
}

.c-car__slider-indicator.active:hover {
  transform: scale(1.05);
}

.c-car__slider-indicators {
  position: relative;
}

.c-car__slider-indicators::before {
  content: "";
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  transform: translateY(50%);
  height: 2px;
  background: repeating-linear-gradient(90deg, #bed5c4, #bed5c4 4px, transparent 4px, transparent 8px);
  pointer-events: none;
  z-index: 0;
}

.c-car__slider-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}

.c-car__slider-indicator {
  position: relative;
  z-index: 1;
}

.c-car__slider-indicator:not(:last-child) {
  position: relative;
}

/*CAR SLIDER*/
.c-nav-car-sliderRight {
  position: absolute;
  top: 0px;
  right: 0px;
  height: 100%;
  width: 93px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@keyframes scrollVertical {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.c-slider-cars {
  height: 100%;
  width: 93px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-slider-cars::before {
  top: 0;
  left: 0;
}

.c-slider-cars::after {
  bottom: 0;
  left: 0;
  transform: rotateZ(180deg);
}

.c-slider-cars .c-slider-cars__track {
  animation: scrollVertical 40s linear infinite;
  display: flex;
  flex-direction: column;
  width: 93px;
  height: 1500px;
  gap: 30px;
  margin-top: 0;
}

.c-slider-cars .c-slider-cars__track__slide {
  width: 93px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 0 auto;
}

.c-slider-cars .c-slider-cars__track__slide img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.c-slider-cars .c-slider-cars__track__slide img:first-child {
  width: 50px;
  height: auto;
}

.c-slider-cars .c-slider-cars__track__slide img:last-child {
  width: 60px;
  height: auto;
}



@media screen and (max-width: 900px) {
  .c-section--store__ul {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 13px;
    -moz-column-gap: 13px;
         column-gap: 13px;
  }
}
@media screen and (max-width: 767px) {
  .c-section--store__ul li {
    border: 2px solid var(--bg-darkGreen);
    border-radius: 4px;
    padding: 14px 14px;
  }
  .c-section--store__ul li a p {
    gap: 6px;
    font-size: 12px;
    margin-right: 5px;
  }
	.c-car__slider-controls{
		margin-top:0px;
	}
	.p-car__slider-wrapper .c-car__slide{
	margin-bottom:20px;
	}
}
@media screen and (max-width: 767px) {
  .p-buildings__header h2 {
    font-size: 22px;
  }
}
.c-car__slide div {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-car__slide {
    padding: 30px 10px;
  }
  .c-car__slide:first-of-type {
    margin-left: 16px !important;
  }
  .c-car__slider-item {
    width: 320px;
    max-width: 320px;
  
  }
	.c-car-filter__container .c-car__slider-item{
		width:100%;
	}
  .c-car__slide-img {
    max-width: 267px;
  }
  .c-car__slider-img-details .fs-28 {
    font-size: 22px;
  }
  .c-car__slider-img-details-tag p {
    font-size: 13px;
  }
  .c-car__slider-img-details-tag2 p,
  .c-car__slider-img-details-tag3 p {
    font-size: 16px;
  }
  .c-car__slider-img-details-tag3 p:first-child {
    max-width: 42%;
    line-height: 150%;
  }
  .c-car__slider-img-details-tag2 p:last-child,
  .c-car__slider-img-details-tag3 p:last-child {
    font-size: 45px !important;
    text-wrap: nowrap;
  }
  .c-car__slider-img-details-tag-outline p {
    font-size: 12.5px;
	  text-wrap:nowrap;
  }
  .c-car__slider-img-details-tag2 {
    margin-top: 0px;
  }
  .c-car__slider-img-details-tag-outline {
    margin-top: -10px;
  }
  .c-car__slider-item .c-btn-yellow-border p {
    font-size: 14px !important;
    max-height: 34px;
  }
  .c-car__label {
    font-size: 15px;
  }
  .c-car__slider-button img {
    height: 20px;
    width: 20px;
  }
  .c-car__slider-indicator {
    height: 7px;
    width: 7px;
  }
  .indicator-svg-img {
    height: 12px;
    width: 12px;
  }
  .c-car__slider-buttons {
    gap: 0px;
  }
  .c-car__slider-indicators {
    gap: 20px;
  }
  .c-car__slider-controls {
    padding: 12px 10px;
  }
  .p-car__slider-wrapper {
    padding-bottom: 0px;
  }
  .c-car__slider-indicator.inactive {
    transform: scale(1);
  }
	.c-car__slider-indicators::before {
	  content: "";
	  position: absolute;
	  bottom: 50%;
	  left: 0;
	  right: 0;
	  transform: translateY(50%);
	  height: 1px;
	  background: repeating-linear-gradient(90deg, #bed5c4, #bed5c4 2px, transparent 2px, transparent 8px);
	  pointer-events: none;
	  z-index: 0;
	}
	.c-car__slider-indicator.active {
		transform:scale(2.5) !important;
	}
	.c-car__slider-indicator img{
		transform:scale(1)
	}
	.c-car__slider-indicators{
		gap:15px;
	}
	.c-car__slide{
		min-height:550px;
	}

}
.p-car__search__form-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100vw;
  padding-left: 20px;
  padding-right: 20px;
}
.p-car__search__form-wrapper h2{
	font-size:28px;
	letter-spacing:0.05em;
	line-height:140%;
	font-weight:900;
}
@media screen and (max-width: 767px) {
  .p-car-search__container {
    gap: 40px;
  }
  .c-filter-item__label {
    font-size: 18px;
  }
  .c-filter-item__select {
    font-size: 14px;
    padding: 15px 16px;
  }
  .c-filter-item__select::-moz-placeholder {
    font-size: 14px;
  }
  .c-filter-item__select::placeholder {
    font-size: 14px;
  }
  .p-car__search .p-car__slider-wrapper {
    padding-bottom: 50px;
  }
  .p-car__search .p-buildings__header img {
    display: none;
  }
  .p-buildings__header h2 {
    margin-top: 80px;
	padding-left:40px;
	padding-right:40px;
	max-width:fit-content;  
  }
	.p-car-search__container .p-buildings__header h2{
		font-size:28px;
		border-radius:12px;
	}
   	
	.p-loan-benefits .p-buildings__header h2{
		 margin-top: -50px;
	}
  .c-car__search-filter {
    border-radius: 10px;
    border: 2px solid var(--bg-darkGreen);
    padding: 30px 16px;
    margin-bottom: 60px;
  }
  .c-car__search-filter .c-section__title {
    font-size: 26px;
  }
  .c-car__search-filter .c-filter-grid {
    grid-template-columns: repeat(1, 1fr);
    margin-top: 20px !important;
  }
  .c-actions {
    gap: 20px;
  }
  .c-actions .c-btn--clear {
    padding: 18px 5px;
    min-width: 124px;
    min-height: 53px;
  }
  .c-actions .c-btn--clear span {
    font-size: 15px;
  }
  .c-actions .c-btn--search {
    padding: 18px 12px;
    min-width: 155px;
    max-height: 53px;
  }
  .c-actions .c-btn--search span {
    font-size: 16px;
  }
  .p-car__search .c-section--store {
    margin-top: 60px;
  }
  .c-car__search .c-car__slider-controls {
    margin-top: 20px !important;
  }
}

@media screen and (max-width:360px){
	.c-car-filter__container .c-car__slide{
		max-width:320px;
	}
}
/*=========================================================================================
CONCERNS SECTION
=========================================================================================== */
.c-concerns {
  width: 100%;
  padding: 80px 0px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: var(--bg-white);
  position: relative;
}

.c-concerns__container {
  width: 100%;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.c-concerns__list {
  display: flex;
  flex-direction: row;
  gap: 60px;
  align-items: center;
  justify-content: center;
}

.c-concerns__list li {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg-darkGreen);
  border-radius: 20px;
  background-color: var(--bg-white);
  max-width: 250px;
  min-width: 250px;
  height: 240px;
  width: 100%;
  text-align: center;
  padding-top: 20px;
}
.c-concerns__list li p,
.c-concerns__list li p span{
	font-size:20px;
	letter-spacing:0.07em;
	line-height:140%;
	font-weight:900;
	color:var(--text-darkGreen);
}
.c-concerns__list li:first-child {
  gap: 0px !important;
}

.c-concerns__list li img {
  margin-left: 5px;
}

.c-concerns .c-highlighted__item p.rel::after {
  height: 15px;
}

.c-concerns .c-nav-car-sliderHorizontal {
  bottom: -70px;
  width: 100%;
}

.c-concerns__container__trouble-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.c-concerns__container__wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .c-concerns__list {
    gap: 10px;
  }
}
@media screen and (max-width: 800px) {
  .c-concerns__container {
    gap: 20px;
  }
  .c-concerns__list li {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--bg-darkGreen);
    border-radius: 20px;
    background-color: var(--bg-white);
    max-width: 220px;
    min-width: 220px;
    height: 240px;
    width: 100%;
    text-align: center;
    padding-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-concerns__container__wrapper {
    gap: 20px;
  }
  .c-concerns__list li {
    gap: 15px;
    max-width: 210px;
    min-width: 210px;
    height: 210px;
    padding: 10px 8px;
  }
  .c-concerns__list li img {
    height: 80px;
    width: auto;
  }
  .c-concerns__list li p,
  .c-concerns__list li p span{
    font-size: 14px;
  }
  .c-concerns__container__trouble-text {
    gap: 10px;
  }
  .c-concerns__container__trouble-text img:first-child {
    max-width: 33px;
    height: auto;
  }
  .c-concerns__container__trouble-text img:last-child {
    max-width: 343px;
    width: 100%;
    height: auto;
  }
	.c-concerns__list li:first-child p{
		width:100px;
	}
}
@media screen and (max-width: 670px) {
  .c-concerns__list {
    gap: 8px;
  }
  .c-concerns__list li {
    gap: 15px;
    border-radius: 10px;
    max-width: 110px;
    min-width: 110px;
    height: 138px;
    padding: 10px 8px;
  }
  .c-concerns__list li img {
    height: 50px;
    width: auto;
  }
  .c-concerns__list li p {
    font-size: 14px;
  }
}
@media screen and (max-width: 360px) {
  .c-concerns__container__trouble-text img:last-child {
    max-width: 83%;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 350px) {
  .c-concerns__list {
    flex-direction: column;
  }
}
/*=========================================================================================
CONSULT BANNER SECTION
=========================================================================================== */
.c-consult__banner {
  background-color: var(--bg-darkGreen);
  padding: 40px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-consult__banner hrgroup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.c-consult__banner hrgroup h2 {
  color: var(--text-white);
  text-align: center;
  line-height: 120%;
	font-size:40px;
	font-weight:700;
	letter-spacing:0.05em;
}

.c-consult__banner-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.c-consult__banner .c-contact-banner__item {
  margin-bottom: 0px;
}

.c-line__icon-sp {
  width: 30px;
  height: auto;
  display: none;
}
.c-line__content .c-line__content__title,
.c-line__content{
	font-size:30px;
	font-weight:700;
	letter-spacing:0.05em;
	color:var(--text-darkGreen);
}

.c-line__content__subText,
.c-line__content__subText span{
	font-size:16px;
	letter-spacing:0.05em;
	line-height:150%;
	font-weight:500;
	color:var(--text-darkGreen);
}
.c-line__content__title-pink{
	font-size:30px;
	font-weight:700;
	letter-spacing:0.05em;
	color:var(--text-pink);
}
.c-line__content__subText-pink{
	font-size:16px;
	letter-spacing:0.05em;
	line-height:150%;
	font-weight:500;
	color:var(--text-pink);
}
.c-consult__banner .c-btn-green p,
.c-consult__banner .c-btn-pink p{
	font-size:17px;
	color:var(--text-white);
	font-weight:700;
	letter-spacing:0.05em;
}
.c-contact-banner .c-btn-green p,
.c-contact-banner .c-btn-pink p{
	font-size:17px;
	color:var(--text-white);
	font-weight:700;
	letter-spacing:0.05em;
}
@media screen and (max-width: 767px) {
  .c-consult__banner {
    padding: 35px 16px;
  }
  .c-consult__banner hrgroup h2 {
    font-size: 24px;
    max-width: 90%;
  }
  .c-line__icon-pc {
    display: none;
  }
  .c-line__icon-sp {
    display: inline;
    margin-right: 10px;
  }
  .c-line__content {
    max-width: 60%;
  }
  .c-line__content p:first-child {
    font-size: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
  }
  .c-line__content :nth-child(2) {
    text-align: center !important;
    font-size: 14px !important;
  }
  .c-consult__banner .c-contact-banner__item {
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .c-line__content .c-btn-green, .c-line__content .c-btn-pink {
    margin-top: 10px;
  }
}
@media screen and (max-width: 550px) {
  .c-line__content {
    max-width: 100%;
  }
}
/*=========================================================================================
FUNCARS IN HOUSE SECTION
=========================================================================================== */
.c-funcars-house {
  padding: 100px 0px 0px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-white);
  position: relative;
}

.c-funcars-house__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 100px;
}

.c-section-title__span-block,
.c-section-title__span-block span {
  font-size: 38px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-black);
  line-height: 180%;
}

.c-section-title__span-block span:not(.c-reverse-break-point) {
  background-color: var(--bg-darkGreen);
  color: var(--text-white);
  border-radius: 12px;
  padding-left: 5px;
  padding-right: 8px;
  font-size: 38px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.c-funcars-house__container1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
}

.c-funcars-house__container1 > div h2 {
  margin-bottom: 30px;
}

.c-funcars-house__container1 .c-btn-yellow-border {
  margin-top: 10px;
}

.c-funcars-house__container2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.c-funcars-house .c-funcars-comic {
  width: 100%;
  max-width: 800px;
  position: relative;
}

.c-funcars-house .c-funcars-comic img:not(.c-wheel_1, .c-wheel_2) {
  padding-left: 16px;
  padding-right: 16px;
  z-index: 2;
}

.c-wheel_1 {
  position: absolute;
  bottom: 0px;
  left: 0px;
  animation: rotateWheelLeft 3s linear infinite;
}

.c-wheel_2 {
  position: absolute;
  bottom: 0px;
  right: 0px;
  animation: rotateWheelRight 3s linear infinite;
}

.c-funcars-house .c-funcars-house__wrapper {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.c-funcars-house__section__lead {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-darkGreen);
  line-height: 150%;
}

.c-funcars-house__section__subText {
  font-weight: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 170%;
}

@media screen and (max-width: 1200px) {
  .c-funcars-house .c-funcars-house__wrapper {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .c-wheel_2,
  .c-wheel_1 {
    max-width: 100px;
    width: 100px;
    height: auto;
    z-index: 1;
  }
  .c-funcars-house {
    padding: 70px 0px 0px 0px;
  }
  .c-funcars-house__container {
    gap: 70px;
  }
  .c-funcars-house .c-section-title__span-block {
    font-size: 26px;
  }
  .c-funcars-house .c-section-title__span-block span {
    font-size: 26px;
  }
  .c-section-title__span-block span:not(.c-reverse-break-point) {
    border-radius: 8px;
  }
  .c-funcars-house .c-funcars-house__wrapper img {
    width: 100%;
  }
  .c-funcars-house .c-section-title__span-block {
    margin-bottom: 20px;
  }
  .c-funcars-house__section__lead {
    font-size: 16px;
  }
  .c-funcars-house__section__lead {
    font-size: 14px;
  }
}
/*=========================================================================================
REASON SECTION
=========================================================================================== */
.c-reason {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 70px;
  align-items: center;
  justify-content: center;
  padding: 120px 16px;
  overflow: hidden;
  background-color: var(--bg-lightGreen);
}

.c-reason__container {
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.c-reason__ul-wrapper {
  position: relative;
}

.c-reason__road {
  position: absolute;
  top: 40px;
}

.c-reason ul li {
  background-color: var(--bg-white);
  padding: 80px 100px 60px 100px;
  border: 5px solid var(--bg-darkGreen);
  border-radius: 25px;
  position: relative;
}

.c-reason__label {
  position: absolute;
  top: 0px;
  left: 0px;
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 15px 25px;
  background-color: var(--bg-darkGreen);
  font-family: "Roboto";
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--text-white);
  border: 1px solid var(--bg-darkGreen);
}

.c-reason ul {
  display: flex;
  flex-direction: column;
  gap: 140px;
  align-items: center;
  justify-content: center;
}

.c-reason ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.c-reason ul li div h3{
	font-size:26px;
	font-weight:900;
	line-height:140%;
	letter-spacing:0.05em;
}
.c-reason ul li div h3 span{
	font-size:26px;
	font-weight:900;
	line-height:140%;
	letter-spacing:0.05em;
}
.c-reason__text{
	font-size:18px;
	letter-spacing:0.05em;
	font-weight:600;
	line-height:170%;
}
.c-reason .c-reason__img {
  width: 100%;
  max-width: 461px;
}

.c-reason ul li div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content:center;
  gap: 35px;
}

@media screen and (max-width: 1200px) {
  .c-reason ul li {
    flex-direction: column-reverse;
  }
  .c-reason__road {
    top: 200px;
    left: -80px;
  }
}
@media screen and (max-width: 767px) {
  .c-reason {
    padding: 80px 16px;
  }
  .c-reason__container {
    gap: 30px;
  }
  .c-reason ul {
    gap: 90px;
  }
  .c-reason ul li {
    flex-direction: column-reverse;
    padding: 50px 0px 0px 0px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
    gap: 20px;
  }
  .c-reason__label {
    font-size: 18px;
    padding: 8px 14px;
    font-weight: 700;
    border-top-left-radius: 0px;
  }
  .c-reason ul li h3,
	.c-reason ul li h3 span{
    font-size: 21px;
  }
  .c-reason ul li p {
    font-size: 14px;
  }
  .c-reason .c-reason__img {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
  .c-reason ul li div {
    gap: 10px;
    padding: 0px 16px 30px 16px;
    z-index: 999;
    background-color: var(--bg-white);
  }
  .c-reason__road {
    position: absolute;
    top: 55px;
    left: -15px;
    display: none;
  }
  .c-reason__ul__li1 {
    position: relative;
    transform: translateZ(0); /* Creates new stacking context */
  }
  .c-reason__ul__li1::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: 10px;
    width: 100%;
    height: 375px;
    background: url("/funcars/wp-content/uploads/2026/04/img_reason_road1_sp.svg") no-repeat center/contain;
    z-index: -1;
    pointer-events: none;
  }
  .c-reason__ul__li2::after {
    content: "";
    position: absolute;
    bottom: -250px;
    left: -10px;
    width: 100%;
    height: 375px;
    background: url("/funcars/wp-content/uploads/2026/04/img_reason_road2_sp.svg") no-repeat center/contain;
    z-index: -1;
    pointer-events: none;
  }
  .c-reason__ul__li3::after {
    content: "";
    position: absolute;
    bottom: -180px;
    left: 20px;
    width: 100%;
    height: 375px;
    background: url("/funcars/wp-content/uploads/2026/04/img_reason_road3_sp.svg") no-repeat center/contain;
    z-index: -1;
    pointer-events: none;
  }
	.c-reason ul li div h3,
	.c-reason ul li div h3 span{
		font-size:21px;
	}
}
/*=========================================================================================
FLOW SECTION
=========================================================================================== */
.c-flow {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 0px 0px 0px;
  background-color: var(--bg-white);
}

.c-flow hgroup {
  margin-bottom: 50px;
}

.c-flow-web2 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.c-flow-web {
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  overflow: hidden;
}

.c-flow__header-title {
  width: 100%;
  display: inline-flex;
  justify-content: space-between;
  padding-bottom: 5px;
  font-size: 26px;
  letter-spacing: 0.05em;
  font-weight: 900;
  border-bottom: 2px solid rgba(0, 72, 49, 0.2);
  position: relative;
  margin-bottom: 20px;
  margin-left: 16px;
  margin-right: 16px;
}

.c-flow__header-title::before {
  content: "";
  width: 80px;
  height: 2px;
  background-color: var(--bg-darkGreen);
  position: absolute;
  bottom: -2px;
}

.c-flow-web__slide {
  border: 2px solid var(--bg-darkGreen);
  background-color: var(--bg-white);
  padding: 35px 25px 15px 25px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  min-width: 260px;
  max-width: 260px;
  min-height: 287px;
  position: relative;
}

.c-flow-web__slide-title,
.c-flow-web__slide-title span {
  text-align: center;
  font-size: 20px;
  line-height: 140%;
  letter-spacing: 0.05em;
  font-weight: 900;
}

.c-flow-web__slide-desc {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 160%;
  font-weight: 500;
  margin-top: 8px;
}

.c-flow-web__slider {
  overflow: visible;
}

.c-flow-web__slider-track li {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible;
  padding-top: 40px;
}

.c-flow-web__slider-track li:first-child {
  padding-left: 16px !important;
}

.c-flow__num {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.c-flow-slider__container {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 50px;
}

.c-flow-web__slider {
  position: relative;
}

.c-flow-web__slider-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-inline: var(--slider-padding);
  scroll-behavior: smooth;
  list-style-type: none;
  padding: 0;
  margin-right: calc(var(--slider-column-gap) * -1);
  /* REMOVED the conflicting width:100% and min-width:100% */
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.c-flow-web__slider-track:active {
  cursor: grabbing;
}

.c-flow-web__slider-track::-webkit-scrollbar {
  display: none;
}

.c-flow-web__slider-track > * {
/*   min-width: var(--slide-min-width);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding-right: var(--slider-column-gap); */
}

.c-flow-web__slider-track li img:last-child {
  margin-right: 15px;
}
.c-flow__header-title img{
    margin-right:20px;
 }

.c-flow__header-title1{
    padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-flow {
    padding: 70px 0px 0px 0px;
  }
  .c-flow hgroup {
    margin-bottom: 20px;
  }
  .c-flow__header-title {
    font-size: 18px;
    padding-bottom: 0px;
    line-height: 40px;
    margin-bottom: 0px;
  }
  .c-flow__header-title img {
    display: none;
  }
  .c-flow-web__slide {
    min-width: 211px;
    max-width: 211px;
    padding: 25px 10px 10px 10px;
    min-height: 230px;
  }
  .c-flow-web__slide img {
    height: 50px;
    width: auto;
  }
  .c-flow-web__slide-title,
	 .c-flow-web__slide-title span{
    font-size: 18px;
  }
  .c-flow-web__slide-desc {
    font-size: 14px;
  }
  .c-flow-web__slider-track li {
    gap: 10px;
  }
  .c-flow-web__slider-track li img:last-child {
    height: 20px;
    margin-right: 25px;
  }
  .c-flow__num {
    width: 38px !important;
  }
  .c-flow-web2 {
    margin-top: 40px !important;
  }
}
/*=========================================================================================
NEWS SECTION
=========================================================================================== */
.c-news {
  background-color: var(--bg-white);
  width: 100%;
  padding: 120px 0px 0px 0px;
  position: relative;
}

.c-news__img {
  width: 100%;
  margin-top: -80px;
  margin-bottom: -10px;
}

.c-news .c-btn-yellow-border {
  margin: 0px auto;
  margin-top: 20px;
}

/* ── Header ── */
.c-news__header {
  text-align: center;
  margin-bottom: 48px;
}

.news-badge {
  display: inline-block;
  background: var(--green-dark);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 5px 18px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.news-title {
  font-family: "Noto Serif JP", serif;
  font-size: 32px;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.08em;
}

/* ── Tab Bar ── */
.c-news__tabs-wrapper {
  max-width: 1140px;
  margin: 0 auto 0;
  padding: 0 20px;
  margin-top: 50px;
}

.c-news__tabs-container {
  position: relative;
  padding-top: 44px;
}

/* Car rides above the active tab */
.c-news__car-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 33.3333333333%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  transition: left 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}

.c-news__car-icon-wrap svg {
  width: 72px;
  height: auto;
  fill: var(--green-dark);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.12));
}

.c-news__tabs {
  display: flex;
  border: 1.5px solid var(--border);
  border-radius: 140px;
  overflow: visible;
}

.c-news__tabs-container .tab {
  flex: 1;
  padding: 13px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 900;
  cursor: pointer;
  color: var(--text-dark);
  border: none;
  transition: background 0.2s, color 0.2s;
  letter-spacing: 0.05em;
  background-color: var(--bg-lightGreen);
  border-left: 1px solid var(--bg-gray);
}

.c-news__tabs-container .tab:first-child {
  border-left: none;
}

.c-news__tabs-container .tab.active {
  background: var(--bg-darkGreen);
  color: var(--text-white);
  position: relative;
  overflow: visible;
}

.c-news__tabs-container .tab.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  bottom: -15px;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 20px solid var(--bg-darkGreen);
  z-index: 2;
}

.c-news__tabs-container .tab:not(.active):hover {
  color: var(--text-darkGreen);
}

.c-news__tabs-container .tab:first-of-type {
  border-top-left-radius: 140px;
  border-bottom-left-radius: 140px;
}

.c-news__tabs-container .tab:last-of-type {
  border-top-right-radius: 140px;
  border-bottom-right-radius: 140px;
}

/* ── News List ── */
.c-news__list {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px 60px !important;
  margin-top: 50px;
	
}

.c-news__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
  cursor: pointer;
  transition: background 0.15s;
  width: 100%;
  box-shadow: 0 -0.5px 0 0 rgb(51, 51, 51);
}

.c-news__item:hover .c-news__heading,
.c-news__item:hover .c-news__tag,
.c-news__item:hover .c-news__date {
  color: var(--text-lineGreen);
}

.c-news__item .c-news__arrow-btn {
  background-color: var(--bg-darkGreen);
  border-radius: 250px;
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-news__item .c-news__arrow-btn img {
  width: 25px;
  height: auto;
}

.news-content {
  flex: 1;
  min-width: 0;
	margin-right:10px;
}

.c-news__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.c-news__tag {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  transition: all 0.3s ease-in-out;
  color:var(--text-black);
}

.c-news__date {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.05em;
  font-family: "Roboto";
  transition: all 0.3s ease-in-out;
  color:var(--text-black);
}

.c-news__heading {
  font-size: 22px;
  line-height: 160%;
  letter-spacing: 0.05em;
  font-weight: 900;
  transition: all 0.3s ease-in-out;
  color:var(--text-black);
  border-bottom:1px solid var(--bg-gray);
  width:fit-content;
}

.c-news__excerpt {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 160%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-news__arrow-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Divider line ── */
.divider-line {
  max-width: 760px;
  margin: 0 auto 18px;
  padding: 0 20px;
}

.divider-line hr {
  border: none;
  border-top: 1.5px solid var(--border);
}

@media screen and (max-width: 767px) {
  .c-news {
    padding: 70px 0px 0px 0px;
  }
  .c-news__car-icon-wrap {
    top: 22px;
  }
  .c-news__car-icon-wrap img {
    height: 24px;
    width: auto;
    top: -20px;
  }
  .c-news__tabs-container .tab {
    font-size: 16px;
  }
  .c-news__tag,
  .c-news__date {
    font-size: 12px;
  }
  .c-news__heading {
    font-size: 17px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .c-news__tabs-wrapper {
    margin-top: 10px;
  }
  .c-news__list {
    margin-top: 35px;
    padding-bottom: 20px;
  }
  .c-news__excerpt {
    font-size: 14px;
  }
  .c-news__arrow-btn {
    height: 30px !important;
    width: 30px !important;
  }
  .c-news__arrow-btn img {
    width: 15px !important;
    height: auto;
  }
  .c-news__img {
    margin-top: -10px;
    margin-bottom: -10px;
  }
  .c-news picture {
    display: block;
  }
}
/*=========================================================================================
SHOP SECTION
=========================================================================================== */
.c-shop__wrapper {
  background-color: var(--bg-white);
}

.c-shop {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 180px 16px 16px 16px;
/*   background-image: url("/funcars/wp-content/uploads/2026/03/bg_reason.svg"); */
  background-repeat: no-repeat;
  background-size: cover;
}

.c-shop__container {
  width: 100%;
  max-width: 1140px;
  background-color: var(--bg-white);
  padding: 100px 100px 100px 100px;
  border-radius: 25px;
  box-shadow: 25px 25px 0px 0px var(--bg-darkGreen);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.c-reason__icon-car {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -80px;
}

.c-shop__container .c-btn-yellow-border {
  margin-top: 20px;
}

.c-shop__bg-curve {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-shop {
    padding: 100px 16px;
/*     background-image: url("/funcars/wp-content/uploads/2026/04/bg_shop_sp.svg"); */
  }
  .c-shop .c-reason__icon-car {
    width: 110px;
    height: auto;
    top: -40px;
  }
  .c-shop__container {
    padding: 50px 16px;
    box-shadow: var(--box-shadow-greenM);
  }
  .c-shop__wrapper .c-section--store__ul {
    margin-top: 10px;
  }
  .c-shop__bg-curve {
    transform: translate(1.4);
  }
}
/*=========================================================================================
FAQ SECTION
=========================================================================================== */
#loan-page .c-faq{
	padding:100px 16px;
}
.c-faq {
  background-color: var(--bg-white);
  padding: 50px 16px 100px 16px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 70px;
}

.p-faq__page__item {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.c-faq__accordion {
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.2s ease;
  border: 3px solid var(--bg-darkGreen);
  overflow: hidden;
  position: relative;
}

.c-faq__accordion p {
  letter-spacing: 0.05em;
  font-size: 16px;
  font-weight: 900;
  line-height: 160%;
}

.c-faq__accordion:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.c-faq__container__toggle {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.c-faq__accordion_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  cursor: pointer;
  padding: 15px 30px;
  background: #ffffff;
  border-radius: 8px;
  transition: background 0.2s;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: relative;
  z-index: 1;
}

.c-faq__accordion_header:active {
  background: #f8fafc;
}

.c-faq__accordion_header > div:first-child {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
}

.c-faq__icon__q,
.c-faq__icon__a {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.c-faq__icon__q {
  background-color: var(--color-primary);
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.c-faq__icon__a {
  background-color: var(--color-secondary);
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.c-faq__icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
}

.c-faq__accordion_toggle {
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004831' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.c-faq__container__toggle:checked ~ .c-faq__accordion_header .c-faq__accordion_toggle {
  transform: rotate(180deg);
}

.c-faq__accordion_inner {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
  opacity: 0;
  min-height: 0;
}

.c-faq__container__toggle:checked ~ .c-faq__accordion_inner {
  grid-template-rows: 1fr;
  opacity: 1;
}

.c-faq__accordion_box {
  overflow: hidden;
  min-height: 0;
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #F8F8F8;
  border-top: 1px solid #eef2f6;
  /* Start with 0 padding when closed */
  padding: 0 30px;
  transition: padding 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Add padding only when the accordion is open */
.c-faq__container__toggle:checked ~ .c-faq__accordion_inner .c-faq__accordion_box {
  padding: 20px 30px;
}

.c-faq__answer-text {
  color: var(--color-text-medium);
  font-size: 1rem;
  line-height: 1.55;
  flex: 1;
  margin-top: -2px;
}

.p-faq__page__section {
  width: 100%;
}

.c-faq__question-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.c-faq__accordion_header:hover .c-faq__accordion_toggle {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23004831' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
}

@media screen and (max-width: 767px) {
  #loan-page .c-faq{
	padding:70px 16px;
  }
  .c-faq__accordion_header,
  .c-faq__container__toggle:checked ~ .c-faq__accordion_inner .c-faq__accordion_box {
    padding: 10px 12px;
  }
  .c-faq__accordion_box {
    padding-left: 12px;
    padding-right: 12px;
  }
  .c-faq__accordion p {
    font-size: 14px;
  }
  .c-faq__accordion_header > div:first-child {
    gap: 10px;
  }
  .c-faq__accordion_header {
    gap: 0px;
  }
}

/*=========================================================================================
ABOUT PAGE
=========================================================================================== */
.p-choose-car {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 80px 0px 0px 0px;
  background-color:var(--bg-white);
}

.p-choose-car__container {
  width: 100%;
  max-width: 1040px;
  padding-left: 16px;
  padding-right: 16px;
  padding-bottom: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
}

.p-choose-car hgroup h3 {
  color: var(--text-white);
  background-color: var(--bg-darkGreen);
  padding: 8px 15px;
  border-radius: 15px;
  font-size: 38px;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
  margin-bottom: 20px;
}

.p-choose-car hgroup h2 {
  font-size: 38px;
  line-height: 50%;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-choose-car__container-desc .p-choose-car__container-desc__bold {
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--text-darkGreen);
}

.p-choose-car__container-desc p {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 170%;
  text-align: center;
}

.p-choose-car__container-desc p.p-choose-car__container-desc__bold + p:not(.p-choose-car__container-desc__bold) {
  margin-top: 10px;
}

.p-about-comics {
  width: 100%;
  margin: 0px auto;
  position: relative;
}

.p-about-comics img:not(.c-wheel_1, .c-wheel_2) {
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
  z-index: 2;
}

.p-about-comics .c-funcars-house__container2 {
  width: 100%;
  max-width: 800px;
  margin: 0px auto;
  padding-bottom: 100px;
}

.p-about-comics .c-funcars-comic {
  width: 100%;
}
#about-page{
	background-color:var(--bg-white);
}
#about-page .p-loadn-appropval__container__content2{
	display:none;
}
#about-page .p-about-comics {
  margin-top: 70px !important;
  background-color:var(--bg-white);
}
#about-page .p-credit-loan{
	background-color:var(--bg-white);
}
#about-page .p-credit-loan hgroup h2,
#about-page .p-credit-loan hgroup span {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 130%;
  color:var(--bg-darkGreen);
}
#about-page .c-dots-curve{
	width:100vw;
}
@media screen and (max-width: 767px) {
  .p-choose-car {
    padding: 50px 0px 0px 0px;
  }
  .p-choose-car hgroup h3 {
    font-size: 25px;
    border-radius: 8px;
    margin-bottom: 0px;
  }
  .p-choose-car hgroup h2 {
    font-size: 25px;
    text-align: center;
    line-height: 140%;
    max-width: 80%;
    margin: 0px auto;
  }
  .p-choose-car__container-desc .p-choose-car__container-desc__bold {
    font-size: 17px;
    text-align: left;
  }
  .p-choose-car__container-desc p.p-choose-car__container-desc__bold + p:not(.p-choose-car__container-desc__bold),
  .p-choose-car__container-desc p {
    text-align: left;
  }
  .p-choose-car__container {
    gap: 20px;
  }
  #about-page .p-credit-loan hgroup h3 {
    font-size: 14px;
  }
  #about-page .p-credit-loan hgroup h2,
  #about-page .p-credit-loan hgroup span {
    font-size: 25px;
    text-align: center;
  }
  #about-page .p-loan-benefits .p-buildings__header h2 {
    font-size: 22px;
    padding: 8px 14px 14px 14px;
  }
  .p-about-comics .c-funcars-house__container2 {
    padding-bottom: 60px;
  }
}
/*=========================================================================================
ABOUT PAGE - FUN CARS CREDIT LOAN
=========================================================================================== */
#about-page .p-loan-appropval__container__content2 {
  display: none;
}

#about-page .p-loan-benefits .c-wheel_1,
#about-page .p-loan-benefits .c-wheel_2 {
  display: none;
}

.p-credit-loan {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0px 0px 0px;
}

.p-credit-loan__container {
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 100px;
  padding-bottom: 60px;
}

.p-credit-loan__container__content1 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}

.p-credit-loan__container__content2 {
  width: 100%;
  padding-left: 16px;
  padding-right: 16px;
}

.p-credit-loan__container__content1 hgroup {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.p-credit-loan .c-bubble-green {
  font-size: 20px;
}

.p-credit-support {
  border-radius: 20px;
  border: 7px solid var(--bg-darkGreen);
  width: 100%;
  overflow: hidden;
}

.p-credit-support__lead,
.p-credit-support__lead span {
  font-size: 30px;
  letter-spacing: 0.05em;
  line-height: 150%;
  font-weight: 700;
  background-color: var(--bg-darkGreen);
  width: 100%;
  color: var(--text-white);
  text-align: center;
  padding: 8px;
}

.p-credit-support__content {
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 45px 60px;
  gap: 40px;
}

.p-credit-support__text p {
  font-size: 19px;
  letter-spacing: 0.07em;
  line-height: 160%;
  font-weight: 500;
}

.p-credit-support__text__lead {
  font-size: 24px !important;
  letter-spacing: 0.07em !important;
  line-height: 160% !important;
  font-weight: 700 !important;
  color: var(--text-darkGreen) !important;
  margin-bottom: 10px !important;
}

.p-credit-loan__container__content2__card {
  display: flex;
  flex-direction: row;
  gap: 45px;
  align-items: center;
  justify-content: center;
}

.p-credit-loan__container__content2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.p-credit-loan__container__content2 h3,
.p-credit-loan__container__content2 h3 span {
  font-size: 36px;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--text-darkGreen);
  line-height: 120%;
}

.p-credit-loan__container__content2__card figure {
  width: 335px;
  max-width: 350px;
}

.p-credit-loan__container__content2__img {
  width: 100%;
  height: auto;
}

.p-credit-loan__container__content2__card figure figcaption {
  margin-top: 15px;
}

.figcaption__title {
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 150%;
  text-align: center;
  margin-bottom: 8px;
  font-size: 19px;
  color:#171717;
}

.figcaption__desc {
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 170%;
  font-weight: 500;
  color:#171717;
}
.p-credit-loan__container__content2 h3, .p-credit-loan__container__content2 h3 span{
	text-align:center;
}
@media screen and (max-width: 1200px) {
  .p-credit-support__content {
    flex-direction: column;
    padding: 25px 16px;
  }
	.p-credit-loan__container__content2__card figure {
  width: 100%;
  max-width: 350px;
}

}
@media screen and (max-width: 767px) {
  .p-credit-loan__container {
    max-width: 100%;
    gap: 60px;
  }
  .p-credit-loan {
    padding: 70px 0px 0px 0px;
  }
  .p-credit-support__lead,
  .p-credit-support__lead span {
    font-size: 21px;
    line-height: 120%;
  }
  .p-credit-support__content {
    flex-direction: column;
    padding: 25px 16px;
  }
  .p-credit-support__content img {
    max-width: 311px;
  }
  .p-credit-support__text__lead {
    font-size: 18px !important;
  }
  .p-credit-support__text p {
    font-size: 15px;
  }
  .p-credit-loan__container__content2 h3,
  .p-credit-loan__container__content2 h3 span {
    font-size: 25px;
    text-align: center;
  }
  .p-credit-loan__container__content2__card {
    flex-direction: column;
  }
  .p-credit-support {
    border-radius: 12px;
    border: 3px solid var(--bg-darkGreen);
    width: 100%;
  }
}
/*=========================================================================================
LOAN PAGE
=========================================================================================== */
.p-loan-approval {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 16px;
  background-color:var(--bg-white);
}

.p-loan-approval__container {
  width: 100%;
  max-width: 1140px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  align-items: center;
}

.c-loan-approval__images {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.c-loan-approval__images img {
  width: 100%;
}

.p-loan-approval__container__content1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.p-loan-approval__container__content1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.p-loan-approval__container__content1 hgroup p {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 150%;
  font-weight: 900;
  display: inline-flex;
  gap: 11px;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  text-align: center;
}

.p-loan-approval__container__content1 hgroup h2,
.p-loan-approval__container__content1 hgroup h2 span {
  font-size: 40px;
  letter-spacing: 0.05em;
  line-height: 150%;
  font-weight: 900;
  color: var(--text-darkGreen);
  text-align: center;
}

.p-loans-car-slider {
  padding: 100px 0px 30px 0px;
/*   background-image: url("/funcars/wp-content/uploads/2026/04/bg_lightGreen_dots.svg"); */
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1200px) {
  .c-loan-approval__images {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .p-loan-approval {
    padding: 70px 16px;
  }
  .p-loan-approval__container__content1 hgroup {
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;
  }
  .p-loan-approval__container__content1 hgroup p {
    font-size: 14px;
    max-width: 240px;
    margin: 0px auto;
    gap: 0px;
  }
  .p-loan-approval__container__content1 hgroup h2,
  .p-loan-approval__container__content1 hgroup h2 span {
    font-size: 26px;
    margin-top: 15px;
    line-height: 100%;
  }
  .p-loans-car-slider {
    padding: 70px 16px;
  }
}
/*=========================================================================================
LOAN PAGE - LOAN BENEFITS
=========================================================================================== */
.p-loan-benefits {
  width: 100%;
  background-color:var(--bg-white);
}

.p-loan-benefits .p-buildings__header h2 {
  font-size: 36px;
  padding-left: 40px;
  padding-right: 40px;
}

#loan-page .p-loan-benefits .c-btn-yellow-border {
  display: none;
}

.c-step__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 50px 16px 80px 16px;
}

.c-step__wrapper__content {
  width: 100%;
  max-width: 1140px;
  display: grid;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.c-step__wrapper__content__item {
  width: 100%;
  max-width: 555px;
  border: 2px solid var(--bg-darkGreen);
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--bg-white);
  z-index: 2;
}

.c-step__wrapper__content__item__label {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  background-color: var(--bg-darkGreen);
  padding: 20px 10px;
  width: 100%;
  font-size: 22px;
  letter-spacing: 0.05em;
  font-weight: 700;
  color: var(--text-white);
  line-height: 150%;
}

.c-step__wrapper__content__item__label span:not(.c-reverse-break-point) {
  background-color: var(--bg-white);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text-darkGreen);
  padding: 8px 15px;
  border-radius: 4px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-wrap: nowrap;
}

.c-step__wrapper__content__item__desc {
  width: 100%;
  padding: 25px 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  background-color: var(--bg-white);
}

.c-step__wrapper__content__item__desc p:first-child {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 160%;
}

.c-step__wrapper__content__item__desc p:last-child {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.07em;
  line-height: 160%;
}

.p-item__label-break {
  display: none;
}

.p-loan-benefits .c-btn-yellow-border {
  margin: 0px auto;
}

@media screen and (max-width: 767px) {
  .c-step__wrapper {
    padding: 30px 16px;
  }
  .c-step__wrapper__content__item__label {
    padding: 12px 8px;
  }
  .c-step__wrapper__content__item__label {
    font-size: 18px;
  }
  .c-step__wrapper__content__item__label span {
    font-size: 14px;
  }
  .p-item__label-break {
    display: block;
  }
  .c-step__wrapper__content__item__desc {
    padding: 15px 20px;
    gap: 8px;
  }
  .c-step__wrapper__content__item__desc p:first-child {
    font-size: 17px;
  }
  .c-step__wrapper__content__item__desc p:last-child {
    font-size: 14px;
  }
  .p-loan-benefits .p-buildings__header h2 {
    font-size: 22px;
    padding: 8px 14px 14px 8px;
  }
}
/*=========================================================================================
FLOW PAGE
=========================================================================================== */
.p-flow-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 100px 0px 0px 0px;
  background-color:var(--bg-white);
}

.c-flow-page__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 70px;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  margin-right: 16px;
}

.c-section__list {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.c-flow-page__list-item {
  width: 100%;
  max-width: 300px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.c-flow-page__list-item__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.c-flow-page__list-item__num {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.c-flow-page__list-item__img {
  width: 260px;
  border-radius: 8px;
  border: 3px solid var(--bg-darkGreen);
  height:140px;
}

.c-flow-page__list-item__content > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.c-flow-page__list-item__content__step {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Roboto";
  color: var(--text-darkGreen);
}

.c-flow-page__list-item__content__title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-darkGreen);
}

.c-flow-page__list-item__content__desc {
  font-size: 14px;
  line-height: 160%;
  font-weight: 500;
  letter-spacing: 0.07em;
  margin-top: 5px;
}

@media screen and (max-width: 1200px) {
  .p-flow-page {
    padding: 70px 0px 0px 0px;
  }
  .c-flow-page__container {
    gap: 30px;
  }
  .c-flow-page__list-item {
    max-width: 600px;
  }
  .c-section__list,
  .c-flow-page__list-item {
    flex-direction: column;
  }
	.c-flow-page__list-item__img {
  width: 100%;

  height:auto;
}
  .c-flow-page__list-item__arrow {
    transform: rotate(90deg);
  }
  .c-flow-page__list-item__num {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .c-flow-page__list-item {
	width:100%;
    max-width: 500px;
    padding-left: 16px;
    padding-right: 16px;
  }
}
/*=========================================================================================
FLOW PAGE - SINGLE MOTHER SECTION
=========================================================================================== */
#flow-page .c-shop-white {
  padding: 100px 16px;
}

.c-single-mother {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.c-single-mother__wrapper {
/*   background-image: url("/funcars/wp-content/uploads/2026/04/bg_lightGreen_dots.svg"); */
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 140px 16px 100px 16px;
}
/* @media screen and (max-width:1000px){
	.c-single-mother__wrapper{
		background-image:url('/funcars/wp-content/uploads/2026/04/bg_single_mother_sp.svg');
	}
} */
.c-single-mother__container {
  width: 100%;
  max-width: 1120px;
  padding: 100px;
  background-color: var(--bg-white);
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
  box-shadow: var(--box-shadow-greenL);
  border-radius: 25px;
  position: relative;
}

.c-single-mother__container__image {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.c-single-mother__container .c-single-mother__container__left-img {
  border-radius: 8px;
  width: 100%;
  max-width: 370px;
  height: auto;
  border: 2px solid var(--bg-darkGreen);
}

.c-single-mother__list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
}

.c-single-mother__list__title {
  font-size: 17px;
  letter-spacing: 0.05em;
  font-weight: 900;
  color: var(--text-darkGreen);
  margin-bottom: 5px;
  line-height: 160%;
}

.c-single-mother__list__desc {
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 160%;
  font-weight: 500;
}

.c-single-mother__list li {
  padding-bottom: 5px;
  border-bottom: 1px solid transparent;
  -o-border-image: repeating-linear-gradient(to right, rgb(51, 51, 51) 0px, rgb(51, 51, 51) 6px, transparent 6px, transparent 12px) 1;
     border-image: repeating-linear-gradient(to right, rgb(51, 51, 51) 0px, rgb(51, 51, 51) 6px, transparent 6px, transparent 12px) 1;
}

.c-single-mother__icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -80px;
}

.c-dots-curve {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
}

#flow-page .c-dots-curve {
  display: none;
}

@media screen and (max-width: 1200px) {
  .c-single-mother__container__image {
    flex-direction: column;
  }
  .c-single-mother__container .c-single-mother__container__left-img {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
/*   .c-single-mother__wrapper {
    background-image: url("/funcars/wp-content/uploads/2026/04/bg_lightGreen_dots_sp.svg");
  } */
  .c-single-mother__wrapper {
    padding-top: 70px;
    padding-bottom: 50px;
  }
  #flow-page .c-shop-white {
    padding: 70px 16px;
  }
  .c-single-mother__container {
    box-shadow: var(--box-shadow-greenM);
  }
  .c-single-mother__icon {
    width: 70px;
    top: -20px;
  }
  .c-single-mother__container {
    padding: 70px 16px 40px 16px;
    gap: 20px;
  }
  .c-single-mother__container__image {
    flex-direction: column;
  }
  .c-single-mother__list__title {
    font-size: 16px;
  }
  .c-single-mother__list__desc {
    font-size: 15px;
  }
  .c-dots-curve {
    width: 100%;
    transform: scale(1);
  }
}
/*=========================================================================================
FAQ PAGE
=========================================================================================== */
.p-faq-page {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
  justify-content: center;
  padding: 100px 16px;
  background-color: var(--bg-white);
}

.section-all-faqs-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
}

.faq-category-buttons {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 375px;
  min-width: 375px;
}

.button-faq-dropdown {
  background-color: var(--bg-white);
  padding: 12px 10px;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: row;
  gap: 8px;
  border: none;
  border-top: 1px solid var(--bg-gray);
  transition: all 0.3s ease-in-out;
}

.button-faq-dropdown:last-child {
  border-bottom: 1px solid var(--bg-gray);
}

.button-faq-dropdown span {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-darkGreen);
  transition: all 0.3s ease-in-out;
  line-height: 130%;
}

.button-faq-dropdown img {
  transition: all 0.3s ease-in-out;
}

.faq-button-arrow {
  margin-left: auto;
}

.button-faq-dropdown:hover {
  background-color: var(--bg-darkGreen);
}

.button-faq-dropdown:hover span {
  color: var(--text-white);
}

.button-faq-dropdown:hover img {
  filter: var(--filter-white);
}

.button-faq-dropdown.active {
  background-color: var(--bg-darkGreen);
}

.button-faq-dropdown.active span {
  color: var(--text-white);
}

.button-faq-dropdown.active img {
  filter: var(--filter-white);
}

.faq-title {
  background-color: var(--bg-darkGreen);
  display: flex;
  flex-direction: row;
  gap: 7px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 8px;
  margin-bottom: -8px;
}

.faq-title:not(.faq-title:first-child) {
  margin-top: 40px;
}

.faq-title span {
  color: var(--text-white);
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .section-all-faqs-container {
    flex-direction: column;
  }
  .faq-categories-container {
    width: 100%;
    min-width: 0px;
  }
  .faq-category-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 7px;
         column-gap: 7px;
    row-gap: 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0px;
  }
  .button-faq-dropdown {
    width: 100%;
    max-width: 100%;
    border: 1px solid var(--bg-darkGreen);
    border-radius: 4px;
    min-height: 56px;
    height: 56px;
    align-items: center;
    padding: 10px 15px;
  }
  .button-faq-dropdown:last-child {
    border-bottom: 1px solid var(--bg-darkGreen);
  }
}
@media screen and (max-width: 767px) {
  .section-all-faqs-container {
    gap: 35px;
  }
  .faq-title:not(.faq-title:first-child) {
    margin-top: 20px;
  }
  .p-faq-page {
    padding: 40px 16px;
  }
  .button-faq-dropdown span {
    font-size: 14px;
    margin-right: 5px;
  }
  .faq-title {
    border-radius: 4px;
    padding: 8px 8px;
  }
  .faq-title span {
    font-size: 19px;
  }
  .faq-title img {
    width: 22px;
    height: auto;
  }
}

@media screen and (max-width:450px){
	.button-faq-dropdown span{
		font-size:13px;
	}
}
/*=========================================================================================
COMPANY OVERVIEW
=========================================================================================== */
#company-overview-page{
	background-color:var(--bg-white)
}
.p-company-overview {
  width: 100%;
  padding: 100px 16px 50px 16px;
  background-color:var(--bg-white);
}

.p-company-overview__container {
  width: 100%;
/*   max-width: 720px; */
  max-width:fit-content;
  margin: 0px auto;
  padding: 30px 40px;
  border: 2px solid var(--bg-darkGreen);
  border-radius: 20px;
}

.p-company-overview__table {
  border-collapse: collapse;
  width: 100%;
  margin-top: 30px;
  background-color:var(--bg-white);
}

.p-company-overview__table tr {
  border-bottom: 1px solid var(--bg-gray);
  border-left: none;
  border-right: none;
  border-top: none;
  background-color:var(--bg-white);
}

.p-company-overview table:not(.has-border-color) :where(th, td){
	border:none;
}
.p-company-overview  table tr:nth-of-type(2n+1){
	background-color:var(--bg-white);
}
.p-company-overview__table td {
  padding-bottom: 13px;
  line-height:140% !important;
}

.p-company-overview__table td,
.p-company-overview__table td span {
  font-size: 18px;
  letter-spacing: 0.05em;
  font-weight: 500;
  padding-top: 13px;
  line-height: 100%;
}

.p-company-overview__table td:first-child {
  color: var(--text-darkGreen);
  font-weight: 700;
  min-width: 100px;
  vertical-align: top;
}

.p-company-overview__map-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height:150%;
}

.p-company-overview__map-details p,
.p-company-overview__map-details a span {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 150%;
}

.p-company-overview__map-details a span {
  margin-left: 5px;
  border-bottom: 1px solid var(--bg-gray);
}

.p-company-overview__map-details__map {
  background-color: var(--bg-lightGreen);
  width: auto;
  max-width:515px;
  height: 264px;
  border-radius: 16px;
  margin-top: 10px;
}
.p-company-overview__map-details__map iframe{
	height:100%;
	border-radius:16px;
}
.p-company-overview__map-details a {
	color:var(--text-black);
	transition:all 0.3s ease-in-out;
}.p-company-overview__map-details a:hover{
	color:var(--text-darkGreen);
}
/*CEO MESSAGE*/
.c-ceo-person-messsage {
  width: 100%;
}

.c-ceo-person-messsage .c-person-message__container {
  padding: 100px 16px 70px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
/*   background-image: url("/funcars/wp-content/uploads/2026/04/bg_lightGreen_dots.svg"); */
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .p-company-overview__container {
    padding: 30px 16px;
  }
  .p-company-overview {
    padding: 60px 16px 50px 16px;
  }
  .p-company-overview__table td {
    font-size: 15px;
  }
  .p-company-overview__map-details p,
  .p-company-overview__map-details a span {
    font-size: 15px;
  }
  .p-company-overview__table td:first-child {
    min-width: 85px;
  }
}
@media screen and (max-width: 550px) {
  .p-company-overview__map-details__map {
    background-color: var(--bg-lightGreen);
    width: auto;
    height: 120px;
    border-radius: 16px;
    margin-top: 10px;
  }
}
/*===================================
THANKS PAGE
====================================*/
.p-recruitment-thanks {
  width: 100%;
  padding: 100px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background-color:var(--bg-white);
}

.p-recruiment-thanks__container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.p-recruiment-thanks__container h1,
.p-recruiment-thanks__container span {
  font-size: 32px;
  font-weight: 900;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: center;
}

.p-recruiment-thanks__container p,
.p-recruiment-thanks__container p span{
  font-size: 20px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .p-recruiment-thanks__container p {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-recruitment-thanks {
    padding: 60px 16px;
  }
  .p-recruiment-thanks__container {
    gap: 20px;
  }
  .p-recruiment-thanks__container h1,
  .p-recruiment-thanks__container span {
    font-size: 22px;
  }
  .p-recruiment-thanks__container p,
.p-recruiment-thanks__container p span{
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .p-recruiment-thanks__container h1 .c-break-point {
    display: block;
    max-width: 70%;
    margin: 0 auto;
  }
}
/*=========================================================================================
KARISHINA PAGE
=========================================================================================== */
.c-form-main {
  width: 100%;
/*   height:100%; */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 100px 16px;
  background-color: var(--bg-white);
  position:relative;
}

.c-form-main__container {
  width: 100%;
  max-width: 1200px;
  margin-top: 60px;
}

.c-form {
  width: 100%;
  background-color: var(--bg-lightGreen);
  border-radius: 40px;
  padding: 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
}

.c-form__title p,
.c-form__title span {
  font-size: 20px;
  line-height: 170%;
  letter-spacing: 0.05em;
  font-weight: 500;
  text-align: center;
  color: var(--text-black);
}

.c-form__title p:nth-child(2) {
  margin-top: 30px;
}

/* Element: c-form__header */
.c-form__header p + p {
  margin-top: 6px;
}

.c-form__section {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

/* Block: c-field */
.c-field {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

/* Element: c-field__label */
.c-field__label {
  display: flex;
  align-items: flex-start;
  flex-direction:row;
  gap: 6px;
  padding-top: 7px;
}

/* Element: c-field__label-text */
.c-field__label-text {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin-left: 5px;
  text-wrap: nowrap;
  line-height: 130%;
}

/* Element: c-field__control */
.c-field__control {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 4px;
  width: 100%;
  max-width: 600px;
}

/* Element: c-field__address-second */
.c-field__address-second {
  margin-top: 4px;
}

/* Block: c-badge */
.c-badge {
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 4px;
  white-space: nowrap;
  color: var(--white);
  min-width: 28px;
  text-align: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}

/* Modifier: c-badge--required */
.c-badge--required {
  background: var(--bg-darkGreen);
  color: var(--text-white);
}

/* Modifier: c-badge--optional */
.c-badge--optional {
  background: var(--bg-lightGray);
  color: var(--text-black);
}

/* Base input/select styles */
.c-form input[type=text],
.c-form input[type=email],
.c-form input[type=tel],
.c-form input[type=number],
.c-form select {
  width: 100%;
  max-width: 600px;
  padding-left: 24px;
  padding-right: 24px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid var(--bg-gray);
  max-height: 55px;
  height: 55px;
  font-family:'Roboto' !important;
}

.c-form textarea {
  width: 100%;
  max-width: 600px;
  padding: 24px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 4px;
  border: 1px solid var(--bg-gray);
  font-family:'Roboto' !important;
}

.c-form input::-moz-placeholder, .c-form textarea::-moz-placeholder {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(51,51,51, 0.2) !important;
  font-family:'Roboto' !important;
}

.c-form input::placeholder,
.c-form textarea::placeholder {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(51,51,51, 0.2) !important;
}

.c-form input:focus,
.c-form select:focus {
  border-color: var(--bg-darkGreen);
  outline: none;
}

/* Block: c-select */
.c-select {
  position: relative;
}

.c-select::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid var(--bg-darkGreen);
  border-radius: 2px;
  pointer-events: none;
}

.c-select select {
  cursor: pointer;
  -webkit-appearance: none; 
  -moz-appearance: none;
  appearance: none; 
  min-width: 87px;
  color: var(--bg-gray);
 font-family:'Roboto' !important
}

.c-select select:valid {
  color: #000; 
}

.c-select--year {
  min-width: 115px !important;
}

.c-radio-group {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 34px;
}

/* Element: c-radio-group__item */
.c-radio-group__item {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 20px;
}

input[type=radio] {
  width: 22px;
  height: 22px;
  accent-color: var(--bg-darkGreen);
  cursor: pointer;
  flex-shrink: 0;
  color: transparent;
}

/* Block: c-amount */
.c-field-amount {
  margin-top: 15px;
}

.c-amount {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 34px;
}

/* Element: c-amount__unit */
.c-amount__unit {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 700;
  white-space: nowrap;
}

/* Element: c-amount__input */
.c-amount input[type=text]{
  max-width: 88px !important;
}

/* Block: c-date */
.c-date {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.c-date .c-select {
  min-width: 70px;
}

/* Element: c-date__sep */
.c-date__sep {
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
  white-space: nowrap;
}

/* Block: c-consent */
.c-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
	margin-top:30px;
}
.c-karishinsa-form .c-consent{
	margin-top:48px;
}
 .c-form input[type=submit] .c-consent{
	margin-top:48px;
}

.c-consent span,
.c-consent a {
  font-size: 22px;
  letter-spacing: 0.05em;
  font-weight: 500;
  color:var(--text-black);
}

.c-consent a {
  border-bottom: 1px solid var(--bg-gray);
}
.c-consent a:hover{
	color:var(--text-darkGreen)
}
input[type=checkbox] {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  accent-color: var(--bg-darkGreen);
  cursor: pointer;
  flex-shrink: 0;
}
.c-form input[type=submit]{
	background-color:var(--bg-darkGreen);
	color:var(--text-white);
	font-size:24px;
	font-weight:700;
	padding-top:18px;
	padding-bottom:18px;
	transition:all 0.3s ease-in-out;
	
}
.c-karishinsa__form .c-form input[type=submit]{
margin-top:48px;
}
.c-form input[type=submit]:hover{
	opacity:0.8;
}
.c-form__note p {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 170%;
 
}
.c-karishinsa__form .c-form__note p{
	margin-top:60px;
}
.c-form .c-btn-darkGreen {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0px auto;
}

.c-form .c-btn-darkGreen p {
  font-size: 24px;
  font-weight: 700;
}

/*WCF7 CONFIG*/
.wpcf7 .c-select select.wpcf7-select,
.wpcf7 .c-select select.wpcf7-select:not(.has-value) {
  color: var(--bg-gray) !important;
  font-family:'Roboto' !important;
}

.wpcf7 .c-select select.wpcf7-select.has-value {
  color: #000 !important;
}

.wpcf7 .c-select select.wpcf7-select option:first-child {
  color: var(--bg-gray) !important;
}

.wpcf7 .c-select select.wpcf7-select option:not(:first-child) {
  color: #000 !important;
}
.wpcf7-spinner {
    display: none !important;
}
.wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 14px;
    font-weight: normal;
    display: block;
    position: absolute;
    margin-top: 5px;
    left: 0;
    width: 100%;
    text-wrap: nowrap;
    /* margin-top: 0; */
}
@media screen and (max-width: 1000px) {
  .c-form-main {
    padding: 50px 16px;
  }
  .c-form {
    padding: 20px 16px;
    border-radius: 20px;
	width:fit-content;
	margin:0px auto;
    gap: 40px;
  } /* Block: c-field */
  .c-field {
    align-items: center;
  }
  .c-form__title p,
  .c-form__title span {
    font-size: 14px;
    text-align: left;
  }
  .c-form__title p:nth-child(2) {
    margin-top: 20px;
  }
  .c-badge {
    font-size: 15px;
    padding: 8px 10px;
  }
  .c-field__label-text {
    font-size: 15px;
  }
  .c-field {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
  .c-form__section {
    gap: 20px;
  }
  .c-field__label {
    align-items: center;
  }
  .c-form input[type=text],
  .c-form input[type=email],
  .c-form input[type=tel],
  .c-form input[type=number],
  .c-form select {
    padding: 0px 12px;
    height: 42px;
    font-size: 15px;
  }
  .c-form input::-moz-placeholder, .c-form textarea::-moz-placeholder {
    font-size: 15px;
	  
  }
  .c-form input::placeholder,
  .c-form textarea::placeholder {
    font-size: 15px;
  }
  .c-form textarea {
    padding: 10px 12px;
    font-size: 15px;
  }
  .c-select select {
    min-width: 67px;
  }
  .c-select--year {
    min-width: 84px !important;
  }
  .c-date__sep {
    font-size: 15px;
  }
  .c-date {
    gap: 5px;
  }
  .c-field-amount {
    margin-top: 0px;
    gap: 20px;
  }
  .c-amount__unit {
    font-size: 15px;
  }
  .c-radio-group__item {
    font-size: 15px;
  }
  .c-form__note p {
    font-size: 14px;
  }
  .c-consent {
    margin-top: -20px;
  }
  .c-consent span,
  .c-consent a {
    font-size: 15px;
  }
  input[type=checkbox] {
    height: 20px;
    width: 20px;
  }
  .c-form .c-btn-darkGreen {
    min-width: 0px;
    padding-left: 40px;
    padding-right: 40px;
  }
  .c-form .c-btn-darkGreen p {
    font-size: 18px;
  }
  .c-consent{
	margin-top:20px;
  }
  .c-form input[type=submit]{
	font-size:18px;
	padding-top:12px;
	padding-bottom:12px;
	margin-top:20px;
   }
	.c-karishinsa__form .c-form__note p{
		margin-top:30px;
	}
	.c-karishinsa__form .c-form input[type=submit]{
		margin-top:30px;
	}
}
@media screen and (max-width:370px){
	 .c-consent span,
  .c-consent a {
    font-size: 13px;
  }
}
/*=========================================================================================
KARISHINA THANKS
=========================================================================================== */
.p-karishina-thanks-thanks {
  width: 100%;
  padding: 100px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background-color:var(--bg-white);
}

.p-karishina-thanks__container {
  width: 100%;
/*   max-width: 1100px; */
   max-width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.p-karishina-thanks__container h2,
.p-karishina-thanks__container span {
  font-size: 32px;
  font-weight: 900;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: center;
  align-self: center;
}

.p-karishina-thanks__container p,
.p-karishina-thanks__container p span{
  font-size: 20px;
  font-weight: 500;
  line-height: 170%;
  letter-spacing: 0.05em;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .p-karishina-thanks__container p {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .p-karishina-thanks-thanks {
    padding: 60px 16px;
  }
  .p-karishina-thanks__container {
    gap: 20px;
  }
  .p-karishina-thanks__container h2,
  .p-karishina-thanks__container span {
    font-size: 22px;
  }
  .p-karishina-thanks__container p,
  .p-karishina-thanks__container p span{
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .p-karishina-thanks__container h2 .c-break-point {
    display: block;
    max-width: 70%;
    margin: 0 auto;
  }
}

/*=========================================================================================
PRIVACY POLICY
=========================================================================================== */
.p-privacy-policy {
  width: 100%;
  padding: 100px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background-color:var(--bg-white);
}

.p-privacy-policy__container {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
}

.p-privacy-policy__container h1,
.p-privacy-policy__container span {
  font-size: 44px;
  font-weight: 900;
  line-height: 160%;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--text-darkGreen);
}

.p-privacy-policy__container h2 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
}

.p-privacy-policy__list li,
.p-privacy-policy__container p {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
  line-height: 160%;
  letter-spacing: 0.05em;
}

.p-privacy-policy__right-p {
  text-align: right;
}

.p-privacy-policy__sec2 div {
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .p-privacy-policy {
    padding: 60px 16px;
  }
  .p-privacy-policy__container {
    gap: 35px;
  }
  .p-privacy-policy__container h1,
  .p-privacy-policy__container span {
    font-size: 25px;
  }
  .p-privacy-policy__container h2 {
    font-size: 17px;
  }
  .p-privacy-policy__container p {
    font-size: 14px;
  }
}
@media screen and (max-width: 450px) {
  .p-privacy-policy__container h1 .c-break-point {
    display: block;
    max-width: 70%;
    margin: 0 auto;
  }
}
/*=========================================================================================
404 PAGE
=========================================================================================== */
.c-404 {
  width: 100%;
  padding: 100px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 50px;
  background-color:var(--bg-white);
}

.c-404__container {
  width: 100%;
  max-width: 757px;
  border: 3px solid var(--bg-darkGreen);
  border-radius: 20px;
  padding: 30px 60px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.c-404__green-car {
  position: absolute;
  right: 10px;
  top: -50px;
  height: 50px;
  width: auto;
}

.c-404__container h1 {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 170%;
  text-align: center;
}

.c-404__container p,
.c-404__container p span {
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 170%;
  text-align: center;
}

.c-404__container p {
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .c-404 {
    padding: 60px 16px;
  }
  .c-404__404-icon {
    width: 159px;
    height: auto;
  }
  .c-404__container h1 {
    font-size: 22px;
  }
  .c-404__container p,
  .c-404__container p span {
    font-size: 14px;
  }
}
@media screen and (max-width: 550px) {
  .c-404__container {
    padding: 20px 16px;
  }
  .c-404__container h1 {
    display: block;
    max-width: 80%;
    margin: 0 auto;
  }
  .c-404__container p,
  .c-404__container p span {
    max-width: 95%;
    margin: 0 auto;
  }
  .c-404__green-car {
    top: -30px;
    right: 0px;
    height: 30px;
    width: auto;
  }
}


/*=========================================================================================
SINGLE NEWS
=========================================================================================== */

.p-single-news {
  width: 100%;
  position: relative;
}
.p-single-news__container {
  width: 100%;
  position: relative;
  background-color: var(--bg-lightGreen);
}
.p-single-news__bg {
  width: 100%;
}
.p-single-news__container-desc img {
  margin-bottom: -5px;
}
.p-single-news__container-desc hgroup {
  position: absolute;
  top: 50%;
  left: 100px;
  transform: translateY(-50%);
}
.p-single-news__container-desc hgroup h1 {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 150%;
  max-width: 400px;
  color: var(--text-darkGreen);
}
.p-single-news__container-desc hgroup p {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-darkGreen);
}
.p-single-news__content-text {
  margin-top: 10px;
 text-align:left;
}
.p-single-news__content {
  width: 100%;
  padding: 80px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color:var(--bg-white);
}
.p-single-news__content_container {
  width: 100%;
  max-width: 1100px;
  display: flex;
  flex-direction: row;
  gap: 80px;
  align-items: flex-start;
  justify-content: center;
}
.p-single-news__content__details {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  min-width:500px;
}
.p-single-news__content__details .p-single-news__content-img {
  margin: 0px auto;
  width: 100%;
}
.p-single-news__content__details p {
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 170%;
  font-weight: 500;
	text-align:left;
}
.p-single-news__content__news {
  width: 100%;
  min-width: 300px;
  max-width: 300px;
}

.p-single-news__content__news h3 {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.07em;
  color: var(--text-darkGreen);
  margin-bottom: 15px;
}
.p-single-news__content__news ul {
  width: 100%;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.p-single-news__content__news ul li {
  border-radius: 8px;
  background-color: var(--bg-white);
  box-shadow: 0px 5px 15px 0px rgba(51, 51, 51, 0.05);
  width: 100%;
  overflow: hidden;
}
.p-single-news__content__news ul li img {
  width: 100%;
  border-radius: 8px;
  width: 100%;
  min-height: 160px;
  max-height: 160px;
  object-fit: cover;
  object-position: center center;
  transition: all 0.3s ease-in-out;
}
.p-single-news__news-img-wrapper {
  width: 100%;
  max-height: 160px;
  overflow: hidden;
  border-radius: 8px;
}
.p-single-news__content__news ul li:hover img {
  transform: scale(1.06);
}

.p-single-news__content__news ul li:hover .p-single-news__news-desc h4 {
  color: var(--text-darkGreen);
}
.p-single-news__content__news {
  display: flex;
  flex-direction: column;
  gap: 70px;
  align-items: center;
  justify-content: center;
}
.p-single-news__news-desc {
  padding: 14px 14px 18px 14px;
}

.p-single-news__news-desc div {
  display: flex;
  flex-direction: row;
  gap: 15px;
}
.p-single-news__news-desc div p {
  font-size: 12px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.p-single-news__news-desc h4,
.p-single-news__news-desc h4 a{
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.05em;
  font-weight: 700;
  margin-top: 5px;
  color:var(--text-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-wrap: break-word;
}
.p-single-news__content__news > div {
  width: 100%;
  max-width: 800px;
}
.p-single-news__content .c-btn-yellow-border {
  margin-top: 50px;
}
@media screen and (max-width: 1200px) {
  .p-single-news__content_container {
    flex-direction: column;
    align-items: center;
  }
  .p-single-news__content__details {
    width: 100%;
    max-width: 800px;
	min-width:0px;
  }
  .p-single-news__content__news {
    max-width: 100%;
  }
  .p-single-news__content__news ul li img {
    min-height: 400px;
    max-height: 400px;
    object-fit: cover;
    object-position: center center;
  }
  .p-single-news__news-img-wrapper {
    max-height: 400px;
  }
	
}
@media screen and (max-width: 950px) {
  .p-single-news__container-desc hgroup {
    left: 50px;
  }
  .p-single-news__container-desc hgroup h1 {
    font-size: 18px;
  }
  .p-single-news__container-desc hgroup p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .p-single-news__container-desc hgroup {
    top: 60px;
    left: 16px;
    max-width: 343px;
  }
  .p-single-news__container-desc hgroup h1 {
    font-size: 21px;
  }
  .p-single-news__content_container {
    gap: 60px;
  }
  .p-single-news__content {
    padding: 50px 16px;
  }
  .p-single-news__content__details p {
    font-size: 14px;
  }
	.p-single-news__news-desc h4, .p-single-news__news-desc h4 a{
		font-size:14px;
	}
}
@media screen and (max-width:550px){
	.p-single-news__content__news ul li img {
    min-height: 180px;
    max-height: 180px;
  }
  .p-single-news__news-img-wrapper {
    max-height: 180px;
  }
}

/*=========================================================================================
NEWS PAGE
=========================================================================================== */
#news-page .c-news{
    padding:20px 16px !important;
}
 .c-news__link{
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:space-between;
}
  .c-news__link .c-news__arrow-btn{
	width:50px !important;
	height:50px !important;
}
 .c-news__link .c-news__arrow-btn img{
	width:25px;
	height:auto;
}
.c-news-section element.style{
	box-shadow:none !important;
}
 .c-news__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin-top: 50px;
    padding: 20px 0;
}

  .pagination-btn {
    padding: 10px 20px;
    color: var(--text-darkGreen);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
	background-color:var(--bg-white);
}
.c-news__pagination .pagination-btn{
	padding:0px;
	font-size:35px;
	padding:15px;
	margin-top:-10px;
}
 .pagination-btn:hover:not(:disabled) {
    background-color: #2d6a4f;
    transform: translateY(-2px);
}
.c-news__pagination .pagination-btn:hover:not(:disabled){
	background-color:transparent;
	color:var(--bg-darkGreen);
}
 .pagination-btn:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

 .pagination-numbers {
    display: flex;
    gap: 8px;
    align-items: center;
}

  .page-number {
    
    background-color: var(--bg-white);
    color: var(--text-darkGreen);
    border: 1px solid var(--bg-darkGreen);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 24px;
    height:50px;
	width:50px;
	font-weight:700;
	font-family:'Roboto'
}

 .page-number:hover {
    background-color: #e0e0e0;
}
 .page-number.active {
    background-color: #1a472a;
    color: white;
}

 .pagination-ellipsis {
    padding: 8px 4px;
    color: #999;
    font-size: 14px;
}

 .c-news__item {
    display: block;
    transition: all 0.3s ease;
}

 .c-news__item.hidden {
    display: none !important;
}

 .c-news__no-data {
    text-align: center;
    background-color: var(--bg-white);
    border-radius: 10px;
    margin-top:-30px;
	 margin-bottom:100px;
}

 .c-news__no-data p {
    font-size: 18px;
    color: var(--text-darkGreen);
	font-weight:700;
    margin: 0;
}

 #carIcon {
    position: relative;
    transition: left 0.3s ease;
}

.c-news__tabs-container {
    position: relative;
}

 .c-news__car-icon-wrap {
    position: absolute;
    bottom: -10px;
    transition: left 0.3s ease;
}

 .c-news__tabs {
    display: flex;
    position: relative;
    padding: 0;
    margin: 0;
}

.tab {
    flex: 1;
    cursor: pointer;
}

 .c-news__pagination.hidden {
    display: none;
}

@media screen and (max-width:767px){
	 .c-news__link .c-news__arrow-btn{
	width:30px !important;
	height:30px !important;
  }
    .c-news__link .c-news__arrow-btn img{
		width:15px !important;
	}
	#carIcon{
		top:0px;
	}
	 .c-news{
		padding:0px 0px !important
	}
	.c-news-section{
		padding-top:50px !important;
	}
	 .page-number{
		font-size:17px;
		width:35px;
		height:35px;
	}
	.pagination-btn svg{
	width:8px;
	height:auto;
	}
	 .c-news__pagination{
		margin-top:0px;
		padding-bottom:50px;
	}
    .c-news__list{
		padding-bottom:10px !important;
	}
	 .c-news__tabs-wrapper{
	margin-top:0px
	}	
	 .c-news__no-data p {
		 font-size: 14px;
		 width:75%;
		 line-height:120%;
		 margin:0px auto;
		 margin-top:20px;
	}
}










  /*=========================================================================================
SHOP PAGE
=========================================================================================== */
/*=========================================================================================
SHOP DETAILS - SINGLE
=========================================================================================== */
#shop-details{
	background-color:var(--bg-white)
}
.c-shop-details-hero {
  background-color: #d2e7ff;
  height: auto;
  position: relative;
  overflow: hidden;
}

.c-shop-details-hero__bg {
  width: 100%;
  height: auto;
  z-index: 2;
  position: relative;
  margin-bottom: -8px;
  display: block;
  object-fit: cover;
  object-position: top center;
}
.c-shop-details-hero__cloudRight {
  position: absolute;
  bottom: -20px;
  right: -710px;
  z-index: 1;
  opacity: 0.8;
  filter: brightness(0) saturate(100%) invert(86%) sepia(20%) saturate(247%)
    hue-rotate(189deg) brightness(106%) contrast(103%);
}

.c-shop-details-hero__cloudLeft {
  filter: brightness(0) saturate(100%) invert(86%) sepia(20%) saturate(247%)
    hue-rotate(189deg) brightness(106%) contrast(103%);
  position: absolute;
  bottom: 0px;
  left: -560px;
}
.c-shop-details-hero__cloudTopRight {
  position: absolute;
  top: 20%;
  left: 20%;
}
.c-shop-details-hero__cloudTopLeft {
  position: absolute;
  right: 15%;
  top: 20px;
}

.c-shop-details-hero__desc {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width:100%;
	max-width:700px;
}
.c-shop-details-hero__desc__access-info {
  font-size: 24px;
  letter-spacing: 0.07em;
  font-weight: 700;
  line-height: 150%;
  background-color: var(--bg-white);
  color: var(--text-darkGreen);
  border-radius: 20px;
  padding: 4px 25px;
  width: fit-content;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
 text-wrap:nowrap;
}
.c-shop-details-hero__desc__h1-container {
  background-color: var(--bg-darkGreen);
  border-radius: 8px;
  border: 6px solid var(--bg-white);
  box-shadow: 5px 6px 0px 0px rgba(0, 26, 18, 1);
  padding: 30px 50px;
 
}
.c-shop-details-hero__desc__h1-container h1,
.c-shop-details-hero__desc__h1-container h1 span {
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 130%;
  font-weight: 700;
  color: var(--text-white);
  
}
.c-shop-details-hero__desc__h1-container h1 span {
  display: block;
  text-align: center;
}
.c-shop-details-hero__desc_imgs {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 12px;
  margin-top: 15px;
}
.c-shop-details-hero__desc_imgs img {
  width: 100%;
}

@media screen and (max-width: 1435px) {
  .c-shop-details-hero__desc__h1-container h1 span,
  .c-shop-details-hero__desc__h1-container h1 {
    font-size: 34px;
  }
  .c-shop-details-hero__desc_imgs img {
    width: 150px;
  }
}

@media screen and (max-width: 1250px) {
  .c-shop-details-hero__desc_imgs img {
    width: 100px;
  }
  .c-shop-details-hero__desc__access-info {
    font-size: 18px;
  }
}

@media screen and (max-width: 1090px) {
  .c-shop-details-hero__desc__h1-container h1 span,
  .c-shop-details-hero__desc__h1-container h1 {
    font-size: 28px;
  }
}

@media screen and (max-width: 1000px) {
  .c-shop-details-hero__desc__h1-container h1 span,
  .c-shop-details-hero__desc__h1-container h1 {
    font-size: 34px;
  }
  .c-shop-details-hero__desc__access-info {
    font-size: 24px;
  }
  .c-shop-details-hero__desc_imgs img {
    width: 150px;
  }
}

@media screen and (max-width: 767px) {
  .c-shop-details-hero__desc__h1-container {
    min-width: 400px;
  }
  .c-shop-details-hero__desc__h1-container h1 span,
  .c-shop-details-hero__desc__h1-container h1 {
    font-size: 22px;
  }
  .c-shop-details-hero__desc__access-info {
    font-size: 15px;
  }
  .c-shop-details-hero__desc_imgs img {
    width: 86px;
  }
  .c-shop-details-hero__desc_imgs {
    gap: 6px;
  }
  .c-shop-details-hero__desc__h1-container {
    min-width: fit-content;
    max-width: 308px;
    padding: 20px 16px !important;
    margin: 0px auto;
  }
  .c-shop-details-hero__desc__access-info {
    padding-left: 16px;
    padding-right: 16px;
  }
  .c-shop-details-hero__desc {
    top: 18%;
  }
  .c-shop-details-hero__desc_imgs {
    margin-top: 7px;
  }
}

@media screen and (max-width: 480px) {
  .c-shop-details-hero__cloudLeft {
    filter: brightness(0) saturate(100%) invert(86%) sepia(20%) saturate(247%)
      hue-rotate(189deg) brightness(106%) contrast(103%);

    position: absolute;
    bottom: -50px;
    left: -200px;
    width: 500px;
	}
    .c-shop-details-hero__cloudTopRight {
      position: absolute;
      top: 0px;
      left: -30px;
    }
    .c-shop-details-hero__cloudTopLeft {
      position: absolute;
      right: -100px;
      top: 0px;
      width: 150px;
    }

    .c-shop-details-hero__cloudRight {
      position: absolute;
      bottom: -150px;
      right: -400px;
      z-index: 1;
      width: 900px;
      filter: brightness(0) saturate(100%) invert(86%) sepia(20%) saturate(247%)
        hue-rotate(189deg) brightness(106%) contrast(103%);
    }
  }
@media screen and (max-width:360px){
	.c-shop-details-hero__desc_imgs img{
width:70px;}
}
  /*=========================================================================================
SHOP DETAILS - SINGLE - SUB NAV
=========================================================================================== */
.c-shop-details__nav{
	background-color:var(--bg-white)
}
.c-shop-details__nav .shop-list-menu-pc a{
	transition:all 0.3s ease-in-out;
}
.c-shop-details__nav .shop-list-menu-pc a:hover{
	opacity:0.8;
}
  .subheader {
    background: var(--bg-white);
    padding: 20px;
    position: relative;

    display: flex;
    flex-direction: row;
    gap: 5px;
    justify-content: center;
  }

  .subheader a {
    margin-left: 22px;
    margin-right: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .shop-nav-label-jp {
    font-size: 15px;
    letter-spacing: 0.05em;
    line-height: 140%;
    color: var(--text-darkGreen);
    font-weight: 700;
  }

  .shop-nav-label-en {
    font-size: 15px;
    font-weight: 700;
    line-height: 140%;
    color: var(--text-darkGreen);
    letter-spacing: 0.05em;
    font-family: "Roboto";
  }

  .shop-nav-divider {
    width: 17px;
    height: 43px;
    flex-shrink: 0;

    line {
      stroke: #404040;
      stroke-width: 0.5;
    }
  }
  .shop-list-menu-sp {
    display: none;
  }

  .shop-menu-links-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 100%;
    flex-wrap: wrap;
    padding: 30px 16px;
  }

  .shop-menu-link-box {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: auto !important;
    padding: 10px 12px;
    min-width: 180px;
    background-color: var(--bg-white);
    border-radius: 2px;
    border: 1px solid var(--bg-darkGreen);
  }

  .shop-sp-nav-label {
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--text-darkGreen);
    text-align: left;
    font-weight: 700;
    line-height: 140%;
  }

  .shop-sp-nav-label-en {
    font-size: 14px;
    font-family: "Roboto";
    letter-spacing: 0.05em;
    font-weight: 700;
    text-align: left;
  }

  .shop-sp-arrow {
    width: 17px;
    height: 10px;
    flex-shrink: 0;
    margin-left: 5px;

    path {
      stroke: var(--bg-darkGreen);
    }
  }
  .shop-menu-link-box:hover {
    background-color: var(--bg-darkGreen);
  }
  .shop-menu-link-box:hover .shop-sp-nav-label {
    color: var(--text-white);
  }
  .shop-menu-link-box:hover .shop-sp-nav-en {
    color: var(--text-white);
  }
  .shop-menu-link-box:hover .shop-sp-arrow {
    path {
      stroke: var(--bg-white);
    }
  }
  @media screen and (max-width: 1200px) {
    .shop-list-menu-pc {
      display: none;
    }
    .shop-list-menu-sp {
      display: block;
    }
  }

  @media screen and (max-width: 650px) {
    .shop-short-links-menu {
      background-color: var(--base-white);
    }
    .shop-menu-links-container {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      padding-left: 16px;
      padding-right: 16px;
    }
    .shop-menu-link-box {
      min-width: 100%;
      gap: 0px;
    }
  }
  @media screen and (max-width: 370px) {
    .shop-sp-nav-label {
      font-size: 12px;
    }

    .shop-sp-nav-label-en {
      font-size: 12px;
    }
  }
  @media screen and (max-width: 340px) {
    .shop-menu-links-container {
      grid-template-columns: repeat(1, 1fr);
    }
  }

  /*=========================================================================================
SHOP DETAILS - SINGLE - CONSULTATION SECTION
=========================================================================================== */

  #shop-details .p-consult-main {
    padding: 80px 16px !important;
	background-color:var(--bg-white) !important;
  }
  @media screen and (max-width: 767px) {
    #shop-details .p-consult-main {
      padding-bottom: 130px !important;
      padding-top: 40px !important;
    }
    #shop-details .c-nav-car-sliderHorizontal {
      margin-bottom: -140px !important;
    }
  }
  /*=========================================================================================
SHOP DETAILS - SINGLE - CONTACT BANNER
=========================================================================================== */
 #shop-details .c-contact-banner {
    margin-top: -120px !important;
  }
@media screen and (max-width:767px){
	 #shop-details .c-contact-banner {
/*     margin-top: -120px !important; */
  }
}
  /*=========================================================================================
SHOP DETAILS - SINGLE - SHOP DETAILS
=========================================================================================== */
  .p-owner {
    background-color: var(--bg-lightGray);
  }
  .c-section__title__header-title {
    background-color: var(--bg-white) !important;
    font-size: 20px !important;
    letter-spacing: 0.05em !important;
    font-weight: 700 !important;
    color: var(--text-darkGreen) !important;
    margin-top: 8px !important;
    text-align: center;
    line-height: 140%;
  }
  .c-person-message__contact {
    background-color: var(--bg-darkGreen);
    padding: 5px 10px;
    color: var(--text-white);
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    border-radius: 8px;
    margin-top: 40px;
  }
	.c-person-message__contact.no-photo {
		border-bottom-right-radius: 8px; 
		border-bottom-left-radius: 8px;  
	}
  #shop-details .c-person-message__container__details__content {
    margin-top: 20px;
  }

  @media screen and (max-width: 767px) {
    .c-section__title__header-title {
      font-size: 14px !important;
    }
   .c-person-message__contact {
    font-size: 20px;
    padding: 5px 10px;
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
    width: 100%;
    max-width: 441px;
    margin: 30px auto 0px auto;
}
    #shop-details .c-person-message__container__details__content {
      margin-top: 0px;
    }
    #shop-details .c-person-message__container__details__content img {
      border-top-left-radius: 0px !important;
      border-top-right-radius: 0px !important;
    }
	  .c-person-message__contact.no-photo {
		margin-bottom:15px; 
		width:100%;
		max-width:100%;
	}
  }

  /*=========================================================================================
SHOP DETAILS - SINGLE - FLOW SECTION
=========================================================================================== */
/*   #shop-details .p-flow-page {
    background-image: url("/funcars/wp-content/uploads/2026/04/bg_lightGreen_dots.svg");
  } */
  #shop-details .p-flow-page .c-nav-car-sliderHorizontal {
    margin-top: 50px;
  }
  #shop-details .c-step__wrapper {
    display: none;
  }
  @media screen and (max-width: 767px) {
    #shop-details .p-flow-page .c-btn-yellow-border {
      display: none;
    }
    #shop-details .p-flow-page .c-nav-car-sliderHorizontal {
      margin-bottom: 0px !important;
    }
  }
  /*=========================================================================================
SHOP DETAILS - SINGLE - FAQ SECTION
=========================================================================================== */
  #shop-details .c-faq {
    padding-top: 100px;
  }

  @media screen and (max-width: 767px) {
    #shop-details .c-faq {
      padding-top: 70px;
    }
  }

  /*=========================================================================================
SHOP DETAILS - SINGLE - SHOP OVERVIEW
=========================================================================================== */
  #shop-details .p-company-overview__container {
    border: none !important;
    box-shadow: 4px 4px 15px 0px rgba(0, 72, 49, 0.08);
    margin-bottom: 40px;
  }
}
/*=========================================================================================
GOOGLE REVIEWS
=========================================================================================== */
.c-google-review-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 70px 20px;
}

.c-google-review-container__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
	margin-top:50px;
	margin-bottom:40px;
}

.c-google-review-container__wrapper h2 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--text-darkGreen);
    text-align: center;
    margin: 0;
    white-space: nowrap;
	
	
}

.ti-widget.ti-goog {
    padding-left: 20px;
    padding-right: 20px;
    background-color: var(--base-white);
    width: 100%;
    max-width: 100%;
	padding-bottom:50px;
	margin:0px auto;
}

.google-break {
    display: none;
}

.c-google-review-container__wrapper svg {
    flex-shrink: 0;
    width: 40px;
}
.ti-widget.ti-goog .ti-reviews-container-wrapper{
	justify-content:center
}
.ti-widget.ti-goog{
	width:fit-content !important;
}
@media screen and (max-width: 1200px) {
    .c-google-review-container {
       
     
    }
	.ti-widget.ti-goog .ti-col-2 .ti-footer, .ti-widget.ti-goog .ti-col-2 .ti-reviews-container {
    -ms-flex: 0 0 50%;
    flex: 0 0 45%;
    max-width: 50%;
}
	.ti-widget.ti-goog{
	width:100% !important;
}
	.ti-widget.ti-goog .ti-reviews-container-wrapper{
	justify-content:flex-start;
}
}

@media screen and (max-width: 1100px) {
    .c-google-review-container {
      
        padding: 40px 20px;
    }
}

@media screen and (max-width: 992px) {
    .c-google-review-container__wrapper h2 {
        font-size: 28px;
        white-space: normal;
    }
    
    .c-google-review-container__wrapper svg {
        width: 30px;
    }
}

@media screen and (max-width: 768px) {
   
    
    .c-google-review-container__wrapper h2 {
        font-size: 22px;
        white-space: normal;
    }
    
    .c-google-review-container {
        padding: 40px 16px;
        gap: 15px;
    }
    
    .c-google-review-container__wrapper {
        gap: 8px;
    }
    
    .c-google-review-container__wrapper svg {
        width: 25px;
    }
	.ti-widget.ti-goog{
	padding-bottom:0px;
	}
	.c-google-review-container__wrapper{
		margin-top:20px;
		margin-bottom:30px;
	}
	.ti-widget.ti-goog .ti-widget-container{
	margin-bottom:0px;
	}
}

@media screen and (max-width: 600px) {
    .c-google-review-container {
        padding: 30px 16px;
    }
    
    .c-google-review-container__wrapper h2 {
        font-size: 18px;
    }
    
    .c-google-review-container__wrapper svg {
        width: 20px;
    }
}

@media screen and (max-width: 500px) {
    .ti-footer.source-Google {
        display: none;
    }
    
    .c-google-review-container {
        padding: 30px 12px 0px 12px;
    }
}
/*---------------END GOOGLE REVIEWS-----------------------------*/






/*=========================================================================================
JAPAN, SELECT IMPORT CARS SECTION
=========================================================================================== */
.c-car-search {
  width: 100%;
	
}
.c-car-search__wrapper {
  width: 100%;
  padding: 100px 16px;
/*   background-image: url("/funcars/wp-content/uploads/2026/04/bg_car_search_filter.png"); */
  background-repeat: no-repeat;
  background-size: cover;
}
.c-car-search__wrapper__bgCurve {
  width: 100%;
}
.c-car-search__container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 80px;
}

#car-page .c-car-search__container__keywords {
  width: 100%;
  max-width: 940px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#car-page .c-filter-grid {
  width: 100%;
  margin-top: 30px;
}

/*=========================================================================================
JAPAN, SELECT IMPORT CARS SECTION - DETAILS SECTION
=========================================================================================== */
#car-page{
	background-color:var(--bg-white);
}
.c-search-detailed {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.c-search-detailed__toggle-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 652px;
  padding: 14px 16px;
  background: var(--bg-darkGreen);
  color: var(--text-white);
  border: none;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  margin-bottom: 16px;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease-in-out;
}
.c-search-detailed__toggle-all:hover {
  opacity: 0.8;
}
.c-search-detailed__section {
  border-bottom: 0.5px solid var(--color-border-secondary);
  margin-bottom: 0; 
  transition: margin-bottom 0.35s ease; 
  border-bottom: 1px dashed var(--bg-darkGreen);
}

.c-search-detailed__section.c-section--open {
  margin-bottom: 40px;
  border-bottom: 0px;
}

.c-search-detailed__section-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}
.c-search-detailed__section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 4px;
  cursor: pointer;
  color: var(--text-darkGreen);
  font-size: 26px;
  font-weight: 700;
  user-select: none;
  letter-spacing: 0.05em;
}
.c-search-detailed__section-icon {
  font-size: 20px;
  font-weight: 900;
  color: var(--bg-darkGreen);
}
.c-search-detailed__toggle-all span {
  background-color: var(--bg-white);
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-search-detailed__section-body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease;
}

.c-search-detailed__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  border-radius: 8px;
  overflow: hidden;
}

.c-search-detailed__grid-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 22px;
  cursor: pointer;
  padding: 18px 15px;
  line-height: 150%;
  background-color: var(--bg-white, #ffffff);
  min-width: 300px;
  border-bottom: 1px solid var(--bg-gray, #e5e7eb);
  border-right: 1px solid var(--bg-gray, #e5e7eb);
}

.c-search-detailed__section-body {
  max-height: none; 
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

@media (max-width: 768px) {
/*   .c-car-search__wrapper {
    background-image: url("/funcars/wp-content/uploads/2026/04/bg_car_search_filter_sp.svg");
  } */
  .c-search-detailed__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .c-search-detailed__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


.c-search-detailed__checkbox {
  accent-color: #1a5c3c;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}
.c-search-detailed__footer {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  justify-content: center;
}

.c-search-detailed__btn--search {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 20px;
  background: #1a5c3c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 13px;
  cursor: pointer;
}
.c-search-detailed__section-body {
  max-height: 100%;
}

#car-page .input[type="checkbox"] {
  height: 22px !important;
  width: 22px !important ;
}
.c-car-search__filter-container {
  width: 100%;
  margin-top: 65px;
}
@media screen and (max-width: 767px) {
  .c-car-search__wrapper {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  #car-page .c-filter-grid {
    grid-template-columns: 1fr;
  }
  #car-page .c-section__title {
    font-size: 26px;
  }
  .c-car-search__filter-container {
    margin-top: 40px;
  }
  #car-page .c-filter-grid {
    margin-top: 20px;
  }
	
}

/*=========================================================================================
JAPAN, SELECT IMPORT CARS SECTION - CAR FILTER AND PAGINATION
=========================================================================================== */
.c-car-filter {
  padding-top: 100px;
  padding-bottom: 100px;
  min-height:1000px;
 
}
.c-car-filter .c-filter-item__select-wrap select {
  border-radius: 4px;
  min-height: 69px;
  height: 69px;
  font-weight: 500;
  min-width: 311px;
}
.c-car-filter .c-filter-item__select:valid {
  color: var(--text-black);
}

.c-car-filter__option {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 0px 100px 20px 100px;
  border-bottom: 1px solid var(--bg-black);
}
.p-car-filter__label {
  display: inline-flex;
}
.p-car-filter__label,
.p-car-filter__label span {
  font-size: 24px;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.p-car-filter__label span {
  margin-top: 3px !important;
  margin-left: 4px;
}
.c-car-filter .c-car__slider {
  max-width: 1250px !important;
  margin: 0px auto;
  margin-top: 50px;
  padding-left: 16px;
  padding-right: 16px;
height: auto;
  overflow: visible;
 
}
.c-car-filter .c-car__slider-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 50px;
  column-gap: 30px;
}
.c-car-filter .c-car__slide-img {
  max-width: 340px;
  width:100%;
}
.c-car-filter .c-car__slider-item {
  max-width: 390px;
}

@media screen and (max-width: 1250px) {
  .c-car-filter .c-car__slider-track {
    grid-template-columns: repeat(2, 1fr);
    width: fit-content;
    margin: 0px auto;
  }
  .c-car-filter .c-car__slider-item {
    padding-right: 0px;
    padding-left: 0px;
  }
  .c-search-detailed__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media screen and (max-width: 950px) {
  .c-search-detailed__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-search-detailed__grid-item {
    font-size: 16px;
  }
}
@media screen and (max-width: 855px) {
  .c-car-filter .c-car__slider-track {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-car-filter__option {
    padding: 0px 16px 20px 16px;
  }
  .c-car-filter .c-car__slide:first-of-type {
    margin-left: 0px;
  }
}

@media screen and (max-width: 767px) {
  .c-search-detailed__grid-item {
    min-width: 121px;
    padding: 8px 12px;
  }
	.c-search-detailed__grid-item{
		font-size:14px;
	}

  .c-search-detailed__section-header {
    font-size: 22px;
  }
  .c-car__slider-track {
    margin-block-start: 0px;
    margin-block-end: 0px;
/* 	display:flex !important;
	align-items:center;
	justify-content:center; */
  }
  .c-search-detailed__toggle-all {
    max-width: 295px;
    margin-top: 30px;
  }
  .c-car-filter .c-car__slider-track {
    row-gap: 20px;
  }
  .c-car-filter .c-car__slide-img {
    max-width: 100%;
  }
  .c-car-filter .c-car__slider-item {
    margin: 0px auto;
  
    max-width: 340px;
  }
  .p-car-filter__label,
  .p-car-filter__label span {
    font-size: 15px;
  }
  .p-car-filter__label span {
    margin-top: 0px !important;
  }
  .c-car-filter .c-filter-item__select-wrap select {
    height: 50px;
    max-height: 50px;
    min-height: 50px;
    min-width: 200px;
    width: 100%;
    padding: 15px;
    border-radius: 8px;
  }
  .c-car-filter__option {
    padding-bottom: 10px;
  }
  .c-car-filter .c-car__slide:first-of-type {
    margin-left: 0px !important;
  }
  .c-car__slide div {
    margin-left: 4px;
  }
	.p-car__slider-wrapper .c-car__slide div{
		margin-left:0px;
	}


  .c-car__slider-img-details-tag3 {
    gap: 0px;
  }
  .c-car__slider-img-details-tag3 p:last-of-type {
   
	  text-wrap:nowrap;
  }
	 .c-car__slider-img-details-tag3 p:last-of-type span{
   
	 font-size:16px;
  }
}
/*NO CAR RESULTS*/
.c-car__slider-item {
    transition: all 0.3s ease;
}

.c-no-results-message {
    text-align: center;
    padding: 60px 20px;
    grid-column: 1 / -1;
}

.c-no-results-message p:first-child {
    font-size: 24px;
    font-weight: 700;
    color: #004831;
    margin-bottom: 16px;
	text-align:center;
}

.c-no-results-message p:last-child {
    font-size: 18px;
    color: #666;
	font-weight:500;
	line-height:160%;
	text-align:center;
}
/*WHEN NO AVAILABLE CARS IS LISTED */
.c-filter-item__select:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background-color: #f5f5f5;
}

.c-filter-item__select-wrap:has(select:disabled) .c-filter-item__select-arrow {
    opacity: 0.4;
}


.c-no-results-message{
			margin:0px auto;
	}
	.c-no-cars-message {
    width: 100%;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    list-style: none;
	
}

.c-no-cars-title {
    font-size: 24px;
    font-weight: 700;
    color: #004831;
    margin-bottom: 16px;
}

.c-no-cars-desc {
    font-size: 18px;
    color: #666;
}
	.c-filter-pagination {
		display: flex;
		justify-content: center;
		align-items: center;
		margin-top: 50px;
		padding: 20px 0;
	}
	.c-filter-pagination__numbers {
		display: flex;
		gap: 8px;
		align-items: center;
		flex-wrap: wrap;
		justify-content: center;
	}
	.c-filter-pagination__numbers .page-numbers {
		background-color: var(--bg-white);
		color: var(--text-darkGreen);
		border: 1px solid var(--bg-darkGreen);
		border-radius: 50%;
		cursor: pointer;
		transition: all 0.3s ease;
		font-size: 24px;
		height: 50px;
		width: 50px;
		font-weight: 700;
		font-family: 'Roboto';
		display: inline-flex;
		align-items: center;
		justify-content: center;
		text-decoration: none;
	}
	.c-filter-pagination__numbers .page-numbers:hover:not(.current):not(.disabled) { background-color: #e0e0e0; }
	.c-filter-pagination__numbers .page-numbers.current { background-color: #1a472a; color: white; border-color: #1a472a; }
	.c-filter-pagination__numbers .page-numbers.dots { border: none; background: transparent; cursor: default; width: auto; padding: 0 8px; }
	.c-filter-pagination__numbers .page-numbers.dots:hover { background: transparent; }
	.c-filter-pagination__numbers .prev,
	.c-filter-pagination__numbers .next { 
		border-radius: 5px; 
		width: auto; 
		background-color: var(--bg-white); 
		border: none;
		cursor: pointer;
		transition: all 0.3s ease;
	}
	.c-filter-pagination__numbers .prev.disabled,
	.c-filter-pagination__numbers .next.disabled {
		opacity: 0.5;
		cursor: not-allowed;
		pointer-events: none;
	}
	.c-filter-pagination__numbers .prev:hover:not(.disabled),
	.c-filter-pagination__numbers .next:hover:not(.disabled) { background-color: #e0e0e0; }
	@media screen and (max-width: 767px) {
		.c-filter-pagination__numbers .page-numbers:not(.prev):not(.next) { font-size: 17px; width: 35px; height: 35px; }
		.c-filter-pagination__numbers .prev,
		.c-filter-pagination__numbers .next { padding: 5px 12px; }
		.c-filter-pagination { margin-top: 0; padding-bottom: 50px; }
	}

#car-loading-spinner {
    display: none;
    position: absolute;
    inset: 0;
    justify-content: center;
    align-items: center;
    z-index: 10;
    min-height: 200px;
    pointer-events: none;
}

.car-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #e0e0e0;
    border-top-color: #004831;
    border-radius: 50%;
    animation: car-spin 0.8s linear infinite;
}

@keyframes car-spin {
    to { transform: rotate(360deg); }
}






/*=========================================================================================
CAR SLUG PAGE
=========================================================================================== */
.c-car-slug-main {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 16px;
  background-color:var(--bg-white);
}
.c-car-slug-main__container {
  width: 100%;
  max-width: fit-content;
}

.c-car-slug-main__container__content1 h1,
.c-car-slug-main h2 {
  font-size: 38px;
  color: var(--text-darkGreen);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-top: 2px solid var(--bg-darkGreen);
  border-bottom: 2px solid var(--bg-darkGreen);
  padding-top: 8px;
  padding-bottom: 8px;
}
.c-car-slug-main__gallery-wrapper {
  margin-top: 30px;
}
.c-car-slug-main__gallery-wrapper h3 {
  font-size: 28px;
  letter-spacing: 0.05em;
  font-weight: 700;
  background-color: var(--bg-lightGreen);
  padding-top: 5px;
  padding-bottom: 5px;
  line-height:120%;
}

.c-car-slug-main__gallery-car-details {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 35px;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 15px;
}
.c-car-slug-main__gallery-car-details__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.c-car-slug-main__gallery-tags {
  display: flex;
  flex-direction: row;
  gap: 10px;
}
.c-car-slug-main__gallery-tags p {
  background-color: var(--bg-darkGreen);
  color: var(--text-white);
  padding: 10px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.05em;
  font-family: "Noto Sans JP";
}
.c-car-slug-main__gallery-payment-amount {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.c-car-slug-main__gallery-payment-amount__p1 {
  padding: 12px 10px;
  border: 1px solid var(--bg-darkGreen);
  border-radius: 4px;
  min-width: 145px;
}
.c-car-slug-main__gallery-payment-amount__p1,
.c-car-slug-main__gallery-payment-amount__p1 span {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 140%;
}
.c-car-slug-main__gallery-payment-amount__p1 span {
  display: block;
}
.c-car-slug-main__gallery-payment-amount__p2 {
  font-size: 50px;
  font-family: "Montserrat";
  font-weight: 700;
}
.c-car-slug-main__gallery-payment-amount__p2 span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-car-slug-main__gallery-loan {
  border-radius: 8px;
  overflow: hidden;
}
.c-car-slug-main__gallery-loan-p1 {
  width: 100%;
  background-color: var(--bg-darkGreen);
  color: var(--text-white);
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 130%;
  font-weight: 700;
  text-align: center;
  padding: 12px 10px;
}
.c-car-slug-main__gallery-loan-p2 {
  font-size: 26px;
  font-weight: 700;
  background-color: var(--bg-lightGreen);
  padding: 10px;
}
.c-car-slug-main__gallery-loan-p2 span {
  font-size: 42px;
  font-family: "Montserrat";
  font-weight: 700;
  margin-left: 5px;
  margin-right: 5px;
}
.c-car-slug-main__gallery-model {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0px;
  border: 1px solid var(--text-black);
  border-radius: 4px;
  margin-top: 20px;
}
.c-car-slug-main__gallery-model-p1,
.c-car-slug-main__gallery-model-p2 {
  font-size: 22px;
  font-weight: 700;
  font-family: "Montserrat";
  color: var(--text-darkGreen);
  text-align: center;
  padding: 0px 28px;
  width:100%;
  text-wrap:nowrap;
}
.c-car-slug-main__gallery-model-p2 span,
.c-car-slug-main__gallery-model-p1 span {
  display: block;
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-car-slug-main__gallery-model-p1 {
  border-right: 1px solid var(--bg-gray);
}

.c-car-slug-main__links {
  margin-top: 80px;
}
.c-car-slug-main__links ul {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.c-car-slug-main__links ul li {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.c-car-slug-main__links .c-bubble-green,
.c-car-slug-main__links .c-bubble-pink {
  min-width: 300px !important;
}
.c-car-slug-main__links .c-bubble-green-small,
.c-car-slug-main__links .c-bubble-pink-small {
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%);
  z-index: 2;
}
.c-car-slug-main__links .c-bubble-pink-small {
  background-color: var(--bg-lightGreen) !important;
  color: var(--text-darkGreen) !important;
}
.c-car-slug-main__links .c-btn-rect-pink {
  background-color: var(--bg-darkGreen) !important;
  color: var(--bg-white) !important;
  border: 1px solid var(--bg-darkGreen) !important;
  padding:26px 32px !important;
  font-weight:700;	
}
.c-car-slug-main__links .c-btn-rect-green p,
.c-car-slug-main__links .c-btn-rect-pink p{
	font-weight:700;
}
.c-car-slug-main__links .c-btn-rect-pink:hover p {
  color: var(--text-darkGreen) !important;
}
.c-car-slug-main__links .c-btn-rect-pink:hover img {
  filter: var(--filter-green);
}

.c-car-slug-main__car-specs-wrapper {
  margin-top: 100px;
  background-color:var(--bg-white);
}

.car-specs {
  width: 100%;
  border-collapse: collapse;
  background-color:var(--bg-white);
  border: none;
  margin-top: 30px;
}

.car-specs tr {
  border-bottom: none;
  display: block;
  margin-bottom: 5px;
  border-radius: 4px;
  border-color:none;
}
table:not(.has-border-color) :where(th, td){
	border:1px solid var(--bg-white) !important;
}
.car-specs tr:last-child {
  border-bottom: none;
}

.car-specs th {
  background-color: var(--bg-lightGreen);
  padding: 8px 15px;
  font-size: 18px;
  color: var(--text-darkGreen);
  font-weight: 500;
  text-align: left;
  white-space: nowrap;
  width: 143px;
  letter-spacing: 0.05em;
}

.car-specs td {
  padding: 8px 12px;
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
  width: 287px;
  background-color: var(--bg-lightGray);
}

.car-specs td:last-child {
  border-right: none;
}

.car-specs__spacer {
  width: 20px !important;
  background: transparent !important;
  padding: 0;
}
/* Mobile */
@media (max-width: 800px) {
  .car-specs__spacer {
    display: none !important;
  }
  .car-specs,
  .car-specs tbody,
  .car-specs tr,
  .car-specs th {
    display: block;
    width: 100%;
    font-size: 14px;
  }
  .car-specs td {
    font-size: 16px;
  }
  .car-specs tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 5px;
  }

  .car-specs tr:last-child {
    grid-template-columns: 1fr;
  }

  .car-specs th {
    text-align: center;
    width: 100%;
    white-space: normal;
  }

  .car-specs td {
    border-right: none;
    border-bottom: none;
    text-align: center;
    width: 100%;
  }

  .car-specs__divider {
    border-left: none;
  }
  .car-specs tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .car-specs tr th:first-child {
    grid-column: 1;
    grid-row: 1;
  }
  .car-specs tr td:nth-child(2) {
    grid-column: 1;
    grid-row: 2;
  }
  .car-specs tr th:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    border-right: none;
  }
  .car-specs tr td:nth-child(4) {
    grid-column: 2;
    grid-row: 2;
    border-right: none;
  }

  .car-specs tr:last-child {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .car-specs tr:last-child th {
    grid-column: 1;
    grid-row: 1;
    border-right: none;
  }
  .car-specs tr:last-child td {
    grid-column: 1;
    grid-row: 2;
    border-right: none;
  }
	.c-car-slug-main__links ul{
		flex-direction:column;
		gap:50px;
	}
	.c-car-slug-main__gallery-wrapper h3{
padding:8px;
	}
}
@media screen and (max-width:767px){
	.c-car-slug__form__container hgroup h2{
		font-size:24px;
		text-align:center;
		line-height:130%;
		max-width:82%;
	}
	.c-car-slug__form hgroup h3{
		text-align:center;
		line-height:130%;
	}
}
/*=========================================================================================
CAR SLUG PAGE - GALLERY
=========================================================================================== */
.c-car-slug-main__gallery {
  max-width: 500px;
  background: #fff;
  border-radius: 8px;
}

.c-car-slug-main__gallery__title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid #004831;
}

.c-car-slug-main__gallery__main {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  cursor: zoom-in;
  margin-bottom: 10px;
  background: #eee;
}

.c-car-slug-main__gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s;
  display: block;
}

.c-car-slug-main__gallery__main:hover img {
  transform: scale(1.03);
}

.c-car-slug-main__gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}

.c-car-slug-main__gallery__thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  background: #eee;
  transition: border-color 0.15s;
}

.c-car-slug-main__gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.15s;
  border-radius: 8px;
}

.c-car-slug-main__gallery__thumb:hover img {
  opacity: 0.75;
}
.c-car-slug-main__gallery__thumb.active {
  border-color: #004831;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.modal.open {
  display: flex;
}

.modal__inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  min-height: 60%;
  min-width: 60%;
  background-color: rgba(14, 13, 13, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.modal__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  display: block;
}

.modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}

.modal__close:hover {
  opacity: 0.7;
}

.modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.15);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 0px 14px 8px 14px;
  border-radius: 4px;
  transition: background 0.15s;
}

.modal__nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.modal__nav--prev {
  left: -56px;
}
.modal__nav--next {
  right: -56px;
}

/*=========================================================================================
CAR SLUG PAGE - CAR SPECS TABS
=========================================================================================== */
.c-car-slug__accordion-wrap {
  margin-top: 100px;
}

.c-car-slug__accordion-page-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #004831;
}

.c-car-slug__accordion {
  margin-bottom: 16px;
}

.c-car-slug__accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 6px 0px 12px 0px;
  border-bottom: 1px dashed var(--text-darkGreen);
  margin-bottom: 20px;
  user-select: none;
/*   margin-top: 60px; */
}

.c-car-slug__accordion-header1 {
  margin-top: 0px !important;
}
.c-car-slug__accordion-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--text-darkGreen);
}

.c-car-slug__accordion-icon {
  font-size: 20px;
  color: var(--bg-darkGreen);
  line-height: 1;
}

.c-car-slug__accordion-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 10px;
  overflow: hidden;
  transition: max-height 0.35s ease;
  max-height: auto !important;
}

.c-car-slug__accordion-content--closed {
  max-height: 0 !important;
}

.c-car-slug__accordion-item {
  padding: 20px 25px;
  font-size: 22px;
  font-weight: 500;
  border-radius: 4px;
  line-height: 150%;
}

.c-car-slug__accordion-item--active {
  background-color: #004831;
  color: #fff;
}

.c-car-slug__accordion-item--inactive {
  background-color: var(--bg-lightGray);
  color: var(--text-gray);
}

/*=========================================================================================
CAR SLUG PAGE - FORM
=========================================================================================== */
.c-car-slug__form {
  width: 100%;
  padding: 100px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-lightGreen);
}
.c-car-slug__form .c-karishinsa__form{
	padding:0px;
	background-color:var(--bg-lightGreen);
}
.c-car-slug__form .c-form{
	background-color:var(--bg-white);
}
.c-car-slug__form__container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.c-car-slug__form__container hgroup {
  margin: 0px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.c-car-slug__form-title {
  font-size: 38px;
  color: var(--text-darkGreen);
  font-weight: 700;
  letter-spacing: 0.05em;
  border-top: 2px solid var(--bg-darkGreen);
  border-bottom: 2px solid var(--bg-darkGreen);
  padding-top: 8px;
  padding-bottom: 8px;
  width: 100%;
  text-align: center;
}
.c-car-slug-main__gallery-loan-p2{
	text-align:center
}
.cars-slug{
	background-color:var(--bg-white);
	padding-bottom:100px;
}

.cars-slug table:not(.has-border-color) :where(th, td){
	border:none !important;
}
.cars-slug table tr:nth-of-type(2n+1){
	background-color:none !important;
}
@media screen and (max-width: 1000px) {
  .c-car-slug-main__gallery-car-details {
    flex-direction: column;
  }
  .c-car-slug-main__gallery {
    max-width: 100%;
  }
  .c-car-slug-main__gallery-car-details__left {
    margin: 0px auto;
  }
}

@media screen and (max-width: 767px) {
  .c-car-slug-main {
    padding: 30px 16px;
  }
  .c-car-slug-main__gallery-car-details__left {
    margin-left: 0px;
  }
  .cars-slug .c-car-slug-main__links ul {
    flex-direction: column;
    gap: 50px;
  }
  .c-car-slug-main__container__content1 h1,
  .c-car-slug-main h2 {
    font-size: 25px;
  }
  .c-car-slug-main__gallery-wrapper h3 {
    font-size: 20px;
  }
  .c-car-slug__accordion-title {
    font-size: 20px;
  }
  .c-car-slug__accordion-item {
    font-size: 14px;
    padding: 10px 10px;
  }
  .c-car-slug__accordion-content {
    grid-template-columns: repeat(1, 1fr);
	
  }
  .c-car-slug__accordion-content {
    max-height: auto;
  }
/*   .c-car-slug__accordion-header {
    margin-top: 40px;
  } */
  .c-car-slug__accordion-wrap,
  .c-car-slug-main__car-specs-wrapper {
    margin-top: 70px;
  }
  .c-car-slug-main__gallery-tags p {
    font-size: 13px;
  }
  .c-car-slug-main__gallery-payment-amount__p1,
  .c-car-slug-main__gallery-payment-amount__p1 span {
    font-size: 18px;
  }
  .c-car-slug-main__gallery-payment-amount__p1 {
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .c-car-slug-main__gallery-payment-amount__p2 span {
    font-size: 22px;
  }
  .c-car-slug-main__gallery-loan-p1 {
    font-size: 20px;
  }
  .c-car-slug-main__gallery-loan-p2 {
    font-size: 22px;
    text-align: center;
  }
  .c-car-slug-main__gallery-loan-p2 span {
    font-size: 40px;
  }
  .c-car-slug-main__gallery__thumbs {
    grid-template-columns: repeat(4, 1fr);
  }
  .c-car-slug-main__gallery-car-details__left {
    width: 100%;
  }
  .c-car-slug-main__gallery-payment-amount {
    justify-content: flex-start;
    gap: 20px;
  }
  .c-car-slug-main__gallery-model-p1,
  .c-car-slug-main__gallery-model-p1,
  .c-car-slug-main__gallery-model-p2 {
    width: 100%;
  }
  .c-car-slug-main__gallery-model {
    margin-top: 0px;
  }
  .modal__nav--prev {
    left: 0px;
  }
  .modal__nav--next {
    right: 0px;
  }
  .modal__nav {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .modal__close {
    font-size: 20px;
  }


  .c-car-slug__form-title {
    font-size: 27px;
  }
  .cars-slug hgroup h2 {
    font-size: 24px;
    text-align: center;
    line-height: 120%;
    max-width: 82%;
  }
  .cars-slug .c-bubble-yellow {
    text-align: center;
    line-height: 140%;
  }
  .c-car-slug__form {
    padding: 70px 16px;
  }
  .cars-slug{
	padding-bottom:0px;
 }

}
/* ========================================
   Shop PAGE
   ======================================== */


.shop-list {
	background-color:var(--bg-white);
    /* No styles needed - container block */
}

/* Container Modifiers */
.shop-list__container--nav {
    padding: 50px 16px;
}

.shop-list__container--list {
    padding: 50px 16px;
}



.shop-list__row {
    display: flex;
    justify-content: center;
}

.shop-list__col {
    max-width: 880px;
    width: 100%;
}

/* Navigation Block */
.shop-list__nav {
    display:grid;
	grid-template-columns:repeat(3,1fr);
	row-gap:30px;
	column-gap:30px;
}

.shop-list__nav-btn {
    padding:16px 0px;
	border-radius:4px;
	background-color:var(--bg-white);
	border:1px solid var(--bg-darkGreen);
	color:var(--text-black);
    cursor: pointer;
    transition: background 0.25s, color 0.25s;
	font-size:22px;
	letter-spacing:0.05em;
	color:rgba(51,51,51,0.5);
	font-weight:500;
	min-width:274px;
    
}

.shop-list__nav-btn--all {
    /* Specific styles for "All" button if needed */
}

.shop-list__nav-btn--active,
.shop-list__nav-btn:hover {
    background: var(--bg-darkGreen);
    color: var(--text-white);
}

/* Accordion Block */
.shop-list__accordion {
    border-bottom: 1px solid var(--bg-darkGreen);
   
    margin-bottom: 16px;
    overflow: hidden;
    background: #fff;
	width:100%;
	max-width:660px;
	margin:20px auto;
	scroll-margin-top: 80px; 
}

.shop-list__accordion--active .shop-list__accordion-content {
   
}

.shop-list__accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 18px 24px;
    background: var(--bg-darkGreen);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
}

.shop-list__accordion-header:hover {
    background: var(--bg-darkGreen);
	color:var(--text-white);
}
.shop-list__accordion-header:hover	.shop-list__accordion-title{
		color:var(--text-white);
	}
.shop-list__accordion-title {
    font-size: 18px;
    font-weight: 500;
    color: var(--text-white);
}

.shop-list__accordion-toggle {
    display: flex;
    align-items: center;
    color: var(--bg-white);
    flex-shrink: 0;
    margin-left: 12px;
}

.shop-list__accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    padding: 0px;
}

/* Prefecture Block */
.shop-list__prefecture {
    margin-bottom: 32px !important;
	margin-top:20px;
}


.shop-list__prefecture-title {
    font-size: 17px;
    font-weight: 700;
    background-color:var(--bg-darkGreen);
	color:var(--text-white);
    padding: 8px 16px;
    border-radius: 4px;
    margin-bottom: 16px;
	text-align:center;
}

.shop-list__stores {
    display: flex;
    flex-direction: column;
    gap: 16px;
/*     padding-bottom: 15px; */
}

/* Remove border from first store-card in each stores container */
.shop-list__stores .shop-list__store-card:first-child {
    border-top: none;
}

/* Add border to all other store cards */
.shop-list__stores .shop-list__store-card:not(:first-child) {
    border-top: 1px solid rgba(0, 72, 49, 0.50);
    padding-top: 16px; /* Optional: to maintain spacing */
}
/* Store Card Block */
.shop-list__store-card {
    display: flex;
    gap: 30px;
    padding: 20px;
    border: none;
    border-radius: 8px;
    background: var(--bg-white);
    align-items: flex-start;
}

.shop-list__store-left {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
	width:100%;
	min-width:287px;
}

.shop-list__store-right {
    flex: 1;
}

.shop-list__store-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    line-height: 1.4;
    margin: 0 0 8px;
}

.shop-list__store-name--desktop {
    display: block;
}

.shop-list__store-name--mobile {
    display: none;
}

/* Store Buttons */
.shop-list__store-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

.shop-list__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px;
    background:var(--bg-white);
    color: var(--text-darkGreen);
    border-radius: 0px;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    white-space: nowrap;
    width: 100%;
	max-width:151px;
    box-sizing: border-box;
	height:42px;
	border:1px solid var(--bg-darkGreen);
}
.shop-list__btn span{
    font-size: 15px;
    font-weight: 500;
	 line-height: 1;
	text-wrap:nowrap;
}

.shop-list__btn:hover {
	background-color:var(--bg-darkGreen);
    color: #fff;
    text-decoration: none;
}

.shop-list__btn:hover span{
	color:var(--text-white);
}
.shop-list__btn:hover .shop-list__btn-icon{
	background-color:var(--bg-white);
}
.shop-list__btn:hover svg{
	color:var(--bg-darkGreen);
}
	
.shop-list__btn--float {
    border: 2px solid var(--base-brown, #8B6F5E);
}

.shop-list__btn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
	background-color:var(--bg-darkGreen);
	height:15px;
	width:15px;
	border-radius:50%;
}
	.shop-list__btn-icon svg{
		color:var(--bg-white);
	}
/* Info Block */
.shop-list__info {
    display: flex;
    flex-direction: column;
    gap:4px;
    margin: 0;
}

.shop-list__info-row {
    display: flex;
    gap: 12px;
    align-items: center;
	padding-bottom:4px;
	border-bottom:1px solid var(--bg-gray);
}

.shop-list__info-label {
    flex: 0 0 72px;
    font-size: 15px;
    font-weight:400;
    color: var(--text-black);
	letter-spacing:0.05em;
}

.shop-list__info-value {
    flex: 1;
    font-size: 15px;
    color: var(--text-black);
	font-weight:400;
    line-height: 150%;
	letter-spacing:0.05em;
    margin: 0;
}

.shop-list__info-value a {
    color:#0000FF;
    text-decoration: none;
}

.shop-list__info-value a:hover {
    text-decoration: underline;
}

/* No Results / No Stores */
.shop-list__no-stores,
.shop-list__no-results {
    padding: 32px 0;
    text-align: center;
}

.shop-list__no-stores-text,
.shop-list__no-results-text {
    font-size:17px;
	line-height:160%;
	color:var(--text-black);
}

/* Responsive Design */
@media screen and (max-width:1000px){
	.shop-list__nav{
		grid-template-columns:repeat(2, 1fr);
	}
}
@media (max-width: 767px) {
    .shop-list__container--nav{
        padding:50px 16px 10px 16px;
    }
    .shop-list__container--list {
        padding: 10px 16px;
    }
    .shop-list__nav{
        column-gap:15px;
        row-gap:15px;
    }
    .shop-list__nav-btn {
        font-size: 12px;
        padding: 8px 14px;
        min-width:100%;
        min-height:45px;
        max-height:60px;
    }

    .shop-list__store-card {
        flex-direction: column-reverse;
        gap: 20px;
        padding:0px;
    }

    .shop-list__store-left {
        flex: unset;
        width: 100%;
        order: 1;
    }

    .shop-list__store-right {
        order: 2;
        width: 100%;
    }

    .shop-list__store-name--desktop {
        display: none;
    }

    .shop-list__store-name--mobile {
        display: block;
    }

    .shop-list__store-buttons {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .shop-list__btn {
        width: auto;
        flex: 1;
        font-size: 15px;
        padding: 9px 12px;
        justify-content: center;
    }

    .shop-list__accordion-header {
        padding: 14px 16px;
    }

    .shop-list__accordion-content {
        padding: 0;
        transition: max-height 0.4s ease;
    }

    .shop-list__info-label {
        font-size: 15px;
    }

    .shop-list__info-value {
        font-size: 15px;
    }
    .shop-list__store-name{
        margin:0 0 20px;
        max-width:70%;
    }
    .shop-list__prefecture-title{
        font-size:19px;
    }
    .shop-list__no-stores-text, .shop-list__no-results-text{
        font-size:14px;
    }
	.shop-list__section{
		padding-bottom:50px;
	}
}


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