/* Overwrite classes */

.header {
  padding: 24px 0;
}

@media (min-width: 1280px) {
  .header {
    padding-top: 0;
  }

  .navbar>ul>li {
    white-space: nowrap;
    padding-bottom: 6px;
    margin-bottom: -6px;

    padding: 0 12px 6px 12px;
  }

  .navbar>ul>li.user-login-menu {
    padding: 0;
  }
}

@media (max-width: 1279px) {
  .header {
    position: sticky;
    top: 0;
  }
}

/* ==================================================== */
/* ==================================================== */
/* ==================================================== */
/* ==================================================== */

:root {
  --login-clip: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CclipPath id='c' clipPathUnits='objectBoundingBox'%3E%3Cpath d='M0 0 H1 V1 H0.6 C0.3 1 0 0.6 0 0 Z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E#c");
}

:root {
  --demo-clip: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3CclipPath id='c' clipPathUnits='objectBoundingBox'%3E%3Cpath d='M1 0 H0 V1 H0.4 C0.7 1 1 0.6 1 0 Z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E#c");
}

/* START: Header and Navbar
------------------------------------------- */
@media (min-width: 1280px) {
  .user-login-menu>.dropdown-label {
    background: #23406D;
    color: #ffffff;
    clip-path: var(--login-clip);
    padding: 14px 20px 14px 60px;
  }

  .user-login-menu>.dropdown-label:hover .nav-link {
    color: #F5A623;
  }

  .menu-block-wrap {
    margin-top: -12px;
  }
}

.request-demo-btn {
  color: #F5A623 !important;
  font-weight: 500;
  font-size: 18px;
}

.nav-link {
  font-weight: 500;
  text-transform: uppercase;
}

/* ---------- END: Header and Navbar ---------- */


/* START: Interactive Tabs Section
------------------------------------------- */
.tabs-section .container {
  max-width: 1920px;
  width: 100%;
}

.tabs-container {
  display: flex;
  gap: 60px;
  align-items: center;
}

.tabs {
  flex: 0 0 325px;
}

.tab-nav {
  display: block;
  position: relative;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #23406D;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 8px;
  border-radius: 50px;
  border: 2px solid #e9ecef;
  background: rgba(208, 212, 222, 0.4);
}

.tab-nav:hover {
  background: #f8f9fa;
  border-color: #23406D;
}

.tab-nav.active {
  background: #23406D;
  color: #ffffff;
  border-color: #F5A623;
}

.tab-nav.active::after {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #F5A623;
}

.tab-content-wrapper {
  position: relative;
  flex: 1;
  min-height: 300px;
}

.tab-content {
  position: absolute;
  left: 100px;
  top: 0;
  visibility: hidden;
  opacity: 0;
  display: flex;
  gap: 60px;
  align-items: center;
  width: 100%;
  transition: all 0.4s linear;

}

.tab-content.active {
  position: relative;
  visibility: visible;
  opacity: 1;
  left: 0;
}

.tab-panel-content {
  flex: 0 0 250px;
}

.tab-panel-content h3 {
  font-size: 32px;
  color: #23406D;
  margin-bottom: 20px;
  font-weight: 600;
}

.tab-panel-content p,
.tab-panel-content li {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 0;
}

.tab-panel-content ul {
  margin-left: 0;
  padding-left: 0;
  list-style: none;
}

.tab-panel-content li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
}

.tab-panel-content li::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 10px;
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #F5A623;
}

.tab-panel-image {
  flex: 1;
  max-width: 100%;
}

.tab-panel-image img {
  width: 100%;
  height: auto;
}




/* Desktop/Mobile Tab Visibility */
.tabs-container-mobile {
  display: none;
}

@media (max-width: 1024px) {
  .tabs-container {
    display: none !important;
  }

  .tabs-container-mobile {
    display: block;
  }
}















/* Mobile Accordion Styles */
.tabs-container-mobile .accordion-item {
  margin-bottom: 8px;
}

.tabs-container-mobile .accordion-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 500;
  color: #23406D;
  cursor: pointer;
  border-radius: 50px;
  border: 2px solid #e9ecef;
  background: rgba(208, 212, 222, 0.4);
  transition: all 0.3s ease;
}

