* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

:root {
  /* fonts */
  --headings-font-family: "Poppins", sans-serif;
  --body-font-family: "Roboto", sans-serif;

  /* colors */
  --primary-h: 0;
  --primary-s: 81%;
  --primary-l: 19%;
  --primary-color: var(--primary-h), var(--primary-s), var(--primary-l);

  --secondary-h: 74;
  --secondary-s: 43%;
  --secondary-l: 68%;
  --secondary-color: var(--secondary-h), var(--secondary-s), var(--secondary-l);

  --light-h: 0;
  --light-s: 0%;
  --light-l: 100%;
  --light-color: var(--light-h), var(--light-s), var(--light-l);

  --dark-h: hsl(236, 44%, 7%);
  --dark-h: 236;
  --dark-s: 44%;
  --dark-l: 7%;
  --dark-color: var(--dark-h), var(--dark-s), var(--dark-l);

  --main-color-one: var(--primary-color);
  --main-color-two: var(--secondary-color);

  --bg-color-one: calc(var(--light-h) + 180), calc(var(--light-s) + 9%),
    calc(var(--light-l) - 4%);
  --bg-color-two: var(--light-color);
  --bg-color-reverse: var(--dark-color);

  --inputs-bg-color: var(--light-color);

  --t-light-one: var(--light-color);
  --t-light-two: var(--light-h), var(--light-s), calc(var(--light-l) - 30%);
  --t-dark-one: var(--dark-color);
  --t-dark-two: var(--dark-h), calc(var(--dark-s) - 20%),
    calc(var(--dark-l) + 30%);

  --border-light-color: var(--light-h), var(--light-s),
    calc(var(--light-l) - 5%);
  --border-dark-color: var(--light-h), var(--light-s),
    calc(var(--light-l) - 88%);

  --card-shadow: 11px 10px 38px hsla(0, 0%, 0%, 12%);
  --inset-shadow: inset 0 2px 4px hsla(0, 0%, 0%, 0.08);
  --drop-shadow: drop-shadow(2px 4px 6px hsla(0, 0%, 0%, 20%));

  /* global */
  --navbar-height-big: 5rem;
  --navbar-height-small: 3.5rem;
  --section-padding: 6rem;
  --control-height: 3rem;
  --radius-size: 0.63rem;
}

::-moz-selection {
  background-color: hsl(var(--primary-color));
  color: hsl(var(--light-color));
}

::selection {
  background-color: hsl(var(--primary-color));
  color: hsl(var(--light-color));
}

