/* PDF Viewer Modal Styles */
.pdf-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.pdf-modal-content {
  background-color: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 1200px;
  height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pdf-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 30px;
  background-color: #005276;
  color: #ffffff;
  border-bottom: 1px solid #1010101a;
  gap: 20px;
}

.pdf-modal-header h2 {
  margin: 0;
  font-family: var(--title-400-CAPS-font-family);
  font-weight: var(--title-400-CAPS-font-weight);
  font-size: var(--title-400-CAPS-font-size);
  letter-spacing: var(--title-400-CAPS-letter-spacing);
  line-height: var(--title-400-CAPS-line-height);
  flex: 1;
}

.pdf-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pdf-open-new-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--body-m-medium-font-family);
  font-size: var(--body-m-medium-font-size);
  transition: background-color 0.2s ease;
}

.pdf-open-new-tab:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.pdf-open-new-tab svg {
  width: 20px;
  height: 20px;
}

.pdf-controls {
  display: flex;
  align-items: center;
  gap: 15px;
}

.pdf-nav-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  font-size: 18px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 4px;
  transition: background-color 0.2s ease;
}

.pdf-nav-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.pdf-nav-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pdf-page-info {
  font-family: var(--body-m-medium-font-family);
  font-size: var(--body-m-medium-font-size);
  color: #ffffff;
  min-width: 80px;
  text-align: center;
}

.pdf-close-btn {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 36px;
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.pdf-close-btn:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.pdf-viewer-container {
  flex: 1;
  overflow: hidden;
  background-color: #f4f6fa;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.pdf-viewer-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.pdf-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 40px;
  text-align: center;
}

.pdf-fallback p {
  font-family: var(--body-l-regular-font-family);
  font-size: var(--body-l-regular-font-size);
  color: #101010;
  margin-bottom: 20px;
}

.pdf-download-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background-color: #00a0e6;
  color: #ffffff;
  text-decoration: none;
  border-radius: 40px;
  font-family: var(--body-l-semibold-font-family);
  font-weight: var(--body-l-semibold-font-weight);
  font-size: var(--body-l-semibold-font-size);
  transition: background-color 0.2s ease;
}

.pdf-download-link:hover {
  background-color: #0088cc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .pdf-modal-content {
    width: 95%;
    height: 95vh;
  }
  
  .pdf-modal-header {
    padding: 15px 20px;
  }
  
  .pdf-modal-header h2 {
    font-size: 18px;
  }
}

/* Add hover effect to category items */
.category-item:hover,
.category-item-2:hover,
.category-item-3:hover,
.category-item-4:hover,
.card-offre:hover,
.card-offre-2:hover,
.card-offre-3:hover,
.card-offre-4:hover,
.card-offre-5:hover,
.card-offre-6:hover,
.card-offre-7:hover,
.card-offre-8:hover,
.card-offre-9:hover,
.card-offre-10:hover,
.card-offre-11:hover,
.card-offre-12:hover,
.card-offre-13:hover,
.card-offre-14:hover,
.card-offre-15:hover,
.card-offre-16:hover,
.card-offre-17:hover,
.card-offre-18:hover,
.card-offre-19:hover,
.card-documentation:hover,
.card-documentation-2:hover,
.card-documentation-3:hover,
.card-documentation-4:hover,
.card-documentation-5:hover,
.card-documentation-6:hover {
  opacity: 0.8;
  transition: opacity 0.2s ease;
  cursor: pointer;
}
.unified-services {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
  background-color: #ffffff;
  min-height: 100vh;
}

/* Header Styles */
.unified-services .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  z-index: 3;
  background-color: transparent;
}

