/* ==================================================
   DESIGN SYSTEM VARIABLES
   ================================================== */
:root {
  --primary-color: #5f24df;
  --secondary-color: #fa373f;
  --accent-color: #d2455f;
  --dark-color: #001f60;
  --light-color: #f8fafc;
  --text-color: #475569;
  --heading-color: #1e293b;
  --white: #ffffff;

  --heading-color: black;
  --subheading-color: #1e293b;

  --gradient-primary: linear-gradient(135deg,
      var(--primary-color),
      var(--secondary-color));
  --gradient-secondary: linear-gradient(135deg,
      var(--secondary-color),
      var(--dark-color));
  --gradient-dark: linear-gradient(135deg,
      var(--accent-color),
      var(--primary-color));
  --gradient-mesh:
    radial-gradient(at 0% 0%, rgba(14, 116, 144, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(20, 184, 166, 0.15) 0px, transparent 50%);

  --shadow-sm: 0 10px 25px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 30px 60px rgba(0, 0, 0, 0.16);

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
}

/* ==================================================
   CORE TYPOGRAPHY & BODY CONFIGURATION
   ================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-color);
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 56px;
}

h2 {
  font-size: 42px;
}

h3 {
  font-size: 30px;
}

h4 {
  font-size: 24px;
}

a {
  text-decoration: none;
  transition: all 0.4s ease;
}

/* ==================================================
   GLOBAL LAYOUT UTILITIES & BLUR SHAPES
   ================================================== */
.blur-blob {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(20, 184, 166, 0.3) 0%,
      rgba(14, 116, 144, 0) 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  animation: pulseBlob 10s infinite alternate;
}

.shape-1 {
  top: 10%;
  left: 5%;
}

.shape-2 {
  top: 40%;
  right: 5%;
  background: radial-gradient(circle,
      rgba(14, 116, 144, 0.3) 0%,
      rgba(245, 158, 11, 0) 70%);
}

@keyframes pulseBlob {
  0% {
    transform: scale(1) translate(0, 0);
  }

  100% {
    transform: scale(1.2) translate(30px, 40px);
  }
}

/* ==================================================
   LOADING COMPONENT SYSTEM
   ================================================== */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--dark-color);
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}

.spinner-glow {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  box-shadow: 0 0 30px rgba(20, 184, 166, 0.6);
  animation: pulseLoader 1.5s infinite ease-in-out;
}

@keyframes pulseLoader {

  0%,
  100% {
    transform: scale(0.3);
    opacity: 0.2;
  }

  50% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ==================================================
    TOPBAR & PREMIUM NAVIGATION SYSTEM
    ================================================== */
/* .topbar {
        background-color: #0b1120;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .topbar a {
        color: rgba(248, 250, 252, 0.7);
        font-size: 14px;
    }

    .topbar a:hover {
        color: var(--secondary-color);
    }

    .topbar-socials a {
        margin-left: 15px;
    }

    .navbar {
        padding: 25px 0;
        transition: all 0.4s ease;
        z-index: 1000;
    }

    .navbar.sticky-active {
        padding: 15px 0;
        background: rgba(15, 23, 42, 0.85) !important;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: var(--shadow-md);
    }

    .navbar-brand {
        font-weight: 700;
        font-size: 28px;
        color: var(--white) !important;
        letter-spacing: 1px;
    }

    .navbar-brand span {
        color: var(--secondary-color);
    }

    .nav-link {
        color: rgba(255, 255, 255, 0.75) !important;
        font-weight: 500;
        margin: 0 15px;
        position: relative;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--white) !important;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: 0;
        left: 0;
        background: var(--gradient-primary);
        transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    } */

/* ==================================================
   BUTTON DESIGN INFRASTRUCTURE
   ================================================== */
.btn-primary-custom {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  border: none;
  box-shadow: 0 10px 20px rgba(14, 116, 144, 0.4);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary-custom:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(20, 184, 166, 0.6);
  color: var(--white);
}

.btn-secondary-custom {
  background: transparent;
  color: var(--white);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 500;
  display: inline-block;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-secondary-custom:hover {
  background: var(--white);
  color: var(--dark-color);
  border-color: var(--white);
  transform: translateY(-4px);
}

/* ==================================================
   HERO INTERACTIVE SLIDER COMPONENT
   ================================================== */
.hero-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  background-color: var(--dark-color);
}

.heroSwiper {
  height: 100%;
  width: 100%;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: linear-gradient(to bottom, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.95)); */
  background: linear-gradient(to bottom,
      rgb(15 23 42 / 62%),
      rgb(15 23 42 / 34%));
  z-index: 2;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.tagline {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary-color);
  letter-spacing: 4px;
  display: block;
  margin-bottom: 15px;
}

