﻿/*****************************************
Table Of Contents:

01. General Styles
02. Preloader
03. Navigation
04. Header
05. Merchant
06. Supplier
07. Details 1
08.why
09. Details Lightboxes
10. Pricing
11. Request
12. Video
13. Testimonials
14. About
15. Contact
16. Footer
17. Copyright
18. Back To Top Button
19. Extra Pages
20. Media Queries
******************************************/
/*****************************************
Colors:
- main color - purple  #3D005E  
- Backgrounds - blue #0079f9
- Backgrounds - light gray #f7fcfd
- Buttons, bullets, icons, links - turquoise #00bfd8
- Cards border, inputs border - light gray #c4d8dc
- Text headers, navbar links - black #162447
- Text body - black #5B657E
******************************************/
/* Form Success And Error Message Animation - Animate.css */
@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
/* Fade Animation For Image Slider - Magnific Popup */
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation: fadeIn 0.6s;
  animation: fadeIn 0.6s;
}

@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation: fadeOut 0.8s;
  animation: fadeOut 0.8s;
}

/* end of fade animation for image slider - magnific popup */
.btn-solid-reg:hover {
  background-color: transparent;
  color: rgb(61, 0, 94) !important;
  text-decoration: none;
}

.btn-solid-lg {
  display: inline-block;
  padding: 1.375rem 2.625rem 1.375rem 2.625rem;
  border: 0.125rem solid white !important;
  border-radius: 2rem;
  background-color: transparent;
  color: #fff !important;
  font: 700 0.75rem/0 "Raleway", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-solid-lg:hover {
  background-color: white !important;
  color: rgb(61, 0, 94) !important;
  text-decoration: none !important;
  outline: 6px double rgb(103, 88, 111) !important;
  transition: all 0.35s ease-in-out !important;
}

.btn-outline-reg:hover {
  background-color: rgb(61, 0, 94);
  color: #fff;
  text-decoration: none;
}

.btn-outline-lg {
  display: inline-block;
  padding: 1.375rem 2.625rem 1.375rem 2.625rem;
  border: 0.125rem solid rgb(61, 0, 94);
  border-radius: 2rem;
  background-color: transparent;
  color: rgb(61, 0, 94);
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-lg:hover {
  background-color: rgb(61, 0, 94);
  color: #fff;
  text-decoration: none;
}

.btn-outline-sm {
  display: inline-block;
  padding: 1rem 1.625rem 0.875rem 1.625rem;
  border: 0.125rem solid rgb(61, 0, 94);
  border-radius: 2rem;
  background-color: transparent;
  color: rgb(61, 0, 94);
  font: 700 0.625rem/0 "Inter", sans-serif;
  text-decoration: none;
  transition: all 0.2s;
}
.btn-outline-sm:hover {
  background-color: rgb(61, 0, 94);
  color: #fff;
  text-decoration: none;
}

.btn {
  margin-left: 8px !important;
  position: inherit !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin-bottom: 5px;
}

.btn-primary {
  background-color: #3d005e !important;
  border-color: #3d005e !important;
  color: #fff !important;
}
.btn-primary:hover {
  background-color: rgba(61, 0, 94, 0.5) !important;
  color: #3d005e !important;
}

.bg-dark {
  background-color: rgb(61, 0, 94) !important;
}

.text-dark {
  color: #222 !important;
}

.text-primary {
  color: rgb(61, 0, 94) !important;
}

.bg-light-purpel {
  background-color: #f4f4f4 !important;
}

.text-light-purpel, .bg-light {
  color: #f4f4f4 !important;
}

.bg-primary {
  background-color: rgb(61, 0, 94) !important;
}

.bg-light {
  background-color: rgba(61, 0, 94, 0.05) !important;
}

.border-dotted {
  border: 5px dotted rgba(61, 0, 94, 0.05) !important;
}

.border-dashed {
  border: 5px dashed rgba(61, 0, 94, 0.05) !important;
}

.text-primary {
  color: rgb(61, 0, 94) !important;
}

.text-light2 {
  color: #666 !important;
  font-size: 10px !important;
}

.text-dark2 {
  color: #000 !important;
  font-size: 14px !important;
}

.btn-outline-sm {
  border-radius: 50px;
  color: rgb(61, 0, 94) !important;
  border-color: rgb(61, 0, 94) !important;
  border: 1px solid;
}

.btn-primary {
  background-color: rgb(61, 0, 94) !important;
  border-color: rgb(61, 0, 94) !important;
  color: white !important;
}
.btn-primary:hover {
  background-color: rgba(61, 0, 94, 0.5) !important;
  color: rgb(61, 0, 94) !important;
}

.btn-light-theme {
  background-color: rgba(61, 0, 94, 0.2);
  color: rgb(61, 0, 94);
  border-radius: 4px;
  font-size: 14px;
}

i.true-icon {
  color: rgb(61, 0, 94) !important;
}

.card-outline {
  border-top: 3px solid rgb(61, 0, 94) !important;
}

.btn-info {
  background-color: rgb(61, 0, 94) !important;
  border-color: rgb(61, 0, 94) !important;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: rgb(61, 0, 94) !important;
  background-color: transparent !important;
  border-color: transparent transparent #f3f3f3 !important;
  border-bottom: 3px solid !important;
  font-size: 16px !important;
  font-weight: bold !important;
}

.project-tab .nav-link {
  border: 1px solid transparent !important;
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important;
  color: rgb(61, 0, 94) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.project-tab .nav-link:hover {
  border: none !important;
}

.project-tab thead {
  background: #f3f3f3 !important;
  color: #333 !important;
}

.project-tab a {
  text-decoration: none !important;
  color: #333 !important;
  font-weight: 600 !important;
}

.insider-tabs {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 32px !important;
}
.insider-tabs .nav-item {
  flex-basis: 233px !important;
  flex-grow: initial;
  text-align: left;
}

.pt-120 {
  padding-top: 120px;
}

.mb-60 {
  margin-bottom: 60px;
}

.main-btn.border-btn {
  border: 2px solid rgb(61, 0, 94);
  background: 0 0;
  color: rgb(61, 0, 94);
}

.main-btn:hover {
  background-color: rgb(61, 0, 94) !important;
  color: white !important;
  text-decoration: none;
  outline: 6px double rgb(55, 44, 61) !important;
  transition: all 0.35s ease-in-out;
}

a, a:focus, a:hover {
  text-decoration: none;
}

a:hover {
  color: rgb(61, 0, 94);
}

a:hover {
  color: #0a58ca;
}

.btn-hover {
  position: relative;
  overflow: hidden;
}

.main-btn {
  display: inline-block;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding: 18px 38px;
  font-size: 18px;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  z-index: 5;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border: none;
  background: rgb(61, 0, 94);
  overflow: hidden;
}

div[data-toggle=collapse] {
  width: 100%;
  cursor: pointer;
}

.collapse.uploadarea {
  margin-top: 23px;
  background: white;
  padding: 16px;
  width: 100% !important;
  min-height: 123px !important;
  border-radius: 6px !important;
  border: 2px dashed rgba(61, 0, 94, 0.4) !important;
}

a, .no_underline {
  text-decoration: none;
}

.form-group {
  position: relative;
  margin-bottom: 1.25rem;
}

.form-group.has-error.has-danger {
  margin-bottom: 0.625rem;
}

.form-group.has-error.has-danger .help-block.with-errors ul {
  margin-top: 0.375rem;
}

.label-control {
  position: absolute;
  top: 0.87rem;
  left: 1.375rem;
  color: #626262;
  opacity: 1;
  font: 400 0.875rem/1.375rem "Raleway", sans-serif;
  cursor: text;
  transition: all 0.2s ease;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .label-control {
    top: 0.9375rem;
  }
}
.form-control-input:focus + .label-control,
.form-control-input.notEmpty + .label-control,
.form-control-textarea:focus + .label-control,
.form-control-textarea.notEmpty + .label-control {
  top: 0.125rem;
  opacity: 1;
  font-size: 0.75rem;
  font-weight: 700;
}

.form-control-input,
.form-control-select {
  display: block; /* needed for proper display of the label in Firefox, IE, Edge */
  width: 100%;
  padding-top: 1.0625rem;
  padding-bottom: 0.0625rem;
  padding-left: 1.3125rem;
  border: 1px solid #c4d8dc;
  border-radius: 0.25rem;
  background-color: #fff;
  color: #626262;
  font: 400 0.875rem/1.875rem "Raleway", sans-serif;
  transition: all 0.2s;
  /*  -webkit-appearance: none;  removes inner shadow on form inputs on ios safari */
}

.form-control-select {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  height: 3rem;
}

/* IE10+ hack to solve lower label text position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  .form-control-input {
    padding-top: 1.25rem;
    padding-bottom: 0.75rem;
    line-height: 1.75rem;
  }
  .form-control-select {
    padding-top: 0.875rem;
    padding-bottom: 0.75rem;
    height: 3.125rem;
    line-height: 2.125rem;
  }
}
select {
  /* you should keep these first rules in place to maintain cross-browser behavior */
  background-position: 96% 50%;
  background-repeat: no-repeat;
  outline: none;
}

select::-ms-expand {
  display: none; /* removes the ugly default down arrow on select form field in IE11 */
}

.form-control-textarea {
  display: block; /* used to eliminate a bottom gap difference between Chrome and IE/FF */
  width: 100%;
  height: 8rem; /* used instead of html rows to normalize height between Chrome and IE/FF */
  padding-top: 1.25rem;
  padding-left: 1.3125rem;
  border: 1px solid #c4d8dc;
  border-radius: 0.25rem;
  background-color: #fff;
  color: #626262;
  font: 400 0.875rem/1.75rem "Raleway", sans-serif;
  transition: all 0.2s;
}

.form-control-input:focus,
.form-control-select:focus,
.form-control-textarea:focus {
  border: 1px solid #a1a1a1;
  outline: none; /* Removes blue border on focus */
}

.form-control-input:hover,
.form-control-select:hover,
.form-control-textarea:hover {
  border: 1px solid #a1a1a1;
}

.checkbox {
  font: 400 0.75rem/1.25rem "Raleway", sans-serif;
}

input[type=checkbox] {
  vertical-align: -15%;
  margin-right: 0.375rem;
}

/* IE10+ hack to raise checkbox field position compared to the rest of the browsers */
@media screen and (-ms-high-contrast: active), screen and (-ms-high-contrast: none) {
  input[type=checkbox] {
    vertical-align: -9%;
  }
}
.form-control-submit-button {
  display: inline-block;
  width: 100%;
  height: 3.125rem;
  border: 1px solid rgb(61, 0, 94);
  border-radius: 1.5rem;
  background-color: rgb(61, 0, 94);
  color: #fff;
  font: 700 0.75rem/1.75rem "Raleway", sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}

.form-control-submit-button:hover {
  background-color: transparent;
  color: rgb(61, 0, 94);
}

/* Form Success And Error Message Formatting */
#rmsgSubmit.h3.text-center.tada.animated,
#cmsgSubmit.h3.text-center.tada.animated,
#pmsgSubmit.h3.text-center.tada.animated,
#rmsgSubmit.h3.text-center,
#cmsgSubmit.h3.text-center,
#pmsgSubmit.h3.text-center {
  display: block;
  margin-bottom: 0;
  color: #626262;
  font: 400 1.125rem/1rem "Raleway", sans-serif;
}

.help-block.with-errors .list-unstyled {
  color: #626262;
  font-size: 0.75rem;
  line-height: 1.125rem;
  text-align: left;
}

.help-block.with-errors ul {
  margin-bottom: 0;
}

/* end of form success and error message formatting */
.tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/* end of form success and error message animation - Animate.css */
.theme_btn {
  border-radius: 9px !important;
  padding: 8px 0 !important;
  max-width: 400px !important;
  font-weight: 600;
  background: rgb(61, 0, 94) !important;
}
.theme_btn:hover {
  background-color: #b27aff !important;
}

a.bg-primary:hover,
a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #b27aff !important;
}

