
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #111;
}

.hero-content h1,
.marquee-section h2,
.flower-section h2,
.bollard-section h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.hero-sub,
.marquee-section .sub,
.flower-section .sub,
.bollard-section .sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.hero-badge {
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 3px;
  font-weight: 500;
}

.hero {
  height: 100vh;
  background: url("images/hero.jpeg") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
}


.hero-overlay {
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0,0,0,0.75) 30%, rgba(0,0,0,0.2));
  display: flex;
  align-items: center;
}


.hero-content {
  max-width: 600px;
  margin-left: 80px;
  color: #fff;
}

/* BADGE */
.hero-badge {
  font-size: 13px;
  letter-spacing: 2px;
  margin-bottom: 15px;
  color: #ff4d6d;
}


.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 15px;
}


.hero-sub {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ddd;
}


.hero-tags {
  margin-bottom: 25px;
}

.hero-tags span {
  margin-right: 15px;
  font-size: 14px;
}


.hero-buttons {
  display: flex;
  gap: 15px;
}


.btn.primary {
  background: #ff4d6d;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}


.btn.secondary {
  background: transparent;
  border: 1px solid #fff;
  color: #fff;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
}


.btn.primary:hover {
  background: #e63c5c;
}

.btn.secondary:hover {
  background: #fff;
  color: #000;
}

/* RESPONSIVE */
@media (max-width:768px) {
  .hero-content {
    margin: 0 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}


/* SECTION */
.marquee-section {
  padding: 100px 0;
  text-align: center;
  background: #f8fafc;
}


.marquee-section .container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}


.marquee-section h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 10px;
}

.marquee-section .sub {
  color: #777;
  font-size: 15px;
  margin-bottom: 60px;
}


.marquee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/*  CARD */
.marquee-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.marquee-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

/*  IMAGE  */
.image-wrapper {
  padding: 10px;
}

.image-wrapper img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}

/*  CONTENT */
.card-content h3 {
  margin: 15px 0 8px;
  font-size: 20px;
  font-weight: 600;
}

.card-content p {
  color: #777;
  font-size: 14px;
  margin-bottom: 20px;
}

/*  BUTTON */
.btn {
  padding: 10px 22px;
  background: #ff4d6d;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: #e63c5c;
}

/*  FORM POPUP */
.form-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

/* FORM BOX */
.form-container {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  width: 380px;
  max-width: 90%;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

/* FORM TITLE */
.form-container h2 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

/* INPUT GROUP */
.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #ff4d6d;
}

/* TEXTAREA */
.form-group textarea {
  min-height: 90px;
  resize: none;
}

/* FORM BUTTONS */
.form-actions {
  display: flex;
  gap: 10px;
}

.submit-btn {
  flex: 1;
  background: #ff4d6d;
}

.close-btn {
  flex: 1;
  background: #eee;
  color: #333;
}

/*  RESPONSIVE  */

@media (max-width: 992px) {
  .marquee-section .container {
    max-width: 90%;
  }

  .marquee-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media (max-width: 600px) {
  .marquee-grid {
    grid-template-columns: 1fr;
  }

  .marquee-section h2 {
    font-size: 26px;
  }

  .form-container {
    width: 100%;
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }
}

/* ================= FLOWER SECTION ================= */
.flower-section {
  padding: 75px 0;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      rgba(248,249,252,0.94),
      rgba(238, 138, 138, 0.92)
    ),
    url("images/F1.png") center/cover no-repeat;
}


.flower-section::before {
  content: "";

  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(255,77,109,0.06),
      transparent 40%
    );

  pointer-events: none;
}

.flower-section .container {
  max-width: 1320px;
  margin: auto;
  padding: 0 24px;
  text-align: center;
   position: relative;
  z-index: 2;
}

/* ================= HEADING ================= */
.flower-section h2 {
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
  line-height: 1.2;
  font-family: 'Playfair Display', serif;
}

.flower-section .sub {
  color: #666;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.7;
  font-family: 'Montserrat', sans-serif;
}

/* ================= MAIN IMAGE ================= */
.main-image {
  max-width: 980px;
  margin: auto;
  position: relative;
}

.main-image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  object-fit: cover;
  background: #fff;
  padding: 12px;

  box-shadow:
    0 20px 50px rgba(0,0,0,0.07),
    0 6px 18px rgba(0,0,0,0.04);

  transition: all 0.4s ease;
}

.main-image img:hover {
  transform: scale(1.01);
}

/* ================= TITLE ================= */
#flowerTitle {
  font-size: 18px;
  font-weight: 500;
  margin: 20px 0 22px;
  color: #111;
  line-height: 1.5;
  font-family: 'Montserrat', sans-serif;
}