.unified-services .logo-nav-transverse {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.unified-services .logo {
  position: relative;
  width: 56px;
  height: 56px;
}

.unified-services .menu-tabs {
  display: inline-flex;
  height: 56px;
  align-items: center;
  padding: 4px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 40px;
  border: 1px solid #1010101a;
}

.unified-services .tabs-nav-desktop {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -4px;
  margin-bottom: -4px;
  border-radius: 40px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.unified-services .tabs-nav-desktop:hover {
  background-color: #f4f6fa;
}

.unified-services .home-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.unified-services .nav-text {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.unified-services .dropdown {
  display: inline-flex;
  height: 18px;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.unified-services .chevron {
  position: relative;
  width: 16px;
  height: 16px;
}

.unified-services .right-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.unified-services .search-nav {
  display: inline-flex;
  min-width: 200px;
  height: 56px;
  align-items: center;
  gap: 4px;
  padding: 4px 24px 4px 4px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f4f6fa;
  border-radius: 40px;
}

.unified-services .icon-buttons {
  position: relative;
  width: 48px;
  height: 48px;
}

.unified-services .icon {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  width: 20px;
  height: 20px;
}

.unified-services .search-text {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  font-family: var(--body-m-medium-font-family);
  font-weight: var(--body-m-medium-font-weight);
  color: #10101066;
  font-size: var(--body-m-medium-font-size);
  letter-spacing: var(--body-m-medium-letter-spacing);
  line-height: var(--body-m-medium-line-height);
  font-style: var(--body-m-medium-font-style);
}

.unified-services .project {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.unified-services .button {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px 4px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #1010101a;
  cursor: pointer;
}

.unified-services .panel-profile {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.unified-services .button-profile {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0px 12px 0px 0px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid #1010101a;
  cursor: pointer;
}

.unified-services .profile-pic {
  position: relative;
  width: 56px;
  height: 56px;
  background-color: #00a0e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.unified-services .profile-text {
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #ffffff;
  font-size: var(--body-m-semibold-font-size);
  text-align: center;
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.unified-services .notification-icon {
  position: relative;
  width: 56px;
  height: 56px;
}

.unified-services .icon-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: flex-end;
  background-color: #ffffff;
  border-radius: 40px;
  border: 1px solid #1010101a;
}

.unified-services .notification {
  margin-top: 16px;
  width: 24px;
  height: 24px;
  margin-right: 16px;
}

/* Main Content */
.unified-services .main-content {
  flex-direction: column;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

/* Categories Section */
.unified-services .section-categories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  padding-bottom: 46px;
  padding-top: 30px;
  background-color: #1b2142;
}

.unified-services .section-title {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--title-500-CAPS-font-family);
  font-weight: var(--title-500-CAPS-font-weight);
  color: #ffffff;
  font-size: var(--title-500-CAPS-font-size);
  text-align: center;
  letter-spacing: var(--title-500-CAPS-letter-spacing);
  line-height: var(--title-500-CAPS-line-height);
  font-style: var(--title-500-CAPS-font-style);
}

.unified-services .categories-carousel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.unified-services .categories-carousel::-webkit-scrollbar {
  width: 0;
  display: none;
}

.unified-services .category-card {
  display: flex;
  flex-direction: column;
  width: 234px;
  height: 134px;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  position: relative;
  border-radius: 11px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  flex-shrink: 0;
}

.unified-services .category-card:hover {
  transform: scale(1.05);
}

.unified-services .category-card.active {
  border-color: #00a0e6;
}

.unified-services .card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
  position: relative;
  padding: 0;
  z-index: 3;
  flex: 1;
  align-self: stretch;
  width: 100%;
}

.unified-services .card-title {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: start;
  align-self: stretch;
  z-index: 3;
  font-family: var(--title-500-CAPS-font-family);
  font-weight: var(--title-500-CAPS-font-weight);
  color: #ffffff;
  font-size: var(--title-500-CAPS-font-size);
  letter-spacing: var(--title-500-CAPS-letter-spacing);
  line-height: var(--title-500-CAPS-line-height);
  font-style: var(--title-500-CAPS-font-style);
}

.unified-services .card-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 82, 118, 0) 0%, rgba(0, 82, 118, 0.9) 100%);
}

.unified-services .card-filter {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #101010;
  border-radius: 8px;
  mix-blend-mode: saturation;
  opacity: 0.3;
}

.unified-services .card-image {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  object-fit: cover;
  border-radius: 8px;
}

.unified-services .category-card.active .card-overlay {
  background: linear-gradient(180deg, rgba(0, 160, 230, 0) 0%, rgba(0, 160, 230, 0.9) 100%);
}

.unified-services .category-card.active .card-filter {
  opacity: 0;
}

/* Subcategories Section */
.unified-services .section-subcategories {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 32px 0px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  min-height: 400px;
}

.unified-services .subcategory-title {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--title-300-CAPS-font-family);
  font-weight: var(--title-300-CAPS-font-weight);
  color: #101010;
  font-size: var(--title-300-CAPS-font-size);
  text-align: center;
  letter-spacing: var(--title-300-CAPS-letter-spacing);
  line-height: var(--title-300-CAPS-line-height);
  font-style: var(--title-300-CAPS-font-style);
}

.unified-services .subcategories-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.unified-services .subcategory-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 400px;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.unified-services .subcategory-card:hover {
  transform: scale(1.02);
}

.unified-services .subcategory-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
  z-index: 2;
}

.unified-services .subcategory-icon {
  position: relative;
  width: 40px;
  height: 40px;
}

.unified-services .subcategory-name {
  position: relative;
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  font-family: var(--title-500-CAPS-font-family);
  font-weight: var(--title-500-CAPS-font-weight);
  color: #ffffff;
  font-size: var(--title-500-CAPS-font-size);
  letter-spacing: var(--title-500-CAPS-letter-spacing);
  line-height: var(--title-500-CAPS-line-height);
  font-style: var(--title-500-CAPS-font-style);
}

.unified-services .subcategory-name-product {
  position: relative;
  display: flex;
  align-items: flex-end;
  align-self: stretch;
  font-family: var(--title-500-CAPS-font-family);
  font-weight: var(--title-500-CAPS-font-weight);
  font-size: var(--title-500-CAPS-font-size);
  letter-spacing: var(--title-500-CAPS-letter-spacing);
  line-height: var(--title-500-CAPS-line-height);
  font-style: var(--title-500-CAPS-font-style);
}

