* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Ubuntu", sans-serif;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0;
}

ul {
  list-style: none;
}

:root {
  --primary-color: #1976d2;
  --secondary-color: #334048;
}

/* Section Container  */
.section-container {
  position: relative;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .section-container {
    padding: 0 16px;
  }
}

/* Section Title 1 */
.section-title-1 {
  color: var(--secondary-color);
  font-family: Ubuntu;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
  margin-bottom: 48px;
  margin-top: 96px;
  width: 100%;
}

.section-title-1 sn {
  color: var(--primary-color);
}

@media (max-width: 820px) {
  .section-title-1 {
    font-size: 32px;
    margin-bottom: 24px;
    margin-top: 60px;
  }
}

/* Section Title 2 */
.section-title-2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 48px;
  margin-top: 96px;
  width: 100%;
}

.section-title-2 sn {
  color: var(--primary-color);
}

.section-title-2-page {
  margin-top: 72px;
}

.section-title-2 > span {
  color: rgba(51, 64, 72, 0.72);
  font-family: Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 27px; /* 150% */
  position: relative;
  padding-left: 12px;
}

.section-title-2 > span::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  margin: auto;
  left: 0;
  width: 6px;
  height: 24px;
  background: rgba(51, 64, 72, 0.72);
}

.section-title-2 .title {
  color: var(--secondary-color);
  font-family: Ubuntu;
  font-size: 48px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 0;
}

@media (max-width: 820px) {
  .section-title-2 {
    margin-bottom: 24px;
    margin-top: 60px;
  }

  .section-title-2-page {
    margin-top: 36px;
  }

  .section-title-2 span {
    font-size: 14px;
  }

  .section-title-2 .title {
    font-size: 28px;
  }
}

@media (max-width: 500px) {
  .section-title-2 {
    margin-top: 42px;
    margin-bottom: 25px;
    gap: 8px;
  }
}