.tabs-container-mobile .accordion-tab:hover {
  background: #f8f9fa;
  border-color: #23406D;
}

.tabs-container-mobile .accordion-tab.active {
  background: #23406D;
  color: #ffffff;
  border-color: #F5A623;
  position: relative;
}

.tabs-container-mobile .accordion-tab.active::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #F5A623;
  transition: transform 0.3s ease;
  transform: rotate(-90deg);
}

.tabs-container-mobile .accordion-tab:not(.active)::after {
  content: '';
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #23406D;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

.tabs-container-mobile .accordion-content {
  max-height: 0;
  opacity: 0;
  padding: 0 12px;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.4s ease;
}

.tabs-container-mobile .accordion-content.open {
  max-height: 800px;
  opacity: 1;
  padding: 20px 12px;
}

.tabs-container-mobile .accordion-content .tab-panel-image {
  margin-top: 16px;
}

.tabs-container-mobile .accordion-content .tab-panel-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ---------- END: Interactive Tabs Section ---------- */


/* START: Call to Action Section
------------------------------------------- */
.cta-wrap {
  padding-top: 0;
}

.cta {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.cta-top-block {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.cta-top-block a {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}

.cta-top-block a:hover {
  color: #23406D;
}

.cta-top-block img {
  width: 30px;
}

.cta-bottom-block {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;

  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
}

.cta-bottom-block span {
  display: inline-block;
  vertical-align: middle;
  color: #23406D;
  text-align: right;
  line-height: 24px;
}

.cta-bottom-block a {
  display: inline-block;
  vertical-align: middle;
  background: #F5A623;
  color: #ffffff;
  clip-path: var(--demo-clip);
  padding: 14px 60px 14px 20px;
}

.cta-bottom-block a:hover {
  color: #23406D;
}

@media (max-width: 767px) {
  .cta-bottom-block {
    gap: 12px;
    font-size: 14px;
  }

  .cta-bottom-block span {
    line-height: 16px;
  }

  .cta-bottom-block a {
    padding: 14px 50px 14px 10px;
  }
}

/* ---------- END: Call to Action Section ---------- */


/* START: Provider Testimonial Section
------------------------------------------- */

.provider-testimonial {
  padding: 80px 0;
  background: #f5f7fb;
  position: relative;
  overflow: hidden;
}

/* Section top border – decorative line */
.provider-testimonial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, transparent 0%, #F5A623 30%, #F5A623 70%, transparent 100%);
}

.provider-testimonial-header {
  text-align: center;
  margin-bottom: 60px;
}

.provider-testimonial-header .badge-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  background: #23406D;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.provider-testimonial-header h2 {
  font-size: 44px;
  margin-bottom: 12px;
}

.provider-testimonial-header h2 span {
  color: #F5A623;
}

.provider-testimonial-header p {
  font-size: 22px;
  color: #5f849b;
}

/* ---------- Provider Testimonial Slider ---------- */
.provider-testimonial-wrap {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  padding: 0 50px;
}

.provider-testimonial-slider {
  padding-bottom: 75px;
}

.provider-testimonial-slide {
  background: #ffffff;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(35, 64, 109, 0.06);
  transition: transform 0.4s ease, box-shadow 0.4s ease, opacity 0.4s ease;
  opacity: 0.5;
  transform: scale(0.88);
}

.swiper-slide-active .provider-testimonial-slide {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 20px 60px rgba(35, 64, 109, 0.13);
}

.provider-testimonial-slide-content {
  display: flex;
  flex-direction: column;
}

.provider-testimonial-banner {
  position: relative;
  background: linear-gradient(135deg, #23406D 0%, #5f849b 100%);
  padding: 40px 40px 60px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.provider-testimonial-banner img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #F5A623;
  flex-shrink: 0;
}

.provider-testimonial-banner .author-info .name {
  font-family: 'Poppins', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.provider-testimonial-banner .author-info .title {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  margin: 6px 0 0;
  line-height: 1.5;
}

.provider-testimonial-banner .author-info .stars {
  display: flex;
  gap: 4px;
  margin-top: 10px;
}

.provider-testimonial-banner .author-info .stars i {
  font-size: 15px;
  color: #F5A623;
}

.provider-testimonial-banner::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 30px;
  background: #ffffff;
  border-radius: 28px 28px 0 0;
}

.provider-quote-wrap {
  padding: 20px 40px 44px;
}

.provider-quote-wrap .big-quote {
  display: inline-block;
  position: relative;
  top: 4px;
  left: 0;
  font-weight: 900;
  color: #F5A623;
  opacity: 0.75;
  transform: scale(1.5);
  pointer-events: none;
}

.provider-quote-wrap .provider-quote {
  font-family: 'Poppins', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.65;
  color: #23406D;
  position: relative;
  z-index: 1;
  margin: 0;
}

/* ---------- Provider Testimonial Slider Nav ---------- */
.provider-testimonial-wrap .provider-testimonial-button-next,
.provider-testimonial-wrap .provider-testimonial-button-prev {
  width: 46px;
  height: 46px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(35, 64, 109, 0.12);
  color: #23406D;
  transition: all 0.3s;
}

.provider-testimonial-wrap .provider-testimonial-button-next:hover,
.provider-testimonial-wrap .provider-testimonial-button-prev:hover {
  background: #23406D;
  color: #ffffff;
}

.provider-testimonial-wrap .provider-testimonial-button-next::after,
.provider-testimonial-wrap .provider-testimonial-button-prev::after {
  font-size: 16px;
  font-weight: 700;
}

.provider-testimonial-wrap .provider-testimonial-button-prev {
  left: 0;
}

.provider-testimonial-wrap .provider-testimonial-button-next {
  right: 0;
}

.provider-testimonial-pagination {
  margin-top: -50px;
  text-align: center;
}

.provider-testimonial-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(35, 64, 109, 0.2);
  opacity: 1;
  transition: all 0.3s;
  margin: 0 5px;
}

.provider-testimonial-pagination .swiper-pagination-bullet-active {
  background: #F5A623;
  width: 28px;
  border-radius: 5px;
}


/* ---------- START: Testimonial CTA ---------- */
.testimonial-cta {
  text-align: center;
  margin-top: 56px;
}

.testimonial-cta p {
  font-size: 18px;
  font-weight: 600;
  color: #5f849b;
  margin-bottom: 20px;
}

.testimonial-cta a {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #23406D;
  background: #F5A623;
  border: 2px solid #F5A623;
  padding: 15px 44px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.testimonial-cta a:hover {
  background: #23406D;
  border-color: #23406D;
  color: #ffffff;
}

/* ---------- END: Testimonial CTA ---------- */


/* ---------- Responsive ---------- */
@media (max-width: 767px) {
  .provider-testimonial-header h2 {
    font-size: 36px;
  }

  .provider-testimonial-header p {
    font-size: 18px;
  }

  .provider-testimonial-wrap {
    padding: 0 16px;
  }

  .provider-testimonial-wrap .provider-testimonial-button-next,
  .provider-testimonial-wrap .provider-testimonial-button-prev {
    display: none;
  }

  .provider-testimonial-banner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px 50px;
  }

  .provider-testimonial-banner .author-info .stars {
    justify-content: center;
  }

  .provider-quote-wrap {
    padding: 16px 24px 32px;
    text-align: center;
  }

  .provider-quote-wrap .provider-quote {
    font-size: 18px;
  }

  .testimonial-cta a {
    font-size: 13px;
    padding: 14px 38px;
  }

  .testimonial-cta a:hover {
    background: #23406D;
    border-color: #23406D;
    color: #ffffff;
  }

}

/* ---------- END: Provider Testimonial Section ---------- */


/* START: Cards Section
------------------------------------------- */
.cards-left-col {
  position: sticky;
  top: 150px;
  left: 0;
  padding-top: 100px;
}

.cards-left-col h2 {
  font-size: 56px;
  color: #F5A623;
  line-height: 72px;
  margin-top: 24px;
}

.bar-chart-labels {
  margin-top: 32px;
  width: 80%;
}

.bar-chart-label {
  font-size: 18px;
  color: #ffffff;
  background-color: #5F849B;
  margin-top: 8px;
  padding: 8px 24px;
  border-radius: 2px;
  width: 100%;
}

.bar-chart-label.dn {
  width: 50%;
  background-color: #23406D;
}

.bar-chart-description {
  font-weight: 500;
  font-style: italic;
  margin-top: 12px;
  font-size: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 100px 0;
  padding-top: 60px;
}

.card {
  position: sticky;
  top: 0;
  right: 0;
  width: 400px;
  height: 450px;
  border: none;
  border-radius: 0 100px 0 0;
  overflow: hidden;

  transition: 0.3s ease;
  /* background: #cfd4df; */
  background: #FCECDD;
  padding: 40px;
}

@media screen and (min-width: 1024px) {
  .card {
    width: 400px;
    top: 200px;
  }
}

.card h3 {
  font-size: 26px;
  font-weight: 600;
  color: #23406D;
}

.card li {
  font-size: 18px;
  margin: 16px 0 0 16px;
}

.card img {
  width: 50px;
  margin-bottom: 24px;
}

.card-level-1 {
  opacity: 0.5;
  transform: translateX(150px) scale(0.8);
}

.card-level-2 {
  opacity: 0.25;
  transform: translateX(300px) scale(0.6);
}


@media (max-width: 767px) {
  .cards-left-col {
    position: initial;
    padding-top: 30px;
  }

  .cards-left-col h2 {
    font-size: 44px;
    line-height: 56px;
  }

  .bar-chart-labels {
    width: 100%;
  }

  .bar-chart-label {
    font-size: 16px;
  }

  .card-level-1 {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

  .card-level-2 {
    opacity: 1;
    transform: translateX(0) scale(1);
  }

}

/* ---------- END: Cards Section ---------- */


/*--------------------------------------------------------------
# Partners Section
--------------------------------------------------------------*/
.partners {
  margin-top: 60px;
  text-align: center;
  background: #f5f7fb;
}

.partners h2 {
  font-size: 44px;
  margin-bottom: 12px;
}

.partners h2 span {
  color: #F5A623;
}

.partners p {
  font-size: 22px;
  color: #5f849b;
}

.partners .clients-slider-wrap {
  position: relative;
  margin: 0 100px;
}

.partners .swiper {
  margin: 30px 100px 0;
}

.partners .swiper-wrapper {
  align-items: center;
}

.partners .partners-button-next,
.partners .partners-button-prev {
  top: calc(50% - 19px);
}

.partners .partners-button-next::after,
.partners .partners-button-prev::after {
  content: initial;
}

.partners .partners-pagination {
  margin-top: 20px;
  position: relative;
}

.partners .partners-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(35, 64, 109, 0.4);
  opacity: 0.5;
}

.partners .partners-pagination .swiper-pagination-bullet-active {
  background-color: #23406D;
  opacity: 1;
}

@media (max-width: 991px) {
  .partners h2 {
    font-size: 34px;
  }
}

@media (max-width: 767px) {

  .partners h2 {
    font-size: 38px;
  }

  .partners p {
    font-size: 18px;
  }
}


/* ---------- END: Partners Section ---------- */


/* START: Provider Benefits Section
------------------------------------------- */
.provider-benefits-section {
  margin-top: 60px;
}

.provider-benefits-section h3 {
  font-size: 40px;
  color: #5f849b;
  text-align: center;
}

.provider-benefits-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 18px;
  max-width: 991px;
  margin: 24px auto 0;
}