.unified-services .subcategory-description {
  position: relative;
  display: -webkit-box;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  font-family: var(--body-s-regular-font-family);
  font-weight: var(--body-s-regular-font-weight);
  color: #ffffff;
  font-size: var(--body-s-regular-font-size);
  letter-spacing: var(--body-s-regular-letter-spacing);
  line-height: var(--body-s-regular-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-style: var(--body-s-regular-font-style);
}

.unified-services .subcategory-description-product {
  position: relative;
  display: -webkit-box;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  font-family: var(--body-s-regular-font-family);
  font-weight: var(--body-s-regular-font-weight);
  font-size: var(--body-s-regular-font-size);
  letter-spacing: var(--body-s-regular-letter-spacing);
  line-height: var(--body-s-regular-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-style: var(--body-s-regular-font-style);
}

.unified-services .subcategory-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(0deg, #F0F1F5 36.54%, #8FA4AE 100%);
}

.unified-services .subcategory-image {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: 1;
  object-fit: cover;
}

/* Contact Tiles */
.unified-services .contact-tiles {
  gap: 20px;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  margin-top: 56px;
}

.unified-services .tile-contact {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #f4f6fa;
  border-radius: 16px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.unified-services .tile-contact:hover {
  background-color: #e5f3fa;
}

.unified-services .tile-icon {
  position: relative;
  width: 40px;
  height: 40px;
}

.unified-services .tile-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.unified-services .tile-title {
  position: relative;
  align-self: stretch;
  margin-top: -1px;
  font-family: var(--body-XL-semibold-font-family);
  font-weight: var(--body-XL-semibold-font-weight);
  color: #101010;
  font-size: var(--body-XL-semibold-font-size);
  letter-spacing: var(--body-XL-semibold-letter-spacing);
  line-height: var(--body-XL-semibold-line-height);
  font-style: var(--body-XL-semibold-font-style);
}

.unified-services .tile-subtitle {
  position: relative;
  align-self: stretch;
  font-family: var(--body-l-regular-font-family);
  font-weight: var(--body-l-regular-font-weight);
  color: #101010b2;
  font-size: var(--body-l-regular-font-size);
  letter-spacing: var(--body-l-regular-letter-spacing);
  line-height: var(--body-l-regular-line-height);
  font-style: var(--body-l-regular-font-style);
}

.unified-services .tile-arrow {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 40px;
}

.unified-services .arrow-icon {
  position: absolute;
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
}

/* Footer */
.unified-services .footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 8px 32px;
  position: relative;
  flex: 0 0 auto;
  z-index: 1;
}

.unified-services .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
  cursor: pointer;
}

.unified-services .link-text {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  margin-top: -1px;
  font-family: var(--body-s-medium-font-family);
  font-weight: var(--body-s-medium-font-weight);
  color: #101010b2;
  font-size: var(--body-s-medium-font-size);
  letter-spacing: var(--body-s-medium-letter-spacing);
  line-height: var(--body-s-medium-line-height);
  font-style: var(--body-s-medium-font-style);
}

.unified-services .background-gradient {
  position: absolute;
  top: 10px;
  height: 265px;
  z-index: 0;
}

/* Training Cards Styles */
.unified-services .training-card {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 380px;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #1010101a;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.unified-services .training-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.unified-services .training-image-wrapper {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 185px;
  overflow: hidden;
  flex-shrink: 0;
}

.unified-services .training-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.unified-services .training-content {
  display: flex;
  flex-direction: column;
  height: 195px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex-shrink: 0;
}

.unified-services .training-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
}

.unified-services .training-title {
  font-family: var(--title-500-CAPS-font-family);
  font-weight: var(--title-500-CAPS-font-weight);
  color: #101010;
  font-size: var(--title-500-CAPS-font-size);
  line-height: var(--title-500-CAPS-line-height);
  position: relative;
  align-self: stretch;
  letter-spacing: var(--title-500-CAPS-letter-spacing);
  font-style: var(--title-500-CAPS-font-style);
}
/* Included Service Tag Styles */
.unified-services .included-service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #00a0e6; /* Blue color */
  color: #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
  font-family: var(--body-s-semibold-font-family);
  font-size: var(--body-s-semibold-font-size);
  letter-spacing: 0px;
  line-height: normal;
  z-index: 4; /* Ensure it's above other elements */
  white-space: nowrap;
}

.unified-services .training-description {
  font-family: var(--body-s-medium-font-family);
  font-weight: var(--body-s-medium-font-weight);
  color: #10101080;
  font-size: var(--body-s-medium-font-size);
  line-height: 140%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  position: relative;
  align-self: stretch;
  letter-spacing: var(--body-s-medium-letter-spacing);
  font-style: var(--body-s-medium-font-style);
  margin: 0;
}

.unified-services .training-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.unified-services .clock-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.unified-services .duration-text {
  position: relative;
  flex: 1;
  font-family: var(--body-s-medium-font-family);
  font-weight: var(--body-s-medium-font-weight);
  color: #10101080;
  font-size: var(--body-s-medium-font-size);
  letter-spacing: var(--body-s-medium-letter-spacing);
  line-height: var(--body-s-medium-line-height);
  font-style: var(--body-s-medium-font-style);
}

a {
  text-decoration: none;
  color: inherit;
}
@media (min-width: 1200px) {
  .unified-services .subcategories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}


  .d-service-dry {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  padding: 24px 20px 32px;
  position: relative;
  background-color: #ffffff;
}

.d-service-dry .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  z-index: 2;
  background-color: transparent;
}