/* Primary Button */
.primary-button {
  display: flex;
  cursor: pointer;
  height: 47px;
  padding: 0 16px;
  line-height: 47px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 72px;
  background: linear-gradient(180deg, #1976d2 0%, #1976d2 100%);
  transition: all 0.5s;
  border: none !important;
}

.primary-button:hover {
  background: linear-gradient(180deg, #1976d2 0%, #084a8c 100%);
}

.primary-button span {
  color: #fff;
  text-align: center;
  font-family: Ubuntu;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

@media (max-width: 820px) {
  .primary-button {
    padding: 12px 16px;
  }

  .primary-button span {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .primary-button span {
    font-size: 16px;
  }
}

/* Secondary Button */
.secondary-button {
  display: flex;
  height: 47px;
  line-height: 47px;
  padding: 0 16px;
  justify-content: center;
  align-items: center;
  border-radius: 72px;
  border: 1px solid var(--primary-color);
  transition: all 0.3s;
}
.secondary-button:hover {
  background: var(--primary-color);
}

.secondary-button:hover img {
  filter: brightness(0) invert(1);
}

.secondary-button:hover span {
  color: #fff;
}

.secondary-button span {
  color: var(--primary-color);
  font-family: Ubuntu;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

@media (max-width: 820px) {
  .secondary-button {
    padding: 12px 16px;
  }

  .secondary-button span {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .secondary-button span {
    font-size: 16px;
  }
}

/* Nice Button */

.nice-button {
  display: flex;
  width: fit-content;
  padding: 0 24px;
  height: 47px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 72px;
  background: linear-gradient(180deg, #1976d2 0%, #1976d2 100%);
  transition: all 0.5s;
}
.nice-button:hover {
  background: linear-gradient(180deg, #1976d2 0%, #084a8c 100%);
}

.nice-button:hover .start-teraphy-secondary-icon {
  display: block !important;
}

.nice-button:hover .start-teraphy-primary-icon {
  display: none !important;
}

.start-teraphy-secondary-icon {
  display: none !important;
}

.nice-button span {
  color: #fff;
  font-family: Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
  left: 0;
  position: relative;
  transition: all 0.5s;
  z-index: 1;
}

.nice-button img {
  width: 24px !important;
  height: 24px;
  object-fit: contain;
  right: 0;
  position: relative;
  transition: all 0.5s;
}

@media (max-width: 820px) {
  .nice-button {
    padding: 12px 16px;
  }
  .nice-button span {
    font-size: 16px;
  }
}

@media (max-width: 500px) {
  .nice-button span {
    font-size: 16px;
  }
}

/* owl */
.owl-dots {
  display: flex;
  align-items: center;
  gap: 12px;
  align-self: stretch;
  width: 100%;
  justify-content: center;
  margin-top: 12px;
}
.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(25, 118, 210, 0.24) !important;
  cursor: pointer;
}
.owl-dots .active {
  width: 38px;
  border-radius: 12px;
  background-color: rgba(25, 118, 210, 1) !important;
}

.box-shape-right {
  position: absolute;
  /* max-width: 100%; */
  /* max-height: 100%; */
  right: 0;
  top: 0;
  z-index: 0;
}

.box-shape-left {
  position: absolute;
  /* max-width: 100%; */
  /* max-height: 100%; */
  left: 0;
  bottom: 0;
  z-index: 0;
}

/* Badge */

.sn-badge {
  display: flex;
  padding: 2px 10px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 24px;
  background: rgba(25, 118, 210, 0.06);
  color: var(--secondary-color);
  font-family: Ubuntu;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px; /* 168.75% */
}

.sn-badge img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.sn-badge span {
  color: var(--secondary-color);
  font-family: Ubuntu;
  font-size: 16px;
  font-style: normal;
  font-weight: 300;
  line-height: 27px; /* 168.75% */
}

@media (max-width: 820px) {
  .sn-badge {
    font-size: 14px;
    gap: 4px;
  }
  .sn-badge span {
    font-size: 14px;
  }
  .sn-badge img {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 500px) {
  .sn-badge {
    font-size: 13px;
    padding: 1px 6px;
  }
  .sn-badge span {
    font-size: 13px;
  }
  .sn-badge img {
    width: 14px;
    height: 14px;
  }
}

/* Infinite Marquee */
.infinite-marquee-item {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 36px;
  white-space: nowrap;
  width: 100%;
}

.infinite-marquee-item span {
  color: var(--secondary-color);
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 27px;
}

@media (max-width: 820px) {
  .infinite-marquee-item {
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 36px;
    white-space: nowrap;
    width: 100%;
  }

  .infinite-marquee-item span {
    font-size: 14px;
  }
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: #f0f0f0;
  border-radius: 24px;
  padding: 4px;
  margin-top: 56px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pagination-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 100%;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s;
}

.pagination-arrow:hover:not(:disabled) {
  background: #eeeeee;
}

.pagination-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.pagination-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 8px;
}

.pagination-number {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #334048;
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  padding: 0 8px;
  transition: all 0.2s;
}

.pagination-number:hover {
  background: rgba(25, 118, 210, 0.1);
}

.pagination-number-active {
  background: #1e88e5;
  color: #ffffff;
  font-weight: 500;
}

.pagination-number-active:hover {
  background: #1976d2;
}

.pagination-ellipsis {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 32px;
  color: #334048;
  font-family: Ubuntu;
  font-size: 16px;
  font-weight: 400;
  padding: 0 4px;
}

@media (max-width: 820px) {
  .pagination-arrow {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .pagination-number {
    min-width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .pagination-ellipsis {
    min-width: 20px;
    height: 28px;
    font-size: 14px;
  }
}

/* main paragraph */
.main-paragraph {
  color: rgba(51, 64, 72, 0.72);
  font-family: Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

@media (max-width: 500px) {
  .main-paragraph {
    font-size: 16px;
    line-height: 24px;
  }
}



/* main bg shape */
.main-bg-shape {
  position: absolute;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
  height: 730px;
  width: 120%;
  object-fit: contain;
  z-index: -1;
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

@media (max-width: 1440px) {
  .main-bg-shape {
    width: 100%;
    height: 655px;
    object-fit: cover;
  }
}