.provider-benefits-container .icon-service {
  text-align: center;
  margin: 30px 36px 0;
}

.provider-benefits-container .icon-service img {
  width: 150px;
}

.provider-benefits-container .icon-service label {
  display: block;
  width: 150px;
  text-align: center;
  margin-top: 12px;
  font-size: 18px;
  font-weight: 500;
}

@media (max-width: 767px) {
  .provider-benefits-section h3 {
    font-size: 36px;
  }

  .provider-benefits-container .icon-service {
    margin: 30px 12px 0;
  }

  .provider-benefits-container .icon-service img {
    width: 125px;
  }
}

/* ---------- END: Provider Benefits Section ---------- */


/* START: Testimonial Section
------------------------------------------- */
.testimonial-section {
  margin-top: 100px;
}

.testimonial-wrap {
  max-width: 1320px;
}

.testimonial-left-col p {
  font-size: 36px;
  font-weight: 800;
}


/* ----- Testimonial Slider ----- */
.testimonial-slider-wrap {
  position: relative;
  margin: 0 50px;
}

.testimonial-slider-wrap .testimonial-button-next {
  right: 0;
}

.testimonial-slider-wrap .testimonial-button-prev {
  left: 0;
}

.testimonial-slider-wrap .testimonial-button-next::after,
.testimonial-slider-wrap .testimonial-button-prev::after {
  content: initial;
}