.fw-500 {
  font-weight: 500 !important;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: hsl(var(--bg-color-one));
  font-family: var(--body-font-family);
  font-size: 0.875rem;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
label {
  color: hsl(var(--t-color-one));
  font-family: var(--headings-font-family);
  font-weight: bold;
}

a,
button {
  -webkit-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.primary-btn {
  background-color: hsl(var(--primary-color));
  color: hsl(var(--t-light-one));
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.65rem 2rem;
  border-radius: 4rem;
}

.primary-btn:hover {
  background-color: hsl(var(--light-color));
  color: hsl(var(--primary-color));
  border-color: hsla(228, 12%, 41%, 0.28);
}

.go-to-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: hsl(var(--t-light-one));
  font-size: 1.25rem;
  text-decoration: none;
}

.go-to-link::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  color: hsl(var(--primary-color));
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  -o-transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

.go-to-link:hover {
  color: hsl(var(--t-light-one));
}

.go-to-link:hover::after {
  -webkit-transform: translateX(0.5rem);
  -ms-transform: translateX(0.5rem);
  transform: translateX(0.5rem);
}

.gradient-text {
  word-wrap: break-word;
  background: -o-linear-gradient(
    0.3deg,
    hsl(var(--primary-color)) -10.18%,
    hsl(var(--light-color)) 41.51%,
    hsl(var(--primary-color)) 102.45%
  );
  background: linear-gradient(
    89.7deg,
    hsl(var(--primary-color)) -10.18%,
    hsl(var(--light-color)) 41.51%,
    hsl(var(--primary-color)) 102.45%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

webrouk-back-top-scroll-indicator {
  --w-primary-color: var(--primary-color);
  --w-diameter-size: 3rem;
}

@media (max-width: 767px) {
  .section {
    padding-inline: 0.5rem;
  }
}

/* header styles */
/*---------------*/
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: hsl(var(--dark-color)) url(../assets/images/header-bg.png)
    bottom/cover;
  color: hsl(var(--light-color));
}

body:not(.page) .header {
  min-height: 100vh;
}

body.page .header {
  min-height: 27.5rem;
}

@media (max-width: 768px) {
  .header {
    padding-block: 8rem;
  }
}

.header .header-nav-logo img {
  max-width: 100%;
}

.header .header-nav {
  position: fixed;
  z-index: 1000;
  left: 0;
  width: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.header .header-nav .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: var(--navbar-height-big);
  -webkit-transition: height 0.3s ease-in-out;
  -o-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
}

.header .header-nav .header-nav-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.header .header-nav .header-nav-link-item a {
  color: hsl(var(--t-light-one));
  font-family: var(--headings-font-family);
  font-weight: 500;
  font-size: 1rem;
  text-decoration: none;
}

.header .header-nav .header-nav-link-item a.active,
.header .header-nav .header-nav-link-item a:hover {
  color: hsl(var(--primary-color));
}

.header .header-nav .header-nav-humbugger-btn {
  width: 2rem;
  height: 2rem;
  color: hsl(var(--t-light-two));
  background: none;
  padding: 0;
  border: 0.0625rem solid hsl(var(--border-light-color));
  border-radius: 0.5rem;
}

.header .header-nav .header-nav-humbugger-btn:hover {
  color: hsl(var(--t-light-one));
}

.header .header-nav:not(.nav--minimized) {
  top: 0;
}

@media (min-width: 992px) {
  .header .header-nav.nav--semi-minimized {
    background-color: hsl(var(--dark-color));
    -webkit-box-shadow: var(--card-shadow);
    box-shadow: var(--card-shadow);
  }

  .header .header-nav.nav--minimized {
    top: calc(var(--navbar-height-big) * -1);
  }

  .header .header-nav:not(.nav--expanded) .container {
    height: var(--navbar-height-small);
  }

  .header .header-nav .header-nav-links {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 2.5rem;
  }

  .header .header-nav .header-sidemenu-backdrop,
  .header .header-nav .header-nav-humbugger-btn {
    display: none;
  }
}

@media (max-width: 991px) {
  .header .header-nav {
    top: 0;
  }

  .header .header-nav.nav--semi-minimized {
    background-color: hsl(var(--dark-color));
    -webkit-box-shadow: var(--card-shadow);
    box-shadow: var(--card-shadow);
  }

  .header .header-nav .container {
    height: var(--navbar-height-small);
  }

  .header .header-nav .header-nav-links {
    position: fixed;
    z-index: 1500;
    top: 0;
    left: 0;
    height: 100%;
    width: 13rem;
    background-color: hsl(var(--dark-color));
    padding: 2rem 0;
    -webkit-box-shadow: var(--card-shadow);
    box-shadow: var(--card-shadow);
    overflow-y: auto;
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    transition: -webkit-transform 0.3s ease-in-out;
    -o-transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }

  .header .header-nav .header-sidemenu-backdrop {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: hsla(0, 0%, 0%, 0.2);
    -webkit-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    cursor: pointer;
  }

  .header .header-nav .header-nav-links:not(.is-open) {
    -webkit-transform: translateX(-110%);
    -ms-transform: translateX(-110%);
    transform: translateX(-110%);
  }

  .header
    .header-nav
    .header-nav-links:not(.is-open)
    + .header-sidemenu-backdrop {
    visibility: hidden;
    opacity: 0;
  }

  .header .header-nav .header-nav-link-item a {
    display: block;
    padding: 0.5rem 1rem;
  }

  .header .header-nav .header-nav-link-item:not(:last-of-type) a {
    border-bottom: 0.0625rem solid hsl(var(--border-dark-color));
  }

  .header .header-nav .header-nav-humbugger-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.header .main-text-slider .splide__pagination {
  bottom: -5rem;
  counter-reset: pagination;
}

.header .main-text-slider .splide__pagination__page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: auto;
  background: none;
  padding-block: 0.125rem;
  margin: 0 0.375rem;
  border-bottom: solid hsl(var(--t-light-one));
  border-radius: 0.125rem;
}

@media (min-width: 768px) {
  .header .main-text-slider .splide__pagination__page {
    width: 5rem;
  }
}

@media (max-width: 767px) {
  .header .main-text-slider .splide__pagination__page {
    width: 2rem;
  }
}

.header .main-text-slider .splide__pagination__page::before {
  counter-increment: pagination;
  content: "0" counter(pagination);
  color: hsl(var(--t-light-one));
  margin-bottom: 0.375rem;
  -webkit-transition: opacity 0.15s ease-in-out;
  -o-transition: opacity 0.15s ease-in-out;
  transition: opacity 0.15s ease-in-out;
}

.header .main-text-slider .splide__pagination__page:not(.is-active) {
  border-bottom-width: 0.0625rem;
  opacity: 0.5;
}

.header .main-text-slider .splide__pagination__page:not(.is-active)::before {
  opacity: 0;
}

.header .main-text-slider .splide__pagination__page.is-active {
  background: none;
  border-bottom-width: 0.125rem;
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

.header .main-text-slider {
  width: 100%;
}

.header .main-text-item {
  max-width: 800px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}

.header .main-text-item .main-text-title {
  font-weight: 500;
}

.header .main-text-item .main-text-desc {
  color: hsl(var(--t-light-one));
  line-height: 2rem;
  padding-inline: 0.75rem;
}

@media (min-width: 768px) {
  .header .main-text-item .main-text-title {
    font-size: 2.5rem;
  }

  .header .main-text-item .main-text-desc {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  .header .main-text-item .main-text-title {
    font-size: 1.5rem;
  }

  .header .main-text-item .main-text-desc {
    font-size: 1rem;
  }
}

/* our approach section styles */
/*-----------------------------*/
.our-approach-section {
  padding-block: var(--section-padding);
  overflow: hidden;
}

.our-approach-section .our-approach-intro {
  margin-bottom: -1.5rem;
}

.our-approach-section .splide__track {
  overflow: visible;
}

.our-approach-section .our-approach-section-list {
  gap: 2rem;
}

.our-approach-section .our-approach-section-item {
  width: 17rem;
  height: 100%;
  background-color: hsl(var(--light-color));
  padding: 1.5rem;
  border-radius: 1rem;
}

/* features section styles */
/*-------------------------*/
.features-section {
  position: relative;
  background-color: hsl(var(--dark-color));
  text-align: center;
  padding-block: 9rem 10rem;
}

.features-section::before,
.features-section::after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 0;
  height: 100%;
  width: 10vw;
}

.features-section::before {
  left: 0;
  background: -o-linear-gradient(
    left,
    hsl(var(--dark-color)) 0%,
    hsl(0, 0%, 100%, 0%) 110%
  );
  background: -webkit-gradient(
    linear,
    left top,
    right top,
    from(hsl(var(--dark-color))),
    color-stop(110%, hsl(0, 0%, 100%, 0%))
  );
  background: linear-gradient(
    90deg,
    hsl(var(--dark-color)) 0%,
    hsl(0, 0%, 100%, 0%) 110%
  );
}

.features-section::after {
  right: 0;
  background: -o-linear-gradient(
    right,
    hsl(var(--dark-color)) 0%,
    hsl(0, 0%, 100%, 0%) 110%
  );
  background: -webkit-gradient(
    linear,
    right top,
    left top,
    from(hsl(var(--dark-color))),
    color-stop(110%, hsl(0, 0%, 100%, 0%))
  );
  background: linear-gradient(
    -90deg,
    hsl(var(--dark-color)) 0%,
    hsl(0, 0%, 100%, 0%) 110%
  );
}

.features-section .features-section-item {
  width: 50vw;
}

.features-section .features-section-item-desc {
  color: hsl(var(--t-light-one));
}

@media (min-width: 768px) {
  .features-section .features-section-item-title {
    font-size: 3.75rem;
  }

  .features-section .features-section-item-desc {
    font-size: 1.125rem;
    line-height: 2rem;
  }
}

@media (max-width: 767px) {
  .features-section .features-section-item-title {
    font-size: 1rem;
  }

  .features-section .features-section-item-desc {
    font-size: 0.75rem;
    line-height: 1.25rem;
  }
}

.features-section .splide__pagination {
  bottom: -3.5rem;
}

.features-section .splide__pagination__page {
  height: auto;
  background: none;
  padding-block: 0.125rem;
  margin: 0 0.375rem;
  border-bottom-style: solid;
  border-radius: 0.125rem;
}

@media (min-width: 768px) {
  .features-section .splide__pagination__page {
    width: 3rem;
  }
}

@media (max-width: 767px) {
  .features-section .splide__pagination__page {
    width: 2rem;
  }
}

.features-section .splide__pagination__page:not(.is-active) {
  border-bottom-width: 0.0625rem;
  border-bottom-color: hsl(var(--t-light-one));
  opacity: 0.5;
}

.features-section .splide__pagination__page.is-active {
  background: none;
  border-bottom-width: 0.125rem;
  border-bottom-color: hsl(var(--primary-color));
  opacity: 1;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
}

/* platform section styles */
/*-------------------------*/
.platform-section {
  padding-block: var(--section-padding);
}

.platform-section .platform-intro {
  margin-bottom: -1.5rem;
}

.platform-section .platform-plans {
  margin-bottom: -1.5rem;
}

.platform-section .platform-plans-item {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.25rem;
  border-radius: 1rem;
}

.platform-section .platform-plans-item:not(.active) {
  background-color: hsl(var(--bg-color-two));
  color: hsl(var(--t-dark-two));
}

.platform-section .platform-plans-item.active {
  background-color: hsl(var(--dark-color));
  color: hsl(var(--t-light-two));
}

.platform-section .platform-plans-item:not(.active) .platform-plans-item-head {
  color: hsl(var(--t-dark-one));
}

.platform-section .platform-plans-item.active .platform-plans-item-head {
  color: hsl(var(--t-light-one));
}

.platform-section
  .platform-plans-item:not(.active)
  .platform-plans-item-head-icon {
  background-color: hsl(var(--bg-color-one));
  border-color: hsl(var(--border-light-color));
}

.platform-section .platform-plans-item.active .platform-plans-item-head-icon {
  background-color: hsl(var(--light-color), 3%);
  border-color: hsl(var(--border-dark-color));
}

.platform-section
  .platform-plans-item:not(.active)
  .platform-plans-details
  strong {
  color: hsl(var(--t-dark-one));
}

.platform-section .platform-plans-item.active .platform-plans-details strong {
  color: hsl(var(--t-light-one));
}

.platform-section .platform-plans-item-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
}

.platform-section .platform-plans-item-head-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.25rem;
  border: 0.0625rem solid;
  border-radius: 1rem;
}

.platform-section .platform-plans-item-head-title {
  font-weight: 500;
  font-size: 1rem;
}

.platform-section .platform-plans-item .platform-plans-details {
  -webkit-padding-start: 1.25rem;
  padding-inline-start: 1.25rem;
  margin-bottom: 0;
}

.platform-section .platform-plans-item .go-to-link {
  color: hsl(var(--primary-color));
  font-weight: 400;
  font-size: 1rem;
  margin-top: auto;
}

/* partnership section styles */
/*----------------------------*/
.partnership-section {
  background-color: hsl(var(--dark-color));
  color: hsl(var(--t-light-one));
  text-align: center;
  padding-block: 3.5rem;
}

.partnership-section-list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.125rem;
}

