.services-tab-view-container {
  padding-left: 100px;
  padding-right: 100px;
}

.services-tabs-container {
  font-family: var(--font-family-default-book);
  overflow: hidden;
  background-color: var(--color-gray-100);
  position: static;
  transition: top 1s;
}

.services-tabs-container-headers-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
  height: 104px;
}

.services-tabs-container.services-tabs-sticky {
  position: sticky;
}

body:has(.navbar-wrapper.fadeInDown) .services-tabs-container {
  top: 140px;
}

body:has(.navbar-wrapper.fadeOutUp) .services-tabs-container {
  top: 0px;
}

.services-tabs-container.services-tabs-center-aligned
  .services-tabs-container-headers-wrapper {
  justify-content: center;
}

.services-tabs-container h2 {
  color: var(--color-primary);
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
  position: relative;
  height: 100%;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-weight: bold;
}

.services-tabs-container.services-tabs-center-aligned
  .services-tabs-container-headers-wrapper
  h2 {
  width: auto;
}

.services-tabs-container h2::after {
  content: "";
  height: 2px;
  width: 0px;
  transition: width 0.3s;
  left: 0;
  bottom: 0px;
  position: absolute;
}

.services-tabs-container h2.active {
  color: var(--color-blue);
}

.services-tabs-container h2.active::after {
  background-color: var(--color-blue);
  height: 2px;
  width: 100%;
  transition: width 0.3s;
}

.services-tabs-container h2:hover {
  color: var(--color-blue);
}

.services-tab-view-container {
  padding-top: 57px;
  padding-bottom: 57px;
  display: none;
}

.services-tab-view-container.active {
  display: block;
}

.services-tab-view-container-description {
  font-family: var(--font-family-default-book);
  font-size: 18px;
  line-height: 32px;
  color: var(--color-primary);
}

.services-tab-view-section {
  display: grid;
  grid-template-columns: 0.25fr 0.75fr;
  column-gap: 30px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: 2px solid var(--color-gray-300);
}

.services-tab-view-container-no-top-border
  .services-tab-view-section:first-child {
  border-top: none;
  margin-top: 0px;
  padding-top: 0px;
}

.services-tab-view-section-title {
  font-family: var(--font-family-default-medium);
  color: var(--color-primary);
  font-size: 20px;
  line-height: 26px;
  margin-bottom: 10px;
}

.services-tab-view-section-second-div {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

.services-tab-view-section-description {
  font-family: var(--font-family-default-book);
  font-size: 18px;
  line-height: 32px;
  color: var(--color-primary);
}

.services-tab-view-detail-title {
  font-family: var(--font-family-default-medium);
  color: var(--color-primary);
  font-size: 18px;
  line-height: 26px;
  margin-bottom: 10px;
}

.services-tab-view-detail-description {
  font-family: var(--font-family-default-book);
  font-size: 16px;
  line-height: 32px;
  color: var(--color-primary);
  margin-bottom: 0px;
}

.services-tabs-container-prev-icon,
.services-tabs-container-next-icon {
  display: none;
}

@media (max-width: 1199px) {
  .services-tab-view-container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 991px) {
  .services-tab-view-container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .services-tabs-container {
    margin-top: -30px;
  }

  .services-tabs-container-headers-wrapper {
    height: 80px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .services-tabs-container h2 {
    display: none;
  }
  .services-tabs-container h2.active {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
  }
  .services-tab-view-section {
    grid-template-columns: 1fr;
    margin-top: 25px;
    padding-top: 25px;
  }

  .services-tabs-container-prev-icon,
  .services-tabs-container-next-icon {
    cursor: pointer;
    display: block;
    position: absolute;
    padding: 10px;
  }

  .services-tabs-container-prev-icon {
    left: 15px;
    transform: rotate(180deg);
  }

  .services-tabs-container-next-icon {
    right: 15px;
  }

  body:has(.navbar-wrapper.fadeInDown) .services-tabs-container {
    top: 89px;
  }

  body:has(.navbar-wrapper.fadeOutUp) .services-tabs-container {
    top: 0px;
  }
}

@media (max-width: 767px) {
  .services-tab-view-container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .services-tabs-container-prev-icon {
    left: 5px;
  }

  .services-tabs-container-next-icon {
    right: 5px;
  }
}

.cpt-services-tabs-container {
  font-family: var(--font-family-default-book);
  overflow: hidden;
  background-color: var(--color-gray-100);
  position: static;
  transition: top 1s;
}

.cpt-services-tabs-headers-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
  height: 104px;
  position: relative;
}

.cpt-services-tabs-container.services-tabs-sticky {
  position: sticky;
}

body:has(.navbar-wrapper.fadeInDown) .cpt-services-tabs-container {
  top: 140px;
}

body:has(.navbar-wrapper.fadeOutUp) .cpt-services-tabs-container {
  top: 0px;
}

.cpt-services-tabs-container.services-tabs-center-aligned
  .cpt-services-tabs-headers-wrapper {
  justify-content: center;
}

.cpt-services-tabs-container a {
  text-decoration: none !important;
  display: flex;
  align-items: center;
  height: 100%;
  flex: 1 1 0;
}

.cpt-services-tabs-container h2 {
  color: var(--color-primary);
  font-size: 20px;
  line-height: 30px;
  cursor: pointer;
  position: relative;
  height: 100%;
  margin-bottom: 0px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  font-weight: bold;
}

.cpt-services-tabs-container.services-tabs-center-aligned
  .cpt-services-tabs-headers-wrapper
  h2 {
  width: auto;
}

.cpt-services-tabs-container h2::after {
  content: "";
  height: 2px;
  width: 0px;
  transition: width 0.3s;
  left: 0;
  bottom: 0px;
  position: absolute;
}

.cpt-services-tabs-container a.cpt-active h2 {
  color: var(--color-blue);
}

.cpt-services-tabs-container a.cpt-active h2::after {
  background-color: var(--color-blue);
  height: 2px;
  width: 100%;
  transition: width 0.3s;
}

.cpt-services-tabs-container a:hover h2 {
  color: var(--color-blue);
}

.services-tabs-container-prev-icon.passive,
.services-tabs-container-next-icon.passive {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

@media (max-width: 991px) {
  .cpt-services-tabs-container {
    margin-top: -30px;
  }

  .cpt-services-tabs-headers-wrapper {
    height: 80px;
    padding-left: 0px;
    padding-right: 0px;
  }

  .cpt-services-tabs-container h2 {
    display: none;
  }

  .cpt-services-tabs-container a {
    display: none;
    width: 100%;
  }

  .cpt-services-tabs-container a.cpt-active {
    display: flex;
  }

  .cpt-services-tabs-container a.cpt-active h2 {
    display: flex;
    width: 100%;
    justify-content: center;
    padding-left: 30px;
    padding-right: 30px;
  }

  body:has(.navbar-wrapper.fadeInDown) .cpt-services-tabs-container {
    top: 89px;
  }

  body:has(.navbar-wrapper.fadeOutUp) .cpt-services-tabs-container {
    top: 0px;
  }
}