.d-service-dry .logo-nav-transverse {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.d-service-dry .logo {
  position: relative;
  width: 56px;
  height: 56px;
  aspect-ratio: 1;
}

.d-service-dry .menu-tabs {
  display: inline-flex;
  height: 56px;
  align-items: center;
  padding: 4px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 40px;
  border: 1px solid;
  border-color: #1010101a;
}

.d-service-dry .tabs-nav-desktop {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -4.00px;
  margin-bottom: -4.00px;
  border-radius: 40px;
}

.d-service-dry .img {
  position: relative;
  width: 24px;
  height: 24px;
}

.d-service-dry .text-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.d-service-dry .dropdown {
  display: inline-flex;
  height: 18px;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.d-service-dry .dashboard {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.d-service-dry .img-2 {
  position: relative;
  width: 16px;
  height: 16px;
}

.d-service-dry .right-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.d-service-dry .search-nav {
  display: inline-flex;
  min-width: 200px;
  height: 56px;
  align-items: center;
  gap: 4px;
  padding: 4px 24px 4px 4px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f4f6fa;
  border-radius: 40px;
}

.d-service-dry .icon-buttons {
  position: relative;
  width: 48px;
  height: 48px;
}

.d-service-dry .img-3 {
  position: absolute;
  top: calc(50.00% - 10px);
  left: calc(50.00% - 10px);
  width: 20px;
  height: 20px;
}

.d-service-dry .div {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  font-family: var(--body-m-medium-font-family);
  font-weight: var(--body-m-medium-font-weight);
  color: #10101066;
  font-size: var(--body-m-medium-font-size);
  letter-spacing: var(--body-m-medium-letter-spacing);
  line-height: var(--body-m-medium-line-height);
  font-style: var(--body-m-medium-font-style);
}

.d-service-dry .project {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.d-service-dry .button {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px 4px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid;
  border-color: #1010101a;
}

.d-service-dry .panel-profile {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.d-service-dry .button-2 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0px 12px 0px 0px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid;
  border-color: #1010101a;
}

.d-service-dry .profile-pic {
  position: relative;
  width: 56px;
  height: 56px;
}

.d-service-dry .text-wrapper-2 {
  position: absolute;
  top: calc(50.00% - 8px);
  left: calc(50.00% - 10px);
  height: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  text-align: center;
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.d-service-dry .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: flex-end;
  background-color: #ffffff;
  border-radius: 40px;
  border: 1px solid;
  border-color: #1010101a;
}

.d-service-dry .notification {
  margin-top: 16px;
  width: 24px;
  height: 24px;
  margin-right: 16px;
}

.d-service-dry .page {
  display: flex;
  flex-direction: column;
  width: 1164px;
  align-items: center;
  gap: 96px;
  padding: 0px 0px 80px;
  position: relative;
  flex: 0 0 auto;
  z-index: 1;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid;
  border-color: #10101026;
}

.d-service-dry .cover {
  position: relative;
  width: 1164px;
  height: 452px;
  background-image: url(./img/img.png);
  background-size: cover;
  background-position: 50% 50%;
}

.d-service-dry .gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(27, 33, 66, 0) 62%,
    rgba(27, 33, 66, 1) 100%
  );
}

.d-service-dry .remote-support {
  position: absolute;
  width: calc(100% - 80px);
  height: 10.62%;
  top: 82.30%;
  left: 40px;
  font-family: var(--title-100-CAPS-font-family);
  font-weight: var(--title-100-CAPS-font-weight);
  color: #ffffff;
  font-size: var(--title-100-CAPS-font-size);
  letter-spacing: var(--title-100-CAPS-letter-spacing);
  line-height: var(--title-100-CAPS-line-height);
  font-style: var(--title-100-CAPS-font-style);
}

.d-service-dry .cl-molette {
  position: absolute;
  width: 10.74%;
  top: 237px;
  left: 3.44%;
  height: 125px;
  aspect-ratio: 1;
}

.d-service-dry .article {
  display: flex;
  flex-direction: column;
  width: 928px;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.d-service-dry .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 64px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-service-dry .div-2 {
  display: flex;
  flex-direction: column;
  width: 928px;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  flex: 0 0 auto;
}

.d-service-dry .text-wrapper-3 {
  margin-top: -1.00px;
  font-family: var(--title-300-CAPS-font-family);
  font-weight: var(--title-300-CAPS-font-weight);
  font-size: var(--title-300-CAPS-font-size);
  line-height: var(--title-300-CAPS-line-height);
  white-space: nowrap;
  position: relative;
  width: fit-content;
  color: #101010;
  letter-spacing: var(--title-300-CAPS-letter-spacing);
  font-style: var(--title-300-CAPS-font-style);
}

.d-service-dry .features-list {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-service-dry .image {
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  border-radius: 16px;
  background-image: url(./img/image.png);
  background-size: cover;
  background-position: 50% 50%;
}

.d-service-dry .list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 64px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #f4f6fa;
  border-radius: 16px;
}

.d-service-dry .feature {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-service-dry .check-circle-m {
  position: relative;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
}

.d-service-dry .p {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: "Plus Jakarta Sans", Helvetica;
  font-weight: 400;
  color: transparent;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 22.5px;
}

.d-service-dry .span {
  font-weight: var(--body-XL-medium-font-weight);
  color: #101010;
  font-family: var(--body-XL-medium-font-family);
  font-style: var(--body-XL-medium-font-style);
  letter-spacing: var(--body-XL-medium-letter-spacing);
  line-height: var(--body-XL-medium-line-height);
  font-size: var(--body-XL-medium-font-size);
}

.d-service-dry .text-wrapper-4 {
  font-weight: var(--body-XL-semibold-font-weight);
  color: #101010;
  font-family: var(--body-XL-semibold-font-family);
  font-style: var(--body-XL-semibold-font-style);
  letter-spacing: var(--body-XL-semibold-letter-spacing);
  line-height: var(--body-XL-semibold-line-height);
  font-size: var(--body-XL-semibold-font-size);
}

.d-service-dry .text-wrapper-5 {
  font-weight: var(--body-XL-semibold-font-weight);
  color: #00a0e6;
  font-family: var(--body-XL-semibold-font-family);
  font-style: var(--body-XL-semibold-font-style);
  letter-spacing: var(--body-XL-semibold-letter-spacing);
  line-height: var(--body-XL-semibold-line-height);
  font-size: var(--body-XL-semibold-font-size);
}

.d-service-dry .divider {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-service-dry .divider-2 {
  width: 100%;
  height: 1px;
  margin-top: -1.00px;
  object-fit: cover;
  position: relative;
  align-self: stretch;
}

.d-service-dry .marine-repair {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--body-XL-medium-font-family);
  font-weight: var(--body-XL-medium-font-weight);
  color: #101010;
  font-size: var(--body-XL-medium-font-size);
  letter-spacing: var(--body-XL-medium-letter-spacing);
  line-height: var(--body-XL-medium-line-height);
  font-style: var(--body-XL-medium-font-style);
}

.d-service-dry .text-wrapper-6 {
  position: relative;
  width: fit-content;
  font-family: var(--body-l-medium-font-family);
  font-weight: var(--body-l-medium-font-weight);
  color: #10101080;
  font-size: var(--body-l-medium-font-size);
  letter-spacing: var(--body-l-medium-letter-spacing);
  line-height: var(--body-l-medium-line-height);
  font-style: var(--body-l-medium-font-style);
}

.d-service-dry .presentation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 64px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: var(--ombre-l-g-re);
}

.d-service-dry .top {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-service-dry .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}



.d-service-dry .div-3 {
  position: relative;
  align-self: stretch;
  font-family: "Urbanist", Helvetica;
  font-weight: 400;
  color: #101010b2;
  font-size: 48px;
  letter-spacing: 0;
  line-height: 48px;
}

.d-service-dry .text-wrapper-7 {
  font-weight: var(--title-100-CAPS-font-weight);
  color: #101010;
  font-family: var(--title-100-CAPS-font-family);
  font-style: var(--title-100-CAPS-font-style);
  letter-spacing: var(--title-100-CAPS-letter-spacing);
  line-height: var(--title-100-CAPS-line-height);
  font-size: var(--title-100-CAPS-font-size);
}

.d-service-dry .text-wrapper-8 {
  font-family: var(--body-l-regular-font-family);
  color: #101010;
  font-size: var(--body-l-regular-font-size);
  font-style: var(--body-l-regular-font-style);
  font-weight: var(--body-l-regular-font-weight);
  letter-spacing: var(--body-l-regular-letter-spacing);
  line-height: var(--body-l-regular-line-height);
}

.d-service-dry .arrow-right-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 56px 0px 0px;
  position: relative;
  flex: 0 0 auto;
}


.d-service-dry .ellipse-3 {
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.d-service-dry .presentation-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 64px 80px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid;
  border-color: #e0e3ea;
}

.d-service-dry .top-2 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  align-self: stretch;
  width: 100%;
  position: relative;
  flex: 0 0 auto;
}

.d-service-dry .col-2 {
  display: flex;
  flex-direction: column;
  width: 240px;
  align-items: center;
  gap: 24px;
  position: relative;
}

.d-service-dry .frame {
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 240px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 50px 20px;
  position: relative;
  background-color: #1b2142;
  border-radius: 20px;
  box-shadow: var(--ombre-moyenne);
}

.d-service-dry .img-4 {
  position: relative;
  width: 96px;
  height: 96px;
  aspect-ratio: 1;
}

.d-service-dry .text-wrapper-9 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-l-medium-font-family);
  font-weight: var(--body-l-medium-font-weight);
  color: #ffffff;
  font-size: var(--body-l-medium-font-size);
  text-align: center;
  letter-spacing: var(--body-l-medium-letter-spacing);
  line-height: var(--body-l-medium-line-height);
  font-style: var(--body-l-medium-font-style);
}

