
#hero-2 {
  background-size: cover;
  background-position: center;
  padding: 150px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}
#hero-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
}
#hero-2 .container {
  position: relative;
  z-index: 2;
}
#hero-2 .hero-title {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}
#hero-2 .hero-subtitle {
  font-size: 22px;
  margin-bottom: 30px;
}
.btn.btn-light {
  padding: 14px 40px;
  font-size: 18px;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  border-radius: 4px;
}



#overview-18 {
  position: relative;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}
#overview-18:not([style*="background-image"]) {
  background-color: #6c757d;
}
#overview-18 .container-fluid {
  padding: 0;
}
#overview-18 .content-panel-wrapper {
}
#overview-18 .scrollable-panel {
  background-color: var(--panel-bg-color, rgba(255, 255, 255, 0.95));
  color: var(--panel-text-color, #333);
  padding: 2rem;
  border-radius: 0.5rem;
  max-height: 75vh;
  overflow-y: auto;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
}
#overview-18 .scrollable-panel::-webkit-scrollbar {
  width: 8px;
}
#overview-18 .scrollable-panel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 4px;
}
#overview-18 .scrollable-panel::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 4px;
  border: 2px solid transparent;
  background-clip: content-box;
}
#overview-18 .scrollable-panel::-webkit-scrollbar-thumb:hover {
  background-color: rgba(0, 0, 0, 0.5);
}
#overview-18 .scrollable-panel .panel-header .section-heading {
  margin-bottom: 0.5rem;
  color: inherit;
}
#overview-18 .scrollable-panel .panel-header .lead {
  color: inherit;
  opacity: 0.85;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}
#overview-18 .scrollable-panel .content-detail-block {
  margin-bottom: 1.5rem;
}
#overview-18 .scrollable-panel .content-detail-block:last-child {
  margin-bottom: 0;
}
#overview-18 .scrollable-panel .content-detail-block h5 {
  font-weight: 600;
  color: var(--bs-primary);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
#overview-18 .scrollable-panel .content-detail-block p {
  line-height: 1.7;
  color: inherit;
  opacity: 0.9;
  margin-bottom: 0;
  font-size: 0.95rem;
}
#overview-18 .scrollable-panel .cta-wrapper {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 991px) {
  #overview-18 {
    min-height: auto;
    background-attachment: scroll;
    padding: 4rem 0;
    display: block;
  }
  #overview-18 .container-fluid {
    padding-left: var(--bs-gutter-x, 0.75rem);
    padding-right: var(--bs-gutter-x, 0.75rem);
  }
  #overview-18 .scrollable-panel {
    max-height: none;
    overflow-y: visible;
    margin-top: 0;
  }
  #overview-18 .content-panel-wrapper {
    margin: 0 auto;
  }
}



/* Section wrapper */
#category-posts-26 {
  background: #E0DED9;
  padding: 80px 20px;
  text-align: center;
}

/* Header */
#category-posts-26 .intro h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #222;
}
#category-posts-26 .intro p {
  font-size: 1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 60px;
}

/* Dark band behind cards */
#category-posts-26 .cards-band {
  position: relative;
  background: #4A4438;
  padding: 60px 0;
}
#category-posts-26 .cards-band::before {
  content: '';
  position: absolute;
  top: -40px; left: 0; right: 0;
  height: 40px;
  background: #E0DED9;
}

/* Cards container */
#category-posts-26 .cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* Individual card */
#category-posts-26 .card-item {
  background: #fff;
  border-radius: .75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  overflow: hidden;
  max-width: 300px;
  transition: transform .3s ease, box-shadow .3s ease;
}
#category-posts-26 .card-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Card image */
#category-posts-26 .card-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Card content */
#category-posts-26 .card-content {
  padding: 1.5rem;
  text-align: left;
}
#category-posts-26 .card-content h3 {
  font-size: 1.25rem;
  margin: 0 0 .75rem;
  color: #222;
}
#category-posts-26 .card-content p {
  font-size: .95rem;
  color: #555;
  margin-bottom: 1.25rem;
}

/* Read More link */
#category-posts-26 .readmore {
  font-size: .875rem;
  font-weight: 600;
  color: #4A4438;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: color .3s ease;
}
#category-posts-26 .readmore i {
  margin-left: .25rem;
  transition: transform .3s ease;
}
#category-posts-26 .readmore:hover {
  color: #222;
}
#category-posts-26 .readmore:hover i {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  #category-posts-26 .cards {
    flex-direction: column;
    align-items: center;
  }
  #category-posts-26 .cards-band::before {
    display: none;
  }
}