.testimonial-slider-wrap .testimonial-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonial-slider-wrap .testimonial-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(35, 64, 109, 0.4);
  opacity: 0.5;
  transition: all 0.3s ease;
}

.testimonial-slider-wrap .testimonial-pagination .swiper-pagination-bullet-active {
  background-color: #23406D;
  opacity: 1;
}

/* ----- Testimonial Card ----- */
.testimonial-card {
  /* width: 310px; */
  width: calc(100% - 100px);
  height: 475px;
  border: none;
  border-radius: 0 0 0 100px;
  overflow: hidden;

  background: #5f849b;
  color: #ffffff;
  padding: 40px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media screen and (min-width: 1024px) {
  .testimonial-card {
    /* width: 400px; */
  }
}

.testimonial-card p {
  font-size: 26px;
  font-weight: 600;
  text-align: right;
}

.testimonial-card .user {
  display: flex;
  align-items: center;
  gap: 24px;
}

.testimonial-card .user img {
  width: 75px;
  height: 75px;
}

.testimonial-card .user label {
  color: #23406D;
  font-size: 24px;
  font-weight: 500;
}


@media (max-width: 767px) {
  .testimonial-section {
    margin-top: 0;
  }

  .testimonial-slider-wrap {
    margin: 0;
  }
}

@media (max-width: 500px) {
  .testimonial-card {
    padding: 30px 20px 40px 20px;
  }

  .testimonial-card p {
    font-size: 22px;
  }

  .testimonial-card .user img {
    width: 50px;
    height: 50px;
  }

  .testimonial-card .user label {
    font-size: 18px;
  }
}

/* ---------- END: Testimonial Section ---------- */


/* START: Top Footer Section
------------------------------------------- */
.top-footer {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.top-footer a {
  color: #5f849b;
  transition: color 0.3s ease;
}

.top-footer a:hover {
  color: #23406D;
}

.top-footer .btn-blue-lined {
  color: #23406D;
  border-color: #23406D;
}

.footer-logo {
  max-width: 250px;
}

.social-links-footer {
  display: flex;
  gap: 8px;
  margin-top: 32px;
}

.social-links-footer a {
  border-radius: 50%;
  background: #23406D;
  transition: all 0.3s ease;
  padding: 4px;
}

.social-links-footer a:hover {
  background: #F5A623;
  transform: translateY(-2px);
}

.social-links-footer a img {
  width: 36px;
  height: 36px;
}

.footer-nav h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 12px;
}

.footer-contact-info h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact-item {
  display: flex;
  gap: 12px;
  color: #5f849b;
  margin-bottom: 20px;
}

.contact-item i {
  color: #23406D;
  font-size: 18px;
  line-height: 18px;
  margin-top: 2px;
}

.contact-item address {
  margin-bottom: 0;
}

/* ---------- END: Top Footer Section ---------- */


/* START: Bottom Footer Section
------------------------------------------- */
.bottom-footer {
  background-color: #23406D;
  color: #ffffff;
  font-size: 14px;
  padding: 16px 0;
}

.bottom-footer a {
  font-size: 15px;
  color: #ffffff;
  margin-left: 24px;
}

.bottom-footer a:hover {
  text-decoration: underline;
}

/* ---------- END: Bottom Footer Section ---------- */
 .clip-container {
    overflow: clip;
  }

  @media (min-width: 1500px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
      max-width: 1440px;
    }
  }
/* @media (min-width: 1440) {
  .container {
    max-width: 1440px;
  }
}

@media (max-width: 1440px) {
  .container {
    max-width: initial;
    overflow: clip;
    padding: 0 30px;
  }

  .clip-container {
    overflow: clip;
  }
} */