/*==========================================================================
Color & Font CSS
==========================================================================*/
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Wix+Madefor+Display:wght@400..800&display=swap");
:root {
  --body-font: "Inter", sans-serif;
  --heading-font: "Wix Madefor Display", sans-serif;
  --text-white: #FFFFFF;
  --bg-white: #FFFFFF;
  --primary-color-1: #2271b1;
  --bg-heading-color: #063231;
  --text-heading-color: #1d2327;
  --body-color: #6A726F;
  --color-1: #1d2327;
  --color-2: #ecf3f8;
  --color-3: #2c3338;
  --color-4: #f0f0f1;
  --border-color-1: #ddebeb;
  --box-shadow-1: 0 2px 5px 0 rgba(0, 0, 0, 0.1);
  --box-shadow-2: 1px 0 5px 0 rgba(0, 0, 0, 0.1);
}

body {
  font-family: var(--body-font);
  color: var(--body-color);
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  transition: 0.4s;
}

a {
  outline: none;
  text-decoration: none;
  color: var(--primary-color-1);
  transition: 0.4s;
}

a:focus,
a:hover {
  text-decoration: none;
  color: var(--primary-color-1);
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  color: var(--text-heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  text-transform: capitalize;
}

b {
  font-weight: 600;
  color: var(--text-heading-color);
}

code {
  padding: 6px 10px;
  background: var(--color-2);
  border-radius: 4px;
}

strong {
  font-weight: 700;
  color: var(--text-heading-color);
}

h1 {
  font-size: 44px;
  line-height: 54px;
}

h2 {
  font-size: 36px;
  line-height: 46px;
}

h3 {
  font-size: 28px;
  line-height: 38px;
}

h4 {
  font-size: 22px;
  line-height: 32px;
}

h5 {
  font-size: 20px;
  line-height: 30px;
}

h6 {
  font-size: 16px;
  line-height: 26px;
}

.docs_title {
  margin-bottom: 30px;
}

.docs__content {
  padding-top: 50px;
}
.docs__content img {
  border-radius: 10px;
  border: 1px solid var(--border-color-1);
}

.docs_des,
.docs_heading {
  margin-bottom: 20px;
}

.list_docs_heading {
  background: var(--color-2);
  padding: 10px 15px;
  border-left: 3px solid var(--primary-color-1);
  margin-bottom: 25px;
}

.docs__area {
  padding: 0 90px;
}

.mb-15 {
  margin-bottom: 15px;
}

.pb-15 {
  padding-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.pb-25 {
  padding-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.pb-30 {
  padding-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.pb-35 {
  padding-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.pb-45 {
  padding-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.pb-55 {
  padding-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.pb-65 {
  padding-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.buy {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 99999;
  width: 60px;
  height: 60px;
  animation: buyPulse 1s infinite;
  border-radius: 50%;
}
.buy img {
  border-radius: 50%;
}

@keyframes buyPulse {
  0% {
    box-shadow: 0 0 rgba(134, 230, 75, 0.4901960784);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(91, 171, 41, 0.0352941176);
  }
}
.btn-one {
  background: var(--primary-color-1);
  color: var(--text-white);
  font-size: 16px;
  line-height: 26px;
  padding: 10px 25px;
  z-index: 3;
  font-weight: 500;
  transition: 0.5s;
  text-transform: capitalize;
  border-radius: 10px;
  font-family: var(--heading-font);
}

.btn-one:hover {
  color: var(--text-white);
  background: var(--bg-heading-color);
}

.btn-one:focus {
  color: var(--text-white);
}

.text-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.text-logo .logo h4 {
  font-weight: 500;
}
.text-logo .logo h4 b {
  font-weight: 700;
}

.docs-logo {
  padding: 35px 15px;
}
.docs-logo img {
  max-width: 130px;
}

.docs_sidebar i {
  display: block;
  color: var(--color-1);
  font-size: 26px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .d-xl-block {
    display: block !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .docs-content {
    margin-left: 330px;
    position: relative;
    z-index: 1;
  }
}
.documentation-sidebar {
  width: 330px;
  position: fixed;
  z-index: 999;
  top: 0;
  height: 100%;
  background: var(--color-1);
  overflow-y: auto;
  scrollbar-color: rgba(0, 0, 0, 0.2) #f5f5f5;
  scrollbar-width: thin;
  transition: transform 0.35s ease-in-out;
  box-shadow: var(--box-shadow-2);
}

.documentation-sidebar.sidebar-visible .docs_sidebar i {
  display: none;
}

.documentation-sidebar.sidebar-visible {
  transform: translateX(0);
  display: block;
}

.cta-section .container {
  position: relative;
  z-index: 10;
}

.header__area {
  box-shadow: var(--box-shadow-1);
  padding: 20px;
  position: relative;
  z-index: 99;
  background: var(--bg-white);
}
.header__area .menu a {
  color: var(--text-heading-color);
}
.header__area .menu a:hover {
  color: var(--primary-color-1);
  text-decoration: none;
}

.sidebar__menu ul {
  padding: 0;
  margin: 0;
}
.sidebar__menu ul li {
  list-style: none;
}
.sidebar__menu ul li.menu-item-has-children > a img {
  margin-right: 10px;
  max-width: 22px;
}
.sidebar__menu ul li.menu-item-has-children > a .flexi-type {
  max-width: 20px;
  margin-top: -3px;
}
.sidebar__menu ul li a {
  color: var(--color-4);
  display: block;
  cursor: pointer;
  padding: 9px 15px;
}
.sidebar__menu ul li a:hover {
  background: var(--primary-color-1);
  text-decoration: none;
}
.sidebar__menu ul li a:hover i {
  color: var(--text-white);
}
.sidebar__menu ul li ul {
  background: var(--color-3);
  padding: 10px 18px;
  display: none;
}
.sidebar__menu ul li ul li .menu-link {
  font-size: 14px;
  line-height: 24px;
  padding: 5px 18px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sidebar__menu ul li ul li .menu-link i {
  opacity: 0;
  transition: 0.4s;
  color: #72aee6;
}
.sidebar__menu ul li ul li .menu-link::before {
  background: var(--color-3);
  content: "";
  display: inline-block;
  height: inherit;
  left: 0;
  top: 0;
  position: absolute;
  width: 3px;
  height: 100%;
}
.sidebar__menu ul li ul li .menu-link:hover {
  background: transparent;
  color: #72aee6;
}
.sidebar__menu ul li ul li .menu-link:hover::before {
  background: #72aee6;
}
.sidebar__menu ul .current > .menu-link {
  background: var(--primary-color-1);
}
.sidebar__menu ul .current > .menu-link i {
  color: var(--text-white);
}
.sidebar__menu ul .current ul {
  display: block;
}
.sidebar__menu ul .current .sub-menu .menu-item .menu-link.active {
  background: transparent;
  color: #72aee6;
}
.sidebar__menu ul .current .sub-menu .menu-item .menu-link.active::before {
  background: #72aee6;
}
.sidebar__menu ul .current .sub-menu .menu-item .menu-link.active i {
  opacity: 1;
}

.direction__steps {
  border: 1px solid var(--color-4);
  box-shadow: 0 3px 6px 0 rgba(4, 73, 89, 0.02);
  border-radius: 10px;
  padding-right: 10px;
  margin-bottom: 25px;
  margin-top: 10px;
}
.direction__steps-list {
  position: relative;
  list-style: none;
  padding-left: 20px;
  margin: 30px 0;
}
.direction__steps-list::after {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 1px;
  background-color: var(--body-color);
}
.direction__steps-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
  margin: 16px 0;
  position: relative;
  padding-left: 35px;
  counter-increment: a;
  z-index: 1;
}
.direction__steps-list li::before {
  content: counter(a);
  position: absolute;
  color: var(--text-white);
  height: 32px;
  width: 32px;
  border-radius: 50%;
  font-weight: 500;
  font-size: 12px;
  background-color: var(--primary-color-1);
  text-align: center;
  line-height: 23px;
  top: -4px;
  left: -4px;
  border: 5px solid var(--bg-white);
}
.direction__steps-list li:last-child {
  padding-bottom: 0;
}
.direction__steps-list .direction {
  display: inline-flex;
  align-items: center;
}
.direction__steps-list .direction .step {
  padding: 0 8px;
  font-size: 13px;
  border-radius: 4px;
  background: var(--primary-color-1);
  color: var(--text-white);
  position: relative;
  line-height: 20px;
}
.direction__steps-list .direction .step + .step {
  margin-left: 26px;
}
.direction__steps-list .direction .step + .step:before {
  content: "\f178";
  font-family: "Font Awesome 6 Pro";
  position: absolute;
  left: -20px;
  color: var(--text-heading-color);
}

@media (max-width: 1199px) {
  .docs__area {
    padding: 0 40px;
  }
}
@media (max-width: 991px) {
  .header__area {
    position: fixed;
    top: 0;
    padding: 20px 0;
    width: 100%;
  }
  .header__area .text-logo {
    width: 100%;
    justify-content: space-between;
    flex-direction: row-reverse;
  }
  .documentation-sidebar {
    display: none;
    top: 72px;
  }
  .docs__area {
    padding: 0 12px;
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .direction {
    flex-wrap: wrap;
    gap: 8px;
  }
}
.footer {
  text-align: center;
  padding: 30px 0;
  background: var(--color-4);
  margin-top: 70px;
  color: var(--text-heading-color);
  position: relative;
  z-index: 1;
}
.footer .scoll-top {
  font-size: 18px;
  border-radius: 50%;
  background-color: var(--color-1);
  color: var(--text-white);
  cursor: pointer;
  display: flex;
  z-index: 999;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -25px;
}/*# sourceMappingURL=style.css.map */