.form-group {
  margin-bottom: 32px !important;
}

.reg_form {
  position: relative;
  /*max-height: 85vh;
  overflow-y: scroll;
  top: 36px;*/
}

.theme_form::before {
  content: ".";
  font-size: 0;
  background-image: url("../assets/img/seperate.png");
  background-repeat: no-repeat;
  background-position: center center;
  width: 4px;
  height: 371px;
  /* position: absolute; */
  left: 100%;
  top: 52px;
  max-height: 60vh;
}
.theme_form.select_persona {
  max-width: 400px !important;
}
.theme_form .form-group {
  max-width: 400px !important;
}

.form-group input.form-control {
  border: none;
  border-radius: 0;
  max-width: 400px !important;
  height: 48px;
  border-bottom: 2px solid #8D8D8D !important;
  background: #f4f4f4 !important;
  display: flex;
  padding: 15px 16px !important;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  font-size: 14px !important;
}

.input-group input:focus {
  z-index: 0 !important;
}
.input-group .input-group-append {
  margin-left: -43px;
  position: relative;
  border: none !important;
  background-color: transparent;
}
.input-group .input-group-append .input-group-text {
  cursor: pointer;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #6c7784;
  text-align: center;
  white-space: nowrap;
  background-color: #f4f4f4;
  border-bottom: 2px solid #8d8d8d;
  border-radius: 0;
}

