:root {
  --space: 1rem;
  --border: 4px;
  --color-active: #f7517c;
  --color-primary: #a4d42a;
  --color-secondary: #8cba17;
  --color-link: #1b8ec5;
  --color-dark: #000;
  --color-lite: #F8F9FA;
  --color-dash: #F8F9FA;
  --color-dash-header: #EDF2F4;
  --color-white: #ffffff;
  --border-color: #E0E0E0;
  --color-heading: #6E7274;
  --color-success: #18E375;
  --color-sectionheading: #083A7B;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --duration: 350ms;
  --section-offset: 0;
  --bodyColor: #f2f2ff;
  --bodyTextColor: #5b5b5b;
}

html {
  font-family: 'Roboto', sans-serif;
}

a {
  -webkit-transition: all ease-out 0.7s;
  transition: all ease-out 0.7s;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.header-banner-section {
  position: relative;
  width: 100%;
  background: var(--color-lite);
  z-index: 20;
}

.header {
  position: -webkit-sticky;
  position: sticky;
  height: 60px;
  background: var(--color-white);
  -webkit-box-shadow: 2px 0px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 2px 0px 12px rgba(0, 0, 0, 0.12);
  z-index: 20;
  overflow: hidden;
  top: 0;
  width: 100%;
}

.header__flex-wrap {
  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: 100%;
}

.brand {
  position: relative;
}

.brand__logo {
  position: relative;
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
  font-size: 28px;
  line-height: 33px;
  color: var(--color-dark);
  margin: 0;
}

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

.brand img {
  width: 80px;
}

@media (min-width: 768px) {
  .brand img {
    width: 100px;
  }
}

.banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}

.banner svg {
  height: 500px;
  position: absolute;
}

.banner h1 {
  z-index: 10;
  margin-bottom: 1em;
  padding: 0;
  font-style: normal;
  font-weight: bold;
  font-size: 96px;
  line-height: 112px;
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  color: var(--color-primary);
  position: relative;
}

.banner h1 span {
  color: var(--color-white);
}

.banner::after {
  position: absolute;
  width: 300px;
  height: 400px;
  content: "";
  background: rgba(219, 223, 253, 0.180392);
  z-index: 10;
  left: 20%;
  -webkit-animation: sYS7g0n ease 6s infinite;
          animation: sYS7g0n ease 6s infinite;
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
}

.banner::before {
  position: absolute;
  width: 300px;
  height: 300px;
  content: "";
  background: #8b51f715;
  z-index: 10;
  right: 20%;
  -webkit-animation: Dx4FDF ease 7s infinite;
          animation: Dx4FDF ease 7s infinite;
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
}