/* ================= GALLERY ================= */
.thumbnail-gallery {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 850px;
  margin: auto;
}

/* ================= THUMBNAILS ================= */
.thumbnail-gallery img {
  width: 88px;
  height: 88px;

  object-fit: cover;

  border-radius: 15px;

  cursor: pointer;

  opacity: 0.68;

  border: 2px solid transparent;

  background: #fff;

  padding: 4px;

  transition: all 0.35s ease;

  box-shadow:
    0 8px 18px rgba(0,0,0,0.05);
}

/* HOVER */
.thumbnail-gallery img:hover {
  opacity: 1;

  transform: translateY(-3px) scale(1.04);

  box-shadow:
    0 14px 28px rgba(0,0,0,0.08);
}

/* ACTIVE */
.thumbnail-gallery img.active {
  opacity: 1;

  border-color: #ff4d6d;

  transform: scale(1.05);

  box-shadow:
    0 14px 30px rgba(255,77,109,0.22);
}

/* ================= BUTTON ================= */
.flower-section .btn {
  margin-top: 28px;

  padding: 13px 32px;

  font-size: 15px;

  border-radius: 10px;

  min-width: 170px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .flower-section {
    padding: 65px 0;
  }

  .flower-section h2 {
    font-size: 34px;
  }

  .flower-section .sub {
    margin-bottom: 28px;
  }

  .main-image {
    max-width: 100%;
  }

  .thumbnail-gallery {
    gap: 10px;
  }

  .thumbnail-gallery img {
    width: 82px;
    height: 82px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .flower-section {
    padding: 55px 0;
  }

  .flower-section .container {
    padding: 0 15px;
  }

  .flower-section h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .flower-section .sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .main-image img {
    border-radius: 18px;
    padding: 8px;
  }

  #flowerTitle {
    font-size: 15px;
    margin: 18px 0;
  }

  /* MOBILE SCROLL */
  .thumbnail-gallery {
    flex-wrap: nowrap;

    overflow-x: auto;

    justify-content: flex-start;

    padding-bottom: 8px;

    scrollbar-width: none;
  }

  .thumbnail-gallery::-webkit-scrollbar {
    display: none;
  }

  .thumbnail-gallery img {
    flex-shrink: 0;

    width: 74px;
    height: 74px;

    border-radius: 12px;
  }

  .flower-section .btn {
    width: 100%;
    max-width: 230px;

    margin-top: 24px;
  }
}

/* ================= SECTION ================= */
.bollard-section {
  padding: 90px 0;
  text-align: center;
  background:
    linear-gradient(to bottom, #ffffff, #f8f9fc);
  overflow: hidden;
  position: relative;
}

.bollard-section .container {
  max-width: 1450px; 
  margin: auto;
  padding: 0 25px;
}


.bollard-section h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

.bollard-section .sub {
  color: #333;
  margin-bottom: 28px;
  font-size: 16px;
  font-family: 'Montserrat', sans-serif;
}


.bollard-options {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 16px;
  margin-bottom: 45px;

  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}


.bollard-btn {
  padding: 14px 24px;
  border-radius: 50px;
  border: 1px solid #e7e7e7;
  background: rgba(255,255,255,0.95);

  cursor: pointer;

  font-size: 14px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;

  transition: all 0.35s ease;

  box-shadow:
    0 4px 10px rgba(0,0,0,0.03);

  white-space: nowrap;
}


.bollard-btn:hover {
  background: #ff4d6d;
  color: #fff;
  border-color: #ff4d6d;

  transform: translateY(-3px);

  box-shadow:
    0 10px 25px rgba(255,77,109,0.28);
}


.bollard-btn.active {
  background: #ff4d6d;
  color: #fff;
  border-color: #ff4d6d;

  transform: translateY(-2px);

  box-shadow:
    0 12px 28px rgba(255,77,109,0.32);
}


.bollard-display {
  margin-top: 10px;
}


.bollard-display img {
  width: 100%;
  max-width: 1050px;

  border-radius: 26px;

  margin: 10px 0 28px;

  object-fit: cover;

  background: #fff;
  padding: 16px;

  box-shadow:
    0 30px 60px rgba(0,0,0,0.08),
    0 10px 25px rgba(0,0,0,0.05);

  transition: all 0.4s ease;
}

.bollard-display img:hover {
  transform: scale(1.015);
}


#bollardMainTitle {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 22px;
  color: #222;
  font-family: 'Montserrat', sans-serif;
}


.bollard-section .btn {
  margin-top: 5px;
  min-width: 170px;
}