.partnership-section-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 11rem;
  height: 7.5rem;
  background-color: hsl(var(--light-color), 3%);
  border: 0.0625rem solid hsl(var(--border-dark-color));
  border-radius: 1.25rem;
}

/* contact section styles */
/*------------------------*/
.contact-section {
  position: relative;
  isolation: isolate;
  background-color: hsl(var(--bg-color-one));
  padding: var(--section-padding) 0 var(--section-padding);
}

.contact-section::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -6rem;
  width: 100%;
  height: 24rem;
  background-color: hsl(var(--bg-color-two));
}

.contact-section .faq-questions {
  margin-bottom: var(--section-padding);
}

.contact-section .schedule-demo {
  position: relative;
  isolation: isolate;
}

.contact-section .schedule-demo-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 0.625rem;
  background-color: hsl(var(--bg-color-two));
  padding: 1.25rem;
  border-radius: 1rem;
}

@media (min-width: 768px) {
  .contact-section .schedule-demo-form {
    width: 40%;
    -webkit-transform: translateX(2.5rem);
    -ms-transform: translateX(2.5rem);
    transform: translateX(2.5rem);
  }
}

@media (max-width: 767px) {
  .contact-section .faq-questions {
    margin-bottom: calc(var(--section-padding) + 7rem);
  }

  .contact-section .schedule-demo-form {
    width: calc(100% - 3rem);
    margin: auto;
    -webkit-transform: translateY(-7rem);
    -ms-transform: translateY(-7rem);
    transform: translateY(-7rem);
  }
}