.hero-title {
  color: var(--white);
  font-size: 64px;
  font-weight: 700;
  max-width: 850px;
  margin-bottom: 25px;
}

.hero-desc {
  color: rgba(248, 250, 252, 0.7);
  font-size: 18px;
  max-width: 600px;
  line-height: 1.8;
}

/* Mouse Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 160px;
  right: 50px;
  z-index: 10;
}

.mouse-wheel {
  width: 26px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  position: relative;
}

.mouse-wheel::before {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--secondary-color);
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  animation: scrollAnimation 1.5s infinite;
}

@keyframes scrollAnimation {
  0% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 0;
    top: 24px;
  }
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--white) !important;
  font-size: 28px !important;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-color) !important;
}

/* ==================================================
   ABOUT STUDIO ASYMMETRICAL LAYOUT
   ================================================== */
.about-section {
  padding: 120px 0;
  background-color: var(--white);
}

.section-tag {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-color);
  letter-spacing: 3px;
  display: block;
  margin-bottom: 10px;
}

.section-title {
  margin-bottom: 25px;
  font-weight: 700;
}

.section-desc {
  color: var(--text-color);
  margin-bottom: 30px;
}

.about-img-container {
  position: relative;
  padding-right: 40px;
}

.main-about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
  transition: transform 0.5s ease;
}

.main-about-img:hover {
  transform: rotate(0deg) scale(1.02);
}

.floating-experience-badge {
  position: absolute;
  bottom: -30px;
  right: 10px;
  background: var(--gradient-dark);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  color: var(--white);
  max-width: 180px;
  text-align: center;
}

.floating-experience-badge h3 {
  color: var(--secondary-color);
  font-size: 36px;
  margin-bottom: 5px;
}

.floating-experience-badge p {
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.7);
}

.luxury-features-list {
  list-style: none;
  padding: 0;
}

.luxury-features-list li {
  margin-bottom: 12px;
  font-weight: 500;
  color: var(--heading-color);
}

.luxury-features-list i {
  color: var(--secondary-color);
  margin-right: 10px;
}

/* ==================================================
   COUNTER DESIGN INFRASTRUCTURE
   ================================================== */
.counter-section {
  padding: 80px 0;
  /* background: linear-gradient(135deg,
      #D53265 10%,
      #F8F8FF 60%,
      #D53265 100%);
  color: var(--dark-color); */
}

.counter-card h2 {
  color: var(--dark-color);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.counter-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: navy;
}

/* ==================================================
   SERVICES MODULAR DYNAMIC TILES
   ================================================== */
.services-section {
  padding: 50px 0;
  background-color: rgba(215, 215, 253, 0.164);
  position: relative;
  background-image: var(--gradient-mesh);
}

.premium-service-card {
  /* background: rgba(255, 255, 255, 0.02); */
  background: white;
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 40px;
  border-radius: var(--radius-md);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  height: 100%;
  display: flex;
  flex-column: initial;
  flex-direction: column;
}

.premium-service-card h3 {
  color: var(--dark-color);
  font-size: 22px;
  margin-bottom: 15px;
  margin-top: 20px;
}