#content-block-30 {
  padding: 8rem 0;
  position: relative;
  overflow: hidden;
  color: var(--cb30-text-color, #343a40);
  z-index: 1;
}
#content-block-30.bg-image-mode {
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
}
#content-block-30.bg-image-mode::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--cb30-overlay-color, rgba(0, 0, 0, 0.5));
  z-index: -1;
}
#content-block-30 .hero-content-wrapper {
  position: relative;
  z-index: 2;
}
#content-block-30 .hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: inherit;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}
#content-block-30 .hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  color: inherit;
  opacity: 0.9;
  font-weight: 300;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
#content-block-30 .hero-buttons .btn {
  margin: 0.5rem 0.75rem;
  padding: 0.8rem 2rem;
  font-weight: 600;
  min-width: 160px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s ease;
}
#content-block-30 .hero-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
#content-block-30 .hero-buttons .btn i {
  margin-right: 0.6rem;
}
#content-block-30 .text-align-center {
  text-align: center;
}
#content-block-30 .text-align-left {
  text-align: left;
}
#content-block-30 .text-align-right {
  text-align: right;
}
@media (max-width: 991.98px) {
  #content-block-30 {
    padding: 6rem 0;
  }
  #content-block-30 .hero-title {
    font-size: 2.5rem;
  }
  #content-block-30 .hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }
}
@media (max-width: 767.98px) {
  #content-block-30 {
    padding: 5rem 0;
    background-attachment: scroll;
  }
  #content-block-30 .hero-title {
    font-size: 2rem;
  }
  #content-block-30 .hero-subtitle {
    font-size: 1rem;
  }
  #content-block-30 .hero-buttons .btn {
    display: block;
    width: 85%;
    max-width: 280px;
    margin: 1rem auto;
    padding: 0.7rem 1.5rem;
  }
  #content-block-30 .text-align-left,
  #content-block-30 .text-align-right {
    text-align: center;
  }
  #content-block-30 .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
}



#faq-14 {
  padding: 60px 0;
}
#faq-14 .faq-section-title {
  text-align: center;
  font-weight: 700;
  margin-bottom: 3rem;
  font-size: 2rem;
}
#faq-14 .faq-sidebar {
  position: sticky;
  top: 80px;
  height: calc(100vh - 100px);
  overflow-y: auto;
}
#faq-14 .faq-sidebar .nav-link {
  color: #495057;
  padding: 0.6rem 1rem;
  border-left: 3px solid transparent;
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
#faq-14 .faq-sidebar .nav-link:hover {
  color: #0d6efd;
  background-color: #f1f5f9;
  border-left-color: #cfe2ff;
}
#faq-14 .faq-sidebar .nav-link.active {
  color: #0d6efd;
  font-weight: 600;
  background-color: #e7f1ff;
  border-left-color: #0d6efd;
}
#faq-14 .faq-content-area {
}
#faq-14 .faq-content-item {
  margin-bottom: 2.5rem;
  padding-top: 1rem;
}
#faq-14 .faq-content-item h5 {
  font-weight: 600;
  color: #212529;
  margin-bottom: 0.8rem;
}
#faq-14 .faq-content-item p {
  color: #495057;
  line-height: 1.7;
}
#faq-14 .faq-content-item p:last-child {
  margin-bottom: 0;
}
@media (max-width: 991.98px) {
  #faq-14 .faq-sidebar {
    position: static;
    height: auto;
    margin-bottom: 2rem;
    overflow-y: visible;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1rem;
  }
  #faq-14 .faq-sidebar .nav {
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
  }
  #faq-14 .faq-sidebar .nav-link {
    border-left: none;
    border-bottom: 3px solid transparent;
    margin: 0 0.5rem 0.5rem 0.5rem;
  }
  #faq-14 .faq-sidebar .nav-link.active {
    border-left-color: transparent;
    border-bottom-color: #0d6efd;
    background-color: transparent;
  }
  #faq-14 .faq-sidebar .nav-link:hover {
    border-left-color: transparent;
    border-bottom-color: #cfe2ff;
    background-color: transparent;
  }
}



#timeline-8 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f8f9fa;
  overflow: hidden;
}
#timeline-8 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#timeline-8 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#timeline-8 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#timeline-8 .release-timeline-list {
  list-style: none;
  padding-left: 0;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
#timeline-8 .release-timeline-list::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background-color: #dee2e6;
  z-index: 1;
}
#timeline-8 .release-item {
  display: flex;
  align-items: flex-start;
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
  background-color: #f8f9fa;
}
#timeline-8 .release-item:not(:last-child) {
  border-bottom: 1px dashed #dee2e6;
}
#timeline-8 .release-marker {
  flex-shrink: 0;
  width: 40px;
  text-align: center;
  margin-right: 1.5rem;
  margin-top: 5px;
  position: relative;
}
#timeline-8 .release-marker i {
  font-size: 1.4rem;
  color: var(--bs-primary);
  background-color: #ffffff;
  border-radius: 50%;
  padding: 8px;
  border: 1px solid #dee2e6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