.regi_card {
  border-radius: 9px;
  padding: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer !important;
  border: 1px solid #c3c1c4;
}
.regi_card.highlight {
  background-color: rgba(61, 0, 94, 0.1);
  border: 1px solid rgb(61, 0, 94);
}
.regi_card .card-body {
  padding: 16px !important;
  padding-bottom: 0 !important;
}
.regi_card img.card-img-top {
  width: 50px !important;
  height: auto !important;
  cursor: pointer !important;
}

.message-error, .field-validation-error, .username-not-available-status, .poll-vote-error, .password-error {
  text-align: left !important;
}

button.regi_btn:not(:disabled) {
  border-radius: 9px !important;
  padding: 12px 0 !important;
  max-width: 400px !important;
  height: 55px;
  background: rgb(61, 0, 94) !important;
}

[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  background: rgb(61, 0, 94) !important;
}

.btn-outline-primary {
  color: rgb(61, 0, 94) !important;
  border-color: rgb(61, 0, 94) !important;
}

.btn-primary {
  background: rgb(61, 0, 94) !important;
  border: rgb(61, 0, 94) !important;
}

select.form-control, .form-control {
  border: none;
  border-radius: 0;
  max-width: 400px !important;
  height: 48px;
  border-bottom: 2px solid #8D8D8D !important;
  background: #f4f4f4 !important;
  display: flex;
  padding: 15px 16px !important;
  align-items: flex-start;
  gap: 16px;
  align-self: stretch;
  font-size: 14px !important;
}

.output {
  width: 50px;
  color: #EC8500;
  font-weight: 600;
  text-align: center;
  margin: -20px auto 30px auto;
}

div:focus {
  outline: none;
}

.ui-loader {
  display: none;
}

/* Plugin CSS */
.preview3.container {
  height: 5px;
  margin: 0 auto 60px auto;
  background-color: #DADADA;
}

.dragger {
  width: 40px;
  height: 40px;
  color: #FFF;
  font-weight: 600;
  line-height: 40px;
  background-color: #333;
  border-radius: 25px;
}

.dragging {
  background-color: #FFC168;
  box-shadow: inset 0px 0px 20px #222;
}

.progress {
  width: 0px;
  background-color: #222;
}

/******************************/
/*     01. General Styles     */
/******************************/
body,
html {
  width: 100%;
  height: 100%;
}

body,
p {
  font-family: "Inter" !important;
  color: #626262 !important;
  font: 400 0.875rem/1.375rem "Arimo", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Arimo" !important;
  font-weight: 700;
  margin: 0;
  color: #321647;
}

.p-large {
  font: 400 1rem/1.5rem "Arimo", sans-serif !important;
}

.p-small {
  font: 400 0.75rem/1.25rem "Arimo", sans-serif !important;
}

.p-heading {
  margin-bottom: 3.875rem;
}

.li-space-lg li {
  margin-bottom: 0.25rem;
}

.indent {
  padding-left: 1.25rem;
}

h1 {
  color: #162447 !important;
  font: 700 3rem/3.5rem "Arimo", sans-serif !important;
}

h1.register {
  font-size: 24px !important;
  margin-bottom: 24px !important;
}
h1.register p {
  font-size: 16px !important;
}

h2 {
  color: #162447;
  font: 700 2.25rem/2.75rem "Arimo", sans-serif;
}

h3 {
  color: #162447;
  font: 700 1.75rem/2rem "Arimo", sans-serif;
}

h4 {
  color: #162447;
  font: 700 1.375rem/1.875rem "Arimo", sans-serif;
}

h5 {
  color: #162447;
  font: 700 1.125rem/1.625rem "Arimo", sans-serif;
}

h6 {
  color: #162447;
  font: 700 1rem/1.5rem "Arimo", sans-serif;
}

a {
  color: rgb(61, 0, 94);
}

a:hover {
  color: rgba(61, 0, 94, 0.5);
}

a.turquoise {
  color: rgb(61, 0, 94);
}

a.white {
  color: #fff;
}

.testimonial-text {
  font: italic 400 1rem/1.5rem "Arimo", sans-serif;
}

.testimonial-author {
  font: 700 1rem/1.5rem "Arimo", sans-serif;
}

.turquoise {
  color: rgb(61, 0, 94);
}