@-webkit-keyframes sYS7g0n {
  from {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  to {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
  }
}

@keyframes sYS7g0n {
  from {
    -webkit-transform: rotateX(0deg);
            transform: rotateX(0deg);
  }
  to {
    -webkit-transform: rotateX(360deg);
            transform: rotateX(360deg);
  }
}

@-webkit-keyframes Dx4FDF {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

@keyframes Dx4FDF {
  from {
    -webkit-transform: rotateY(0deg);
            transform: rotateY(0deg);
  }
  to {
    -webkit-transform: rotateY(360deg);
            transform: rotateY(360deg);
  }
}

#loader {
  -webkit-animation: spin ease 2s infinite;
          animation: spin ease 2s infinite;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes spin {
  from {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

@keyframes spin {
  from {
    -webkit-transform: rotateZ(0deg);
            transform: rotateZ(0deg);
  }
  to {
    -webkit-transform: rotateZ(360deg);
            transform: rotateZ(360deg);
  }
}

#bounc1 {
  -webkit-animation: bounceIn1 ease-in 1s infinite alternate;
          animation: bounceIn1 ease-in 1s infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes bounceIn1 {
  from {
    -webkit-transform: scale();
            transform: scale();
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes bounceIn1 {
  from {
    -webkit-transform: scale();
            transform: scale();
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

#bounc2 {
  -webkit-animation: bounceIn2 ease-in 1.5s infinite alternate;
          animation: bounceIn2 ease-in 1.5s infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes bounceIn2 {
  from {
    -webkit-transform: scale();
            transform: scale();
    opacity: 0.6;
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes bounceIn2 {
  from {
    -webkit-transform: scale();
            transform: scale();
    opacity: 0.6;
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
}

#hair {
  -webkit-animation: hair 1s ease-in-out infinite alternate;
          animation: hair 1s ease-in-out infinite alternate;
  -webkit-transform-origin: top;
          transform-origin: top;
  transform-box: fill-box;
}

@-webkit-keyframes hair {
  from {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes hair {
  from {
    -webkit-transform: translateY(-10%);
            transform: translateY(-10%);
  }
  to {
    -webkit-transform: translateY(0%);
            transform: translateY(0%);
  }
}

@keyframes bounceIn2 {
  from {
    -webkit-transform: scale();
            transform: scale();
    opacity: 0.6;
  }
  to {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
    opacity: 1;
  }
}

#bounc3 {
  -webkit-animation: bounceIn3 ease-in 2s infinite alternate;
          animation: bounceIn3 ease-in 2s infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes bounceIn3 {
  from {
    -webkit-transform: scale();
            transform: scale();
    opacity: 0.6;
  }
  to {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 1;
  }
}

@keyframes bounceIn3 {
  from {
    -webkit-transform: scale();
            transform: scale();
    opacity: 0.6;
  }
  to {
    -webkit-transform: scale(1.4);
            transform: scale(1.4);
    opacity: 1;
  }
}

#float1 {
  -webkit-animation: float1 ease-in 1s infinite alternate;
          animation: float1 ease-in 1s infinite alternate;
  -webkit-transform-origin: center;
          transform-origin: center;
  transform-box: fill-box;
}

@-webkit-keyframes float1 {
  from {
    -webkit-transform: scale();
            transform: scale();
    opacity: 0.6;
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes float1 {
  from {
    -webkit-transform: scale();
            transform: scale();
    opacity: 0.6;
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    opacity: 1;
  }
}

@keyframes float1 {
  from {
    -webkit-transform: scale();
            transform: scale();
  }
  to {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.nav {
  position: relative;
  height: 100%;
  position: relative;
}

.headernav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.headernav__list {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 1em;
}

.headernav__list:last-child {
  margin-right: 0;
}

.headernav__list a {
  color: var(--color-heading);
  font-style: normal;
  font-weight: 500;
  font-family: inherit;
  font-size: 16px;
  line-height: 19px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 1em;
}

.headernav__list a:hover {
  background: var(--color-lite, 0.7);
  color: var(--color-primary);
}

.headernav .social svg {
  width: 15px;
  height: 15px;
}

.banner {
  position: relative;
  width: 100%;
  min-height: calc(600px - 60px);
  background: inherit;
}

@media (min-width: 1220px) {
  .banner {
    height: 100vh;
  }
}

.btn {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-radius: 4px;
  text-transform: capitalize;
  font-weight: bold;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.btn:hover {
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.btn svg {
  width: 18px;
  height: 18px;
  margin-left: 0.5rem;
  fill: var(--color-white);
}

.btn-primary {
  background-color: var(--color-primary) !important;
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-secondary) !important;
  color: var(--color-white) !important;
}

.btn.btn-sm {
  font-size: .75rem !important;
}

section {
  background-color: var(--color-lite);
}

.link {
  color: var(--color-primary);
  font-weight: normal;
}

.link:hover {
  color: var(--color-secondary);
}

.btn.btn-link {
  color: var(--color-primary) !important;
  background: var(--color-white);
  border: 1px solid #E0E0E0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
}

.btn.btn-link:hover {
  background: var(--color-lite);
}

.view-card {
  position: relative;
  width: 100%;
  background: var(--color-white);
  border: 1px solid var(--border-color);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 5px;
  padding: 2em;
  margin-bottom: 3em;
}

.card-centrialized {
  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;
}

.card-centrialized h2 {
  font-family: inherit;
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 45px;
  text-align: center;
  margin-bottom: 1em;
  color: var(--color-sectionheading);
}

.card-centrialized .group-btn {
  position: relative;
  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;
  margin-bottom: 2em;
}

.card-centrialized .group-btn a {
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.card-centrialized .group-btn .btn-alt {
  position: relative;
  margin-left: 1em;
}

.card-centrialized .group-btn .btn-alt svg {
  margin-right: 10px;
}

.card-centrialized .group-btn .btn-alt:hover {
  background: var(--color-lite);
}

.card-centrialized p {
  position: relative;
  font-family: inherit;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-heading);
  margin: 0;
  text-align: center;
  padding: 0 2em;
}

.card-centrialized h4 {
  font-family: inherit;
  font-style: normal;
  font-weight: bold;
  text-align: center;
  font-size: 18px;
  line-height: 45px;
  color: var(--color-sectionheading);
}

.ilustrator {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
}

.ilustrator .icon-wrap {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  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;
  background: var(--color-primary);
}

.ilustrator .icon-wrap svg {
  width: 60px;
  color: var(--color-white);
}

p {
  position: relative;
  font-family: inherit;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-heading);
  margin: 0;
  margin-bottom: 1em;
}

h4 {
  color: var(--color-sectionheading);
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 28px;
}

.illustrate-w {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.illustrate-w img {
  width: 90%;
}

.illustrate-w .sml {
  width: 50%;
}

.jsf-left {
  position: relative;
  padding: 0 3rem 0 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 300px;
}

@media (max-width: 782px) {
  .jsf-left {
    padding: 0 0;
  }
}

.refy {
  position: relative;
  margin-top: 4em;
}

.refy h2 {
  font-weight: normal;
  color: var(--color-sectionheading);
  font-size: 48px;
  line-height: 56px;
}

.z-action {
  position: relative;
  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;
}

.z-action h1 {
  text-align: center;
  font-weight: 900;
  font-size: 33px;
  color: var(--color-dark);
}

.z-action p {
  font-size: 22px;
}

@media (max-width: 782px) {
  .z-action {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .z-action h1 {
    font-size: 24px;
    text-align: left;
  }
  .z-action p {
    font-size: 16px;
  }
}

h1 {
  color: var(--color-sectionheading);
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
}

h2 {
  color: var(--color-sectionheading);
  font-style: normal;
  font-weight: 500;
  font-size: 26px;
  line-height: 32px;
}

footer {
  position: relative;
  background-color: var(--color-white);
  padding: 3em 0;
}

.footer-settings {
  position: relative;
  padding: 0;
  margin: 0;
  color: var(--color-sectionheading);
  font-weight: normal;
}

.footer-settings dt {
  font-weight: 300;
}

.footer-settings .footer-heading {
  font-size: 2em;
  font-weight: 400;
  margin-bottom: 1rem;
  clear: var(--color-sectionheading);
}

.footer-settings .footer-c-text {
  font-size: 14px;
  list-style: 22px;
  margin-bottom: 1em;
}

.footer-settings .footer-c-text:last-child {
  margin-bottom: 0;
}

.footer-settings .footer-c-text a {
  color: #116F97;
  font-weight: 500;
}

.footer-settings .footer-c-text svg {
  margin-right: 1em;
  width: 20px;
  height: 20px;
  opacity: 0.6;
}

.footer-nav {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: right;
}

.footer-nav ul {
  list-style: none;
}

.footer-nav ul li {
  font-style: normal;
  font-weight: bold;
  font-size: 16px;
  line-height: 28px;
  color: var(--color-sectionheading);
}

.footer-nav ul li a {
  color: var(--color-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--border-color);
  margin-top: 3em;
  padding-top: 3em;
}

.welcome-note {
  position: relative;
  padding: 2em;
  width: 100%;
}

.welcome-note h2 {
  text-transform: uppercase;
  color: var(--color-primary);
}

textarea {
  resize: none;
}

.form-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 1rem;
}

.form-group .form-control {
  border-width: 1px;
  border-style: solid;
  border-color: var(--border-color);
  min-height: 45px;
  background: var(--color-white);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 1px 1px rgba(22, 29, 37, 0.1);
          box-shadow: 0px 1px 1px rgba(22, 29, 37, 0.1);
  border-radius: 5px;
  font-size: 14px;
}

.form-group .form-control:focus {
  border-color: var(--color-primary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form-group label {
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 19px;
}

.form-group label span {
  color: var(--color-active);
}

.form-group label strong {
  color: var(--color-dark);
  font-weight: 600;
}

#prev {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  justify-self: start;
  font-weight: normal;
  font-size: 14px;
  margin-top: 1em;
  color: var(--color-heading);
  cursor: pointer;
  opacity: 0.7;
}

#prev svg {
  margin-right: 5px;
}

#prev:hover {
  color: var(--color-primary);
  opacity: 1;
}

.pass-toggle {
  position: absolute;
  width: 30px;
  height: 40px;
  right: 15px;
  bottom: -2px;
}

.pass-toggle button {
  border: none;
  background: var(--color-white);
  color: var(--color-heading);
  cursor: pointer;
  outline: none;
}

.pass-toggle button svg {
  width: 20px;
  height: 20px;
}

.starter-page {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2em 0;
}

.page-centrialized {
  width: 400px;
  max-width: 100%;
  margin-top: 2em;
}

.page-centrialized .view-card {
  -webkit-box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
  border: none;
}

.w-700 {
  width: 700px;
  max-width: 100%;
}

.w-600 {
  width: 600px;
  max-width: 100%;
}

.custom-checkbox {
  position: relative;
  display: block;
  width: 100%;
}

.custom-checkbox .chk-label {
  position: relative;
  width: 100%;
  padding: 1rem 2rem;
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: all ease-in 0.4s;
  transition: all ease-in 0.4s;
  color: var(--color-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  padding-left: 50px;
  margin-bottom: 0;
}

.custom-checkbox .chk-label strong {
  display: block;
  color: var(--color-dark);
  font-size: 16px;
  -webkit-transition: all ease-in 0.6s;
  transition: all ease-in 0.6s;
  font-weight: 500;
}

.custom-checkbox .chk-label:hover {
  border-color: var(--color-primary);
}

.custom-checkbox .chk-label:hover strong {
  color: var(--color-primary);
}

.custom-checkbox .chk-label .cheker {
  position: absolute;
  width: 20px;
  height: 20px;
  display: block;
  left: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--border-color);
  border-radius: 2px;
  top: 50%;
  -webkit-transform: translate(5px, -50%);
          transform: translate(5px, -50%);
  color: var(--border-color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.custom-checkbox .chk-label .cheker svg {
  width: 15px;
  height: 15px;
}

.chk {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.chk:checked + label {
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.12);
}

.chk:checked + label strong {
  color: var(--color-primary);
}

.chk:checked + label .cheker {
  color: var(--color-primary);
}

.stepper-progress {
  position: relative;
  margin-top: 1em;
  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;
}

.label {
  position: relative;
  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;
  font-size: 12px;
  font-weight: bold;
  background: rgba(43, 68, 255, 0.12);
  color: var(--color-primary);
  padding: 5px 15px;
  border-radius: 4px;
}

.label-rounded {
  border-radius: 25px;
}

.new-form {
  padding: 2em;
  position: relative;
  width: 100%;
}

.more-info {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
  margin-top: 2em;
}

.more-info li {
  margin: 0 1em;
}

.more-info li a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-heading);
}

@media (max-width: 782px) {
  .footer-nav {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    text-align: center;
    margin-top: 2em;
  }
  .footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
  }
  .footer-nav ul li {
    text-align: left;
  }
  .footer-nav ul li a {
    position: relative;
  }
  .sdrf {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .sdrf p {
    text-align: left;
  }
  .banner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
  }
  .banner svg {
    height: 100%;
    position: absolute;
  }
  .banner h1 {
    font-size: 46px;
    line-height: 52px;
  }
  .banner h1 span {
    color: var(--color-white);
  }
  .banner::after {
    width: 60%;
    height: 50%;
    left: 10%;
  }
  .banner::before {
    width: 50%;
    height: 50%;
    right: 10%;
  }
}

.ios-page {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

#sidebar {
  width: 20%;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  overflow: auto;
  z-index: 80;
  background: var(--color-lite);
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
}

#header {
  position: fixed;
  width: 80%;
  height: 60px;
  top: 0;
  right: 0;
  z-index: 50;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
  background: var(--color-dash-header);
}

#content {
  position: relative;
  width: 80%;
  position: absolute;
  right: 0;
  top: 60px;
  z-index: 20;
  background: var(--color-dash);
  height: calc(100vh - 60px);
  overflow: auto;
}

.d-header {
  position: relative;
  padding-left: 2em;
  padding-right: 2em;
  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;
  height: 100%;
}

.d-header .d-search {
  width: 50%;
}

.d-search-form {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 35px;
  border-radius: 5px;
  background: var(--color-white);
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.05);
}

.d-search-form .form-search {
  width: 100%;
  border: none;
  outline: none;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  position: relative;
  height: 100%;
}

.d-search-form .icon-search {
  padding: 5px;
}

.d-search-form .icon-search svg {
  width: 20px;
  height: 20px;
  color: #828282;
}

.d-box-right {
  position: relative;
  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: 100%;
}

.d-box-right ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
}

.d-box-right ul li {
  position: relative;
  margin-left: 0.54em;
}

.d-box-right span {
  margin-right: 3em;
}

.circle-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
}

.circle-btn svg {
  width: 20px;
  height: 20px;
}

.btn-lite {
  background-color: var(--color-lite);
  color: var(--color-dark);
}

.btn-default {
  background: #d5ddf5 !important;
  color: var(--color-primary) !important;
}

.btn-default:hover, .btn-default:active {
  background: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.sidenav-wrap {
  position: relative;
  padding: 1em 2em;
}

.sidenav-wrap h2 {
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.panel {
  background: var(--color-white);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
  border-radius: 5px;
  padding: 1em;
}

.panel h2 {
  margin-bottom: 0;
}

.panel p {
  margin-bottom: 0;
  font-size: 14px;
}

.side-nav {
  position: relative;
  width: 100%;
}

.side-nav ul {
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
}

.side-nav ul li {
  position: relative;
  width: 100%;
}

.side-nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #687487;
  font-size: 15px;
  line-height: 24px;
  font-weight: normal;
  padding: 8px 0;
  width: 100%;
}

.side-nav ul li a span {
  margin-right: 1em;
}

.side-nav ul li a span svg {
  width: 20px;
  height: 20px;
}

.side-nav ul li a:hover {
  color: var(--color-primary);
}

.side-nav ul li .current {
  color: var(--color-primary);
}

.side-nav ul .sepr {
  padding: 10px 0;
  text-transform: uppercase;
  color: #BFC0C2;
  font-size: 14px;
  font-weight: normal;
}

.page-content {
  padding: 1em 2em 2em;
}

h5 {
  font-weight: normal;
  color: var(--color-heading);
}

.section-card {
  position: relative;
  padding: 1em;
  background: var(--color-dash);
  border: 1px solid #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
  border-radius: 3px;
  margin-bottom: 2em;
}

.svc-warp {
  background: var(--color-dash);
  position: relative;
  border: 1px solid #FFFFFF;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 1px 2px rgba(43, 68, 255, 0.12);
          box-shadow: 0px 1px 2px rgba(43, 68, 255, 0.12);
  border-radius: 3px;
  overflow: hidden;
}

.slim-width {
  width: 800px;
  margin: 0 auto;
  max-width: 100%;
}

.svc-header {
  position: relative;
  width: 100%;
  padding: 0.8em 2em;
  background: var(--color-white);
  -webkit-box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.11);
          box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.11);
  z-index: 20;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.svc-header p {
  margin-bottom: 0;
  color: #212121;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 18px;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.svc-header p strong {
  font-weight: 600;
}

.svc-header p svg {
  width: 20px;
  height: 20px;
}

.svc-body {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.timeline {
  width: 60%;
  position: relative;
}

.timeline__wrap {
  width: 100%;
  position: relative;
}

.timeline__header {
  position: relative;
  padding: 1em;
  padding-top: 2em;
  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;
}

.timeline__header h4 {
  position: relative;
  font-style: normal;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  color: var(--color-dark);
}

.timeline__content {
  position: relative;
  padding: 1em;
}

.timeline__card {
  background: var(--color-white);
  padding: 2em;
  border-radius: 10px;
}

.timeline__card-header {
  position: relative;
  width: 100%;
  margin-bottom: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.timeline__card-header .btn-group {
  position: relative;
}

.timeline__card-header .btn-group .btn {
  color: var(--color-heading) !important;
}

.timeline__card-header .btn-group .btn.current {
  background: var(--color-dash-header);
}

.timeline__card-body {
  position: relative;
  width: 100%;
  padding-top: 1em;
}

.timeline__list {
  position: relative;
  width: 100%;
}

.timeline__list:after {
  content: "";
  width: 2px;
  height: 100%;
  top: 0;
  left: 4px;
  background: var(--border-color);
  position: absolute;
  z-index: 1;
}

.timeline__item {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 1em;
  padding-left: 2em;
}

.timeline__item:after {
  content: "";
  width: 10px;
  height: 10px;
  top: 0;
  left: 0;
  border-radius: 25px;
  background: var(--color-primary);
  position: absolute;
  z-index: 4;
}

.timeline__item .tm--left {
  position: relative;
  width: 70%;
}

.timeline__item .tm--left p {
  position: relative;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
  color: #585858;
  margin-bottom: 0;
}

.timeline__item .tm--left small {
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: #adabab;
}

.timeline__item .tm--right {
  position: relative;
  width: 30%;
  text-align: right;
}

.timeline__item .tm--right h4 {
  position: relative;
  font-weight: bold;
  font-size: 14px;
  line-height: 18px;
}

.timeline .Recieved .tm--right h4 {
  color: var(--color-success);
}

.timeline .Recieved:after {
  content: "";
  background: var(--color-success);
}

.pad {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-white);
  -webkit-box-shadow: 0px 1px 2px rgba(196, 205, 213, 0.6);
          box-shadow: 0px 1px 2px rgba(196, 205, 213, 0.6);
  border-radius: 3px;
  padding: 5px 15px;
  font-weight: bold;
  font-size: 12px;
  line-height: 18px;
  color: var(--color-primary);
}

.pad svg {
  margin-left: 5px;
  margin-right: 5px;
  width: 15px;
  height: 15px;
  color: var(--color-dark);
}

.state {
  position: relative;
  width: 40%;
}

.card-fill {
  background: var(--color-white);
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 2em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
  border-radius: 15px;
}

.card__h {
  position: relative;
  width: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.card__h .ilustrator {
  margin-bottom: 0;
}

.card__body {
  position: relative;
  width: 100%;
  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-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin: 1em;
}

.card__body small {
  color: var(--color-heading);
  font-style: normal;
  font-weight: normal;
  font-size: 13px;
  line-height: 18px;
}

.alig-left {
  text-align: left;
}

.state {
  background: var(--color-dash);
  -webkit-box-shadow: -2px 0px 4px rgba(196, 205, 213, 0.6);
          box-shadow: -2px 0px 4px rgba(196, 205, 213, 0.6);
  z-index: 6;
}

.state__cards {
  position: relative;
  padding: 2em;
}

.state__cards h5, .state__cards h4 {
  margin-bottom: 0;
}

.state__cards h5 {
  font-weight: normal;
  font-size: 1em;
  line-height: 1.3em;
}

.state__cards h4 {
  font-weight: bold;
  font-size: 1.4em;
  line-height: 1.6em;
}

.t-hood {
  width: 100%;
  height: 10px;
  background: var(--color-dash-header);
}

.text-sm {
  font-size: 80%;
}

.page-headings {
  position: relative;
  padding: 0 0 1em 0;
}

.page-headings h4 {
  color: var(--color-heading);
  font-weight: normal;
  font-size: 20px;
  line-height: 33px;
  margin: 0;
}

.flex-y {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
}

.flex-y p {
  margin-bottom: 0;
  margin-left: 1em;
  color: var(--color-dark);
  font-weight: 500;
}

.pave {
  position: relative;
  padding: 1em;
}

.smoot-card {
  position: relative;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 4px rgba(196, 205, 213, 0.6);
          box-shadow: 0px 0px 4px rgba(196, 205, 213, 0.6);
  margin-bottom: 2em;
  border: 1px solid var(--border-color);
  background: var(--color-white);
}

.no-p {
  padding: 0 !important;
}

.section-intro {
  position: relative;
  background: var(--color-lite);
  padding: 1em;
}

.section-intro p {
  font-size: 15px;
  line-height: 24px;
  font-weight: normal;
  color: var(--color-heading);
  margin-bottom: 0;
}

.tablecard {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--color-white);
  border-radius: 10px;
  overflow: hidden;
  -webkit-box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.12);
  margin-bottom: 2em;
  border-bottom: 1px solid var(--border-color);
}

.tablecard__f1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 1em;
}

.tablecard .ref {
  position: relative;
  margin: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 18px;
}

.tablecard .ref-text {
  font-weight: bold;
}

.tablecard .status-de {
  position: relative;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 17px;
  color: var(--color-dark);
  margin: 0;
}

.tablecard .ref-owner {
  margin-top: 1em;
}

.tablecard .ref-owner .ref-de {
  font-style: normal;
  font-weight: normal;
  font-size: 12px;
  line-height: 14px;
  color: var(--color-heading);
}

.tablecard__f2 {
  position: relative;
  width: 100%;
}

.tablecard .tblresponsive {
  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;
}

.tablecard .tblresponsive__group {
  position: relative;
  width: 100%;
}

.tablecard .tblresponsive__th {
  padding: 1em;
  background: var(--color-dash-header);
}

.tablecard .tblresponsive__th span {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #687487;
}

.tablecard .tblresponsive__td {
  padding: 1.3em 1em;
  background: var(--color-white);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.tablecard .tblresponsive__td span {
  color: #828282;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 16px;
}

.tablecard .tblresponsive .g-end {
  text-align: right;
}

.tablecard .tblresponsive.multiple {
  border-top: 1px solid rgba(224, 224, 224, 0.7);
}

.tablecard .tblresponsive.multiple .tblresponsive__th {
  display: none;
}

.tablecard .link-prop {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid var(--border-color);
  border-radius: 5px;
}

.tablecard .link-prop .bs-child {
  padding: .5rem .75rem;
  cursor: pointer;
  color: var(--color-heading);
}

.tablecard .link-prop .page-link {
  border-top: 0;
  border-bottom: 0;
  color: var(--color-primary);
}

.tablecard .action-bar {
  position: relative;
  width: 100%;
  margin-top: 1em;
}

.tablecard .action-bar a {
  margin-top: 0;
  margin-bottom: 0;
}

.ico-20 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ico-20 svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.ico-30 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 14px !important;
}

.ico-30 svg {
  width: 25px;
  height: 25px;
  margin-right: 5px;
}

.d-flex-btween-center {
  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;
}

.bg-lite {
  background: var(--color-dash-header) !important;
}

.expandable {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.expandable__head {
  position: relative;
  padding: 1em;
  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;
  background: var(--color-lite);
  border-top: 1px solid var(--border-color);
}

.expandable__head p {
  margin: 0;
  color: var(--color-heading);
  font-weight: bold;
  font-size: 16px;
  line-height: 18px;
  font-style: normal;
}

.expandable__body {
  position: relative;
  width: 100%;
  padding: 1em 0;
  -webkit-transition: all ease-in 0.6s;
  transition: all ease-in 0.6s;
}

.expandable__starter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1em;
}

.expandable__starter dl {
  position: relative;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 20%;
  margin: 0;
}

.expandable__starter dl dd {
  font-size: 14px;
  font-weight: 300;
  font-style: normal;
  line-height: 16px;
  color: var(--color-dark);
}

.expandable__ender {
  border-top: 1px solid var(--border-color);
  position: relative;
  padding: 1em;
}

.sumery_info {
  position: relative;
}

.sumery_info li {
  margin-bottom: 1em;
  font-weight: normal;
  color: var(--color-heading);
  font-size: 14px;
  font-style: normal;
}

.sumery_info li:first-child {
  margin-bottom: 5px;
}

.sumery_info li:last-child {
  font-size: 16px;
  color: var(--color-dark);
}

.exp-btn {
  position: relative;
  border: none;
  cursor: pointer;
  width: 100px;
  text-align: right;
  outline: none !important;
  background: transparent;
}

.add_item_btn-group {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1em 0;
  margin-top: 1em;
}

.add_item_btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--color-primary);
  font-weight: 600;
  font-style: normal;
  font-size: 12px;
  line-height: 14px;
  padding: 0.56em 1em;
  background: rgba(43, 68, 255, 0.12);
  border-radius: 3px;
  cursor: pointer;
  opacity: 0.7;
  -webkit-transition: all ease-in 0.5s;
  transition: all ease-in 0.5s;
}

.add_item_btn:hover, .add_item_btn:active {
  opacity: 1;
}

.add_item_btn svg {
  margin-right: 5px;
  width: 15px;
  height: 15px;
}

.tab-card {
  position: relative;
  background: var(--color-white);
  -webkit-box-shadow: 0px 0px 4px rgba(196, 205, 213, 0.6);
          box-shadow: 0px 0px 4px rgba(196, 205, 213, 0.6);
  border-radius: 10px;
}

.tab-pane-header {
  position: relative;
  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;
  border-bottom: 1px solid var(--border-color);
  padding: 0.7em 1em;
}

.tab-pane-header h4 {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: var(--color-dark);
  margin: 0;
}

.tab-pane-body {
  position: relative;
  padding: 1em;
}

.nav-tabs {
  border-bottom: none;
  padding: 0 1em;
}

.nav-tabs .nav-link {
  border: none !important;
  -webkit-transition: all ease 0.7s;
  transition: all ease 0.7s;
  color: var(--color-heading);
  font-weight: 400;
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
  border: none;
  position: relative;
}

.nav-tabs .nav-link:focus::before, .nav-tabs .nav-link:hover::before {
  width: 100%;
  content: "";
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: transparent;
  border: none;
  font-weight: 500;
  color: var(--color-primary);
  position: relative;
}

.nav-tabs .nav-item.show .nav-link::before, .nav-tabs .nav-link.active::before {
  width: 100%;
  content: "";
  position: absolute;
  height: 4px;
  bottom: 0;
  left: 0;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  background: var(--color-primary);
}

.legend {
  position: relative;
  color: var(--color-heading);
  font-weight: normal;
  font-size: 16px;
}

hr {
  margin-bottom: 0;
  border-color: var(--border-color);
}

@media (min-width: 1082px) {
  .lg-figure {
    position: fixed;
    width: 200px;
    top: 120px;
    right: 100px;
    z-index: 20;
  }
}

@media (max-width: 782px) {
  .tablecard .ref {
    font-size: 14px;
    line-height: 16px;
  }
  .tablecard .ref-text {
    font-weight: bold;
  }
  .tablecard .status-de {
    font-size: 13px;
    line-height: 15px;
  }
  .tablecard .ref-owner {
    margin-top: 0.7em;
  }
  .tablecard .tblresponsive {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tablecard .tblresponsive__group {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-top: 1px solid rgba(224, 224, 224, 0.7);
  }
  .tablecard .tblresponsive__th {
    padding: 1em;
    width: 40%;
    background: var(--color-dash-header);
    border-right: 3px solid #d5ddf5;
  }
  .tablecard .tblresponsive__th span {
    font-size: 12px;
    line-height: 14px;
  }
  .tablecard .tblresponsive__td {
    padding: 1em;
  }
  .tablecard .tblresponsive__td span {
    font-size: 12px;
    line-height: 14px;
  }
  .tablecard .tblresponsive .g-end {
    text-align: left;
  }
  .tablecard .tblresponsive.multiple {
    border-top: 5px solid #f4f7f9;
  }
  .tablecard .tblresponsive.multiple .tblresponsive__th {
    display: block;
  }
  .tablecard .tblresponsive.no-moble {
    display: none;
  }
  .sx-none {
    display: none !important;
  }
  .d-flex-btween-center {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .d-flex-btween-center .status-de {
    margin-bottom: 1em;
    width: 100%;
  }
  .d-flex-btween-center .page-link {
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .expandable__starter dl {
    width: 50%;
    margin-bottom: 1em;
  }
}

.body-BG::before, .body-BG::after, .tp--img-col::before, .tp--img-col::after, .sectionBg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.tpSection--hero p, .tp-medium-text {
  font-weight: normal;
  font-size: 24px;
  line-height: 32px;
}

@media (max-width: 782px) {
  .tpSection--hero p, .tp-medium-text {
    font-size: 20px;
  }
}

.tp--bodyWrap {
  position: relative;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background: var(--color-white);
}

@media (max-width: 782px) {
  .tp--bodyWrap .tp-card {
    border-radius: 0;
  }
}

.body-BG {
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  background-position: center center;
  background-size: cover;
  background-image: url(../img/bg.png);
  background-repeat: no-repeat;
  overflow: hidden;
}

.body-BG::before {
  z-index: 0;
  background: transparent;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  background-color: var(--color-primary);
  opacity: 0.4;
}

.body-BG::after {
  z-index: 0;
  background: transparent;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.23);
}

.tp--layoutContainer {
  width: 1280px;
  max-width: 95%;
  margin: 0 auto;
}

.tp--flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 782px) {
  .tp--flex {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.tp--minWidth {
  width: 100%;
  max-width: 640px;
}

.tp--header-navLik {
  position: relative;
  width: 100%;
  z-index: 2;
}

@media (max-width: 782px) {
  .tp--header-navLik {
    width: 90%;
    margin: 0 auto;
    padding-top: 0;
  }
}

.tp--header-logo {
  position: relative;
}

.tp--header-logo .brand {
  position: relative;
}

.tp--header-logo .brand img {
  height: auto;
  width: 120px;
}

@media (max-width: 782px) {
  .tp--header-logo .brand img {
    width: 90px;
  }
}

.body-extends .tp--header {
  padding-top: 0;
  padding: 10px 0;
  background: var(--color-white);
}

.body-extends .tp--header .tp--header-navLik ul li a {
  color: var(--color-sectionheading);
}

.body-extends .tp--header .tp--header-navLik ul li a:hover {
  color: var(--color-primary);
}

.body-extends .form-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}

.body-extends .form-group .form-control {
  padding: 0 20px;
}

.tp-Btn-block {
  width: 100% !important;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.tp--spacer {
  position: relative;
  height: 60px;
}

.tp--header-access {
  position: relative;
}

.tp--header-access a {
  position: relative;
  background: rgba(255, 255, 255, 0.13);
  color: var(--color-white);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 40px;
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 782px) {
  .tp--header-access a {
    font-size: 14px;
  }
  .tp--header-access a span {
    display: none;
  }
}

.tp--header-access a span {
  margin-right: 5px;
}

.tp--header-navLik {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tp--header-navLik .hambuger {
  display: none;
}

.tp--header-navLik ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  margin: 0;
}

@media (max-width: 782px) {
  .tp--header-navLik ul {
    display: none;
  }
}

.tp--header-navLik ul li {
  margin-right: var(--space);
  position: relative;
}

.tp--header-navLik ul li:last-child {
  margin-right: 0;
}

.tp--header-navLik ul li a {
  color: var(--color-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  line-height: 18px;
}

.tp--header-navLik ul li a:hover {
  color: var(--color-primary);
}

.tp--header-navLik ul li .tp--dropDown {
  position: absolute;
  min-width: 400px;
  top: 0;
  margin-top: 30px;
  right: -50px;
  background: var(--color-white);
  border-radius: 10px;
  display: none;
  padding: 40px 20px;
  -webkit-transition: all ease-out 2s;
  transition: all ease-out 2s;
}

.tp--header-navLik ul li .tp--dropDown:hover {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tp--header-navLik ul li .tp--dropDown::before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  bottom: 100%;
  border: .15rem solid transparent;
  border-top: none;
  border-bottom-color: var(--color-white);
  border-width: 10px;
  right: 80px;
  margin: 0 auto;
}

.tp--header-navLik ul li .tp--dropDown .tp--heading {
  color: var(--color-sectionheading);
  margin-bottom: 20px;
}

.tp--header-navLik ul li .tp--ul {
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 0;
}

.tp--header-navLik ul li .tp--ul li {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

.tp--header-navLik ul li .tp--ul li a {
  color: var(--color-sectionheading);
}

.tp--header-navLik ul li .tp--ul li a:hover {
  color: var(--color-primary);
}

@media (max-width: 782px) {
  .tp--header-navLik ul.tp--mobile-Nav {
    overflow: hidden;
    height: 0;
    display: none;
  }
  .tp--header-navLik ul.open {
    overflow: auto;
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: fixed;
    background: var(--color-white);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0px);
            transform: translate(-50%, 0px);
    z-index: 5;
    padding-top: 70px;
  }
  .tp--header-navLik ul.open li {
    margin-bottom: 20px;
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
  .tp--header-navLik ul.open li a {
    color: var(--bodyTextColor);
    width: 100%;
    text-align: center;
    padding: 15px 0;
    font-size: 16px;
  }
  .tp--header-navLik .hambuger {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    z-index: 20;
    position: relative;
  }
  .tp--header-navLik .hambuger span {
    width: 70%;
    height: 2px;
    margin-bottom: 5px;
    background: var(--color-white);
  }
  .tp--header-navLik .hambuger span:last-child {
    margin-bottom: 0;
  }
  .tp--header-navLik .hambuger.close {
    position: fixed;
    top: 40px;
    left: 50%;
    -webkit-transform: translate(-50%, -20px);
            transform: translate(-50%, -20px);
  }
  .tp--header-navLik .hambuger.close span {
    margin-bottom: 0;
    background: var(--color-dark);
    position: absolute;
  }
  .tp--header-navLik .hambuger.close span:first-child {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .tp--header-navLik .hambuger.close span:last-child {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
}

.tp--header {
  width: 100%;
  position: relative;
  padding-top: 20px;
}

@media (max-width: 782px) {
  .tp--header {
    width: 90%;
    margin: 0 auto;
  }
}

.tp--header-navLik ul li:hover a {
  color: var(--color-primary);
}

.tp--header-navLik ul li:hover .tp--dropDown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tp-dropDown-gLeft {
  position: relative;
  width: 56%;
  margin-right: 30px;
}

.tp--ul {
  padding: 0;
  list-style-type: none;
}

.tp-dropDown-gRight {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.tpSection--hero {
  position: relative;
  margin-top: 120px;
  margin-bottom: 150px;
}

.tpSection--hero h1 {
  font-weight: 900;
  font-size: 49px;
  line-height: 52px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.tpSection--hero p {
  color: var(--color-white);
  margin-bottom: 0;
}

@media (max-width: 782px) {
  .tpSection--hero {
    margin: 0 auto;
    margin-top: 80px;
    margin-bottom: 80px;
    width: 90%;
  }
  .tpSection--hero h1 {
    font-size: 39px;
    line-height: 42px;
  }
}

.tp--action-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}

@media (max-width: 782px) {
  .tp--action-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .tp--action-group a {
    margin-bottom: 1rem;
  }
  .tp--action-group a:last-child {
    margin-bottom: 0;
  }
  .tp--action-group .ml-3 {
    margin-left: 0;
  }
}

.tp-Btn-round-filled {
  position: relative;
  color: var(--color-white);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  background: var(--color-primary);
  border-radius: 4px;
  outline: none;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tp-Btn-round-filled:hover {
  background: var(--color-secondary);
}

@media (max-width: 782px) {
  .tp-Btn-round-filled {
    font-size: 14px;
  }
}

.tp-Btn-text {
  position: relative;
  color: var(--color-secondary);
  font-size: 16px;
  font-weight: normal;
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid var(--color-primary);
  padding: 0.7rem 2rem;
  border-radius: 4px;
  background: transparent;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.tp-Btn-text:hover {
  background: var(--color-lite);
  -webkit-transform: translateY(1px);
          transform: translateY(1px);
}

.ml-3 {
  margin-left: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.tpSection {
  position: relative;
  width: 100%;
  padding: 5rem 0;
}

@media (max-width: 782px) {
  .tpSection {
    padding: 2rem 0;
  }
}

.tp--parrallax-section {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.tp--parrallax-section .tp-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
}

.tp--parrallax-section .tp-card .tp--action-group {
  margin-top: 40px;
  margin-bottom: 40px;
}

@media (max-width: 782px) {
  .tp--parrallax-section {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    width: 95%;
  }
  .tp--parrallax-section .tp-card {
    padding: 40px 20px;
    padding-bottom: 40px;
    border-radius: 8px;
  }
  .tp--parrallax-section .tp-card .tp--action-group {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

.tp--bodyText {
  position: relative;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 24px;
  color: var(--bodyTextColor);
}

.tp--link {
  color: var(--color-primary);
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tp-mobile-img {
  position: relative;
  width: 280px;
  margin-left: -1px;
}

@media (max-width: 782px) {
  .tp-mobile-img {
    display: none;
  }
}

.tp-card {
  position: relative;
  background: var(--color-white);
  border-radius: 8px;
  padding: 1rem 0;
}

.tp-medium-text {
  position: relative;
  color: var(--bodyTextColor);
  line-height: 34px;
}

.tp-mobile-frame {
  position: relative;
  margin-top: -120px;
  background-color: var(--color-white);
  width: calc(100% - 36px);
  height: 470px;
  border-radius: 25px;
  border: 18px solid #ebf2fc;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(../icons/mobile.png);
  -webkit-box-shadow: -31px 3px 22px rgba(194, 216, 248, 0.16);
          box-shadow: -31px 3px 22px rgba(194, 216, 248, 0.16);
}

@media (max-width: 782px) {
  .tp-mobile-frame {
    margin-top: 20px;
    height: 500px;
  }
}

.tp--grid3 {
  position: relative;
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-gap: 20px;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.card-centrialized h4.tp--heading, .tp--heading {
  position: relative;
  margin: 0;
  color: var(--color-sectionheading);
  font-weight: normal;
}

.card-centrialized p.tp--bodyText, .tp--bodyText {
  font-weight: normal;
}

.RadarDashboardGraphic {
  --gutter:24px;
  display: -ms-grid;
  display: grid;
  grid: auto/452px 1fr;
  gap: var(--gutter);
}

@media (max-width: 782px) {
  .RadarDashboardGraphic {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.tp--footer {
  position: relative;
  width: 100%;
  padding: 0;
}

.tp--footerTop {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 3rem 0;
  border-top: 1px solid var(--border-color);
}

@media (max-width: 782px) {
  .tp--footerTop {
    margin-bottom: 40px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.tp--footerNav {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: start;
      align-self: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

@media (max-width: 782px) {
  .tp--footerNav {
    margin-left: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.tp--footerNav-group {
  position: relative;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 20%;
}

@media (max-width: 782px) {
  .tp--footerNav-group {
    width: 50%;
  }
}

.tp--footerNav-group h4.tp--heading {
  color: var(--color-dark);
  font-size: 18px;
  line-height: 22px;
  font-weight: bold;
}

.tp--footerNav-group ul {
  padding: 0;
  margin-top: 20px;
}

.tp--footerNav-group ul li {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
}

.tp--footerNav-group ul li a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 16px;
  line-height: 22px;
  font-weight: normal;
}

.tp--footerNav-group ul li a:hover {
  color: var(--color-link);
  opacity: 1;
}

.contact-sf {
  position: relative;
  margin-top: 1rem;
}

.mail0 {
  position: relative;
  font-size: 16px;
  font-weight: normal;
  color: var(--color-link);
  margin-bottom: 1rem;
  text-decoration: none;
}

.social_sd {
  position: relative;
  width: 100%;
}

.social_sd ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social_sd ul li {
  margin-right: 10px;
}

.social_sd ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.5rem;
}

.social_sd ul li a svg {
  width: 20px;
  height: 20px;
  fill: #767784;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.social_sd ul li a:hover svg {
  fill: #47495f;
}

.tp-emailGroup {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: 20px;
}

.tp-emailGroup input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  position: relative;
  height: 30px;
  border: none;
  outline: none;
  background: transparent;
  border-bottom: 1px solid var(--color-primary);
  font-size: 16px;
  font-weight: normal;
  line-height: 18px;
  color: var(--color-white);
}

.tp-emailGroup button {
  margin-left: 1px;
}

@media (max-width: 782px) {
  .tp-emailGroup {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tp-emailGroup button {
    margin-left: 0;
    margin-top: 10px;
  }
}

@media (max-width: 782px) {
  .cap_tios {
    margin-top: 20px;
    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;
  }
  .cap_tios .jsf-left {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.tp--footerBottom {
  border-top: 1px solid var(--border-color);
  width: 100%;
  position: relative;
}

.tp--footerBottomFlex {
  position: relative;
  width: 100%;
  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;
  padding: 1rem 0;
}

@media (max-width: 782px) {
  .tp--footerBottomFlex {
    width: 100%;
    margin: 0 auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .tp--footerBottomFlex p {
    margin-bottom: 10px;
    width: 100%;
  }
  .tp--footerBottomFlex p:last-child {
    margin-bottom: 0;
  }
}

.tp--footerBottomFlex .tp--bodyText {
  color: var(--color-dark);
  font-size: 14px;
}

.sdk8 {
  color: var(--bodyTextColor);
}

.tp--author {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.tp--author img {
  width: 20px;
  height: auto;
  margin-left: 10px;
}

.tp--author .authorName {
  position: absolute;
  -webkit-transform: translateY(-30%);
          transform: translateY(-30%);
  background: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 20px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  right: 100%;
  top: 50%;
  border-radius: 3px;
  height: 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100px;
  border: 1px solid var(--color-secondary);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  color: var(--color-white);
  font-size: 14px;
  background-color: var(--color-primary);
}

.tp--author:hover .authorName {
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
  visibility: visible;
}

.tp--pageTitle {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}

.tp--pageTitle::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  top: 0;
}

.tp--pageTitle h2 {
  position: relative;
  margin-bottom: 0;
  font-size: 28px;
  font-weight: 800;
  color: var(--color-sectionheading);
  line-height: 38px;
}

@media (max-width: 782px) {
  .tp--pageTitle h2 {
    font-size: 23px;
    line-height: 28px;
  }
}

.tp--pageContent {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 782px) {
  .tp--pageContent {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}

.tp--text-col {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.tp--text-col h2 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 28px;
  line-height: 42px;
  font-weight: 700;
  color: var(--color-sectionheading);
}

.tp--text-col p {
  font-weight: normal;
  font-size: 16px;
  color: #5b5b5b;
}

.tp--text-col p b {
  color: var(--color-sectionheading);
}

.tp--text-col h5 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 22px;
  font-weight: 700;
  color: var(--color-sectionheading);
}

.tp--img-col {
  position: relative;
  width: 300px;
  margin-left: 40px;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (max-width: 782px) {
  .tp--img-col {
    margin-left: 0;
    width: 90%;
    margin: auto;
    margin-bottom: 20px;
  }
}

.tp--img-col::before {
  border: 3px solid var(--color-sectionheading);
  border-radius: 20px;
  left: -30px;
  top: -30px;
  z-index: -1;
}

@media (max-width: 782px) {
  .tp--img-col::before {
    left: -20px;
    top: -20px;
  }
}

.tp--img-col::after {
  width: 80px;
  height: 60px;
  top: unset;
  left: unset;
  right: -20px;
  bottom: -20px;
  z-index: 1;
  background-image: url(../icons/dots.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}

.tp--smImg {
  position: relative;
  width: 100%;
  min-height: 200px;
  background-color: var(--color-white);
  border-radius: 20px;
}

.tp-lime {
  background: #e2fafc;
}

.tp-white {
  background: var(--color-white);
}

.body-extends .tpSection {
  padding: 60px 0;
  margin-bottom: 0;
}

@media (max-width: 782px) {
  .body-extends .tp--layoutContainer {
    width: 90%;
    margin: 0 auto;
  }
  .body-extends .tp--footer .tp--layoutContainer {
    width: 100%;
    margin: 0 auto;
  }
  .body-extends .tp--header {
    width: 100%;
  }
  .body-extends .tp--action-group {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .body-extends .tp--action-group .sGV {
    margin-left: 0;
    margin-top: 10px;
  }
}

.body-extends .tp--header-access a {
  background-color: var(--color-primary);
}

.body-extends .tp--header-navLik .hambuger span {
  background: var(--color-dark);
}

.tp-g-tmp {
  position: relative;
}

.tp-g-tmp h4 {
  color: var(--color-sectionheading);
  font-weight: normal;
  font-size: 24px;
  line-height: 28px;
  margin-bottom: 15px;
}

.tp-g-tmp h5 {
  color: var(--color-sectionheading);
  font-weight: normal;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 15px;
}

.tp-g-tmp p {
  font-weight: normal;
  font-size: 16px;
  color: var(--bodyTextColor);
  margin-bottom: 0;
}

.tp-g-tmp ul {
  position: relative;
  list-style-type: lower-roman;
  color: var(--bodyTextColor);
  padding-left: 20px;
}

.tp-g-tmp ul li {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: normal;
}

.tp-g-tmp ul li:last-child {
  margin-bottom: 0;
}

.tp-inlineUL {
  position: relative;
  list-style-type: decimal;
  color: var(--bodyTextColor);
  padding-left: 40px;
}

.tp-inlineUL li {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: normal;
}

.tp-inlineUL li:last-child {
  margin-bottom: 0;
}

.tp-inlineUL li b {
  font-weight: normal;
  color: var(--color-dark);
}

.tp-3colGrid {
  display: -ms-grid;
  display: grid;
  gap: 20px 40px;
  -ms-grid-columns: (minmax(300px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.tp-consult {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.tp-consult h4 {
  font-weight: 500;
  font-size: 37px;
  line-height: 49px;
  color: var(--color-white);
  margin-bottom: 10px;
}

.tp-consult p {
  font-weight: normal;
  font-size: 16px;
  color: var(--color-white);
}

.sectionBg {
  background-position: center center;
  background-size: cover;
  background-image: url(../img/bg.png);
}

.sectionBg::before {
  background: var(--color-sectionheading);
  opacity: 0.54;
  z-index: 0;
}

.sGV {
  color: var(--color-white);
  margin-left: 20px;
}

.sGV b {
  margin-left: 10px;
}

.tp--ul-dots {
  position: relative;
  padding-left: 20px;
  list-style-type: disc;
}

.tp--ul-dots li {
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: normal;
}

.tp--ul-dots li:last-child {
  margin-bottom: 0;
}

@media (max-width: 782px) {
  .tp--header-navLik ul li .tp--dropDown {
    width: unset;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    right: unset;
    padding: 0;
    min-width: 100%;
  }
  .tp-dropDown-gLeft {
    margin-right: 0;
    width: 100%;
  }
  .tp--header-navLik ul li .tp--ul {
    width: 100%;
  }
  .tp--heading {
    width: 100%;
  }
  .tp--mobile-Nav li .dkf {
    display: none;
  }
  .tp--text-col h2 {
    font-size: 20px;
    line-height: 29px;
  }
}

.tp--creator {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

@media (max-width: 782px) {
  .tp--creator {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

.tp--creator .tp-card {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-left: 40px;
}

@media (max-width: 782px) {
  .tp--creator .tp-card {
    margin-left: 0;
  }
}

.tp--xljs {
  position: relative;
  width: 60%;
  -ms-flex-item-align: start;
      align-self: flex-start;
}

@media (max-width: 782px) {
  .tp--xljs {
    width: 100%;
  }
}

.priceing-hero {
  position: relative;
  width: 100%;
  padding: 2em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: var(--bodyColor);
}

.pr-header {
  position: relative;
  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;
  padding: 1em 0;
}

.pr-header h2 {
  position: relative;
  margin-bottom: 0;
  font-weight: 900;
  color: var(--color-dark);
  font-size: 24px;
  margin-top: 0;
}

.pr-header p {
  font-weight: normal;
  position: relative;
  margin-bottom: 10px;
  color: var(--bodyTextColor);
  font-size: 16px;
}

.pr-header span {
  font-weight: normal;
  position: relative;
  margin-bottom: 10px;
  color: var(--color-dark);
  font-size: 12px;
  line-height: 14px;
  background: #d8e4f0;
  padding: 5px 10px;
  border-radius: 3px;
}

@media (min-width: 768px) {
  .pr-header {
    padding: 2em 0;
  }
  .pr-header h2 {
    margin-bottom: 20px;
    font-size: 42px;
  }
  .pr-header p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 14px;
    letter-spacing: 1px;
  }
  .pr-header span {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 14px;
    padding: 5px 10px;
  }
}

.pr-body {
  position: relative;
  width: 100%;
}

.pr-row {
  position: relative;
  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;
}

.pr-card {
  position: relative;
  width: 100%;
  max-width: 100%;
  border-radius: 10px;
  padding: 1em;
  background: var(--color-white);
  margin: 20px 0;
  height: auto;
  -webkit-box-shadow: 2px 0px 1px rgba(0, 0, 0, 0.02), -2px -2px 1px rgba(0, 0, 0, 0.02);
          box-shadow: 2px 0px 1px rgba(0, 0, 0, 0.02), -2px -2px 1px rgba(0, 0, 0, 0.02);
}

.pr-card p {
  font-weight: normal;
  position: relative;
  margin-bottom: 15px;
  color: var(--color-dark);
  font-size: 14px;
  line-height: 14px;
}

.pr-card h2 {
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
  color: var(--color-dark);
  font-size: 27px;
  font-weight: bold;
}

@media (min-width: 768px) {
  .pr-card {
    width: 400px;
    padding: 3em;
    margin: 20px;
    height: 300px;
  }
  .pr-card h2 {
    padding-bottom: 20px;
    font-size: 42px;
  }
  .pr-card p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 14px;
  }
}

.uiList {
  position: relative;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.uiList p {
  position: relative;
  padding: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--bodyTextColor);
  font-weight: normal;
  line-height: 20px;
  letter-spacing: normal;
  padding-left: 40px;
  padding-top: 0;
}

.uiList p::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 17px;
  border-radius: 3px;
  background: #b3e8f8;
  left: 0;
  top: 0;
  z-index: 1;
}

.uiList p::after {
  position: absolute;
  content: "";
  width: 20px;
  height: 4px;
  border-radius: 3px;
  background: var(--color-link);
  left: 0;
  top: 8px;
  z-index: 3;
}

@media (min-width: 768px) {
  .uiList p {
    font-size: 16px;
    line-height: 26px;
  }
  .uiList p::before {
    width: 20px;
    height: 17px;
    width: 30px;
    height: 20px;
  }
  .uiList p::after {
    width: 20px;
    height: 4px;
  }
}

.pricing-info {
  position: relative;
  width: 100%;
  padding: 4em 0;
  background: #d7e8f6;
}

.pr_info_crad {
  position: relative;
  width: 100%;
  -webkit-box-shadow: 2px 0px 1px rgba(0, 0, 0, 0.02), -2px -2px 1px rgba(0, 0, 0, 0.02);
          box-shadow: 2px 0px 1px rgba(0, 0, 0, 0.02), -2px -2px 1px rgba(0, 0, 0, 0.02);
  border-radius: 8px;
  background: var(--color-white);
  overflow: hidden;
}

.pr_in_header {
  position: relative;
  padding: 1.5rem 1rem;
}

.pr_in_header h4 {
  position: relative;
  font-weight: 900;
  color: var(--color-dark);
  font-size: 22px;
  margin-bottom: 10px;
  margin-top: 0;
}

.pr_in_header p {
  margin: 0;
  font-weight: normal;
  font-size: 14px;
  line-height: 18px;
}

@media (min-width: 768px) {
  .pr_in_header {
    padding: 2em 3em;
  }
  .pr_in_header h4 {
    font-size: 32px;
  }
  .pr_in_header p {
    font-size: 16px;
    line-height: 24px;
  }
}

.pr_in_maths {
  position: relative;
  padding: 1.5em 1em;
  background: var(--color-lite);
  border-top: 1px solid;
  border-color: var(--bodyColor);
}

.pr_in_maths p {
  position: relative;
  color: var(--color-dark);
  font-size: 14px;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .pr_in_maths {
    padding: 2em 3em;
  }
  .pr_in_maths p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.pr-mat-wrap {
  position: relative;
  width: 500px;
  max-width: 100%;
}

.mats_ad {
  position: relative;
  margin-bottom: 10px;
  border-radius: 4px;
  padding: 0 1em;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-dark);
  background: #d7e8f6;
  border: 2px solid;
  border-color: var(--color-link);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  cursor: copy;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.mats_ad span {
  margin-right: 4px;
}

.mats_ad input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: start;
      align-self: start;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--color-dark);
  background: transparent;
  font-weight: bold;
}

.mats_ad:hover {
  border-color: var(--color-secondary);
}

@media (min-width: 768px) {
  .mats_ad {
    font-size: 23px;
  }
  .mats_ad input {
    font-size: 23px;
  }
}

.setle-group {
  position: relative;
  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;
}

.grp-part {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 10px;
}

.grp-part h3 {
  margin-top: 5px;
  position: relative;
  font-size: 16px;
  font-weight: 900;
}

.grp-part span {
  font-size: 12px;
  color: var(--bodyTextColor);
  font-weight: 500;
}

@media (min-width: 768px) {
  .grp-part h3 {
    margin-top: 7px;
    font-size: 24px;
  }
  .grp-part span {
    font-size: 14px;
  }
}

.mnified-header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  height: 60px;
  background: rgba(255, 255, 255, 0.95);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-group {
  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;
}

.log-sdt {
  position: relative;
  width: 150px;
  z-index: 30;
}

.nav-std {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-std ul {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.nav-std ul li {
  margin-left: 1rem;
}

.nav-std ul li a {
  position: relative;
  padding: 0.7rem 1rem;
  text-decoration: none;
  color: #444444;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
  font-weight: 600;
  font-size: 16px;
}

.nav-std ul li a:hover {
  color: var(--color-link);
}

.nav-std ul li .reg {
  color: var(--color-white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav-std ul li .reg svg {
  margin-left: 0.5rem;
  fill: var(--color-white);
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .nav-std ul {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    z-index: 5;
    top: 0;
    padding-top: 60px;
    background: rgba(255, 255, 255, 0.95);
  }
  .nav-std ul li {
    margin-left: 0;
    padding: 0 1rem;
  }
  .nav-std ul li a {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
  .nav-std ul li .reg {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 14px;
    font-weight: normal;
  }
  .nav-std ul li .reg svg {
    width: 15px;
    height: 15px;
  }
}

.stage-slider {
  position: relative;
  width: 100%;
  height: auto;
  background-color: var(--color-lite);
  margin-bottom: 3rem;
}

.swiper-slide.slide-card {
  position: relative;
  width: 100%;
  height: 400px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 768px) {
  .swiper-slide.slide-card {
    height: 500px;
  }
}

.slide-wrapp {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.slide-text {
  width: 100%;
  position: relative;
  z-index: 5;
}

.slide-text h1 {
  font-weight: 900;
  color: var(--color-white);
  font-size: 1.7rem;
  line-height: 2.5rem;
}

.slide-text p {
  position: relative;
  color: var(--color-white);
  font-size: 16px;
  font-weight: normal;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .slide-text {
    width: 50%;
  }
  .slide-text h1 {
    font-size: 2.7rem;
  }
  .slide-text p {
    font-size: 18px;
  }
}

.slide-cover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: var(--bodyTextColor);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-cover::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, rgba(19, 30, 32, 0.77)), to(rgba(255, 255, 255, 0.1)));
  background: linear-gradient(to right, rgba(19, 30, 32, 0.77) 10%, rgba(255, 255, 255, 0.1) 100%);
}

.boxed {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.boxed-imag {
  position: relative;
  width: 500px;
  height: 300px;
  max-width: 100%;
  background-color: var(--color-lite);
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media (min-width: 968px) {
  .boxed-imag {
    width: 500px;
    height: 500px;
  }
}

.boxed-right {
  position: relative;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}

.boxed-right h4 {
  color: var(--color-dark);
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 1rem;
  line-height: 30px;
}

.boxed-right p {
  font-size: 16px;
  line-height: 24px;
}

@media (min-width: 968px) {
  .boxed-right {
    width: 600px;
    -webkit-box-flex: unset;
        -ms-flex: unset;
            flex: unset;
    margin-left: 4rem;
  }
  .boxed-right h4 {
    color: var(--color-dark);
    font-size: 32px;
    line-height: 40px;
  }
  .boxed-right p {
    font-size: 18px;
  }
}

.c-card {
  background: var(--bodyColor);
}

.emmo-type {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.emmo-list {
  position: relative;
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .emmo-list {
    width: 32%;
    margin-bottom: 0;
  }
}

.pf-card {
  width: 100%;
  background: var(--color-white);
  border-radius: 8px;
  -webkit-box-shadow: 2px 0px 1px rgba(0, 0, 0, 0.02), -2px -2px 1px rgba(0, 0, 0, 0.02);
          box-shadow: 2px 0px 1px rgba(0, 0, 0, 0.02), -2px -2px 1px rgba(0, 0, 0, 0.02);
  overflow: hidden;
}

.inner-d {
  position: relative;
  padding: 1rem;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.inner-d .tp--heading {
  position: relative;
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 18px;
  color: var(--color-dark);
}

.inner-d p {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .inner-d {
    padding: 2rem;
  }
  .inner-d .tp--heading {
    font-size: 22px;
  }
}

.emmo-hd {
  position: relative;
  font-size: 34px;
  color: var(--color-dark);
  font-weight: bold;
}

.emmo-mg {
  position: relative;
  width: 100%;
  height: 170px;
  background-color: var(--color-lite);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.dropdown-menu {
  position: absolute;
  background: var(--color-white);
  top: 0;
  left: 0;
  position: absolute;
  top: 100%;
  left: -5px;
  padding: 1rem;
  min-width: 150px;
  z-index: 120;
  border: solid 1px rgba(0, 0, 0, 0.04);
  -webkit-box-shadow: 0 8px 16px 0 rgba(3, 49, 86, 0.08);
          box-shadow: 0 8px 16px 0 rgba(3, 49, 86, 0.08);
  border-radius: 6px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: translateY(15px);
          transform: translateY(15px);
}

.dropdown-menu ul {
  position: relative;
  width: 100%;
  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: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.dropdown-menu ul li {
  position: relative;
  display: block;
  width: 100%;
}

.dropdown-menu ul li a {
  display: block;
  width: 100%;
  text-align: left;
  padding-left: 0;
}

@media (max-width: 768px) {
  .dropdown-menu ul {
    padding: 0 !important;
  }
}

.dropdown {
  position: relative;
  padding-top: 0;
}

.dropdown a {
  padding-right: 0 !important;
}

.dropdown::after {
  content: "";
  display: inline-block;
  margin-left: .255em;
  vertical-align: .255em;
  border-top: 0.3em solid var(--color-dark);
  border-right: .3em solid transparent;
  border-bottom: 0;
  border-left: .3em solid transparent;
}

@media (max-width: 768px) {
  .dropdown::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: inherit;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}

@media (max-width: 768px) {
  .dropdown:hover .dropdown-menu {
    width: 80%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.dropdown:hover::after {
  border-top-color: var(--color-link);
}

.dropdown:hover > a {
  color: var(--color-link);
}

.header-menu {
  display: block;
  position: relative;
  z-index: 25;
}

.header-menu .menu {
  background-color: transparent;
  border: none;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  outline: none;
}

.header-menu .menu svg {
  width: 30px;
  height: 30px;
}

.header-menu .menu .line {
  fill: none;
  stroke: black;
  stroke-width: 6;
  -webkit-transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

.header-menu .menu .line1 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.header-menu .menu .line2 {
  stroke-dasharray: 60 60;
  stroke-width: 6;
}

.header-menu .menu .line3 {
  stroke-dasharray: 60 207;
  stroke-width: 6;
}

.header-menu .opened .line1 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

.header-menu .opened .line2 {
  stroke-dasharray: 1 60;
  stroke-dashoffset: -30;
  stroke-width: 6;
}

.header-menu .opened .line3 {
  stroke-dasharray: 90 207;
  stroke-dashoffset: -134;
  stroke-width: 6;
}

@media (min-width: 768px) {
  .header-menu {
    display: none;
  }
}

@media (max-width: 768px) {
  .sm-nav {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .sn-show .sm-nav {
    display: block !important;
  }
}
/*# sourceMappingURL=ios-telepay-theme.css.map */