@media (max-width: 992px) {

  .bollard-section {
    padding: 75px 0;
  }

  .bollard-section h2 {
    font-size: 34px;
  }

  .bollard-options {
    gap: 12px;
  }

  .bollard-btn {
    padding: 12px 18px;
    font-size: 13px;
  }

  .bollard-display img {
    max-width: 100%;
  }
}


@media (max-width: 600px) {

  .bollard-section {
    padding: 65px 0;
  }

  .bollard-section .container {
    padding: 0 16px;
  }

  .bollard-section h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .bollard-section .sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 22px;
  }


  .bollard-options {
    flex-wrap: nowrap;
    overflow-x: auto;

    justify-content: flex-start;

    padding-bottom: 10px;

    gap: 10px;

    scrollbar-width: none;
  }

  .bollard-options::-webkit-scrollbar {
    display: none;
  }

  .bollard-btn {
    flex-shrink: 0;

    padding: 11px 18px;

    font-size: 12px;
  }

  .bollard-display img {
    border-radius: 18px;
    padding: 10px;
    margin-bottom: 20px;
  }

  #bollardMainTitle {
    font-size: 15px;
    line-height: 1.5;
    padding: 0 10px;
  }

  .bollard-section .btn {
    width: 100%;
    max-width: 240px;
  }
}


/* ================= 360 BOOTH SECTION ================= */
.booth-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff, #f7f8fc);
  overflow: hidden;
}

.booth-section .container {
  max-width: 1300px;
  margin: auto;
  padding: 0 25px;
}

/* ================= HEADING ================= */
.booth-heading {
  text-align: center;
  margin-bottom: 55px;
}

.booth-heading h2 {
  font-size: 42px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111;
  font-family: 'Playfair Display', serif;
}

.booth-heading .sub {
  font-size: 16px;
  color: #666;
  max-width: 760px;
  margin: auto;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
}

/* ================= WRAPPER ================= */
.booth-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;

  background: #fff;

  padding: 35px;

  border-radius: 28px;

  box-shadow:
    0 25px 60px rgba(0,0,0,0.06),
    0 8px 20px rgba(0,0,0,0.04);
}

/* ================= IMAGE ================= */
.booth-image {
  flex: 1;
}

.booth-image img {
  width: 100%;
  border-radius: 22px;
  object-fit: cover;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.08);

  transition: 0.4s ease;
}

.booth-image img:hover {
  transform: scale(1.02);
}

/* ================= CONTENT ================= */
.booth-content {
  flex: 1;
  text-align: left;
}

/* TAG */
.booth-tag {
  display: inline-block;

  background: #ffedf1;
  color: #ff4d6d;

  padding: 10px 18px;

  border-radius: 50px;

  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;

  margin-bottom: 22px;

  font-family: 'Montserrat', sans-serif;
}

/* TITLE */
.booth-content h3 {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 18px;

  color: #111;

  font-family: 'Playfair Display', serif;
}

/* DESCRIPTION */
.booth-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.9;

  margin-bottom: 28px;

  font-family: 'Montserrat', sans-serif;
}

/* ================= FEATURES ================= */
.booth-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;

  margin-bottom: 35px;
}

.feature {
  background: #fafafa;

  padding: 14px 18px;

  border-radius: 14px;

  font-size: 14px;
  font-weight: 500;
  color: #333;

  border: 1px solid #f1f1f1;

  font-family: 'Montserrat', sans-serif;

  transition: 0.3s ease;
}

.feature:hover {
  transform: translateY(-3px);

  box-shadow:
    0 10px 20px rgba(0,0,0,0.05);

  border-color: #ffd3dc;
}

/* BUTTON */
.booth-section .btn {
  padding: 14px 34px;
  font-size: 15px;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .booth-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .booth-content {
    text-align: center;
  }

  .booth-features {
    max-width: 550px;
    margin: 0 auto 35px;
  }

}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .booth-section {
    padding: 70px 0;
  }

  .booth-section .container {
    padding: 0 16px;
  }

  .booth-heading {
    margin-bottom: 35px;
  }

  .booth-heading h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .booth-heading .sub {
    font-size: 14px;
    line-height: 1.7;
  }

  .booth-wrapper {
    padding: 18px;
    border-radius: 20px;
    gap: 28px;
  }

  .booth-image img {
    border-radius: 16px;
  }

  .booth-content h3 {
    font-size: 26px;
  }

  .booth-content p {
    font-size: 14px;
    line-height: 1.8;
  }

  .booth-features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .feature {
    font-size: 13px;
    padding: 12px 15px;
  }

  .booth-section .btn {
    width: 100%;
  }

}