#timeline-8 .release-content {
  flex-grow: 1;
}
#timeline-8 .release-version-date {
  margin-bottom: 0.75rem;
}
#timeline-8 .release-version {
  font-size: 1.2rem;
  font-weight: 700;
  color: #343a40;
  margin-right: 0.75rem;
  display: inline-block;
  background-color: var(--bs-primary);
  color: #ffffff;
  padding: 0.2rem 0.6rem;
  border-radius: 0.25rem;
  line-height: 1.2;
}
#timeline-8 .release-date {
  font-weight: 500;
  font-size: 0.95rem;
  color: #6c757d;
}
#timeline-8 .release-theme-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #444;
}
#timeline-8 .release-features {
  list-style: none;
  padding-left: 0;
  margin-top: 0.75rem;
  margin-bottom: 0;
}
#timeline-8 .release-features li {
  font-size: 0.9rem;
  color: #495057;
  line-height: 1.6;
  margin-bottom: 0.3rem;
  padding-left: 1.2rem;
  position: relative;
}
#timeline-8 .release-features li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  position: absolute;
  left: 0;
  top: 0.2em;
  color: var(--bs-success);
  font-size: 0.85em;
}
@media (max-width: 767.98px) {
  #timeline-8 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #timeline-8 .section-title {
    font-size: 2.1rem;
  }
  #timeline-8 .release-timeline-list::before {
    left: 20px;
  }
  #timeline-8 .release-item {
    padding: 1rem 0;
  }
  #timeline-8 .release-marker {
    margin-right: 1rem;
    width: 35px;
  }
  #timeline-8 .release-marker i {
    font-size: 1.2rem;
    padding: 6px;
  }
}
@media (max-width: 575.98px) {
  #timeline-8 .release-timeline-list::before {
    left: 18px;
  }
  #timeline-8 .release-marker {
    margin-right: 0.75rem;
    width: 30px;
  }
  #timeline-8 .release-marker i {
    font-size: 1rem;
    padding: 5px;
  }
  #timeline-8 .release-version-date {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
}



#team-6 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#team-6 .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
#team-6 .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#team-6 .section-subtitle {
  font-size: 1.15rem;
  color: #6c757d;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
#team-6 .department-block {
  margin-bottom: 3.5rem;
}
#team-6 .department-block:last-child {
  margin-bottom: 0;
}
#team-6 .department-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--bs-primary);
  display: inline-flex;
  align-items: center;
}
#team-6 .department-title i {
  margin-right: 0.8rem;
  font-size: 1.5rem;
  color: var(--bs-primary);
  opacity: 0.9;
}
#team-6 .department-members-grid {
}
#team-6 .member-item-simple {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem;
  border-radius: 0.25rem;
  transition: background-color 0.2s ease;
}
#team-6 .member-item-simple:hover {
  background-color: #f8f9fa;
}
#team-6 .member-photo-small img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 1rem;
  border: 2px solid #eee;
}
#team-6 .member-details {
  flex-grow: 1;
}
#team-6 .member-name {
  font-size: 1rem;
  font-weight: 600;
  color: #343a40;
  margin-bottom: 0;
}
#team-6 .member-role {
  font-size: 0.85rem;
  color: #6c757d;
  margin-bottom: 0;
}
@media (max-width: 767.98px) {
  #team-6 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  #team-6 .section-title {
    font-size: 2.1rem;
  }
  #team-6 .department-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }
  #team-6 .member-item-simple {
    padding-left: 0;
    padding-right: 0;
  }
}



#press-mentions-10 {
  padding-top: 6rem;
  padding-bottom: 6rem;
  position: relative;
  background-size: cover;
  background-position: center center;
  text-align: center;
  overflow: hidden;
}
#press-mentions-10::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
#press-mentions-10 .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}
#press-mentions-10 .quote-icon {
  margin-bottom: 1.5rem;
  opacity: 0.8;
}
#press-mentions-10 .press-quote {
  font-size: 1.8rem;
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 2rem;
}
#press-mentions-10 .quote-source {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 2rem;
  opacity: 0.9;
}
#press-mentions-10 .quote-link .btn {
  padding: 0.75rem 2rem;
  font-weight: 500;
}
@media (max-width: 991.98px) {
  #press-mentions-10 .press-quote {
    font-size: 1.6rem;
  }
}
@media (max-width: 767.98px) {
  #press-mentions-10 {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  #press-mentions-10 .press-quote {
    font-size: 1.4rem;
  }
  #press-mentions-10 .quote-source {
    font-size: 1rem;
  }
  #press-mentions-10 .quote-link .btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
  }
}