/* Fade-move Animation For Lightbox - Magnific Popup */
/* at start */
.my-mfp-slide-bottom .zoom-anim-dialog {
  opacity: 0;
  transition: all 0.2s ease-out;
  -webkit-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  -ms-transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
  transform: translateY(-1.25rem) perspective(37.5rem) rotateX(10deg);
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready .zoom-anim-dialog {
  opacity: 1;
  -webkit-transform: translateY(0) perspective(37.5rem) rotateX(0);
  -ms-transform: translateY(0) perspective(37.5rem) rotateX(0);
  transform: translateY(0) perspective(37.5rem) rotateX(0);
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing .zoom-anim-dialog {
  opacity: 0;
  -webkit-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
  -ms-transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
  transform: translateY(-0.625rem) perspective(37.5rem) rotateX(10deg);
}

/* dark overlay, start state */
.my-mfp-slide-bottom.mfp-bg {
  opacity: 0;
  transition: opacity 0.2s ease-out;
}

/* animate in */
.my-mfp-slide-bottom.mfp-ready.mfp-bg {
  opacity: 0.8;
}

/* animate out */
.my-mfp-slide-bottom.mfp-removing.mfp-bg {
  opacity: 0;
}

/* end of fade-move animation for lightbox - magnific popup */
/*************************/
/*     02. Preloader     */
/*************************/
.spinner-wrapper {
  position: fixed;
  z-index: 999999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #fff;
}

.spinner {
  position: absolute;
  top: 50%;
  /* centers the loading animation vertically one the screen */
  left: 50%;
  /* centers the loading animation horizontally one the screen */
  width: 3.75rem;
  height: 1.25rem;
  margin: -0.625rem 0 0 -1.875rem;
  /* is width and height divided by two */
  text-align: center;
}

.spinner > div {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  background-color: rgb(61, 0, 94);
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
/**************************/
/*     03. Navigation     */
/**************************/
.navbar-custom {
  box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
  font: 600 0.875rem/0.875rem "Arimo", sans-serif;
  transition: all 0.2s;
  box-shadow: none !important;
}

.navbar-custom .navbar-brand.logo-image img {
  width: 7.4375rem;
  height: 2rem;
}

.navbar-custom .navbar-brand.logo-text {
  font: 600 2rem/1.5rem "Arimo", sans-serif;
  color: #162447;
  text-decoration: none;
}

.navbar-custom .navbar-nav {
  margin-top: 0.75rem;
  margin-bottom: 0.5rem;
}

.navbar-custom .nav-item .nav-link {
  padding: 0.625rem 0.75rem 0.625rem 0.75rem;
  color: white !important;
  opacity: 1 !important;
  text-decoration: none;
  transition: all 0.2s ease;
}

.navbar-custom .nav-item .nav-link:hover,
.navbar-custom .nav-item .nav-link.active {
  color: rgb(61, 0, 94);
}

/* Dropdown Menu */
.navbar-custom .dropdown:hover > .dropdown-menu {
  display: block;
  /* this makes the dropdown menu stay open while hovering it */
  min-width: auto;
  animation: fadeDropdown 0.2s;
  /* required for the fade animation */
}

@keyframes fadeDropdown {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.navbar-custom .dropdown-toggle:focus {
  outline: 0;
}
.navbar-custom .dropdown-menu {
  margin-top: 0;
  border: none;
  border-radius: 0.25rem;
  background-color: #fff;
}
.navbar-custom .dropdown-item {
  color: #162447;
  text-decoration: none;
}
.navbar-custom .dropdown-item:hover {
  background-color: #fff;
}
.navbar-custom .dropdown-item:hover .item-text {
  color: rgb(61, 0, 94);
}
.navbar-custom .dropdown-item .item-text {
  font: 600 0.875rem/0.875rem "Arimo", sans-serif;
}
.navbar-custom .dropdown-items-divide-hr {
  width: 100%;
  height: 1px;
  margin: 0.75rem auto 0.725rem auto;
  border: none;
  background-color: #c4d8dc;
  opacity: 0.2;
}
.navbar-custom .social-icons {
  display: none;
}
.navbar-custom .navbar-toggler {
  border: none;
  color: #162447;
  font-size: 2rem;
}
.navbar-custom button[aria-expanded=false] .navbar-toggler-awesome.fas.fa-times {
  display: none;
}
.navbar-custom button[aria-expanded=false] .navbar-toggler-awesome.fas.fa-bars {
  display: inline-block;
}
.navbar-custom button[aria-expanded=true] .navbar-toggler-awesome.fas.fa-bars {
  display: none;
}
.navbar-custom button[aria-expanded=true] .navbar-toggler-awesome.fas.fa-times {
  display: inline-block;
  margin-right: 0.125rem;
}

/*********************/
/*    04. Header     */
/*********************/
/* Header */
.header {
  background: url(../assets/img/hero-bg.png) center center no-repeat;
  background-size: 94vw auto;
  background-position: center top;
  height: 100vh;
  min-height: 646px !important;
}

.header .header-content {
  padding-top: 11.5rem;
  text-align: left;
}

.header .text-container {
  margin-bottom: 0;
}

.header h1 {
  margin-bottom: 1.125rem;
  font-size: 2.5rem;
  line-height: 3.125rem;
}

.header .p-large {
  margin-bottom: 1.875rem;
}

.left-section {
  width: 100%;
}
.left-section img {
  width: 99%;
  max-width: 656px;
  padding: 75px 0;
}

.right-section img {
  width: 99%;
  max-width: 656px;
  position: relative;
  padding: 75px 0;
}

.about-p {
  color: #5B657E;
  font-size: 18px;
  font-style: normal;
  font-weight: 400 !important;
  line-height: 28px;
  /* 155.556% */
}

.about-content ul li {
  padding-left: 40px !important;
  font-size: 18px !important;
  color: rgb(61, 0, 94) !important;
  font-style: normal !important;
  font-weight: 400 !important;
  position: relative !important;
  line-height: 30px;
}
.about-content ul li strong {
  font-weight: 700 !important;
}

.about-content ul li::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgb(61, 0, 94) !important;
  position: absolute;
  left: 0;
  top: 6.5px;
  -webkit-box-shadow: 0px 14px 15px rgba(78, 110, 241, 0.26);
  box-shadow: 0px 14px 15px rgba(78, 110, 241, 0.26);
}

.testmonial-btns {
  /* border: 2px solid red; */
  position: absolute;
  width: 100px;
  /* float: right; */
  right: 0;
  margin-top: 42px;
  margin-right: 52px;
}

.testmonial {
  width: 100%;
  display: flex;
  height: 40rem;
  background: url(../assets/img/about-left.png) center center no-repeat;
  background-size: auto 90%;
  background-position: left top;
  background-repeat: no-repeat;
  align-content: flex-start;
  align-items: center;
  justify-content: space-around;
}
.testmonial::after {
  content: "8888";
  position: absolute;
  width: 66%;
  height: 173px;
  font-size: 0;
  top: 61%;
  z-index: 0;
  left: 17%;
  background: url("../assets/img/left-dots.svg.png") center center no-repeat;
}

/* Testimonials */
.slider-2 .slider-container {
  width: 70%;
  margin-right: auto;
  margin-left: auto;
}

.slider-2 .swiper-container {
  width: 85%;
}

.slider-2 .swiper-button {
  border: 2px solid rgb(61, 0, 94) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  background-size: 20px 20px !important;
}
.slider-2 .swiper-button .swiper-button-prev {
  left: 1rem;
}
.slider-2 .swiper-button.swiper-button-next {
  right: 1rem;
}

.section-about .about-details {
  margin-top: -40px;
}
.section-about .about-details h1 {
  color: #3D005E !important;
  font-family: Inter !important;
  font-size: 30px !important;
  font-style: normal !important;
  font-weight: 600 !important;
  line-height: 18.13px !important;
  margin-bottom: 44px;
}
.section-about .about-details h2 {
  color: #162447 !important;
  font-family: Inter !important;
  font-size: 30px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 36px !important;
  margin-bottom: 27px;
}

.contact-section .container .row {
  margin-top: 132px !important;
}
.contact-section .contact-form {
  background-image: url("../assets/img/contact-bg.png");
  background-repeat: no-repeat;
}
.contact-section form {
  max-width: 531px;
  background-color: white;
  padding: 18px 24px;
  position: relative;
  top: -53px;
}
.contact-section form input.contact-input,
.contact-section form textarea {
  border-radius: 18px;
  border: 1.2px solid #CBD6E2;
  background: white !important;
  border-bottom: 1.2px solid #CBD6E2 !important;
  max-width: 573px !important;
}
.contact-section .conatct-details {
  margin-bottom: 48px;
}
.contact-section .conatct-details title {
  font-family: Inter;
  font-size: 27px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  line-height: 40px !important;
  margin-bottom: 20px !important;
}
.contact-section .conatct-details ul {
  display: flex;
  max-width: 385.358px;
  flex-direction: column;
  align-items: flex-start;
  gap: 9.067px;
}
.contact-section .conatct-details ul li {
  font-family: Inter !important;
  font-size: 18px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 27px !important;
}
.contact-section .conatct-details ul li i {
  color: #A799FF !important;
}

.card.widget {
  border-radius: 10px;
  border: 1px solid #f4f4f4;
  max-height: 200px;
}
.card.widget .card-body {
  padding: 24px !important;
  padding-bottom: 0 !important;
}

p.left-card-title {
  margin-top: -23px !important;
  margin-left: -24px !important;
  margin-bottom: 16px !important;
}

.txt-light {
  color: #BEA7FF;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 27px;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
/*****************************/
/*     20. Media Queries     */
/*****************************/
/* Min-width width 768px */
@media (min-width: 768px) {
  /* General Styles */
  .p-heading {
    width: 85%;
    margin-right: auto;
    margin-left: auto;
  }
  /* end of general styles */
  /* Header */
  .header .header-content {
    padding-top: 10.5rem;
  }
  .header h1 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
  /* end of header */
  /* Customers */
  .slider-1 {
    padding-top: 3rem;
    padding-bottom: 2.875rem;
  }
  .slider-1 .slider-container {
    padding-right: 3.5rem;
    padding-left: 3.5rem;
  }
  /* end of customers */
  /* Video */
  .basic-3 p {
    width: 85%;
    margin-right: auto;
    margin-left: auto;
  }
  /* end of video */
  /* end of testimonials */
  /* About */
  .basic-4 .team-member {
    display: inline-block;
    width: 12.5rem;
    margin-right: 2rem;
    margin-left: 2rem;
    vertical-align: top;
  }
  /* end of about */
  /* Contact */
  .form-2 .list-unstyled li {
    display: inline-block;
    margin-right: 0.5rem;
    margin-left: 0.5rem;
  }
  .form-2 .list-unstyled .address {
    display: block;
  }
  /* end of contact */
  /* Extra Pages */
  .ex-header {
    padding-top: 11rem;
    padding-bottom: 9rem;
  }
  .ex-basic-2 .text-container.dark {
    padding: 2.5rem 3rem 2rem 3rem;
  }
  .ex-basic-2 .text-container.column {
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  /* end of extra pages */
}
/* end of min-width width 768px */
/* Min-width width 992px */
@media (min-width: 992px) {
  /* Navigation */
  .navbar-custom {
    padding: 2.125rem 1.5rem 2.125rem 2rem;
    box-shadow: none;
    background: transparent;
  }
  .navbar-custom .navbar-nav {
    margin-top: 0;
    margin-bottom: 0;
  }
  .navbar-custom .nav-item .nav-link {
    padding: 0.25rem 0.75rem 0.25rem 0.75rem;
    color: #fff;
    opacity: 0.8;
  }
  li.nav-item {
    margin: 0 4px;
  }
  .navbar-custom .nav-item .nav-link:hover,
  .navbar-custom .nav-item .nav-link.active {
    color: #fff;
    opacity: 1;
    box-shadow: 0px 4px 0px 0px orange;
  }
  .navbar-custom.top-nav-collapse {
    padding: 0.5rem 1.5rem 0.5rem 2rem;
    box-shadow: 0 0.0625rem 0.375rem 0 rgba(0, 0, 0, 0.1);
    background-color: #3d005e;
  }
  .navbar-custom.top-nav-collapse .nav-item .nav-link {
    color: white;
    opacity: 1;
  }
  .navbar-custom.top-nav-collapse .nav-item .nav-link:hover,
  .navbar-custom.top-nav-collapse .nav-item .nav-link.active {
    color: #fff;
  }
  .navbar-custom .dropdown-menu {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 0.75rem solid rgba(0, 0, 0, 0);
    border-radius: 0.25rem;
  }
  .navbar-custom.top-nav-collapse .dropdown-menu {
    border-top: 0.5rem solid rgba(0, 0, 0, 0);
    box-shadow: 0 0.375rem 0.375rem 0 rgba(0, 0, 0, 0.02);
  }
  .navbar-custom .dropdown-item {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }
  .navbar-custom .dropdown-items-divide-hr {
    width: 84%;
  }
  .navbar-custom .social-icons {
    display: block;
    margin-left: 0.5rem;
  }
  .navbar-custom .fa-stack {
    margin-bottom: 0.1875rem;
    margin-left: 0.25rem;
    font-size: 0.75rem;
  }
  .navbar-custom .fa-stack-2x {
    color: #fff;
    transition: all 0.2s ease;
  }
  .navbar-custom .fa-stack-1x {
    color: #fff;
    transition: all 0.2s ease;
  }
  .navbar-custom .fa-stack:hover .fa-stack-2x {
    color: #fff;
  }
  .navbar-custom .fa-stack:hover .fa-stack-1x {
    color: #fff;
  }
  .navbar-custom.top-nav-collapse .fa-stack-2x {
    color: #fff;
  }
  .navbar-custom.top-nav-collapse .fa-stack-1x {
    color: #fff;
  }
  .navbar-custom.top-nav-collapse .fa-stack:hover .fa-stack-2x {
    color: #00a7bd;
  }
  .navbar-custom.top-nav-collapse .fa-stack:hover .fa-stack-1x {
    color: #fff;
  }
  /* end of navigation */
  /* General Styles */
  .p-heading {
    width: 65%;
  }
  /* end of general styles */
  /* end of header */
  /* Services */
  .cards-1 .card {
    display: inline-block;
    max-width: 17.125rem;
    vertical-align: top;
  }
  .cards-1 .col-lg-12 div.card:nth-child(3n+2) {
    margin-right: 2rem;
    margin-left: 2rem;
  }
  /* end of services */
  /* Details 1 */
  .basic-1 .text-container {
    margin-top: 3.875rem;
    margin-bottom: 0;
  }
  /* end of details 1 */
  /* Details 2 */
  .basic-2 .image-container {
    margin-bottom: 0;
  }
  .basic-2 .text-container {
    margin-top: 3.125rem;
  }
  /* end of details 2 */
  /* Details Lightboxes */
  .lightbox-basic {
    max-width: 62.5rem;
    padding: 2.5rem 2.5rem 2.5rem 2.5rem;
  }
  .lightbox-basic .image-container {
    max-width: 100%;
    margin-right: 2rem;
    margin-bottom: 0;
    margin-left: 0.5rem;
  }
  .lightbox-basic h3 {
    margin-top: 0.5rem;
  }
  /* end of details lightboxes */
  /* Pricing */
  .cards-2 .card {
    display: inline-block;
    width: 17.125rem;
    max-width: 100%;
    margin-right: 1rem;
    margin-left: 1rem;
  }
  /* end of pricing */
  /* Request */
  .form-1 {
    padding-top: 7.5rem;
  }
  .form-1 .text-container {
    margin-top: 1.5rem;
    margin-bottom: 0;
  }
  /* end of request */
  /* Video */
  .basic-3 .image-container {
    max-width: 53.125rem;
    margin-right: auto;
    margin-left: auto;
  }
  .basic-3 p {
    width: 65%;
  }
  /* end of video */
  /* Testimonials */
  .slider-2 {
    padding-bottom: 7.5rem;
  }
  .slider-2 .image-container {
    margin-bottom: 0;
  }
  .slider-2 .slider-container {
    width: 88%;
  }
  .slider-2 .swiper-container {
    width: 82%;
  }
  /* end of testimonials */
  /* Contact */
  .form-2 .map-responsive {
    margin-bottom: 0;
  }
  /* end of contact */
  /* Extra Pages */
  .ex-header {
    background: url("../images/ex-header-background.jpg") center center no-repeat;
    background-size: cover;
  }
  .ex-header h1 {
    width: 80%;
    margin-right: auto;
    margin-left: auto;
  }
  .ex-basic-2 {
    padding-bottom: 5rem;
  }
  .ex-basic-2 .text-container.column {
    margin-bottom: 0;
  }
  /* end of extra pages */
}
/* end of min-width width 992px */
/* Min-width width 1200px */
@media (min-width: 1200px) {
  /* Navigation */
  .navbar-custom {
    padding: 2rem 10rem 2rem 10rem !important;
  }
  .navbar-custom.top-nav-collapse {
    padding: 0.5rem 5rem 0.5rem 5rem !important;
  }
  /* end of navigation */
  /* General Styles */
  .p-heading {
    width: 55%;
  }
  /* end of general styles */
  /* Header */
  .header .header-content {
    padding-top: 10rem;
  }
  .header .text-container {
    margin-left: 6rem;
    margin-right: 2rem;
  }
  .header .image-container {
    margin-left: 2rem;
    margin-right: 1rem;
  }
  /* end of header */
  /* Customers */
  .slider-1 .slider-container {
    margin-right: 3rem;
    margin-left: 3rem;
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
  /* end of customers */
  /* Services */
  .cards-1 .card {
    max-width: 21rem;
  }
  .cards-1 .col-lg-12 div.card:nth-child(3n+2) {
    margin-right: 2.875rem;
    margin-left: 2.875rem;
  }
  /* end of services */
  /* Details 1 */
  .basic-1 .text-container {
    margin-top: 6.125rem;
    margin-right: 4rem;
    margin-left: 1rem;
  }
  /* end of details 1 */
  /* Details 2 */
  .basic-2 .text-container {
    margin-top: 5.375rem;
    margin-right: 1rem;
    margin-left: 4rem;
  }
  /* end of details 2 */
  /* Pricing */
  .cards-2 .card {
    width: 19.5rem;
    margin-right: 1.625rem;
    margin-left: 1.625rem;
  }
  /* end of pricing */
  /* Request */
  .form-1 .text-container {
    margin-right: 1.5rem;
    margin-left: 6rem;
  }
  .form-1 form {
    margin-right: 6rem;
    margin-left: 1.5rem;
  }
  /* end of request */
  /* Video */
  .basic-3 p {
    width: 55%;
  }
  /* end of video */
  /* Testimonials */
  .slider-2 h2 {
    margin-top: 3.5rem;
  }
  /* end of testimonials */
  /* About */
  .basic-4 .team-member {
    margin-right: 2.25rem;
    margin-left: 2.25rem;
  }
  /* end of about */
  /* Contact */
  .form-2 .map-responsive {
    max-width: 31rem;
    margin-right: auto;
    margin-left: auto;
  }
  .form-2 #contactForm {
    max-width: 31rem;
    margin-right: auto;
    margin-left: auto;
  }
  /* end of contact */
  /* Footer */
  .footer .footer-col {
    width: 90%;
  }
  .footer .footer-col.middle {
    margin-right: auto;
    margin-left: auto;
  }
  .footer .footer-col.last {
    margin-right: 0;
    margin-left: auto;
  }
  /* end of footer */
  /* Extra Pages */
  .ex-header h1 {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
  }
  .ex-basic-2 .form-container {
    margin-left: 1.75rem;
  }
  .ex-basic-2 .image-container-small {
    margin-left: 1.75rem;
  }
  /* end of extra pages */
}
/* end of min-width width 1200px */

/*start of max-width 1170 */
@media(max-width:1170px){
  .merchant-login-form h1.register {
    line-height: 30px !important;
  }
}
/*start of max-width 1170 */

/*start of max-width 992 */
@media(max-width:992px) {
  .merchant-login-form .form_row .form_div {
    width: 100%;
    padding: 20px !important;
  }
}
/*start of max-width 992 */


/*start of max-width 768 */
@media(max-width:768px) {
  /* login page css start*/

  .container-fluid.login-container-fluid.h-100 {
    height: auto !important;
  }

  .login-container-fluid img {
    display: block;
    max-width: 100%;
  }

  h1.register {
    font-size: 20px !important;
    margin-bottom: 20px !important;
  }

  .theme_form::before {
    display: none;
  }
  /*login page css end*/
  .merchant-login-form .divider {
    margin-top: 25px;
    margin-bottom: 25px;
  }
}
/*end of max-width 768 */


.feature-extended-section .feature-extended-wrapper {
  padding: 70px 0;
  background: rgba(61, 0, 94, 0.1) !important;
}

.feature-extended-section .single-feature-extended {
  padding: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-extended-section .single-feature-extended {
    padding: 30px 10px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-extended-section .single-feature-extended {
    padding: 30px 0;
  }
}
.feature-extended-section .single-feature-extended .icon {
  line-height: 1;
  margin-bottom: 30px;
}

.feature-extended-section .single-feature-extended .content h3 {
  margin-bottom: 20px !important;
}

.feature-extended-section .single-feature-extended .content p {
  font-size: 18px !important;
  font-weight: 400 !important;
  line-height: 28px !important;
}

/***********************/
/*     10. Pricing     */
/***********************/
.pricing-section {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .pricing-section.pt-120 {
    padding-top: 80px;
  }
}
@media (max-width: 767px) {
  .pricing-section.pb-120 {
    padding-bottom: 80px;
  }
}
.pricing-section .pricing-nav-wrapper ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pricing-section .pricing-nav-wrapper ul li a {
  font-size: 18px;
  font-weight: 700;
  color: #5b657e;
  padding: 10px 30px;
  background: rgba(88, 100, 255, 0.1);
  margin: 5px;
  border-radius: 30px;
}

.pricing-section .pricing-nav-wrapper ul li a.active {
  color: #fff;
  background: rgb(61, 0, 94);
}

.pricing-section .single-pricing {
  border-radius: 40px;
  background: #fff;
  -webkit-box-shadow: 0 0 59px rgba(191, 191, 191, 0.16);
  box-shadow: 0 0 59px rgba(191, 191, 191, 0.16);
  padding: 45px 30px;
  margin-bottom: 30px;
}

.pricing-section .single-pricing .pricing-header {
  padding-bottom: 35px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 45px;
  text-align: center;
}

.pricing-section .single-pricing .pricing-header .price {
  font-size: 45px;
  margin-bottom: 30px;
  color: rgb(61, 0, 94);
}

.pricing-section .single-pricing .content {
  margin-bottom: 30px;
}

@media only screen and (min-width: 1400px) {
  .pricing-section .single-pricing .content {
    padding-left: 50px;
  }
}
.pricing-section .single-pricing .content ul li {
  font-size: 18px;
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.pricing-section .single-pricing .content ul li i {
  margin-right: 15px;
  color: rgba(22, 36, 71, 0.3);
  font-weight: 700;
}

.pricing-section .single-pricing .content ul li i.active {
  color: rgb(61, 0, 94);
}

.pricing-section .single-pricing .pricing-btn {
  text-align: center;
}

.pricing-section .single-pricing .pricing-btn .main-btn {
  padding: 12px 45px;
  font-weight: 400;
}

.pricing-section .single-pricing .pricing-btn .main-btn.border-btn {
  color: #5b657e;
}

.pricing-section .single-pricing .pricing-btn .main-btn.border-btn::after {
  background: rgba(88, 100, 255, 0.1);
}

.pricing-section .single-pricing .pricing-btn .main-btn {
  padding: 12px 45px;
  font-weight: 400;
}

/* ======= subscribe css ======= */
@media (max-width: 767px) {
  .subscribe-section .section-title h2 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-section .section-title h2 {
    font-size: 32px;
  }
}
.subscribe-section .subscribe-wrapper {
  background-image: url("../assets/img/subscribe-bg.svg.png");
  background-repeat: no-repeat;
  padding: 65px 50px 50px;
  border-radius: 30px;
}

@media (max-width: 767px) {
  .subscribe-section .subscribe-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-section .subscribe-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.subscribe-section .subscribe-wrapper .subscribe-form {
  position: relative;
  margin-bottom: 15px;
}

.subscribe-section .subscribe-wrapper .subscribe-form input {
  width: 100%;
  height: auto !important;
  padding: 20px 30px;
  padding-right: 142px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid transparent;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.subscribe-section .subscribe-wrapper .subscribe-form input:focus {
  -webkit-box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.35);
  box-shadow: 0px 0px 15px rgba(255, 255, 255, 0.35);
}

.subscribe-section .subscribe-wrapper .subscribe-form button {
  border-radius: 18px !important;
  position: absolute;
  top: 5px;
  right: 5px !important;
  padding: 16px 25px;
  font-weight: 700;
}

.subscribe-section .subscribe-wrapper .subscribe-form button {
  color: #fff;
  background-color: rgb(61, 0, 94) !important;
}

@media (max-width: 767px) {
  .subscribe-section .subscribe-wrapper .subscribe-form button {
    position: static;
    margin-top: 20px;
    color: #fff;
    background-color: rgb(61, 0, 94) !important;
    padding: 17.5px 35px;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .subscribe-section .subscribe-wrapper .subscribe-form button {
    position: absolute;
    margin-top: 0px;
    color: #fff;
    background: rgb(61, 0, 94) !important;
    padding: 17.5px 25px;
  }
}
.step-header .step-title {
  color: #000;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 16px;
  /* 114.286% */
  letter-spacing: -0.14px;
}

[dir="ltr"] .upload-img div img {
  margin-right: 24px;
  width: 62px;
}
[dir="rtl"] .upload-img div img {
  margin-left: 24px !important;
  width: 62px;
}

.profile-tabs-header {
  position: fixed !important;
  width: 100% !important;
  margin-bottom: 200px !important;
  background-color: white !important;
  top: 49px !important;
  z-index: 99999 !important;
  border-bottom: 1px solid #f4f4f4 !important;
}

.profile-tabs-body {
  padding-top: 64px !important;
}

.upload-doc {
  width: 100% !important;
  height: fit-content !important;
  min-height: 123px !important;
  border-radius: 6px !important;
  background: rgba(61, 0, 94, 0.05) !important;
}

.cavarge-zone {
  border-radius: 11px !important;
  background: #FFF !important;
  box-shadow: 0px 0px 31px 0px rgba(0, 0, 0, 0.25) !important;
  width: 342px !important;
  height: auto !important;
  min-height: 84% !important;
  top: 45px !important;
  left: 7% !important;
  border-radius: 11px !important;
  position: absolute !important;
  z-index: 99;
}

.zons {
  border-radius: 6px;
  border: 1px solid #F2F2F2;
  background: #F6F6F6;
}

.footer-container {
  background-image: url(../assets/img/footer-bg.svg.png);
  background-position: bottom;
  background-size: 100vw auto;
  background-repeat: no-repeat;
  height: 470px;
  padding-top: 227px;
  /* border: 1px solid red; */
}

/**********************************/
/*     18. Back To Top Button     */
/**********************************/
a.back-to-top {
  position: fixed;
  z-index: 999;
  right: 0.75rem;
  bottom: 0.75rem;
  display: none;
  width: 2.625rem;
  height: 2.625rem;
  border-radius: 1.875rem;
  background-color: rgb(61, 0, 94) !important;
  background-image: url("../assets/img/up-arrow.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1.125rem 1.125rem;
  text-indent: -9999px;
  outline: 2px solid white;
}

a:hover.back-to-top {
  background-color: rgb(61, 0, 94) !important;
}

.rounded-circle-gif {
  width: 130px;
  height: 130px;
  flex-shrink: 0;
  border-radius: 65px;
  background: rgba(61, 0, 94, 0.1);
  padding: 32px;
  display: inline-block;
}
.rounded-circle-gif img {
  width: 65px;
  height: 65px;
}

.admin-header-links {
  position: relative !important;
  z-index: 9999999 !important;
}

.box .form-control.subscribeform {
  background-color: transparent !important;
  background: none !important;
  border: none !important;
}
.box .form-control.subscribeform input {
  height: 46px !important;
}
.box .form-control.subscribeform .subcibebtn {
  top: 8px !important;
  z-index: 2 !important;
}

.master-wrapper-content,
.header-menu {
  width: 100vw !important;
}

.header-menu {
  padding: 0 !important;
  margin: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.button-1,
.registration-page .button-1:hover,
.registration-page .button-1:focus,
.registration-result-page .button-1:hover,
.registration-result-page .button-1:focus,
.login-page .button-1:hover,
.login-page .button-1:focus,
.password-recovery-page .button-1:hover,
.password-recovery-page .button-1:focus,
.email-revalidation-page .button-1:hover,
.email-revalidation-page .button-1:focus,
.account-activation-page .button-1:hover,
.account-activation-page .button-1:focus,
.account-page .button-1:hover,
.account-page .button-1:focus,
.return-request-page .button-1:hover,
.return-request-page .button-1:focus {
  background-color: rgb(61, 0, 94) !important;
}

.block .list .active > a {
  color: !important;
}

.inner-pages-topbar {
  padding: 0.5rem 5rem 0.5rem 5rem;
  background-color: transparent;
}

/*place holder*/
.master-column-wrapper {
  padding-top: 110px !important;
}

.home_layout {
  margin-top: -110px !important;
}

/* Only the scroll bar */
::-webkit-scrollbar {
  width: 6px;
  height: 0.3rem;
  border-radius: 8px;
}

::-webkit-scrollbar-thumb {
  background: rgba(159, 145, 167, 0.311);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(78, 52, 95, 0.3);
  border-radius: 8px;
}

.custom-switch {
  display: none;
}

.payment-method .method-list li .method-name {
  width: 322px !important;
  height: 110px !important;
  flex-shrink: 0 !important;
  border-radius: 7px !important;
  border: 1px solid rgb(61, 0, 94) !important;
  background: #FFF !important;
}

.video .muteicon {
  cursor: pointer;
  width: 35px;
  height: 35px;
  position: absolute;
  z-index: 999;
  font-size: 16px;
  border-radius: 0 0 13px 1px;
  background-color: rgba(61, 0, 94, 0.5);
  color: white;
}
.video #myVideo {
  max-width: 100%;
}

@media (min-width: 1021px) {
  .muteicon {
    left: 147px;
  }
}
.admin-header-links {
  display: none !important;
}

span.nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: space-evenly;
}
span.nav-item .no_underline {
  margin: 0 4px !important;
  padding: 4px 8px !important;
}

@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .navbar-custom {
    padding: 10px 0px;
    padding-left: 26px;
    width: 96%;
    margin: 0 auto;
  }
  .top-nav-collapse {
    width: 100%;
  }
  header {
    width: 100%;
  }
  .header {
    background: url(../assets/img/hero-bg.png) center center no-repeat;
    background-size: 94vw auto;
    background-position: center top;
    height: 100vh;
    min-height: 646px !important;
  }
  .navbar-brand.logo-image.ml-2 {
    display: none !important;
  }
}
.navbar-brand.logo-image.ml-2 {
  display: none !important;
}

.navbar-brand.logo-image.ml-2.websiteBrand {
  display: inline !important;
}

@media screen and (max-width: 1024px) and (min-width: 993px) {
  .footer-container {
    background-size: cover !important;
    background-repeat: no-repeat;
    height: 417px !important;
  }
  .navbar-expand-lg .navbar-collapse {
    margin-right: 53px !important;
  }
  span.nav-item {
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
  }
  .header {
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    margin: auto !important;
    text-align: center !important;
  }
  .navbar-custom {
    padding: 20px 24px !important;
    padding-left: 0 !important;
    width: 107vw !important;
    margin: 0 auto !important;
  }
  .header {
    background: url(../assets/img/hero-bg.png) center center no-repeat !important;
    background-size: 134vw 102vh !important;
    background-position: center top !important;
    height: 100vh !important;
    min-height: 635px !important;
  }
  .master-column-wrapper {
    width: 101vw !important;
  }
}
@media (min-width: 992px) {
  li.nav-item {
    margin: 0;
  }
  .top-nav-collapse {
    width: 100%;
  }
  .nav-item .nav-link {
    padding: 8px;
    color: #fff;
    opacity: 0.8;
  }
}
@media (max-width: 992px) {
  .navbar-toggler {
    border: none;
    color: white !important;
    font-size: 2rem;
  }
  .navbar {
    padding: 2.2rem;
  }
  nav.navbar.navbar-expand-lg.navbar-dark.navbar-custom.fixed-top.top-nav-collapse {
    background: #3d005e !important;
    padding: 1rem !important;
  }
  .fixed-top {
    width: 100vw !important;
  }
}
@media (max-width: 974px) {
  .master-wrapper-content, .header-menu {
    width: 103vw !important;
    margin-left: -0vw !important;
  }
  .navbar {
    padding: 2.2rem;
  }
  nav.navbar.navbar-expand-lg.navbar-dark.navbar-custom.fixed-top.top-nav-collapse {
    background: #3d005e !important;
    padding: 1rem !important;
  }
  div#navbarsExampleDefault {
    font-size: 21px;
    border-radius: 16px;
    background-color: #3d005e;
    padding: 15px 50px 50px 28px;
    border: 1px solid white;
    margin-top: 24px !important;
  }
  .navbar-toggler {
    border: none;
    color: white !important;
    font-size: 2rem;
  }
  .header {
    background-size: cover !important;
    background-position: center top !important;
    height: 100vh !important;
  }
}
@media (max-width: 769px) {
  .master-wrapper-content, .header-menu {
    width: 102vw !important;
    margin-left: -0vw !important;
  }
  .fixed-top {
    width: 100vw !important;
  }
  .navbar {
    padding: 2.2rem;
  }
  nav.navbar.navbar-expand-lg.navbar-dark.navbar-custom.fixed-top.top-nav-collapse {
    background: #3d005e !important;
    padding: 1rem !important;
  }
  footer .container .row {
    padding-bottom: 22px;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .footer-container {
    background-position: bottom;
    background-size: 243% 142% !important;
    background-repeat: no-repeat;
    height: auto !important;
    padding-top: 0;
    /* border: 1px solid red; */
  }
  div#navbarsExampleDefault {
    font-size: 21px;
    border-radius: 16px;
    background-color: #3d005e;
    padding: 15px 50px 50px 28px;
    border: 1px solid white;
    margin-top: 24px !important;
  }
  .navbar-toggler {
    border: none;
    color: white !important;
    font-size: 2rem;
  }
  .header {
    background-size: cover !important;
    background-position: center top !important;
    height: 100vh !important;
  }
  .home_layout {
    margin: 0 auto !important;
    margin-top: -110px !important;
  }
}
@media (max-width:360px){
.navbar-brand.logo-image img  {
    width: 110px;
  }
}
.form-group .eye {
  z-index: 9;
  display: inline-flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  position: absolute;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 0;
  border-radius: 0.25rem;
  top: 32px;
  left: 22.2rem;
  height: 44px;
}

.video video {
  max-width: 100%;
}

.header .header-content {
  padding-top: 30vh;
}

.text-container .hero-1 {
  font-size: 48px !important;
  line-height: 25px !important;
}
.text-container .hero-2 {
  font-size: 28px !important;
  line-height: 32px !important;
  margin-bottom: 16px !important;
}
@media screen and (min-width: 1025px) and (max-width: 1200px) {
  .header .header-content {
    padding-top: 10vh;
  }
  .navbar-custom {
    width: 90%;
  }
  .header {
    position: relative;
    z-index: 10;
    width: 96%;
    margin: auto;
    text-align: center;
    min-height: 231px !important;
    height: 510px !important;
  }
  .header .header-content {
    padding-top: 8.5rem;
  }
  .header {
    background-size: 95vw auto;
  }
  .text-container .hero-1 {
    font-size: 2rem !important;
    line-height: 25px !important;
  }
  .text-container .hero-2 {
    font-size: 1.2rem !important;
    line-height: 32px !important;
    margin-bottom: 8px !important;
  }
  .text-container .hero-p {
    font-size: 14px !important;
  }
}
.websiteBrand {
  display: inline !important;
}
