:root {
  --primary: #7851a9;
  --secondary: 120, 81, 169;
  --white: #ffffff;
  --body-bg: #fbfbfb;
  --radius: 20px;
  --shadow: rgba(121, 81, 169, 0.3);
  --font-sm: 12px;
  --font-base: 14px;
  --input-height: 44px;
  --semibold: 600;
  --bold: 700;
  --muted: #919191;
  --heading: #4e415f;
  --placeholder: #949494;
  --container: 1300px;
  --table-border: #e4e4e4;
}

html,
body {
  font-family: "Raleway", sans-serif !important;
  background-color: var(--body-bg) !important;
  font-size: var(--font-base);
  font-variant-numeric: lining-nums;
}

header {
  background: var(--primary);
}

.navbar-brand {
  color: var(--white);
  padding: 14px 0;
}

.img-cover {
  object-fit: cover;
  object-position: center;
}

.login-form {
  max-width: 420px;
}

.rounded {
  border-radius: var(--radius) !important;
}

.shadow {
  box-shadow: 3px 3px 33px 0 var(--shadow) !important;
}

.btn,
input {
  height: var(--input-height) !important;
  font-size: var(--font-base) !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: calc(var(--radius) / 2) !important;
  accent-color: var(--primary);
}

.btn-primary {
  background-color: var(--primary) !important;
  border: 1px solid var(--primary) !important;
  font-weight: var(--bold) !important;
  transition: all 300ms ease-in-out;
}

.btn-primary:hover {
  /* background-color: #2f174d !important; */
  background-color: #6a3f9f !important;
  border: 1px solid #6a3f9f !important;
  font-weight: var(--bold) !important;
  box-shadow: 0px 3px 0px #966dca;
}

.btn:focus,
input:focus,
select:focus {
  border: 2px solid var(--primary) !important;
}

label {
  font-size: var(--font-base);
  color: var(--muted);
  font-weight: var(--semibold);
}

.title {
  color: var(--heading) !important;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: var(--placeholder) !important;
}
::-moz-placeholder {
  /* Firefox 19+ */
  color: var(--placeholder) !important;
}
:-ms-input-placeholder {
  /* IE 10+ */
  color: var(--placeholder) !important;
}
:-moz-placeholder {
  /* Firefox 18- */
  color: var(--placeholder) !important;
}

.main-menu li {
  font-size: var(--font-base);
}

.main-menu li a {
  color: var(--white);
  padding: 20px;
  display: inline-block;
  text-decoration: none;
  transition: all 300ms ease-in-out;
}

.main-menu li:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.container {
  max-width: var(--container) !important;
}

.menu-dropdown {
  left: 0;
  top: 100%;
  z-index: 1;
  min-width: 150px;
  white-space: nowrap;
  border-radius: calc(var(--radius) / 2);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 300ms ease-in-out;
}

.menu-dropdown li a {
  color: var(--primary);
  padding: 10px 15px;
}