.premium-service-card p {
  color: var(--dark-color);
  font-size: 15px;
  margin-bottom: 25px;
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: all 0.4s ease;
}

/* Individual variations to avoid generic structures */
.card-variant-1 .service-icon-box {
  background: rgba(14, 116, 144, 0.15);
  color: var(--primary-color);
}

.card-variant-2 .service-icon-box {
  background: rgba(20, 184, 166, 0.15);
  color: var(--secondary-color);
}

.card-variant-3 .service-icon-box {
  background: rgba(245, 158, 11, 0.15);
  color: var(--accent-color);
}

.premium-service-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(20, 184, 166, 0.3);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  border: 2px solid rgb(148, 148, 245);
}

.premium-service-card:hover .service-icon-box {
  transform: scale(1.1) rotate(6deg);
}

.service-link {
  color: var(--secondary-color);
  font-weight: 500;
  margin-top: auto;
  font-size: 14px;
}

.service-link:hover {
  color: var(--white);
}

/* ==================================================
   TEAM ARCHITECTS COMPONENT
   ================================================== */
.team-section {
  padding: 120px 0;
  background: var(--light-color);
}

.luxury-team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s ease;
}

.team-img-wrapper {
  position: relative;
  overflow: hidden;
}

.team-img-wrapper img {
  width: 100%;
  height: 350px;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.team-social-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.team-social-overlay a {
  width: 45px;
  height: 45px;
  background: var(--white);
  color: var(--dark-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 8px;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.team-social-overlay a:hover {
  background: var(--gradient-primary);
  color: var(--white);
}

.luxury-team-card:hover .team-social-overlay {
  opacity: 1;
}

.luxury-team-card:hover .team-social-overlay a {
  transform: translateY(0);
}

.luxury-team-card:hover .team-img-wrapper img {
  transform: scale(1.08);
}

.luxury-team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.team-meta {
  padding: 25px;
  text-align: center;
}

.team-meta h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.team-meta p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
}

/* ==================================================
   GALLERY SHOWCASE STRUCTURAL BLOCKS
   ================================================== */
.gallery-section {
  padding: 70px 0;
  /* background-color: #0b1222; */
}

.custom-masonry-grid {
  position: relative;
}

.gallery-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 10px;
  box-shadow: var(--shadow-md);
}

.gallery-card img {
  width: 100%;
  transition: transform 0.6s ease;
}

.gallery-info-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 30px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9), transparent);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

.gallery-info-overlay h4 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 5px;
}

.gallery-info-overlay p {
  color: var(--secondary-color);
  font-size: 14px;
  margin-bottom: 0;
}

.gallery-card:hover img {
  transform: scale(1.06);
}

.gallery-card:hover .gallery-info-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ==================================================
   ACCORDION DESIGN PARAMETERS
   ================================================== */
.faq-section {
  padding: 120px 0;
  background: var(--white);
}

.custom-luxury-accordion .accordion-item {
  border: none;
  background: var(--light-color);
  margin-bottom: 15px;
  border-radius: var(--radius-sm) !important;
  overflow: hidden;
}

.custom-luxury-accordion .accordion-button {
  background: var(--light-color);
  color: var(--heading-color);
  font-weight: 600;
  padding: 22px;
  border: none;
  box-shadow: none;
}

.custom-luxury-accordion .accordion-button:not(.collapsed) {
  background: rgba(14, 116, 144, 0.04);
  color: var(--primary-color);
}

.custom-luxury-accordion .accordion-body {
  padding: 25px;
  color: var(--text-color);
  background: rgba(14, 116, 144, 0.02);
}

/* ==================================================
   TESTIMONIAL SWIPER STRUCTURAL PANELS
   ================================================== */
.testimonial-section {
  padding: 50px 0;
  background: var(--dark-color);
  position: relative;
  overflow: hidden;
}