/* ================= WHY SECTION ================= */
.why-section {
  padding: 90px 0;
  background: linear-gradient(to bottom, #ffffff, #f8f9fc);
  position: relative;
  overflow: hidden;
}

.why-section .container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADING ================= */
.why-heading {
  text-align: center;
  margin-bottom: 55px;
}

.why-heading h2 {
  font-size: 42px;
  color: #111;
  margin-bottom: 14px;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
}

.why-heading .sub {
  max-width: 760px;
  margin: auto;
  color: #666;
  font-size: 15px;
  line-height: 1.8;
  font-family: 'Montserrat', sans-serif;
}

/* ================= GRID ================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ================= CARD ================= */
.why-card {
  background: rgba(255,255,255,0.8);

  backdrop-filter: blur(10px);

  border-radius: 24px;

  padding: 38px 28px;

  text-align: center;

  transition: all 0.35s ease;

  box-shadow:
    0 15px 40px rgba(0,0,0,0.05);
}

/* HOVER */
.why-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

/* ================= ICON ================= */
.why-icon {
  width: 78px;
  height: 78px;

  margin: 0 auto 24px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background:
    linear-gradient(135deg, #ff4d6d, #ff758f);

  color: #fff;

  box-shadow:
    0 10px 30px rgba(255,77,109,0.25);
}

.why-icon i {
  font-size: 34px;
  line-height: 1;
}

/* ================= CONTENT ================= */
.why-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #111;
  line-height: 1.4;
  font-family: 'Playfair Display', serif;
}

.why-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.9;
  font-family: 'Montserrat', sans-serif;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .why-section {
    padding: 75px 0;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-heading h2 {
    font-size: 34px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .why-section {
    padding: 60px 0;
  }

  .why-heading {
    margin-bottom: 40px;
  }

  .why-heading h2 {
    font-size: 28px;
    line-height: 1.3;
  }

  .why-heading .sub {
    font-size: 14px;
    line-height: 1.7;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .why-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .why-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
  }

  .why-icon i {
    font-size: 28px;
  }

  .why-card h3 {
    font-size: 21px;
  }

  .why-card p {
    font-size: 14px;
  }
}

/* ================= PROCESS SECTION ================= */
.process-section {
  padding: 90px 0;
  background:
    linear-gradient(to bottom, #ffffff, #f7f8fc);

  position: relative;
  overflow: hidden;
}

.process-section .container {
  max-width: 1250px;
  margin: auto;
  padding: 0 20px;
}

/* ================= HEADING ================= */
.process-heading {
  text-align: center;
  margin-bottom: 60px;
}

.process-heading h2 {
  font-size: 42px;
  font-weight: 600;
  color: #111;
  margin-bottom: 14px;

  font-family: 'Playfair Display', serif;
}

.process-heading .sub {
  max-width: 760px;
  margin: auto;

  color: #666;
  font-size: 15px;
  line-height: 1.8;

  font-family: 'Montserrat', sans-serif;
}

/* ================= GRID ================= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ================= CARD ================= */
.process-card {
  background: #fff;

  padding: 38px 28px;

  border-radius: 26px;

  text-align: center;

  transition: all 0.35s ease;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.05);
}

/* HOVER */
.process-card:hover {
  transform: translateY(-8px);

  box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

/* ================= NUMBER ================= */
.process-number {
  width: 78px;
  height: 78px;

  margin: 0 auto 24px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 28px;
  font-weight: 700;

  color: #fff;

  background:
    linear-gradient(135deg, #ff4d6d, #ff758f);

  box-shadow:
    0 12px 30px rgba(255,77,109,0.25);

  font-family: 'Montserrat', sans-serif;
}

/* ================= CONTENT ================= */
.process-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
  color: #111;

  line-height: 1.4;

  font-family: 'Playfair Display', serif;
}

.process-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.9;

  font-family: 'Montserrat', sans-serif;
}

/* ================= TABLET ================= */
@media (max-width: 992px) {

  .process-section {
    padding: 75px 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-heading h2 {
    font-size: 34px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 600px) {

  .process-section {
    padding: 60px 0;
  }

  .process-heading {
    margin-bottom: 40px;
  }

  .process-heading h2 {
    font-size: 30px;
    line-height: 1.3;
  }

  .process-heading .sub {
    font-size: 14px;
    line-height: 1.7;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .process-card {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .process-number {
    width: 68px;
    height: 68px;

    font-size: 24px;

    margin-bottom: 20px;
  }

  .process-card h3 {
    font-size: 22px;
  }

  .process-card p {
    font-size: 14px;
  }
}