.d-service-dry .div-4 {
  position: relative;
  align-self: stretch;
  font-family: "Urbanist", Helvetica;
  font-weight: 400;
  color: #101010b2;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 20px;
}

.d-service-dry .text-wrapper-10 {
  font-weight: var(--title-500-semibold-font-weight);
  color: #101010;
  font-family: var(--title-500-semibold-font-family);
  font-style: var(--title-500-semibold-font-style);
  letter-spacing: var(--title-500-semibold-letter-spacing);
  line-height: var(--title-500-semibold-line-height);
  font-size: var(--title-500-semibold-font-size);
}

.d-service-dry .text-wrapper-11 {
  font-family: var(--body-l-semibold-font-family);
  font-weight: var(--body-l-semibold-font-weight);
  color: #101010;
  font-size: var(--body-l-semibold-font-size);
  font-style: var(--body-l-semibold-font-style);
  letter-spacing: var(--body-l-semibold-letter-spacing);
  line-height: var(--body-l-semibold-line-height);
}

.d-service-dry .divider-wrapper {
  display: flex;
  flex-direction: column;
  width: 369px;
  align-items: flex-start;
  gap: 10px;
  transform: rotate(-90deg);
  position: relative;
  align-self: stretch;
}

.d-service-dry .divider-3 {
  width: 100%;
  height: 369px;
  margin-top: -185.00px;
  margin-bottom: -183.00px;
  transform: rotate(90deg);
  object-fit: cover;
  position: relative;
  align-self: stretch;
}

.d-service-dry .frame-2 {
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 240px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 50px 20px;
  position: relative;
  background-color: #ffe147;
  border-radius: 20px;
  box-shadow: var(--ombre-moyenne);
}

.d-service-dry .text-wrapper-12 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-l-medium-font-family);
  font-weight: var(--body-l-medium-font-weight);
  color: #1b2142;
  font-size: var(--body-l-medium-font-size);
  text-align: center;
  letter-spacing: var(--body-l-medium-letter-spacing);
  line-height: var(--body-l-medium-line-height);
  font-style: var(--body-l-medium-font-style);
}

.d-service-dry .text-wrapper-13 {
  position: relative;
  align-self: stretch;
  font-family: var(--body-XL-regular-font-family);
  font-weight: var(--body-XL-regular-font-weight);
  color: #101010;
  font-size: var(--body-XL-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-XL-regular-letter-spacing);
  line-height: var(--body-XL-regular-line-height);
  font-style: var(--body-XL-regular-font-style);
}

.d-service-dry .tile-contact {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #f4f6fa;
  border-radius: 16px;
}

.d-service-dry .assistance {
  position: relative;
  width: 40.55px;
  height: 40px;
  margin-left: -0.27px;
  aspect-ratio: 1;
}

.d-service-dry .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.d-service-dry .contacter-un {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--body-XL-semibold-font-family);
  font-weight: var(--body-XL-semibold-font-weight);
  color: #101010;
  font-size: var(--body-XL-semibold-font-size);
  letter-spacing: var(--body-XL-semibold-letter-spacing);
  line-height: var(--body-XL-semibold-line-height);
  font-style: var(--body-XL-semibold-font-style);
}

.d-service-dry .lien-page-mes {
  position: relative;
  align-self: stretch;
  font-family: var(--body-l-regular-font-family);
  font-weight: var(--body-l-regular-font-weight);
  color: #101010b2;
  font-size: var(--body-l-regular-font-size);
  letter-spacing: var(--body-l-regular-letter-spacing);
  line-height: var(--body-l-regular-line-height);
  font-style: var(--body-l-regular-font-style);
}

.d-service-dry .arrow-link-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 40px;
  aspect-ratio: 1;
}

.d-service-dry .arrow-link {
  position: absolute;
  width: 40.00%;
  height: 40.00%;
  top: 30.00%;
  left: 30.00%;
}