.glass-testimonial-card {
  /* background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05); */
  background: linear-gradient(308deg,rgba(0, 64, 194, 1) 0%, rgba(3, 173, 248, 0.54) 100%);
  padding: 50px;
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.stars i {
  color: var(--accent-color);
  margin: 0 2px;
}

.review-text {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.8;
}

.client-img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border: 2px solid var(--secondary-color);
}

.client-role {
  font-size: 13px;
  color: var(--secondary-color);
}

/* ==================================================
   CONTACT CONTROL LAYER
   ================================================== */
.contact-section {
  padding: 120px 0;
  background: var(--light-color);
  overflow: hidden;
}

.glass-contact-form-box {
  background: var(--dark-color);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.premium-input {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: var(--white) !important;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
}

.premium-input:focus {
  border-color: var(--secondary-color) !important;
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.2) !important;
}

.form-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  font-weight: 500;
}

.contact-details-rich {
  background: var(--gradient-dark);
  border-radius: var(--radius-md);
}

.detail-icon-circle {
  width: 50px;
  height: 50px;
  background: rgba(20, 184, 166, 0.1);
  color: var(--secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-premium-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 250px;
}

.map-premium-placeholder iframe {
  width: 100% !important;
  height: 100% !important;
  min-height: 300px;
  border: 0;
  display: block;
}

/* ==================================================
   LUXURY REAR FOOTER MATRIX
   ================================================== */
.luxury-footer {
  /* background: var(--gradient-secondary); */
  background: linear-gradient(308deg,rgba(1, 19, 69, 1) 0%, rgba(0, 68, 205, 1) 100%);
  padding: 40px 0;
  color: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.footer-logo {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
}

.footer-logo span {
  color: var(--secondary-color);
}

.luxury-footer h5 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 25px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.6);
}

.footer-links a:hover {
  color: var(--secondary-color);
  padding-left: 5px;
}

.newsletter-input-box {
  display: flex;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 5px 5px 5px 20px;
}

.newsletter-input-box input {
  background: transparent;
  border: none;
  color: var(--white);
  flex-grow: 1;
}

.newsletter-input-box input:focus {
  outline: none;
}

.newsletter-input-box button {
  background: var(--gradient-primary);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: var(--white);
  transition: transform 0.3s ease;
}

.newsletter-input-box button:hover {
  transform: scale(1.05);
}

/* 
.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin: 40px 0 20px 0;
} */

.footer-legal-link {
  color: rgba(255, 255, 255, 0.4);
  font-size: 14px;
}

.footer-legal-link:hover {
  color: var(--white);
}

/* ==================================================
   SCROLL TO TOP SCROLLER INTERACTIVE ELEM
   ================================================== */
.scroll-top-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 2000;
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(20, 184, 166, 0.4);
}

/* ==================================================
   RESPONSIVE LAYOUT CONSTRAINTS
   ================================================== */
@media (max-width: 991px) {
  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .hero-title {
    font-size: 32px;
  }

  .navbar {
    background: var(--light-color);
    padding: 15px 0;
  }

  .about-section,
  .services-section,
  .team-section,
  .gallery-section,
  .faq-section,
  .testimonial-section,
  .contact-section {
    padding: 70px 0;
  }
}

/* ********* FEATURE ********* */
/* Features Section Wrapper */
.features-section {
  padding: 50px 0;
  background-color: #f5f7fa;
}

.section-title {
  font-size: 48px;
  font-weight: 700;
  color: #111111!important;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

/* Premium Feature Card */
.feature-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 18px;
  padding: 28px 24px;
  height: 100%;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  text-decoration: none;
}

/* Hover Effects */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(135deg, #141e33 0%, #25334d 100%);
}

/* Icon Container & Styling */
.card-icon-box {
  font-size: 2.2rem;
  color: #ffffff;
  margin-right: 20px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
}

/* Card Text Styling */
.card-title-text {
  color: #ffffff;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .section-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .features-section {
    padding: 60px 0;
  }
}