.main-menu li.active .menu-dropdown {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active {
  background-color: rgba(var(--secondary), 0.2);
  color: var(--primary);
  font-size: var(--font-sm) !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: calc(var(--radius) / 2) !important;
  height: 36px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 0;
  transition: all 300ms ease-in-out;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.search-btn:hover {
  background-color: rgba(198, 153, 255, 0.64);
}

.link-btn,
.link-btn:hover {
  color: var(--primary);
  text-decoration: none !important;
  border-bottom: 1px solid var(--primary);
  font-size: 13px;
}

.font-weight-semibold {
  font-weight: var(--semibold);
}

.table {
  border-collapse: separate;
  border: 1px solid var(--table-border);
  border-spacing: 0px;
}

.table tr th,
.table tr td {
  border-bottom: 1px solid var(--table-border);
  border-top: 0;
  background-color: var(--white);
}

.table tr th + th,
.table tr td + td {
  border-left: 1px solid var(--table-border);
}

.table thead {
  position: sticky;
  top: 0;
}

.table th {
  font-size: var(--font-sm);
  color: var(--primary);
  text-transform: uppercase;
}

.table tr td {
  font-size: 13px;
  font-weight: var(--semibold);
  color: var(--heading);
  vertical-align: middle;
}

.table .user-img {
  width: 40px;
  height: 40px;
  border-radius: calc(var(--radius) / 2);
  margin-right: 10px;
  object-fit: cover;
}

.action {
  padding: 8px 10px;
  border-radius: 8px;
}

.action + .action {
  margin-left: 8px;
}

.action.blue {
  background-color: rgba(36, 111, 251, 0.2);
  color: #246ffb;
}

.action.orange {
  background-color: rgba(255, 116, 23, 0.2);
  color: #ff7417;
}

.action.green {
  background-color: rgba(26, 176, 59, 0.2);
  color: #1ab03b;
}

.action.red {
  background-color: rgba(253, 76, 76, 0.2);
  color: #fd4c4c;
}

.table-search {
  max-width: 300px;
  border: 1px solid rgba(var(--secondary), 0.2);
  border-radius: calc(var(--radius) / 2);
  height: 36px;
  overflow: hidden;
  display: flex;
}

.search-text,
.search-text:focus {
  height: 36px !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  padding: 5px 10px;
  font-size: var(--font-base);
  font-weight: var(--semibold);
}

.search-btn {
  border: 0 !important;
  outline: 0 !important;
  height: 36px;
  flex: 0 0 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(var(--secondary), 0.2);
  transition: all 300ms ease-in-out;
}

.label-sm {
  font-size: var(--font-sm);
  color: var(--muted);
}

.split-amt {
  font-size: var(--font-base);
}

.amt {
  font-size: 30px;
  font-weight: var(--bold);
}

.fontgreen {
  color: #19ae3f;
}

.fontprimary {
  color: var(--primary);
}

.select {
  font-size: var(--font-base) !important;
  outline: 0 !important;
  box-shadow: none !important;
  border-radius: calc(var(--radius) / 2) !important;
  height: 36px;
  padding: 0 15px;
  background-color: var(--white);
}

.form-container {
  width: 100%;
  max-width: 500px;
}

.cursor-pointer {
  cursor: pointer;
}

.landing-header {
  left: 0;
  top: 0;
  background-color: transparent;
  color: var(--primary);
  z-index: 9;
}

.banner {
  height: 600px;
  position: relative;
}

.banner img {
  object-fit: cover;
}

.banner::before {
  content: "";
  width: 100%;
  height: 100%;
  /* background: linear-gradient(
    to bottom,
    rgba(var(--secondary), 1) 10%,
    rgba(0, 0, 0, 0) 100%
  ); */
  background: rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 0;
  left: 0;
}

.banner-content {
  position: absolute;
  inset: 50% auto auto 50%;
  color: var(--white);
  width: 100%;
  transform: translate(-50%, -50%);
  max-width: 660px;
  text-align: center;
}

.banner h2 {
  font-weight: 300;
  font-size: min(40px, 2rem);
}

/* .banner h2::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #7851a9;
  left: 0;
  top: 0;
  position: absolute;
  z-index: -1;
  filter: blur(30px);
  box-shadow: 0px 0px 50px 10px #7851a9;
} */

.heading {
  font-size: 32px;
  font-weight: var(--semibold);
  margin-bottom: 30px;
}

.para {
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 20px;
}

/* #d1bdea */
/* #322642 */

.obj-card {
  background-color: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  height: 100%;
  border: 1px solid rgba(var(--secondary), 0.25);
  display: flex;
  transition: all 300ms ease-in-out;
  /* background: linear-gradient(30deg, #7851a94f 0%, #fff 60%); */
}

.obj-card:hover {
  box-shadow: 5px 7px 6px rgba(var(--secondary), 0.3);
}

.obj-card figure {
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(var(--secondary), 0.35);
}

.obj-card figcaption {
  padding-left: 15px;
}

.obj-card figcaption h6 {
  font-weight: 700;
  font-size: var(--font-base);
}

.obj-card figcaption p {
  font-size: var(--font-base);
  color: #464646;
  margin-bottom: 0;
}

.obj-card.type-2 {
  padding: 0;
  flex-direction: column;
  background: var(--white);
}

.obj-card.type-2 figure {
  margin-bottom: 0;
  border-radius: 20px 20px 0 20px;
  flex: 0 0 210px;
}

.obj-card.type-2 figcaption {
  padding: 15px;
}

.para2 {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 44px;
}

.counter-blk {
  background: var(--primary);
}

.counter-blk * {
  color: var(--white);
}

.counter-blk h4 {
  font-size: 44px;
  font-weight: 700;
}

.counter-blk p {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.gallery-blk {
  max-width: 1000px !important;
}

.gallery-blk .slick-list {
  overflow: visible;
}

.gallery-blk img {
  transition: all 300ms ease-in-out;
}

.gallery-blk .slick-slide:not(.slick-current) img {
  transform: scale(85%);
}

.gallery-blk .slick-slide:not(.slick-current) .gallery-content {
  display: none;
}

.slick-arrow {
  width: 50px;
  height: 50px;
  font-size: 0px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  z-index: 99;
  background-color: rgba(var(--secondary), 0.75);
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}