.d-service-dry .fil-d-arianne {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: -76px;
  left: -98px;
}

.d-service-dry .img-5 {
  position: relative;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
}

.d-service-dry .services {
  position: relative;
  width: fit-content;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.d-service-dry .service-name {
  font-family: var(--body-m-regular-font-family);
  font-weight: var(--body-m-regular-font-weight);
  font-size: var(--body-m-regular-font-size);
  line-height: var(--body-m-regular-line-height);
  position: relative;
  width: fit-content;
  color: #101010;
  letter-spacing: var(--body-m-regular-letter-spacing);
  font-style: var(--body-m-regular-font-style);
}

.d-service-dry .footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 8px 32px;
  position: relative;
  flex: 0 0 auto;
  z-index: 0;
}

.d-service-dry .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.d-service-dry .label {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--body-s-medium-font-family);
  font-weight: var(--body-s-medium-font-weight);
  color: #101010b2;
  font-size: var(--body-s-medium-font-size);
  letter-spacing: var(--body-s-medium-letter-spacing);
  line-height: var(--body-s-medium-line-height);
  font-style: var(--body-s-medium-font-style);
}

@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
@import url("https://fonts.googleapis.com/css?family=Plus+Jakarta+Sans:var(--body-XL-medium-font-weight),var(--body-m-semibold-font-weight),var(--body-XL-semibold-font-weight),var(--body-m-regular-font-weight),var(--body-s-medium-font-weight),var(--body-l-semibold-font-weight),var(--body-XL-regular-font-weight),400,var(--body-m-medium-font-weight),var(--body-l-medium-font-weight),var(--body-l-regular-font-weight)|Urbanist:var(--title-500-semibold-font-weight),var(--title-300-CAPS-font-weight),var(--title-100-CAPS-font-weight),400");

* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}
html,
body {
  margin: 0px;
  height: 100%;
}
/* a blue color as a generic focus style */
button:focus-visible {
  outline: 2px solid #4a90e2 !important;
  outline: -webkit-focus-ring-color auto 5px !important;
}
a {
  text-decoration: none;
}

@media (max-width: 1500px) {
  .unified-services .category-card {
    width: 180px !important;
  }
}

/* ------------------------------------ Our trining ------------------------- */
.d-landing-on {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 56px;
  position: relative;
  background-color: #ffffff;
}

.d-landing-on .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  z-index: 3;
  background-color: transparent;
}