.contact-section .schedule-demo-form-title {
  font-size: 2rem;
}

.contact-section .schedule-demo-form-tagline {
  font-size: 1rem;
  line-height: 1.5rem;
}

.contact-section .schedule-demo-img {
  border-radius: 1rem;
  overflow: hidden;
  position: absolute;
  z-index: -1;
  right: 0;
}

@media (min-width: 768px) {
  .contact-section .schedule-demo-img {
    top: -2.5rem;
    bottom: -2.5rem;
    width: 60%;
  }
}

@media (max-width: 767px) {
  .contact-section .schedule-demo-img {
    top: -1.5rem;
    bottom: -1.5rem;
    width: 100%;
  }
}

.contact-section .schedule-demo-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contact-section .go-to-link,
.contact-section .go-to-link:hover {
  color: hsl(var(--dark-color));
}

/* footer styles */
/*---------------*/
.footer {
  background-color: hsl(var(--bg-color-one));
  padding-bottom: 4rem;
}

.footer .footer-inner {
  position: relative;
  background-color: hsl(var(--dark-color));
  color: hsl(var(--t-light-two));
  padding: 2.5rem;
  border-radius: 1rem;
}

.footer .footer-inner .about-widget img {
  max-width: 100%;
}

.footer .footer-inner .about-widget p {
  color: hsl(var(--t-light-one));
}

