* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  /* font-family: 'Merriweather', serif;
  font-family: 'Open Sans', sans-serif; */
}

:root {
  --purple-primary: #6d298e;

  --red-primary: #c0392b;

  --text-black: #000;

  --text-gray: #666;
  --text-gray-2: #e5e5e5;

  --text-blue: #151870;
  --text-white: #fff;

  --white-faint-1: #f0f0f0;

  --white-faint-2: #fbf9f7;

  /* Transition */

  --transition-100: all 100ms ease-in-out;
  --transition-200: all 200ms ease-in-out;
  --transition-350: all 350ms ease-in-out;
}

body {
  background-image: url(../images/common/bg_box_img.png);
  min-height: 100%;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
}

.wrapper {
  width: 100%;
  min-height: 100%;
  position: relative;
}

a {
  text-decoration: none !important;
  color: inherit;
}

/* COMMON CONTENT */

.default-btn {
  border: 0.5px solid var(--red-primary);
  border-radius: 0.4rem;
  padding: 0.6rem 0.8rem;
  font-size: 0.8rem !important;
  font-weight: 600;
  letter-spacing: 0.4px;
}

.default-btn-icon {
  color: var(--text-white);
  background-color: var(--red-primary);
  padding: 0.4rem 0.6rem;
  margin-left: 5px;
  border-radius: 0.2rem;
}

.default-btn,
.default-btn-icon {
  transition: var(--transition-200);
}

.default-btn:hover {
  color: var(--text-white);
  background-color: var(--red-primary);
}

.default-btn:hover .default-btn-icon {
  color: var(--red-primary);
  background-color: var(--text-white);
  font-weight: bold;  
}

.page-title-area {
  text-align: center;
  padding: 3rem 0;
}

.page-title-area .page-title-content {
}
.page-title-area .page-title-content h2 {
  font-weight: 600;
  font-size: 1.6rem;
  letter-spacing: 0.4px;
}

.page-title-area .page-title-content ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.breadcrumb-item {
  padding-left: 0rem !important;
  font-size: 0.8rem;
}

/* section title */

.section-title {
  /* color: var(--red-primary); */
  padding-bottom: 1rem;
  text-align: center;
}

.section-title span {
  font-weight: bold;
  color: var(--red-primary);
  font-size: 1.4rem;
}

.section-title > div {
  width: 70px;
  height: 3px;
  background-color: var(--red-primary);
  margin: 0 auto;
  margin-top: 1rem;
}

/* UTILITY */

.sj-text-red {
  color: var(--red-primary);
}

.sj-active-link {
  color: var(--red-primary) !important;
}

.sj-text-justify {
  text-align: justify;
}

.sj-bg-red {
  background-color: var(--red-primary) !important;
}

@media only screen and (max-width: 991px) {
  .sm-text-center {
    text-align: center !important;
  }
}