.d-landing-on .logo-nav-transverse {
  display: inline-flex;
  align-items: center;
  gap: 40px;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .logo {
  position: relative;
  width: 56px;
  height: 56px;
  aspect-ratio: 1;
}

.d-landing-on .menu-tabs {
  display: inline-flex;
  height: 56px;
  align-items: center;
  padding: 4px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 40px;
  border: 1px solid;
  border-color: #10101033;
}

.d-landing-on .tabs-nav-desktop {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  position: relative;
  flex: 0 0 auto;
  margin-top: -4.00px;
  margin-bottom: -4.00px;
  border-radius: 40px;
}

.d-landing-on .home {
  position: relative;
  width: 24px;
  height: 24px;
}

.d-landing-on .text-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.d-landing-on .dropdown {
  display: inline-flex;
  height: 18px;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .dashboard {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.d-landing-on .img {
  position: relative;
  width: 16px;
  height: 16px;
}

.d-landing-on .right-nav {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .search-nav {
  display: inline-flex;
  min-width: 200px;
  height: 56px;
  align-items: center;
  gap: 4px;
  padding: 4px 24px 4px 4px;
  position: relative;
  flex: 0 0 auto;
  background-color: #f4f6fa;
  border-radius: 40px;
}

.d-landing-on .icon-buttons {
  position: relative;
  width: 48px;
  height: 48px;
}

.d-landing-on .img-2 {
  position: absolute;
  top: calc(50.00% - 10px);
  left: calc(50.00% - 10px);
  width: 20px;
  height: 20px;
}

.d-landing-on .div {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex: 1;
  font-family: var(--body-m-medium-font-family);
  font-weight: var(--body-m-medium-font-weight);
  color: #10101066;
  font-size: var(--body-m-medium-font-size);
  letter-spacing: var(--body-m-medium-letter-spacing);
  line-height: var(--body-m-medium-line-height);
  font-style: var(--body-m-medium-font-style);
}

.d-landing-on .project {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .button {
  all: unset;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px 4px 4px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid;
  border-color: #10101033;
}

.d-landing-on .panel-profile {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .button-2 {
  all: unset;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 0px 12px 0px 0px;
  position: relative;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 50px;
  overflow: hidden;
  border: 1px solid;
  border-color: #10101033;
}

.d-landing-on .profile-pic {
  position: relative;
  width: 56px;
  height: 56px;
}

.d-landing-on .text-wrapper-2 {
  position: absolute;
  top: calc(50.00% - 8px);
  left: calc(50.00% - 10px);
  height: 18px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  text-align: center;
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.d-landing-on .icon {
  position: absolute;
  top: 0;
  right: 0;
  width: 56px;
  height: 56px;
  display: flex;
  justify-content: flex-end;
  background-color: #ffffff;
  border-radius: 40px;
  border: 1px solid;
  border-color: #10101033;
}

.d-landing-on .notification {
  margin-top: 16px;
  width: 24px;
  height: 24px;
  margin-right: 16px;
}

.d-landing-on .frame {
  flex-direction: column;
  gap: 56px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-landing-on .section-offres {
  align-self: stretch;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .SERVICE-categories {
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--title-500-CAPS-font-family);
  font-weight: var(--title-500-CAPS-font-weight);
  color: #ffffff;
  font-size: var(--title-500-CAPS-font-size);
  text-align: center;
  line-height: var(--title-500-CAPS-line-height);
  position: relative;
  letter-spacing: var(--title-500-CAPS-letter-spacing);
  font-style: var(--title-500-CAPS-font-style);
}

.d-landing-on .carrousel {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow-x: scroll;
}

.d-landing-on .carrousel::-webkit-scrollbar {
  width: 0;
  display: none;
}

.d-landing-on .card-offre {
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 140px;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.d-landing-on .content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 4px;
  position: relative;
  flex: 1;
  align-self: stretch;
  width: 100%;
  flex-grow: 1;
}

.d-landing-on .WET-HARDWARE-REPAIR {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: stretch;
  z-index: 3;
  font-family: var(--title-500-CAPS-font-family);
  font-weight: var(--title-500-CAPS-font-weight);
  color: #ffffff;
  font-size: var(--title-500-CAPS-font-size);
  letter-spacing: var(--title-500-CAPS-letter-spacing);
  line-height: var(--title-500-CAPS-line-height);
  font-style: var(--title-500-CAPS-font-style);
}

.d-landing-on .filtre {
  position: absolute;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  top: -24px;
  left: -24px;
  z-index: 2;
  border-radius: 8px;
  background: linear-gradient(
    180deg,
    rgba(27, 33, 66, 0.08) 0%,
    rgba(27, 33, 66, 0.8) 100%
  );
}

.d-landing-on .filtre-b-w {
  z-index: 1;
  background-color: #101010;
  background-blend-mode: saturation;
  position: absolute;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  top: -24px;
  left: -24px;
  border-radius: 8px;
}

.d-landing-on .img-3 {
  position: absolute;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  top: -24px;
  left: -24px;
  z-index: 0;
  object-fit: cover;
}

.d-landing-on .content-wrapper {
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/card-offre-20@2x.png);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 140px;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.d-landing-on .card-offre-2 {
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/card-offre-21@2x.png);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 140px;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.d-landing-on .card-offre-3 {
  border: 4px solid;
  border-color: #00a0e6;
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/card-offre-23@2x.png);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 140px;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.d-landing-on .filtre-2 {
  z-index: 2;
  background: linear-gradient(
    180deg,
    rgba(27, 33, 66, 0.3) 0%,
    rgba(27, 33, 66, 1) 100%
  );
  position: absolute;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  top: -24px;
  left: -24px;
  border-radius: 8px;
}

.d-landing-on .filtre-b-w-2 {
  position: absolute;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  top: -24px;
  left: -24px;
  z-index: 1;
  background-color: #101010;
  border-radius: 8px;
  background-blend-mode: saturation;
  opacity: 0;
}

.d-landing-on .card-offre-4 {
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/card-offre-23@2x.png);
  background-size: cover;
  background-position: 50% 50%;
  display: flex;
  flex-direction: column;
  width: 240px;
  height: 140px;
  align-items: flex-start;
  gap: 20px;
  padding: 24px;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.d-landing-on .img-4 {
  position: absolute;
  width: calc(100% + 48px);
  height: calc(100% + 48px);
  top: -24px;
  left: -24px;
  z-index: 0;
}

.d-landing-on .section-offres-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 64px 0px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-landing-on .content-2 {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  padding: 24px 0px 40px;
  position: relative;
  flex: 0 0 auto;
  margin-left: -20.00px;
  margin-right: -20.00px;
}

.d-landing-on .top {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .OUR-trainings {
  position: relative;
  width: 1400px;
  margin-top: -1.00px;
  font-family: var(--title-300-CAPS-font-family);
  font-weight: var(--title-300-CAPS-font-weight);
  color: #101010;
  font-size: var(--title-300-CAPS-font-size);
  text-align: center;
  letter-spacing: var(--title-300-CAPS-letter-spacing);
  line-height: var(--title-300-CAPS-line-height);
  font-style: var(--title-300-CAPS-font-style);
}

.d-landing-on .benefit-from-ASN {
  position: relative;
  width: 834px;
  font-family: var(--body-XL-regular-font-family);
  font-weight: var(--body-XL-regular-font-weight);
  color: #000000;
  font-size: var(--body-XL-regular-font-size);
  text-align: center;
  letter-spacing: var(--body-XL-regular-letter-spacing);
  line-height: var(--body-XL-regular-line-height);
  font-style: var(--body-XL-regular-font-style);
}

.d-landing-on .section-formations {
  width: 1440px;
  padding: 48px 70px;
  background-color: #f4f6fa;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .carrousel-2 {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 20px 20px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  overflow-x: scroll;
}

.d-landing-on .carrousel-2::-webkit-scrollbar {
  width: 0;
  display: none;
}

.d-landing-on .card-offre-5 {
  display: flex;
  flex-direction: column;
  width: 300px;
  height: 440px;
  align-items: flex-start;
  position: relative;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid;
  border-color: #1010101a;
}

.d-landing-on .img-5 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 185px;
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/img-5@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.d-landing-on .article {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  padding: 24px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-landing-on .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-landing-on .top-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-landing-on .training-name {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--title-500-CAPS-font-family);
  font-weight: var(--title-500-CAPS-font-weight);
  color: #101010;
  font-size: var(--title-500-CAPS-font-size);
  letter-spacing: var(--title-500-CAPS-letter-spacing);
  line-height: var(--title-500-CAPS-line-height);
  font-style: var(--title-500-CAPS-font-style);
}

.d-landing-on .SUBTITLE {
  position: relative;
  align-self: stretch;
  font-family: var(--title-700-CAPS-font-family);
  font-weight: var(--title-700-CAPS-font-weight);
  color: #10101080;
  font-size: var(--title-700-CAPS-font-size);
  letter-spacing: var(--title-700-CAPS-letter-spacing);
  line-height: var(--title-700-CAPS-line-height);
  font-style: var(--title-700-CAPS-font-style);
}

.d-landing-on .infos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 0px 0px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-landing-on .tag {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.d-landing-on .text-wrapper-3 {
  position: relative;
  width: 142px;
  margin-top: -1.00px;
  font-family: var(--body-s-medium-font-family);
  font-weight: var(--body-s-medium-font-weight);
  color: #10101080;
  font-size: var(--body-s-medium-font-size);
  letter-spacing: var(--body-s-medium-letter-spacing);
  line-height: var(--body-s-medium-line-height);
  font-style: var(--body-s-medium-font-style);
}

.d-landing-on .line {
  position: relative;
  width: 1px;
  height: 18px;
  object-fit: cover;
}

.d-landing-on .duration {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .clock {
  position: relative;
  width: 16px;
  height: 16px;
  aspect-ratio: 1;
}

.d-landing-on .text-wrapper-4 {
  position: relative;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--body-s-medium-font-family);
  font-weight: var(--body-s-medium-font-weight);
  color: #10101080;
  font-size: var(--body-s-medium-font-size);
  letter-spacing: var(--body-s-medium-letter-spacing);
  line-height: var(--body-s-medium-line-height);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-style: var(--body-s-medium-font-style);
}

.d-landing-on .img-6 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 185px;
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/img-6@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.d-landing-on .infos-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-landing-on .COTDR {
  position: relative;
  flex: 1;
  margin-top: -1.00px;
  font-family: var(--body-s-medium-font-family);
  font-weight: var(--body-s-medium-font-weight);
  color: #10101080;
  font-size: var(--body-s-medium-font-size);
  letter-spacing: var(--body-s-medium-letter-spacing);
  line-height: var(--body-s-medium-line-height);
  font-style: var(--body-s-medium-font-style);
}

.d-landing-on .img-7 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 185px;
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/img-7@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.d-landing-on .img-8 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 185px;
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/img-8@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.d-landing-on .img-9 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 185px;
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/img-9@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.d-landing-on .img-10 {
  position: relative;
  align-self: stretch;
  width: 100%;
  height: 185px;
  background-image: url(https://c.animaapp.com/vdGJ54lE/img/img-10@2x.png);
  background-size: cover;
  background-position: 50% 50%;
}

.d-landing-on .fil-d-arianne {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: absolute;
  top: 0;
  left: 0;
}

.d-landing-on .img-11 {
  position: relative;
  width: 20px;
  height: 20px;
  aspect-ratio: 1;
}

.d-landing-on .services {
  position: relative;
  width: fit-content;
  font-family: var(--body-m-semibold-font-family);
  font-weight: var(--body-m-semibold-font-weight);
  color: #101010;
  font-size: var(--body-m-semibold-font-size);
  letter-spacing: var(--body-m-semibold-letter-spacing);
  line-height: var(--body-m-semibold-line-height);
  font-style: var(--body-m-semibold-font-style);
}

.d-landing-on .service-name {
  width: fit-content;
  font-family: var(--body-m-regular-font-family);
  font-weight: var(--body-m-regular-font-weight);
  color: #101010;
  font-size: var(--body-m-regular-font-size);
  line-height: var(--body-m-regular-line-height);
  position: relative;
  letter-spacing: var(--body-m-regular-letter-spacing);
  font-style: var(--body-m-regular-font-style);
}

.d-landing-on .frame-2 {
  gap: 20px;
  padding: 0px 70px;
  display: flex;
  align-items: flex-start;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.d-landing-on .tile-contact {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #f4f6fa;
  border-radius: 16px;
}

.d-landing-on .assistance {
  position: relative;
  width: 40.55px;
  height: 40px;
  margin-left: -0.27px;
  aspect-ratio: 1;
}

.d-landing-on .text-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  position: relative;
  flex: 1;
  flex-grow: 1;
}

.d-landing-on .contacter-un {
  position: relative;
  align-self: stretch;
  margin-top: -1.00px;
  font-family: var(--title-600-CAPS-font-family);
  font-weight: var(--title-600-CAPS-font-weight);
  color: #101010;
  font-size: var(--title-600-CAPS-font-size);
  letter-spacing: var(--title-600-CAPS-letter-spacing);
  line-height: var(--title-600-CAPS-line-height);
  font-style: var(--title-600-CAPS-font-style);
}

.d-landing-on .lien-page-mes {
  position: relative;
  align-self: stretch;
  font-family: var(--body-l-regular-font-family);
  font-weight: var(--body-l-regular-font-weight);
  color: #101010b2;
  font-size: var(--body-l-regular-font-size);
  letter-spacing: var(--body-l-regular-letter-spacing);
  line-height: var(--body-l-regular-line-height);
  font-style: var(--body-l-regular-font-style);
}

.d-landing-on .arrow-link-wrapper {
  position: relative;
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 40px;
  aspect-ratio: 1;
}

.d-landing-on .arrow-link {
  position: absolute;
  width: 40.00%;
  height: 40.00%;
  top: 30.00%;
  left: 30.00%;
}

.d-landing-on .tile-contact-2 {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
  background-color: #f4f6fa;
  border-radius: 16px;
}

.d-landing-on .cl-molette {
  position: relative;
  width: 40px;
  height: 40px;
  aspect-ratio: 1;
}

.d-landing-on .footer-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 8px 32px;
  position: relative;
  flex: 0 0 auto;
  z-index: 1;
}

.d-landing-on .link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  position: relative;
  flex: 0 0 auto;
}

.d-landing-on .label {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  margin-top: -1.00px;
  font-family: var(--body-s-medium-font-family);
  font-weight: var(--body-s-medium-font-weight);
  color: #101010b2;
  font-size: var(--body-s-medium-font-size);
  letter-spacing: var(--body-s-medium-letter-spacing);
  line-height: var(--body-s-medium-line-height);
  font-style: var(--body-s-medium-font-style);
}

.d-landing-on .group {
  position: absolute;
  top: 100px;
  left: 0;
  width: 1440px;
  height: 265px;
  z-index: 0;
}