.footer .footer-inner .social-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
}

.footer .footer-inner .social-links a {
  color: hsl(var(--t-light-two));
  text-decoration: none;
}

.footer .footer-inner .social-links a:hover {
  color: hsl(var(--primary-color));
}

.footer .footer-inner .widget-links {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (min-width: 992px) {
  .footer .footer-inner .widget-links {
    gap: 0.875rem 3.5rem;
  }
}

@media (max-width: 991px) {
  .footer .footer-inner .widget-links {
    gap: 0.875rem 2rem;
  }
}

@media (max-width: 768px) {
  .footer .footer-inner {
    text-align: center;
  }

  .footer .footer-inner .about-widget {
    margin-bottom: 2rem;
  }

  .footer .footer-inner .social-links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }

  .footer .footer-inner .widget-links {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.footer .footer-inner .widget-links a {
  color: hsl(var(--t-light-two));
  text-decoration: none;
}

.footer .footer-inner .widget-links a:hover {
  color: hsl(var(--primary-color));
}

/* about us page styles */
/*----------------------*/
.about-us .platform-plans-details {
  display: -ms-grid;
  display: grid;
  gap: 0 3rem;
}

.about-us .platform-section {
  padding-top: 0;
  margin-top: -5.5rem;
}

@media (min-width: 768px) {
  .about-us .platform-plans-details {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .about-us .platform-plans-details {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

/* forms styles */
/*--------------*/
.form-styled .form-group input {
  display: block;
  width: 100%;
  height: var(--control-height);
  padding-inline: 1rem;
  background-color: hsl(var(--inputs-bg-color));
  border: 0.0625rem solid hsla(228, 12%, 41%, 0.28);
  outline: 0;
  border-radius: 4.375rem;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

/* accordion styles */
/*------------------*/
.accordion {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 1.25rem;
}

.accordion .accordion-tab {
  background-color: hsl(var(--bg-color-two));
  border-radius: 1rem;
}

.accordion .accordion-tab:not(:first-of-type) .accordion-tab-content {
  display: none;
}

.accordion .accordion-tab-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  text-align: start;
  line-height: 1.5rem;
  width: 100%;
  background: none;
  padding: 1.25rem;
  border: 0;
  border-radius: 1rem 1rem 0 0;
}

.accordion .accordion-tab-label::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  -webkit-transition: -webkit-transform 0.15s ease-in-out;
  transition: -webkit-transform 0.15s ease-in-out;
  -o-transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out;
}

.accordion .accordion-tab.active .accordion-tab-label::after {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.accordion .accordion-tab-content {
  border-radius: 0 0 1rem 1rem;
}

.accordion .accordion-tab-content-inner {
  padding: 0 1.25rem 1.25rem;
}

/* Custom Scrollbar Styles */
/*-------------------------*/
::-webkit-scrollbar {
  width: 0.375rem;
  height: 0.375rem;
}

::-webkit-scrollbar-track {
  background-color: hsl(var(--border-dark-color));
}

::-webkit-scrollbar-thumb {
  background-color: hsla(var(--primary-color), 70%);
  border-radius: 0.625rem;
}

::-webkit-scrollbar-thumb:hover {
  background-color: hsl(var(--primary-color));
}

::-webkit-scrollbar-track-piece:vertical:end {
  background-color: hsla(var(--t-light-one), 20%);
}

/* disable focusing for the hidden items */
.DOM-slider-hidden {
  * {
    visibility: hidden;
  }
}