#customer-support-7 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
  overflow: hidden;
}
#customer-support-7 .support-content-wrapper {
  display: flex;
  align-items: center;
}
#customer-support-7 .support-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#customer-support-7 .support-text {
  padding-left: 3rem;
}
#customer-support-7 .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #212529;
}
#customer-support-7 .section-subtitle {
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--bs-primary);
  margin-bottom: 1rem;
}
#customer-support-7 .section-description {
  color: #495057;
  margin-bottom: 2rem;
  line-height: 1.7;
}
#customer-support-7 .support-buttons .btn {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
}
#customer-support-7 .support-buttons .btn i {
  margin-right: 0.5rem;
}
#customer-support-7 .contact-info-list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
  margin-bottom: 0;
}
#customer-support-7 .contact-info-list li {
  margin-bottom: 0.75rem;
  color: #495057;
  display: flex;
  align-items: center;
}
#customer-support-7 .contact-info-list li i {
  color: var(--bs-primary);
  margin-right: 0.75rem;
  width: 20px;
  text-align: center;
}
#customer-support-7 .contact-info-list li a {
  color: #212529;
  text-decoration: none;
  font-weight: 500;
}
#customer-support-7 .contact-info-list li a:hover {
  text-decoration: underline;
  color: var(--bs-primary);
}
@media (max-width: 991.98px) {
  #customer-support-7 .support-text {
    padding-left: 1.5rem;
  }
  #customer-support-7 .section-title {
    font-size: 2rem;
  }
  #customer-support-7 .section-subtitle {
    font-size: 1.1rem;
  }
}
@media (max-width: 767.98px) {
  #customer-support-7 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  #customer-support-7 .support-image {
    margin-bottom: 2rem;
    text-align: center;
  }
  #customer-support-7 .support-image img {
    max-width: 80%;
  }
  #customer-support-7 .support-text {
    padding-left: 0;
    text-align: center;
  }
  #customer-support-7 .support-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #customer-support-7 .support-buttons .btn {
    margin-right: 0;
    margin-bottom: 1rem;
    width: 80%;
  }
  #customer-support-7 .contact-info-list {
    justify-content: center;
    text-align: left;
    display: inline-block;
  }
  #customer-support-7 .contact-info-list li {
    justify-content: flex-start;
  }
}



#call-to-action-8 {
  background-color: #17a2b8;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
}
#call-to-action-8 h2 {
  font-size: 36px;
  margin-bottom: 20px;
  font-weight: bold;
}
#call-to-action-8 p {
  font-size: 18px;
  margin-bottom: 30px;
}
#call-to-action-8 .cta-btn {
  padding: 12px 30px;
  background-color: #fff;
  color: #17a2b8;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}
#call-to-action-8 .cta-btn:hover {
  background-color: #e2e6ea;
  color: #17a2b8;
}
@media (max-width: 767.98px) {
  #call-to-action-8 h2 {
    font-size: 28px;
  }
  #call-to-action-8 p {
    font-size: 16px;
  }
}



#offers-13 {
  padding: 100px 0;
  position: relative;
}
#offers-13 .minimal-offer-content {
  text-align: center;
  position: relative;
  z-index: 2;
}
#offers-13 .main-offer-text {
  font-size: 8rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0rem;
  color: #ffc107;
  text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.3);
}
#offers-13 .offer-subtitle {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.9;
}
#offers-13 .condition-text {
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  opacity: 0.7;
}
#offers-13 .btn-minimal-cta {
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50rem;
  background-color: #ffc107;
  border: none;
  color: #333;
  text-transform: uppercase;
  transition: background-color 0.3s ease, transform 0.3s ease;
}
#offers-13 .btn-minimal-cta:hover {
  background-color: #ffca2c;
  transform: scale(1.05);
}
@media (max-width: 991.98px) {
  #offers-13 .main-offer-text {
    font-size: 6rem;
  }
  #offers-13 .offer-subtitle {
    font-size: 1.5rem;
  }
}
@media (max-width: 767.98px) {
  #offers-13 {
    padding: 80px 0;
  }
  #offers-13 .main-offer-text {
    font-size: 4.5rem;
  }
  #offers-13 .offer-subtitle {
    font-size: 1.2rem;
    letter-spacing: 1px;
  }
  #offers-13 .btn-minimal-cta {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}


