/*
-------------------------------------------------
  Theme Name: ZaiProty - Property Management Software Landing Template
  Theme URL:
  Author: zainiktheme
  Author URL: https://themeforest.net/user/zainiktheme
  Creation Date: 11-March-2023
  Description:A default stylesheet for ZaiProty - Property Management Software Landing Template
  Version: 1.00
  Primary use: Property Management Software Landing Template, admin dashboard, dashboard, admin panel, admin dashboard, dashboard, admin panel, ai, AI Writer, ai writer, AI Write, ai write, chatgpt, CHATGPT, Chat gpt, Openai, OpenAI, openai etc.

  ---------------------------------------------------
  Developed By: zainiktheme
  Developer URL: https://themeforest.net/user/zainiktheme
  Developer: Suraiya Aysha

  ---------------------------------------------------

  --------------------------------------------------
  Table of Contents
  --------------------------------------------------
  1. General CSS
  2. Typography CSS
  3. Button CSS
  4. Preloader Area
  5. Common Custom Scrollbar
  6. Navbar CSS
  7. Scroll To Top
  8. Header Area
  9. Features Area
  10. How It Works Area
  11. About Area
  12. Core Pages Area
  13. Pricing Plan CSS
  14. Integrations Plan
  15. Customer Testimonial Area
  16. FAQS Area
  17. Footer Area
  18. Responsive CSS

------------------------------------------------ */

/*-----------------------------------------------
    1. General Style Start
-------------------------------------------------*/

* {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}

body,
html {
    height: 100%;
    margin: 0;
}

body {
  background: var(--bg-primary) none repeat scroll;
  background-position: center;
  background-size: cover;
  font-size: 17px;
  font-weight: 500;
  font-weight: normal;
  font-family: var(--body-font-family);
  color: var(--body-font-color);
  overflow-x: hidden;
  scroll-behavior: smooth;
}

a {
  color: var(--heading-color);
}
a:hover {
  color: var(--primary-color);
}
/* Theme All Transitions
------------------------------- */
a, #mainNav, .navbar .dropdown .dropdown-toggle::after, .theme-btn, button, .owl-carousel button.owl-dot, button {
  transition: all .5s ease-in-out;
}
.fast-transition {
  transition: all .3s ease-in-out;
}
.slow-transition {
  transition: all .7s ease-in-out;
}

ul li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

ul {
  margin: 0;
  padding: 0;
}

a,
a > * {
  outline: none;
  cursor: pointer;
  text-decoration: none;
}

a {
  color: var(--body-font-color);
}
a:hover {
  color: var(--primary-hover-color)!important;
  text-decoration: none;
}

img::selection {
  background: transparent;
}
.page-link:focus {
  box-shadow: none;
}

/*----Form Control Reset CSS----*/
.form-control, .form-select {
  background-color: var(--bg-primary);
  /* height: 50px; */
  color: var(--body-font-color);
  border: 1px solid var(--border-color);
  /* padding: 13px 30px; */
  font-size: 18px;
  background: #FFFFFF;
  border-radius: 203px;
  /* height: 66px; */
  letter-spacing: -0.04em;
  font-weight: 600;
}

.form-control:focus {
  background-color: var(--white-color);
  box-shadow: none;
  border-color: #86b7fe;
}
.form-select:focus {
  border-color: #86b7fe;
  box-shadow: none;
}
.form-control::placeholder {
  color: #9CA3AE;
}
.input-group-text {
  font-size: 14px;
}
textarea {
  min-height: 120px!important;
  height: auto!important;
  border-radius: 13px!important;
}
label {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 600;
}
.form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}
.btn-close:focus, .form-check-input:focus {
  box-shadow: none;
}
.form-select {
  padding: 7px 32px 7px 20px;
}

/* Custom checkbox Start */
.custom-checkbox input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.custom-checkbox label {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  margin-bottom: 0;
}

.custom-checkbox label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid var(--border-color-2);
  box-shadow: none;
  padding: 7px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 7px;
  border-radius: 2px;
}

.custom-checkbox input:checked + label:before {
  border: 1px solid var(--primary-color);
}

.custom-checkbox input:checked + label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 6px;
  width: 5px;
  height: 9px;
  border: solid var(--primary-color);
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
/* Custom checkbox End */

/* Custom Radio Button Start */
.custom-radiobox [type="radio"]:checked,
.custom-radiobox [type="radio"]:not(:checked) {
  position: absolute;
  left: -9999px;
}
.custom-radiobox [type="radio"]:checked + label,
.custom-radiobox [type="radio"]:not(:checked) + label
{
  position: relative;
  padding-left: 28px;
  cursor: pointer;
  line-height: 20px;
  display: inline-block;
  color: var(--body-font-color);
  margin-bottom: 0;
}
.custom-radiobox [type="radio"]:checked + label:before,
.custom-radiobox [type="radio"]:not(:checked) + label:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid var(--border-color-2);
  border-radius: 100%;
  background: var(--white-color);
}
.custom-radiobox [type="radio"]:checked + label:after,
.custom-radiobox [type="radio"]:not(:checked) + label:after {
  content: '';
  width: 12px;
  height: 12px;
  background: var(--primary-color);
  position: absolute;
  top: 3px;
  left: 3px;
  border-radius: 100%;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.custom-radiobox [type="radio"]:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
}
.custom-radiobox [type="radio"]:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
/* Custom Radio Button End */

/*------------------------------------------
  2. Typography
-------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  font-style: normal;
}
h1 {
  font-weight: 600;
  font-size: 80px;
  line-height: 90px;
}
h2 {
  font-weight: 600;
  font-size: 48px;
  line-height: 58px;
}
h3 {
  font-weight: 500;
  font-size: 36px;
  line-height: 42px;
}
h4 {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}
h5 {
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
}
h6 {
  font-weight: 500;
  font-size: 15px;
  line-height: 27px;
}
.big-para {
  font-size: 18px;
  line-height: 25px;
}

p {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  color: var(--body-font-color);
}

figure {
  margin: 0 0 0;
}

/*--------------------------------
  2.1 Theme Color
-----------------------------------*/
:root {
  --navbar-bg: #fff;
  --navbar-bg-dark: #fff;

  --footer-bg: #160E4D;
  --footer-bg-dark: #fff;
  --footer-text-color: #ffffffcc;

  --white-color: #fff;
  --black-color: #000;

  --bg-primary: #fff;
  --bg-primary-dark: #1F2246;
  --bg-secondary: #FAFAFA;
  --bg-secondary-dark: #fff;

  --status-btn-bg: #F5F5F5;
  --status-btn-bg-dark: #24282C;

  --text-gradient-color: linear-gradient(90deg, #2E42F7 11.99%, #FF9243 90.21%);

  --heading-color: #1F2246;
  --heading-color-dark: #fff;
  --body-font-color: #4C4E6B;
  --body-font-color-dark: #fff;

  --border-color: #0000001a;
  --border-color-dark: rgba(255, 255, 255, 0.1);
  --border-color-2: #EDEDED;

  /* --primary-color: #3686FC; */
  /* --primary-hover-color: #0066D9; */

  --theme-btn-outline-font-color: #1F2246;

  /* --blue-color: #3686FC; */
  --blue-color-transparent: #E9F2FF;

  /* --secondary-color: #4831DB; */
  --secondary-hover-color: #4831DB;

  --red-color: #FF3D3D;
  --danger-color: #FF3D3D;
  --red-color-hover: #dc3545;

  --yellow-color: #FBBF37;
  --orange-color: #FF794D;
  --orange-color-transparent: rgba(255, 121, 77, 0.08);

  --green-color: #4FBF67;
  --green-color-hover: #0d943a;
  --green-color-transparent: rgba(30, 189, 83, 0.08);

  --body-font-family: 'Inter', sans-serif;

}

.color-heading {
  color: var(--heading-color);
}
.color-hover {
  color: var(--primary-hover-color);
}
.primary-color {
  color: var(--primary-color)!important;
}
.primary-color:hover {
  color: var(--primary-hover-color)!important;
}
.secondary-color {
  color: var(--secondary-color);
}
.theme-text-color {
  color: var(--body-font-color);
}
.bg-primary-color {
  background-color: var(--primary-color);
}
.bg-secondary {
  background-color: var(--bg-secondary)!important;
}
.bg-gradient {
  background-image: var(--bg-gradient)!important;
}

.theme-border {
  border: 1px solid var(--border-color);
}
.border-bottom {
  border-bottom: 1px solid var(--border-color)!important;
}
.border-top {
  border-top: 1px solid var(--border-color)!important;
}
.orange-color {
  color: var(--orange-color);
}
.green-color {
  color: var(--green-color);
}
.red-color, .theme-link-red {
  color: var(--red-color);
}
.red-color:hover, .theme-link-red:hover {
  color: var(--red-color-hover)!important;
}
button.red-color:hover, a.red-color:hover, .theme-link-red:hover {
  color: var(--red-color-hover);
}

.bg-orange {
  background-color: var(--orange-color);
}
.bg-green {
  background-color: var(--green-color);
}
.bg-red {
  background-color: var(--red-color);
}

.bg-red-transparent {
  background-color: rgba(255, 67, 67, 0.1);
}
.bg-green-transparent {
  background-color: var(--green-color-transparent);
}
.bg-blue-transparent {
  background-color: var(--primary-color-transparent);
}
.bg-purple-transparent {
  background-color: #F0EBFF;
}
.bg-orange-transparent {
  background-color: var(--orange-color);
}
.theme-link {
  color: var(--primary-color);
}
.theme-link:hover {
  color: var(--primary-hover-color)!important;
}
.theme-secondary-link {
  color: var(--secondary-color);
}
.theme-secondary-link:hover {
  color: var(--secondary-hover-color)!important;
}

/*--------------------------------
  2.3 Theme padding, margin
-----------------------------------*/
.section-t-space {
  padding-top: 150px;
}
.section-b-space {
  padding-bottom: 150px;
}
.section-t-small-space {
  padding-top: 125px;
}
.section-b-small-space {
  padding-bottom: 125px;
}
.section-t-80-space {
  padding-top: 80px;
}
.section-b-80-space {
  padding-bottom: 80px;
}
.section-t-60-space {
  padding-top: 60px;
}
.section-b-60-space {
  padding-bottom: 60px;
}
.p-30 {
  padding: 30px;
}
.pl-30 {
  padding-left: 30px;
}
.pr-30 {
  padding-right: 30px;
}
.pt-30 {
  padding-top: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-30 {
  padding-bottom: 30px;
}
.pb-15 {
  padding-bottom: 15px;
}
.p-20 {
  padding: 20px;
}
.pb-20 {
  padding-bottom: 20px;
}
.p-25 {
  padding: 25px;
}
.pb-25 {
  padding-bottom: 25px;
}
.pt-20 {
  padding-top: 20px;
}
.mt-10 {
  margin-top: 10px;
}
.mt-15 {
  margin-top: 15px;
}
.mb-15 {
  margin-bottom: 15px;
}
.mt-25 {
  margin-top: 25px;
}
.mb-25 {
  margin-bottom: 25px;
}
.me-25 {
  margin-right: 25px;
}
.ms-25 {
  margin-left: 25px;
}
.mt-20 {
  margin-top: 20px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-30 {
  margin-top: 30px;
}
.mb-30 {
  margin-bottom: 30px;
}
.mr-30 {
  margin-right: 30px;
}
.mt-50 {
  margin-top: 50px;
}
.mr-15 {
  margin-right: 15px;
}
.radius-95 {
  border-radius: 95px;
}
.radius-3 {
  border-radius: 3px;
}
.radius-4 {
  border-radius: 4px;
}
.radius-5 {
  border-radius: 5px;
}
.radius-8 {
  border-radius: 8px;
}
.radius-10 {
  border-radius: 10px;
}
.radius-12 {
  border-radius: 12px;
}
.radius-15 {
  border-radius: 15px;
}
.radius-20 {
  border-radius: 20px;
}
.radius-50 {
  border-radius: 50%;
}
.radius-t-r-0 {
  border-top-right-radius: 0!important;
}
.radius-t-l-0 {
  border-top-left-radius: 0!important;
}
.radius-b-r-0 {
  border-bottom-right-radius: 0!important;
}
.radius-b-l-0 {
  border-bottom-left-radius: 0!important;
}
/*--------------------------------
  2.3 Theme Font Family, Font Size
-----------------------------------*/
.font-normal {
  font-weight: 400;
}
.font-bold {
  font-weight: 700;
}
.font-semi-bold {
  font-weight: 600;
}
.font-medium {
  font-weight: 500;
}
.font-24 {
  font-size: 24px;
  line-height: 31px;
}
.font-20 {
  font-size: 20px;
  line-height: 31px;
}
.font-22 {
  font-size: 22px;
  line-height: 30px;
}
.font-18 {
  font-size: 18px;
  line-height: 150%;
}
.font-17 {
  font-size: 17px;
}
.font-16 {
  font-size: 16px;
}
.font-15 {
  font-size: 15px;
  line-height: 23px;
}
.font-14 {
  font-size: 14px;
}
.font-13 {
  font-size: 13px;
  line-height: 18px;
}
.font-12 {
  font-size: 12px;
  line-height: 160%;
}
.font-11 {
  font-size: 11px;
  line-height: 12px;
}

/*--------------------------------
 2.4 Template Default CSS
-----------------------------------*/
section {
  position: relative;
}
.section-title {
  width: 70%;
  margin: 0 auto 55px;
  text-align: center;
}

.section-sub-heading {
  font-size: 18px;
  line-height: 28px;
  margin-top: 19px;
}
.section-tag-heading {
  margin-bottom: 16px;
}

.cursor {
  cursor: pointer;
}

.fit-image {
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
}

/* Avatar CSS */
.avatar-md {
  height: 3.8rem;
  width: 3.8rem;
}
.avatar-xl {
  height: 5.5rem;
  width: 5.5rem;
}
/* Avatar CSS */

/*--------------------------------
 2.5 Template Common CSS
-----------------------------------*/

/*Pagination CSS*/
.pagination {
  margin-top: 25px;
}
.pagination li {
  margin-right: 14px;
  border-radius: 3px;
}
.page-item.active .page-link {
  color: #fff;
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}
.page-item .page-link .iconify {
  font-size: 19px;
  color: #52526C;
}
.pagination .page-link {
  color: var(--gray-color);
  font-size: 15px;
  line-height: 16px;
  background-color: #fff;
  height: 45px;
  width: 45px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px!important;
  border-radius: 3px;
  border: 1px solid #F2F2F2;
  box-sizing: border-box;
  box-shadow: 0 6px 21px rgba(21, 3, 89, 0.08);
}
/*------------------------------------------
  2.Typography
-------------------------------------------*/

/*--------------------------------------------
  3. Button Style
---------------------------------------------*/
.section-btn {
  margin-top: 42px;
}
.btn {
padding: 0;
}
.btn.focus, .btn:focus {
  outline: 0;
  box-shadow: none;
}
button {
  background-color: transparent;
}
button:focus {
  outline: 0;
}
/*-----Theme Button Style-----*/
.theme-btn, .theme-btn-outline, .theme-btn-purple, .theme-btn-green, .theme-btn-red, .edit-btn, .theme-btn-back {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  outline: none;
  z-index: 99;
  /* padding: 22px 45px!important; */
  padding: 22px 43px!important;
  justify-content: center;
  color: var(--white-color);
  border: 1px solid transparent;
  font-weight: 500!important;
  font-size: 20px;
  line-height: 100%;
  border-radius: 195px;
}
.theme-btn:hover, .theme-btn-outline, .theme-btn-purple:hover, .theme-btn-green:hover, .theme-btn-red:hover {
  color: var(--white-color)!important;
}

.theme-btn {
  background-color: var(--primary-color);
}
.theme-btn:hover {
  background-color: var(--primary-hover-color);
}

.theme-btn-outline {
  border: 1px solid var(--primary-color);
  background-color: var(--white-color);
  color: var(--theme-btn-outline-font-color)!important;
}
.theme-btn-outline:hover, .theme-btn-outline.active {
  background-color: var(--primary-color);
  color: var(--white-color)!important;
}

.theme-btn-purple {
  background-color: var(--secondary-color);
}
.theme-btn-purple:hover {
  background-color: var(--secondary-hover-color);
}
.theme-btn-green {
  background-color: var(--green-color);
}
.theme-btn-green:hover {
  background-color: var(--green-color-hover);
}
.theme-btn-red {
  background-color: var(--red-color);
}
.theme-btn-red:hover {
  background-color: var(--red-color-hover);
}
.edit-btn {
  border: 1px solid var(--primary-color);
  color: var(--primary-color)!important;
}
.edit-btn:hover {
  border: 1px solid var(--primary-hover-color)!important;
  color: var(--primary-hover-color)!important;
}
.theme-btn-back {
  background-color: var(--white-color);
  border: 1px solid var(--border-color);
  color: var(--heading-color);
}
.theme-btn-back:hover {
  background-color: var(--off-white);
}
.status-btn {
  padding: 7px 15px!important;
  /* min-width: 100px; */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  min-height: 34px;
  background-color: var(--status-btn-bg);
  color: var(--body-font-color);
}
.table .status-btn {
  min-width: 100px;
}

.status-btn-light {
  background-color: var(--bg-secondary)!important;
  color: var(--black-color)!important;
}
.status-btn-purple {
  background-color: rgba(72, 49, 218, 0.08)!important;
  color: var(--secondary-color)!important;
}
.status-btn-green {
  background-color: var(--green-color-transparent)!important;
  color: var(--green-color)!important;
}
.status-btn-red {
  background-color: rgba(255, 67, 67, 0.1)!important;
  color: var(--red-color)!important;
}
.status-btn-blue {
  background-color: var(--blue-color-transparent)!important;
  color: var(--blue-color);
}
.status-btn-orange {
  background-color: var(--orange-color-transparent)!important;
  color: var(--orange-color)!important;
}

/*--------------------------------------------
  3. Button Style
---------------------------------------------*/

/*-------------------------------------------
  4. Preloader Area Start
-------------------------------------------*/
#preloader {
  background-color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999999999999999;
}

#preloaderInner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
/*-------------------------------------------
  4. Preloader Area End
-------------------------------------------*/

/*-------------------------------------------
  5. Common Custom Scrollbar CSS Start
-------------------------------------------*/

/* Custom Scrollbar start */
.custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #D1D6DB #fff;
}
.custom-scrollbar::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background-color: #fff;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #D1D6DB;
}
.custom-scrollbar::-webkit-scrollbar-track, .custom-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 7px;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}
::-webkit-scrollbar-track {
  background-color: #fff;
}
::-webkit-scrollbar-thumb {
  background-color: #D1D6DB;
}
::-webkit-scrollbar-track, ::-webkit-scrollbar-thumb {
  border-radius: 7px;
}

/* Custom Scrollbar end */

/*-------------------------------------------
  5. Common Custom Scrollbar CSS End
-------------------------------------------*/

/*-------------------------------------------
  6. Navbar Area CSS
-------------------------------------------*/
.container {
  padding: 0;
}

.menu-section-area {
  position: absolute;
  width: 100%;
  padding: 0;
  z-index: 999;
  overflow-x: visible;
}
@media only screen and (min-width: 992px) {
  #mainNav {
      display: block;
  }
  .navbar-expand-lg .navbar-nav {
      align-items: center;
      justify-content: flex-end;
  }
}

@media only screen and (max-width: 991.98px) {
  .navbar-nav {
      width: 100%;
      margin-bottom: 0!important;
  }
}

/* Main Menu Start */
.navbar-nav-middle {
  justify-content: center;
  /* padding-left: 70px; */
}
.navbar-nav-right {
  justify-content: flex-end;
}
.navbar {
  padding: 0;
}

#mainNav {
  position: absolute;
  display: flex !important;
  transition: all ease .6s;
  background: var(--navbar-bg);
  padding: 0 0;
  align-items: center;
  width: 100%;
  height: 114px;
  top: 0;
}
#mainNav.sticky {
  position: fixed;
  z-index: 99;
  width: 100%;
  height: 90px;
  top: 0;
  background-color: var(--navbar-bg);
  padding: 0 0px;
  box-shadow: 0 10px 15px rgb(25 25 25 / 10%);
  animation: 1000ms ease-in-out 0s normal none 1 running fadeInDown;
}

#mainNav.sticky .navbar-nav .nav-item .nav-link {
  padding: 10px 0 10px 0;
  margin-right: 36px;
}

#mainNav .navbar-brand {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0;
  margin-right: 0;
  height: 100%;
}
#mainNav .navbar-nav .nav-item .nav-link {
  font-weight: 400;
  font-size: 17px;
  line-height: 27px;
  padding: 10px 0 10px 0;
  margin-right: 33px;
  position: relative;
  color: var(--navbar-font-color);
  display: flex;
  transition: ease all .5s;
  position: relative;
}

#mainNav .navbar-nav .nav-item .nav-link span {
display: inline-block;
}
#mainNav .navbar-nav .nav-item .nav-link span:after {
  content: "";
  display: block;
  margin: 0 auto;
  width: 0;
  height: 1px;
  background-color: var(--primary-color);
  transition: opacity 0.3s ease, width 0.3s ease;
  -ms-transition: opacity 0.3s ease, width 0.3s ease;
  position: relative;
  top: 0px;
}
#mainNav .navbar-nav .nav-item .nav-link:hover span:after,
#mainNav .navbar-nav .nav-item .nav-link.active span:after {
width: 100%;
}

#mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link.active {
  color: var(--primary-color)!important;
}

.navbar-nav-right .theme-btn-outline {
  /* padding: 15px 40px!important;
  border-radius: 174px; */
}

/* Language Btn */
.language-dropdown, .mode-change, .login-menu-item .nav-link, .user-dropdown {
  margin-right: 25px!important;
}
.language-dropdown .header-item .iconify, .user-dropdown .header-item .iconify {
  font-size: 21px;
  position: relative;
  top: -1px;
  right: -5px;
  color: var(--secondary-color);
  margin-left: -7px;
}
/* Language Btn */

.navbar-nav-right .login-menu-item .nav-link {
  font-size: 20px!important;
  font-weight: 500!important;
  line-height: 24px!important;
}

/*---- Dropdown Menu CSS ----*/
.dropdown-item.active, .dropdown-item:active {
  color: var(--heading-color);
  /* background-color: #F0FCEC; */
}
.navbar .dropdown .dropdown-toggle:after {
  display: none;
}
.navbar .dropdown-menu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 1.7rem;
  color: var(--para-color);
}
.dropdown-toggle {
  display: flex;
  align-items: center;
}
#mainNav .navbar-nav .nav-item .nav-link svg {
  height: 25px;
  width: 27px;
  padding-top: 2px;
}
#mainNav .navbar-nav .dropdown-menu a, .dropdown-item {
  color: var(--navbar-font-color);
  padding: 8px 20px 8px 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  align-items: center;
}
.dropdown button {
  color: var(--navbar-font-color);
  font-weight: 500;
}
.navbar .dropdown-menu .dropdown-toggle::after {
  color: var(--para-color);
}
#mainNav .navbar-nav .dropdown-menu a, #mainNav .navbar-nav .dropdown-menu a h6, .navbar .dropdown-menu .dropdown-toggle::after {
  transition: ease all .5s;
}
#mainNav .navbar-nav .dropdown-menu a:hover, #mainNav .navbar-nav .dropdown-menu a:hover h6, .navbar .dropdown-menu .dropdown-toggle:hover::after {
  color: var(--primary-color);
  background-color: transparent;
}

/* Mode Change Dark or Light Start*/
body.light .dark-logo {
  display: none;
}
body.dark .light-logo {
  display: none;
}
.mode-change .header-item .iconify {
  width: 34px;
  height: 34px;
}
/* Mode Change Dark or Light End */

/*Multilevel Dropdown Menu CSS Start*/
/* ============ desktop view ============ */
@media all and (min-width: 992px) {

  /* New */
  .navbar-expand-lg .offcanvas .offcanvas-body {
      align-items: center;
  }
  .navbar-brand.desktop-navbar-brand {
      display: inline-block!important;
  }
  .navbar-brand.mobile-navbar-brand {
      display: none!important;
  }

  .navbar-right-mobile .language-dropdown, .navbar-right-mobile .mode-change, .navbar-right-mobile .user-dropdown {
      display: none!important;
  }
  /* New */

  .navbar-nav .dropdown-menu {
      position: absolute!important;
      border-radius: 0;
      border: 1px solid var(--border-color);
  }
  .dropdown-menu li{
      position: relative;
  }
  .dropdown-menu .submenu{
      display: block;
      visibility: hidden;
      opacity: 0;
      position: absolute;
      left:100%;
      top:10px;
  }
  .dropdown-menu .submenu-left {
      right:100%;
      left:auto;
  }

  .dropdown-menu > li:hover {
      background-color: transparent;
  }
  .dropdown-menu > li:hover > .submenu {
      visibility: visible;
      opacity: 1;
      top:-7px;
  }

  /* Show Dropdown Menu on Hover instead Click Start */
  .navbar-expand-lg .navbar-nav .dropdown-menu {
      position: absolute;
  }
  .navbar .nav-item .dropdown-menu {
      display: block;
      visibility: hidden;
      opacity: 0;
      transform: translateY(20px);
      transition: .2s ease-in;
  }
  .navbar .nav-item:hover > .dropdown-menu {
      display: block;
      transform: scaleY(1);
      opacity: 1;
      visibility: visible;
      transition: .3s ease-out;
      border-radius: 8px;
  }
  .top-menu-item .nav-item .dropdown-menu {
      transform: translateY(20px);
      display: block;
      visibility: hidden;
      opacity: 0;
      transition: .2s ease-in;
  }
  .top-menu-item .nav-item:hover > .dropdown-menu {
      transform: scaleY(1);
      display: block;
      opacity: 1;
      visibility: visible;
      transition: .3s ease-out;
      z-index: 9999;
  }
  .navbar .nav-item .dropdown-menu, .top-menu-item .nav-item .dropdown-menu {
      margin-top: 0;
      box-shadow: 0px 10px 29px rgba(202, 202, 202, 0.25);
      border: 0;
      border-radius: 0;
      padding: 18px 0;
  }

  /* Show Dropdown Menu on Hover instead Click End */
}

/*Menu Mobile Responsive CSS Start*/
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-toggler:focus {
  box-shadow: none;
}

/* Mobile Menu CSS Start */
@media only screen and (max-width: 1199px) {

  .navbar-nav-middle {
      /* padding-left: 20px; */
  }

  .navbar-nav-right .theme-btn-outline {
      /* height: 50px;
      padding: 10px 27px!important;
      font-size: 16px; */
  }
}

/* Mobile Menu CSS End */

/*Menu Mobile Responsive CSS End*/

/* ============ desktop view .end// ============ */

/* ============ small devices ============ */

@media only screen and (max-width: 1675px) {
  #mainNav .navbar-nav .nav-item .nav-link, #mainNav.sticky .navbar-nav .nav-item .nav-link {
      margin-right: 25px;
  }
  .language-dropdown, .mode-change {
      /* margin-right: 25px; */
  }
  .navbar-nav-right .theme-btn-outline {
      /* height: 48px;
      padding: 15px 25px!important; */
  }
  #mainNav .navbar-nav .nav-item .nav-link, .navbar-nav-right .login-menu-item .nav-link {
      font-size: 16px!important;
  }
  .theme-btn, .theme-btn-outline, .theme-btn-purple, .theme-btn-green, .theme-btn-red, .edit-btn, .theme-btn-back {
      font-size: 16px;
      padding: 22px 30px!important;
  }
}

@media only screen and (max-width: 1399px) {
  #mainNav .navbar-brand img, .offcanvas-header img {
      height: 30px;
  }
  .language-dropdown, .mode-change, .login-menu-item .nav-link, .user-dropdown {
      margin-right: 12px!important;
  }
  .language-dropdown .avatar-md, .user-dropdown .avatar-md, .dropdown-item .avatar-xs {
      height: 1.2rem;
      width: 1.2rem;
  }
  .mode-change .header-item .iconify {
      width: 26px;
      height: 26px;
  }
  #mainNav .navbar-nav .nav-item .nav-link, #mainNav.sticky .navbar-nav .nav-item .nav-link {
      margin-right: 22px;
  }
  .navbar-nav-right .theme-btn-outline {
      /* height: 50px;
      padding: 17px 28px!important;
      font-size: 15px; */
  }
}
@media only screen and (max-width: 1360px) {
  .navbar-nav-right .theme-btn-outline {
      /* height: 48px;
      padding: 14px 23px!important;
      font-size: 14px; */
  }
}
@media only screen and (max-width: 1199px) {
  #mainNav .navbar-brand img, .footer-about img {
      /* height: 28px; */
  }
}
@media (max-width: 991px) {
  #mainNav, #mainNav.sticky {
      height: 60px;
  }
  .offcanvas-header .btn-close {
      box-shadow: none;
  }
  .navbar-brand.desktop-navbar-brand {
      display: none!important;
  }
  .navbar-brand.mobile-navbar-brand {
      display: flex!important;
  }

  #mainNav .navbar-nav .nav-item .nav-link {
      padding: 8px 0 8px 0;
      line-height: 23px;
      color: var(--black-color);
  }
  .dropdown-menu .dropdown-menu {
      margin-left:0.7rem;
      margin-right:0.7rem;
      margin-bottom: .5rem;
  }

  #mainNav .navbar-nav .nav-item .nav-link:hover, #mainNav .navbar-nav .nav-item .nav-link.active {
      color: var(--primary-color)!important;
  }
  .navbar-nav-right .theme-btn-outline {
      border: 1px solid var(--primary-color);
      color: var(--theme-btn-outline-font-color)!important;
      /* margin-top: 10px; */
  }
  .navbar-nav-right .theme-btn-outline:hover {
      /* border: 1px solid var(--secondary-color); */
      background-color: var(--primary-color);
      color: var(--white-color)!important;
      /* margin-top: 20px; */
  }
  #mainNav .navbar-toggler {
      padding: .25rem 0;
      border: none;
      color: var(--body-font-color);
  }
  .language-dropdown, .mode-change, .login-menu-item .nav-link, .user-dropdown {
      margin-right: 10px!important;
  }

  .offcanvas .navbar-nav-right .language-dropdown, .offcanvas .navbar-nav-right .mode-change,
  .offcanvas .navbar-nav-right .user-dropdown {
      display: none!important;
  }

}

@media only screen and (max-width: 575px) {
  .language-dropdown .avatar-md, .user-dropdown .avatar-md {
      margin-right: 0!important;
  }
}

/* ============ small devices .end// ============ */
/*Multilevel Dropdown Menu CSS End*/

/*-------------------------------------------
  6. Navbar Area CSS End
-------------------------------------------*/

/*-------------------------------------------
  7. Scroll To Top Area
-------------------------------------------*/
#scroll {
  position: fixed;
  right: 10px;
  bottom: 40px;
  cursor: pointer;
  width: 20px;
  height: 20px;
  display: none;
  z-index: 10;
  font-size: 20px;
  text-align: center;
  color: #fff;
  line-height: 48px;
}
/*-------------------------------------------
  7. Scroll To Top Area End
-------------------------------------------*/

/*-------------------------------------------
  8. Header Area
-------------------------------------------*/
.hero-area-top-part {
  background-image: url('../img/hero-dots-bg.svg');
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: contain; */
}

.hero-area-top-part {
  background-color: var(--bg-primary);
  min-height: 1067px;
  padding-top: 200px;
  padding-bottom: 100px;
}

.hero-bg-dots-img {
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.hero-area-bottom-part {
  margin-top: -453px;
}

.hero-sub-title {
  margin: 15px auto 29px;
  width: 75%;
}

.hero-content .theme-button {
  margin: 0 12px;
}

/* Hero Area Bottom Floating image css start */
.hero-backdrop-strock-wrap {
  /* position: relative; */
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}
.hero-backdrop-strock-wrap::after {
  content: "";
  position: absolute;
  width: 722.4px;
  /* height: 658.09px; */
  height: 630px;

  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);

  background: var(--primary-color);
  filter: blur(190.692px);
}

.hero-strock-img {
  /* position: absolute; */
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  margin-top: -20px;
}
.hero-bottom-img-left {
  filter: drop-shadow(0px 29.1333px 111.154px rgba(54, 134, 252, 0.17));
  left: 0;
  bottom: 162px;
}
.hero-bottom-img-right {
  filter: drop-shadow(0px 22.4282px 110.372px rgba(54, 134, 252, 0.17));
  right: 0;
  top: 185px;
}
/* Hero Area Bottom Floating image css end */

/*-------------------------------------------
  8. Header Area End
-------------------------------------------*/

/*-------------------------------------------
  9. Features Area Start
-------------------------------------------*/
.generate-content-area {
  padding-bottom: 36px;
}
.generate-content-faq {
  padding-inline-end: 20px;
}
.generate-content-row-wrap {
  margin-top: 77px;
}
.generate-content-faq .accordion-item {
  /* border-radius: 16px!important; */
  background-color: var(--bg-primary);
  padding: 0px 0;
  margin-bottom: 14px;
}
.generate-content-faq .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.generate-content-faq .accordion-button.collapsed {
  /* font-size: 22px; */
  /* letter-spacing: -0.5px; */
  background-color: var(--bg-primary)!important;
}
.generate-content-faq .accordion-collapse.show .accordion-body {
  background-color: var(--bg-secondary)!important;
}
.generate-content-faq .accordion-button {
  /* font-size: 22px; */
  /* letter-spacing: -0.5px; */
  background-color: var(--bg-secondary)!important;
}
.generate-content-faq .accordion-item:first-of-type {
  border-top-left-radius: 0!important;
  border-top-right-radius: 0!important;
}
.generate-content-faq .accordion-item:last-of-type {
  border-bottom-right-radius: 0!important;
  border-bottom-left-radius: 0!important;
}
.generate-content-faq .accordion-button .iconify {
  margin-right: 12px;
  color: var(--secondary-color);
}
.generate-content-faq .accordion-body {
  /* font-size: 15px;
  line-height: 22px;
  letter-spacing: -0.5px;
  padding: 0 1.50rem 9px 3.8rem; */
  font-weight: 400;
  background-color: var(--bg-secondary)!important;
}

/* Features Right start */
.feature-content-right {
  /* background-image: url('../img/feature-img/feature-right-bg-img.png'); */
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.feature-main-top-img {
  right: -6%;
  top: -106px;
}
.feature-main-bottom-img {
  left: -6%;
  bottom: -156px;
}
/* Features Right end */

/*-------------------------------------------
  9. Features Area End
-------------------------------------------*/

/*-------------------------------------------
  10. How It Works Area Start
-------------------------------------------*/
/* How it works timeline */
.how-it-works-wrap::after {
  position: absolute;
  content: "";
  /* border: 1.6px dashed var(--border-color); */
  border: 1.6px dashed var(--primary-color);
  height: 75%;
  width: 0px;
  left: 50%;
  top: 62%;
  transform: translate(0%,-50%);
  z-index: -1;
}

.how-it-works-wrap::before {
  position: absolute;
  content: "";
  z-index: 9;
  border: 1.6px dashed var(--border-color);
  height: 25%;
  width: 0px;
  left: 50%;
  top: 13%;
  transform: translate(0%,-50%);
}

.timeline-number {
  width: 67px;
  height: 67px;
  background: #F1F1F1;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  font-size: 24px;
  z-index: 9;
}
/* How it works timeline */

.how-it-works-item-right {
  padding-inline-start: 100px;
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
}
.how-it-works-item-left {
  margin-inline-end: 100px;
}
.how-it-works-wrap .how-it-works-item:nth-child(even) .row {
  flex-direction: row-reverse;
}
.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-right {
  padding-inline-start: 0;
  padding-inline-end: 100px;
}
.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-left {
  margin-inline-end: 0;
  margin-inline-start: 100px;
}
/* .how-it-works-wrap .how-it-works-item:last-child .row .how-it-works-item-bg {
  display: none;
} */
.how-it-works-wrap .how-it-works-item:last-child .row .how-it-works-item-right {
  padding-bottom: 0;
}

.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-left .how-it-works-strock-bg {
  transform: rotate(45deg);
}

.how-it-works-item-title {
  padding-right: 70px;
}
.how-it-works-features .price-check-icon {
  width: 26px;
  height: 26px;
  margin-top: 2px;
  margin-right: 15px!important;
}

.how-it-works-main-img {
  z-index: 9;
}
.how-it-works-strock-bg {
  width: 516.39px;
  height: 457.55px;
  z-index: 9;
  margin: -20px 0 0 25px;
}

.how-it-works-item-left::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 320px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  background: var(--primary-color);
  filter: blur(112.57px);
}
.support-area {
    background-color: #160E4D;
}
/* Timeline Scrollbar Start */

/* Timeline Scrollbar End */

/*-------------------------------------------
  10. How It Works Area End
-------------------------------------------*/

/*-------------------------------------------
  11. About Area Start
-------------------------------------------*/
.about-us-area .section-title {
  margin-left: 0;
  text-align: left;
}
.about-us-bg-strock-img {
  left: -94px;
  top: 157px;
  max-width: 1172px;
}
.about-top-img {
  width: 805px;
  right: 30px;
  bottom: 30px;
}
.about-top-content {
  margin-bottom: 51px;
}
.counter-number {
  color: var(--primary-color);
}
.about-bottom-left {
  background-color: var(--footer-bg);
  background-image: url('../img/about-us/about-bottom-left-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.about-bottom-left h4 {
  padding-inline-end: 30px;
}
/*-------------------------------------------
  11. About Area End
-------------------------------------------*/

/*-------------------------------------------
  12. Core Pages Area Start
-------------------------------------------*/
.core-pages-nav-tabs {
  margin-bottom: 96px;
  width: 55%;
  border-bottom: 1.6px solid var(--border-color);
}
.nav-tabs.core-pages-nav-tabs .nav-link {
  font-size: 20px;
  font-weight: 500;
  color: var(--heading-color);
  padding: 0 22px 13px 22px;
  margin: 0 10px;
  background-color: transparent;
  border: none;
  border-bottom: 1.6px solid transparent;
}
.nav-tabs.core-pages-nav-tabs .nav-item.show .nav-link, .nav-tabs.core-pages-nav-tabs .nav-link.active {
  color: var(--primary-color)!important;
  background-color: transparent;
  border-color: var(--primary-color);
}

.core-pages-main-img {
  z-index: 9;
}
.core-pages-strock-bg-img {
  width: 622.16px;
  height: 551.28px;
  margin: -22px 34px;
  z-index: 9;
}
.core-pages-content-left::after {
  content: "";
  position: absolute;
  width: 464px;
  height: 409px;
  /* z-index: -1; */

  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);

  background: var(--primary-color);
  filter: blur(122.428px);
}

.core-pages-content-right {
  padding-inline-start: 25px;
}
/*-------------------------------------------
  12. Core Pages Area End
-------------------------------------------*/

/*-------------------------------------------
  13. Pricing Plan CSS Start
-------------------------------------------*/
.pricing-top-part-content-wrap {
  background-color: var(--footer-bg);
  background-image: url('../img/pricing-table-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;

  min-height: 491px;
  padding-top: 100px;
}

/* Pricing Area Bottom Part Start */
.pricing-area-bottom-part {
  margin-top: -230px;
}
.pricing-plan-area {
  padding: 0 70px;
}
/* Pricing Area Bottom Part End */

.choose-plan-area-title, .payment-method-area-title {
  margin-bottom: 50px;
}
.price-card-item {
  border: 0.776515px solid var(--border-color);
  background-color: var(--bg-primary);
}
.price-title span {
  color: var(--body-font-color);
  letter-spacing: -0.04em;
}

hr {
  border: 1.6px solid rgba(0, 0, 0, 0.1);
}

.pricing-features {
  margin: 18px 0 11px;
}
.price-check-icon {
  width: 22px;
  height: 22px;
}

/* Active Pricing Table Start */
.price-card-item.active {
  background-color: var(--primary-color)!important;
  box-shadow: 0px 27px 77px rgba(54, 134, 252, 0.46);
}
.price-card-item.active .theme-btn-outline:hover, .price-card-item.active .theme-btn-outline.active {
  background-color: var(--bg-primary)!important;
  color: var(--primary-color)!important;
}
.price-card-item.active h4, .price-card-item.active p, .price-card-item.active h2, .price-card-item.active li,
.price-card-item.active .price-title span  {
  color: var(--white-color);
}
/* Active Pricing Table End */

/*-------------------------------------------
  13. Pricing Plan CSS End
-------------------------------------------*/

/*-------------------------------------------
  14. Integrations Plan CSS Start
-------------------------------------------*/
.integrations-area {
  background-image: url('../img/integrations-img/integrations-dots-bg.png');
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: cover; */
}
.logo-bg img {
  max-height: 60px;
}
.integrations-logo-wrap::before {
  content: "";
  position: absolute;
  width: 748px;
  height: 430px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
    background: var(--primary-color);
  filter: blur(170.192px);
}

.integrations-strock-bg {
  /* top: -29px; */
  margin-top: -28px;
}
.integrations-logo-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 951px;
  margin: 0 auto;
    padding-bottom: 0px;
}

/* Integrations Logo Item */
.logo-item {
    /* width: 136px; */
    /* height: 136px; */
    /* background: rgba(255, 255, 255, 0.1); */
  backdrop-filter: blur(3px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  /* margin: 12.5px; */
}
.logo-bg {
  width: 102.21px;
  height: 89.25px;
  /* background-color: var(--bg-primary); */
  background-image: url('../img/integrations-img/logo-shape-bg.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* Integrations Logo Item */

/*-------------------------------------------
  14. Integrations Plan CSS End
-------------------------------------------*/

/*-------------------------------------------
  15. Customer Testimonial Area Start
-------------------------------------------*/
.customer-testimonial-item {
  margin-bottom: 30px;
}
.customer-testimonial-area .section-title {
  width: 46%;
}
.customer-testimonial-img {
  overflow: hidden;
}
.customer-testimonial-img img {
  height: 92px;
  width: 92px!important;
  margin-inline-end: 15px;
}
.testimonial-text-wrap {
  background-image: url('../img/customer-testimonial/testimonial-para-strock.svg');
  background-repeat: no-repeat;
  background-position: center;
  /* background-size: cover; */
  margin-top: -50px;
  margin-inline-start: 10px;
  /* margin-bottom: 18px; */
  padding: 20px;
  width: 100%;
}
.customer-testimonial-text {
  padding: 20px;
}
.customer-testimonial-rating {
  margin-inline-start: 30px;
}
.customer-testimonial-rating .iconify {
  color: #c3c2c2;
  font-size: 20px;
}
.customer-testimonial-rating .iconify.star-filled {
  color: #FFB526;
}
.customer-testimonial-bg-dots {
  top: 14%;
  left: 23%;
}

.testimonial-bottom-line {
  width: 74px;
  height: 0px;
  border: 1px solid var(--bg-secondary);
}
.testimonial-quote .iconify {
  color: var(--primary-color);
  font-size: 57px;
  position: absolute;
  right: -16px;
  top: -13px;
}
.testimonial-quote {
  background: var(--blue-color-transparent);
  height: 45px;
  width: 45px;
  border-radius: 50%;
  position: relative;
}

/* Controls nav */
.customer-testimonial-slider .owl-nav button {
  position: absolute;
  font-size: 32px!important;
  color: var(--white-color)!important;
}
.customer-testimonial-slider .owl-nav button:hover {
  background: transparent!important;
}
.customer-testimonial-slider .owl-nav {
  top: 37%;
}
.customer-testimonial-area .owl-nav .owl-prev {
  left: -30px;
}
.customer-testimonial-area .owl-nav .owl-next {
  right: -30px;
}

.owl-big.owl-theme {
  position: relative;
}

/* Testimonial Dots */
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  height: 24px;
  width: 24px;
  border: 2px solid transparent;
  border-radius: 50%;
  margin: 7px;
}
.owl-theme .owl-dots .owl-dot:hover span {
  background: var(--heading-color);
  transition: ease all .5s;
}
.owl-theme .owl-dots .owl-dot.active {
  border: 2px solid var(--heading-color);
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px;
  background: #DCDCDC;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: var(--heading-color);
  border: 2px solid var(--heading-color);
}
/* Testimonial Dots */

/* Customer Testimonial Right Part */

/* Owl Navigation */
.owl-small .owl-nav button {
  height: 50px;
  width: 50px;
  border: 1px solid var(--black-color)!important;
  border-radius: 50%!important;
  background-color: var(--white-color)!important;
}
.owl-small .owl-nav [class*=owl-]:hover {
  color: var(--text-green)!important;
}
.owl-small .owl-dots, .owl-small .owl-nav {
  text-align: left;
}
.owl-small .owl-nav {
  margin-top: 30px;
  margin-left: 43px;
}
/*-------------------------------------------
  15. Customer Testimonial Area End
-------------------------------------------*/

/*-------------------------------------------
  16. FAQS Area Start
-------------------------------------------*/
.faq-floating-bg-img {
  bottom: -227px;
  left: 0;
  width: 100%;
  max-height: 100%;
}

/* Accordion CSS Start */
.accordion-button {
  background-color: var(--bg-primary);
  padding: 24px 43px 24px 30px;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  /* letter-spacing: -0.04em; */
}
.accordion-button.collapsed {
  background: var(--bg-primary);
}
.accordion-button::after {
  position: absolute;
  /* right: 29px; */
  right: 19px;
}
.accordion-button:not(.collapsed) {
  color: var(--heading-color);
  background-color: var(--bg-primary);
}
.accordion-button:focus {
  z-index: 3;
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}
.accordion-body {
  padding: 0 30px 19px;
  margin: 0;
  color: var(--body-font-color);
  font-weight: 500;
  font-size: 17px;
  line-height: 28px;
}
.accordion-item:first-of-type {
  border-top-left-radius: 0!important;
  border-top-right-radius: 0!important;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0!important;
  border-bottom-left-radius: 0!important;
}

.accordion-button:not(.collapsed) {
  box-shadow: none;
}
.accordion-item {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-color);
  padding: 5px 0;
  margin-bottom: 25px;
}
.accordion-item:not(:first-of-type) {
  border: 1px solid var(--border-color);
}
.accordion-button::after {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M12 20v-8m0 0V4m0 8h8m-8 0H4"%2F%3E%3C%2Fsvg%3E');
  background-size: 1.1rem;
}
.accordion-button:not(.collapsed)::after {
  background-image: url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1em" height="1em" preserveAspectRatio="xMidYMid meet" viewBox="0 0 24 24"%3E%3Cpath fill="none" stroke="currentColor" stroke-linecap="round" stroke-width="2" d="M20 12H4"%2F%3E%3C%2Fsvg%3E');
}
/* Accordion CSS End */

/* FAQ Area Floating img Start */
.faq-floating-img {
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  width: auto;
  margin-top: -58px;
}
.faq-accordion-wrap::after {
  position: absolute;
  width: 307px;
  height: 280px;

  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);

  background: var(--primary-color);
  filter: blur(116.444px);
  content: "";
  z-index: -1;
}
/* FAQ Area Floating img End */

/*-------------------------------------------
  16. FAQS Area End
-------------------------------------------*/

/*-------------------------------------------
  17. Footer Area Start
-------------------------------------------*/
.footer-area {
  background-color: var(--footer-bg);
  padding: 140px 0 0;
}

.footer-top-part {
  padding-bottom: 140px;
}
.footer-bg-img {
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100%;
}
/* Footer Widget */
.footer-widget {
  float: right;
}

.footer-subscribe-content form input {
  background-color: #343E53;
  border-color: transparent;
  color: var(--white-color);
  min-width: 255px;
}
.footer-subscribe-content form .form-control::placeholder {
  color: var(--white-color);
}
.footer-subscribe-content form .form-control:focus {
  background-color: #343E53;
  color: var(--white-color);
  border-color: transparent;
}
.footer-about img {
  margin-bottom: 17px;
}
.footer-widget > h4 {
  margin-bottom: 41px;
}
.footer-widget .footer-widget-title {
  color: var(--white-color);
}
.footer-widget.footer-about p {
  color: var(--footer-text-color);
}
/*Footer social */
.footer-social ul li a {
  width: 39px;
  height: 39px;
  border: 1px solid var(--white-color);
  display: flex;
  border-radius: 50%;
  font-size: 18px;
  justify-content: center;
  align-items: center;
  margin-inline-end: 15px;
}

.footer-social ul li a:hover{
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.footer-social ul li a .iconify {
  color: var(--white-color);
}
.footer-links li a, .footer-links ul li {
  color: var(--footer-text-color);
}
.footer-about address, .footer-subscribe-content p {
  color: var(--footer-text-color);
  margin-bottom: 0;
}
.footer-links li a:hover, .footer-bottom-nav ul li a:hover {
  color: var(--primary-color);
  text-decoration-line: underline;
}
.footer-links ul li {
  padding: 0 0 18px;
}
.footer-links ul li:last-child {
  padding-bottom: 0;
}
.footer-contact-info ul li img {
  margin-right: 22px;
}
.copyright-text {
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.copyright-text p, .copyright-text a {
  color: var(--footer-text-color);
  font-size: 15px;
  line-height: 27px;
}
.copyright-text p a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}
/*-------------------------------------------
  17. Footer Area End
-------------------------------------------*/

.navbar-nav-middle {
  width: 510px !important;
}


.room_icons i {
  margin-right: 10px;
}

.room_icons i:not(:first-child) {
  margin-left: 15px;
}


.properties-area{background-color:var(--bg-primary);min-height:1067px;padding-top:120px}.properties-filter{display:flex;align-items:center;gap:11px;margin-top:11px;border:1px solid var(--border-color,#eaeaea);background:var(--off-white,#fafafa);padding:12px}.first-filter{display:flex;align-items:center;gap:10px}.recent-filter{display:flex;align-items:center;gap:11px}.properties-search{display:flex;align-items:center;gap:11px;padding-left:20px}.properties-search input{width:376px;font-size:18px;font-style:normal;font-weight:400;line-height:160%;background:0 0}.single-filter select{border:1px solid var(--border-color);font-size:18px;font-style:normal;font-weight:400;line-height:160%;color:var(--body-font-color);padding:7px 14px;border-radius:4px}.map-area iframe{height:100%;width:100%}.margin-top-1{margin:42px 0!important}@media(min-width:76px) and (max-width:991.98px){.map-property-h{height:454px!important}}.single-properties{border:1px solid var(--border-color);border-radius:12px;margin-bottom:17px;background:var(--off-white)}.properties-img img{width:100%;border-radius:12px;max-height:251px;object-fit:cover;height:251px;-o-object-fit:cover}.properties-text-info{background:var(--bg-secondary);padding:20px;border-bottom-left-radius:12px;border-bottom-right-radius:12px}.properties-name{font-size:24px;font-style:normal;font-weight:500;color:var(--heading-color);line-height:36px;margin-bottom:6px}.properties-location{display:flex}.properties-location svg{flex:0 0 auto;margin-top:4px}.properties-location p{font-size:18px;font-style:normal;font-weight:400;line-height:28px;color:var(--body-font-color);margin-bottom:16px}.room-details{min-height:138px;border-radius:4px;border:1px solid var(--border-color);background:var(--white-color);padding:13px 15px}.single-option{margin-right:13px;margin-bottom:3px}.single-option>div{display:inline-block}.single-option>p{display:inline-block;font-size:14px;font-style:normal;font-weight:400;line-height:160%;color:var(--body-font-color)}.price-properties{font-size:14px;font-style:normal;font-weight:500;line-height:160%;color:var(--heading-color);margin-top:6px}.properties-icon-type i{font-size:13px}.properties-icon-type-location i{font-size:20px;line-height:28px;margin-right:9px}.pagination .page-item.active .page-link{color:var(--primary-color)}@media(min-width:78px) and (max-width:1438.98px){.properties-filter{flex-direction:column}.properties-search{border:1px solid var(--border-color);padding:4px;border-radius:5px}}@media(min-width:78px) and (max-width:768.98px){.first-filter{display:inline-block}.properties-filter{display:inline-block}.recent-filter{display:inline-block}.single-filter{display:inline-block;margin-top:7px}}@media(min-width:78px) and (max-width:506.98px){.properties-search input{width:100%}}.property-details-area{background-color:var(--bg-primary);padding-top:120px}.property-bander-text{text-align:center;padding-bottom:98px;padding-top:78px;background:var(--bg-secondary);margin-bottom:65px}.property-bander-header{font-size:48px;font-style:normal;font-weight:600;line-height:58.09px;margin-bottom:19px}.property-home-part{font-size:18px;font-style:normal;font-weight:400;line-height:21.78px}.single-property-slider img{width:100%;border-radius:20px;max-height:432px;object-fit:cover;height:432px;-o-object-fit:cover}.property-slider-area{margin-bottom:65px}.property-slider-area .owl-nav button{width:70px;height:70px;background:#fff!important;border-radius:50%;color:#3686fc!important;border:1px solid #3686fc!important}.property-slider-area .owl-nav{display:flex;justify-content:space-between;position:absolute;width:100%;top:50%;margin-top:-35px;left:0}.property-slider-area{position:relative}.property-slider-area .owl-nav button:hover{background:#3686fc!important;color:#fff!important}.property-slider-area .owl-prev{margin-left:-35px}.property-slider-area .owl-next{margin-right:-35px}.property-description-title{font-size:24px;font-style:normal;font-weight:600;line-height:160%;margin-bottom:14px}.property-description-info{font-size:18px;font-style:normal;font-weight:400;line-height:28px;color:var(--body-font-color);margin-bottom:97px}.location-name{font-size:18px;font-style:normal;font-weight:400;line-height:28px;color:var(--body-font-color);margin-bottom:11px}.location-title{font-size:48px;font-style:normal;font-weight:400;line-height:58px;margin-bottom:14px}.property-price{font-size:36px;font-style:normal;font-weight:600;line-height:160%;margin-bottom:35px}.property-price span{color:var(--primary-color)}.location-property-area{border-bottom:1px solid var(--border-color)}.single-property-specie{margin-top:36px;padding-bottom:35px;border-bottom:1px solid var(--border-color)}.specie-catagories{font-size:24px;font-style:normal;font-weight:600;line-height:160%;margin-bottom:21px}.specie-list-text{font-size:20px;font-style:normal;font-weight:500;line-height:160%;margin-bottom:5px}.specie-list-text span{color:#737c90}.specie-list-text i{margin-right:15px}.single-property-specie{margin-top:36px;padding-bottom:35px;border-bottom:1px solid var(--border-color)}.specie-catagories{font-size:24px;font-style:normal;font-weight:600;line-height:160%;margin-bottom:21px}.specie-list-text{font-size:20px;font-style:normal;font-weight:500;line-height:160%;margin-bottom:5px}.specie-list-text span{color:#737c90}.specie-list-text i{margin-right:15px}.property-woner-info{border-radius:4px;border:1px solid var(--border-color,#EAEAEA);background:var(--bg-secondary);display:flex;align-items:center;padding:37px;gap:23px;margin-bottom:24px}.property-woner-image img{width:100%;height:100%;border-radius:50%;flex:0 0 auto}.property-woner-image{width:116px;height:116px}.property-woner-name{font-size:24px;font-style:normal;font-weight:600;line-height:160%;margin-bottom:8px}.property-woner-name-location p i{margin-right:9px;font-size:12px;border:1px solid var(--border-color);border-radius:50%;padding:8px}.property-woner-name-location p{font-size:20px;font-style:normal;font-weight:400;line-height:28px;margin-bottom:12px}.property-location-area iframe{width:100%;height:485px}.property-location-area iframe{width:100%;height:485px}.nearby-title{margin-top:23px;margin-bottom:21px;font-size:24px;font-style:normal;font-weight:600;line-height:160%}.nearby-image img{width:100%;border-radius:4px;max-height:240px;object-fit:cover;height:240px;-o-object-fit:cover}.single-nearby-info{border:1px solid var(--border-color);background:var(--bg-secondary);margin-bottom:24px}.nearby-info{padding:22px 15px}.nearby-name{font-size:24px;font-style:normal;font-weight:500;line-height:20px;margin-bottom:8px}.nearby-details{font-size:18px;font-style:normal;font-weight:400;line-height:160%;margin-bottom:13px}.distance-nearby{font-size:18px;font-style:normal;font-weight:400;margin-bottom:8px}.distance-nearby span{color:var(--heading-color)}.nearby-contact{font-size:18px;font-style:normal;font-weight:400;line-height:21.78px}.nearby-contact a{color:var(--heading-color)}.related-properties{margin-top:35px;margin-bottom:85px}.related-title{font-size:48px;font-style:normal;font-weight:600;line-height:160%;margin-bottom:14px}@media(min-width:78px) and (max-width:768.98px){.property-slider-area .owl-prev{margin-left:0}.property-slider-area .owl-next{margin-right:0}.property-slider-area .owl-nav button{width:30px;height:30px}.property-slider-area .owl-nav{margin-top:-15px}.property-woner-info{flex-direction:column}.property-woner-name-location{text-align:center}.location-title{font-size:33px;line-height:normal}.property-price{font-size:24px}.property-woner-name-location p{font-size:15px}}.upload-area{display:flex;justify-content:space-between;align-items:center;padding-bottom:22px;border-bottom:1px solid var(--border-color);margin-bottom:30px}.upload-area h3{font-size:24px;font-style:normal;font-weight:500;line-height:36px}.upload-list-link{font-size:13px;font-style:normal;font-weight:400;line-height:20px}.upload-list-link a{color:var(--heading-color)}.upload-from-area{background:var(--off-white);border-radius:4px;border:1px solid var(--border-color);padding:20px}.single-input-title{font-size:18px;font-style:normal;font-weight:500;line-height:27px;margin-bottom:19px}.single-upload-input-from label{font-size:14px;font-style:normal;font-weight:500;line-height:20px;display:block;color:var(--heading-color);margin-bottom:8px}.single-upload-input-from select,.single-upload-input-from input,.single-upload-input-from textarea{width:100%;font-size:14px;font-style:normal;font-weight:400;line-height:160%;padding:13px 20px;border-radius:4px;border:1px solid var(--border-color);background:var(--white-color);color:var(--border-color-2)}.single-upload-from-property{border-bottom:1px solid var(--border-color);padding-bottom:35px;margin-bottom:35px}.single-upload-input-from{margin-bottom:15px}.amenities-upload-input{border-radius:4px;border:1px solid var(--border-color);background:var(--white-color);padding:17px 14px 0}.single-interior{font-size:14px;font-style:normal;font-weight:400;line-height:160%;color:var(--border-color-2);display:inline-block;margin-right:21px;margin-bottom:14px}.single-interior input{margin-right:5px}.single-interior label{margin:0}.contact-us p{border-radius:4px;border:1px solid var(--border-color);background:var(--bg-secondary);padding:30px;text-align:center;font-size:20px;font-style:normal;font-weight:400;line-height:30px;color:var(--black-color);margin-bottom:22px}.single-contact-us-from label{font-size:20px;font-style:normal;font-weight:500;line-height:20px;display:block;margin-bottom:16px}.single-contact-us-from input{border-radius:4px;border:1px solid var(--border-color);background:var(--white-color);font-size:18px;font-style:normal;font-weight:400;line-height:160%;padding:15px 20px;width:100%}.single-contact-us-from{margin-bottom:38px}.contact-us-from-properties{padding:50px;border-radius:4px;border:1px solid var(--border-color);background:var(--bg-secondary)}.customs-model-content{padding:15px;background:#fff;border-radius:4px}@media(min-width:992px){.customs-model.modal-lg,.modal-xl{--bs-modal-width: 1100px}}.card-img-top.property-woner-img{width:100%;height:70px;margin:10px auto;max-height:70px;object-fit:cover;-o-object-fit:cover;border-radius:5px}.woner-property-card-body{text-align:center;margin-top:15px}.card.property-woner-location-info{border:none}.card-title.woner-property-title{font-size:15px;font-weight:600}.card-text.woner-property-details{font-size:14px;font-style:normal;font-weight:400;line-height:160%;color:var(--body-font-color)}.leaflet-popup-content{width:250px!important}.details-btu-property{color:#fff!important;background-color:var(--primary-color);text-decoration:none!important;padding:6px;width:100%;display:block;border-radius:50px;transition:all .5s ease-in-out;margin-top:18px}.details-btu-property:hover{color:#fff!important;background-color:var(--primary-hover-color)}


*{margin:0;padding:0;border:none;outline:none}body,html{height:100%;margin:0}body{background:var(--bg-primary) none repeat scroll;background-position:center;background-size:cover;font-size:17px;font-weight:500;font-weight:400;font-family:var(--body-font-family);color:var(--body-font-color);overflow-x:hidden;scroll-behavior:smooth}a{color:var(--heading-color)}a:hover{color:var(--primary-color)}a,#mainNav,.navbar .dropdown .dropdown-toggle::after,.theme-btn,button,.owl-carousel button.owl-dot,button{transition:all .5s ease-in-out}.fast-transition{transition:all .3s ease-in-out}.slow-transition{transition:all .7s ease-in-out}ul li{margin:0;padding:0;list-style-type:none}ul{margin:0;padding:0}a,a>*{outline:none;cursor:pointer;text-decoration:none}a{color:var(--body-font-color)}a:hover{color:var(--primary-hover-color)!important;text-decoration:none}img::selection{background:0 0}.page-link:focus{box-shadow:none}.form-control,.form-select{background-color:var(--bg-primary);color:var(--body-font-color);border:1px solid var(--border-color);font-size:18px;background:#fff;border-radius:203px;letter-spacing:-.04em;font-weight:600}.form-control:focus{background-color:var(--white-color);box-shadow:none;border-color:#86b7fe}.form-select:focus{border-color:#86b7fe;box-shadow:none}.form-control::placeholder{color:#9ca3ae}.input-group-text{font-size:14px}textarea{min-height:120px!important;height:auto!important;border-radius:13px!important}label{margin-bottom:10px;font-size:18px;font-weight:600}.form-check-input:checked{background-color:var(--primary-color);border-color:var(--primary-color)}.btn-close:focus,.form-check-input:focus{box-shadow:none}.form-select{padding:7px 32px 7px 20px}.custom-checkbox input{padding:0;height:initial;width:initial;margin-bottom:0;display:none;cursor:pointer}.custom-checkbox label{position:relative;cursor:pointer;display:inline-flex;align-items:center;margin-bottom:0}.custom-checkbox label:before{content:'';-webkit-appearance:none;background-color:transparent;border:1px solid var(--border-color-2);box-shadow:none;padding:7px;display:inline-block;position:relative;vertical-align:middle;cursor:pointer;margin-right:7px;border-radius:2px}.custom-checkbox input:checked+label:before{border:1px solid var(--primary-color)}.custom-checkbox input:checked+label:after{content:'';display:block;position:absolute;top:4px;left:6px;width:5px;height:9px;border:solid var(--primary-color);border-width:0 1px 1px 0;transform:rotate(45deg)}.custom-radiobox [type=radio]:checked,.custom-radiobox [type=radio]:not(:checked){position:absolute;left:-9999px}.custom-radiobox [type=radio]:checked+label,.custom-radiobox [type=radio]:not(:checked)+label{position:relative;padding-left:28px;cursor:pointer;line-height:20px;display:inline-block;color:var(--body-font-color);margin-bottom:0}.custom-radiobox [type=radio]:checked+label:before,.custom-radiobox [type=radio]:not(:checked)+label:before{content:'';position:absolute;left:0;top:0;width:18px;height:18px;border:1px solid var(--border-color-2);border-radius:100%;background:var(--white-color)}.custom-radiobox [type=radio]:checked+label:after,.custom-radiobox [type=radio]:not(:checked)+label:after{content:'';width:12px;height:12px;background:var(--primary-color);position:absolute;top:3px;left:3px;border-radius:100%;-webkit-transition:all .2s ease;transition:all .2s ease}.custom-radiobox [type=radio]:not(:checked)+label:after{opacity:0;-webkit-transform:scale(0);transform:scale(0)}.custom-radiobox [type=radio]:checked+label:after{opacity:1;-webkit-transform:scale(1);transform:scale(1)}h1,h2,h3,h4,h5,h6{font-weight:600;margin:0;color:var(--heading-color);font-style:normal}h1{font-weight:600;font-size:80px;line-height:90px}h2{font-weight:600;font-size:48px;line-height:58px}h3{font-weight:500;font-size:36px;line-height:42px}h4{font-weight:500;font-size:24px;line-height:30px}h5{font-weight:400;font-size:17px;line-height:27px}h6{font-weight:500;font-size:15px;line-height:27px}.big-para{font-size:18px;line-height:25px}p{margin-bottom:0;font-weight:400;font-size:17px;line-height:27px;color:var(--body-font-color)}figure{margin:0}:root{--navbar-bg: #fff;--navbar-bg-dark: #fff;--footer-bg: #160E4D;--footer-bg-dark: #fff;--footer-text-color: #ffffffcc;--white-color: #fff;--black-color: #000;--bg-primary: #fff;--bg-primary-dark: #1F2246;--bg-secondary: #FAFAFA;--bg-secondary-dark: #fff;--status-btn-bg: #F5F5F5;--status-btn-bg-dark: #24282C;--text-gradient-color: linear-gradient(90deg, #2E42F7 11.99%, #FF9243 90.21%);--heading-color: #1F2246;--heading-color-dark: #fff;--body-font-color: #4C4E6B;--body-font-color-dark: #fff;--border-color: #0000001a;--border-color-dark: rgba(255, 255, 255, 0.1);--border-color-2: #EDEDED;--theme-btn-outline-font-color: #1F2246;--blue-color-transparent: #E9F2FF;--secondary-hover-color: #4831DB;--red-color: #FF3D3D;--danger-color: #FF3D3D;--red-color-hover: #dc3545;--yellow-color: #FBBF37;--orange-color: #FF794D;--orange-color-transparent: rgba(255, 121, 77, 0.08);--green-color: #4FBF67;--green-color-hover: #0d943a;--green-color-transparent: rgba(30, 189, 83, 0.08);--body-font-family: 'Inter', sans-serif}.color-heading{color:var(--heading-color)}.color-hover{color:var(--primary-hover-color)}.primary-color{color:var(--primary-color)!important}.primary-color:hover{color:var(--primary-hover-color)!important}.secondary-color{color:var(--secondary-color)}.theme-text-color{color:var(--body-font-color)}.bg-primary-color{background-color:var(--primary-color)}.bg-secondary{background-color:var(--bg-secondary)!important}.bg-gradient{background-image:var(--bg-gradient)!important}.theme-border{border:1px solid var(--border-color)}.border-bottom{border-bottom:1px solid var(--border-color)!important}.border-top{border-top:1px solid var(--border-color)!important}.orange-color{color:var(--orange-color)}.green-color{color:var(--green-color)}.red-color,.theme-link-red{color:var(--red-color)}.red-color:hover,.theme-link-red:hover{color:var(--red-color-hover)!important}button.red-color:hover,a.red-color:hover,.theme-link-red:hover{color:var(--red-color-hover)}.bg-orange{background-color:var(--orange-color)}.bg-green{background-color:var(--green-color)}.bg-red{background-color:var(--red-color)}.bg-red-transparent{background-color:rgba(255,67,67,.1)}.bg-green-transparent{background-color:var(--green-color-transparent)}.bg-blue-transparent{background-color:var(--primary-color-transparent)}.bg-purple-transparent{background-color:#f0ebff}.bg-orange-transparent{background-color:var(--orange-color)}.theme-link{color:var(--primary-color)}.theme-link:hover{color:var(--primary-hover-color)!important}.theme-secondary-link{color:var(--secondary-color)}.theme-secondary-link:hover{color:var(--secondary-hover-color)!important}.section-t-space{padding-top:150px}.section-b-space{padding-bottom:150px}.section-t-small-space{padding-top:125px}.section-b-small-space{padding-bottom:125px}.section-t-80-space{padding-top:80px}.section-b-80-space{padding-bottom:80px}.section-t-60-space{padding-top:60px}.section-b-60-space{padding-bottom:60px}.p-30{padding:30px}.pl-30{padding-left:30px}.pr-30{padding-right:30px}.pt-30{padding-top:30px}.pb-30{padding-bottom:30px}.pb-30{padding-bottom:30px}.pb-15{padding-bottom:15px}.p-20{padding:20px}.pb-20{padding-bottom:20px}.p-25{padding:25px}.pb-25{padding-bottom:25px}.pt-20{padding-top:20px}.mt-10{margin-top:10px}.mt-15{margin-top:15px}.mb-15{margin-bottom:15px}.mt-25{margin-top:25px}.mb-25{margin-bottom:25px}.me-25{margin-right:25px}.ms-25{margin-left:25px}.mt-20{margin-top:20px}.mb-20{margin-bottom:20px}.mt-30{margin-top:30px}.mb-30{margin-bottom:30px}.mr-30{margin-right:30px}.mt-50{margin-top:50px}.mr-15{margin-right:15px}.radius-95{border-radius:95px}.radius-3{border-radius:3px}.radius-4{border-radius:4px}.radius-5{border-radius:5px}.radius-8{border-radius:8px}.radius-10{border-radius:10px}.radius-12{border-radius:12px}.radius-15{border-radius:15px}.radius-20{border-radius:20px}.radius-50{border-radius:50%}.radius-t-r-0{border-top-right-radius:0!important}.radius-t-l-0{border-top-left-radius:0!important}.radius-b-r-0{border-bottom-right-radius:0!important}.radius-b-l-0{border-bottom-left-radius:0!important}.font-normal{font-weight:400}.font-bold{font-weight:700}.font-semi-bold{font-weight:600}.font-medium{font-weight:500}.font-24{font-size:24px;line-height:31px}.font-20{font-size:20px;line-height:31px}.font-22{font-size:22px;line-height:30px}.font-18{font-size:18px;line-height:150%}.font-17{font-size:17px}.font-16{font-size:16px}.font-15{font-size:15px;line-height:23px}.font-14{font-size:14px}.font-13{font-size:13px;line-height:18px}.font-12{font-size:12px;line-height:160%}.font-11{font-size:11px;line-height:12px}section{position:relative}.section-title{width:70%;margin:0 auto 55px;text-align:center}.section-sub-heading{font-size:18px;line-height:28px;margin-top:19px}.section-tag-heading{margin-bottom:16px}.cursor{cursor:pointer}.fit-image{width:100%;object-fit:cover;-o-object-fit:cover}.avatar-md{height:3.8rem;width:3.8rem}.avatar-xl{height:5.5rem;width:5.5rem}.pagination{margin-top:25px}.pagination li{margin-right:14px;border-radius:3px}.page-item.active .page-link{color:#fff;background-color:var(--theme-color);border-color:var(--theme-color)}.page-item .page-link .iconify{font-size:19px;color:#52526c}.pagination .page-link{color:var(--gray-color);font-size:15px;line-height:16px;background-color:#fff;height:45px;width:45px;font-weight:600;display:flex;align-items:center;justify-content:center;padding:10px!important;border-radius:3px;border:1px solid #f2f2f2;box-sizing:border-box;box-shadow:0 6px 21px rgba(21,3,89,.08)}.section-btn{margin-top:42px}.btn{padding:0}.btn.focus,.btn:focus{outline:0;box-shadow:none}button{background-color:transparent}button:focus{outline:0}.theme-btn,.theme-btn-outline,.theme-btn-purple,.theme-btn-green,.theme-btn-red,.edit-btn,.theme-btn-back{display:inline-flex;align-items:center;cursor:pointer;outline:none;z-index:99;padding:22px 43px!important;justify-content:center;color:var(--white-color);border:1px solid transparent;font-weight:500!important;font-size:20px;line-height:100%;border-radius:195px}.theme-btn:hover,.theme-btn-outline,.theme-btn-purple:hover,.theme-btn-green:hover,.theme-btn-red:hover{color:var(--white-color)!important}.theme-btn{background-color:var(--primary-color)}.theme-btn:hover{background-color:var(--primary-hover-color)}.theme-btn-outline{border:1px solid var(--primary-color);background-color:var(--white-color);color:var(--theme-btn-outline-font-color)!important}.theme-btn-outline:hover,.theme-btn-outline.active{background-color:var(--primary-color);color:var(--white-color)!important}.theme-btn-purple{background-color:var(--secondary-color)}.theme-btn-purple:hover{background-color:var(--secondary-hover-color)}.theme-btn-green{background-color:var(--green-color)}.theme-btn-green:hover{background-color:var(--green-color-hover)}.theme-btn-red{background-color:var(--red-color)}.theme-btn-red:hover{background-color:var(--red-color-hover)}.edit-btn{border:1px solid var(--primary-color);color:var(--primary-color)!important}.edit-btn:hover{border:1px solid var(--primary-hover-color)!important;color:var(--primary-hover-color)!important}.theme-btn-back{background-color:var(--white-color);border:1px solid var(--border-color);color:var(--heading-color)}.theme-btn-back:hover{background-color:var(--off-white)}.status-btn{padding:7px 15px!important;display:inline-flex;align-items:center;justify-content:center;border-radius:4px;min-height:34px;background-color:var(--status-btn-bg);color:var(--body-font-color)}.table .status-btn{min-width:100px}.status-btn-light{background-color:var(--bg-secondary)!important;color:var(--black-color)!important}.status-btn-purple{background-color:rgba(72,49,218,.08)!important;color:var(--secondary-color)!important}.status-btn-green{background-color:var(--green-color-transparent)!important;color:var(--green-color)!important}.status-btn-red{background-color:rgba(255,67,67,.1)!important;color:var(--red-color)!important}.status-btn-blue{background-color:var(--blue-color-transparent)!important;color:var(--blue-color)}.status-btn-orange{background-color:var(--orange-color-transparent)!important;color:var(--orange-color)!important}#preloader{background-color:#fff;position:fixed;top:0;bottom:0;left:0;right:0;z-index:9999999999999999}#preloaderInner{width:100%;display:-webkit-box;display:-ms-flexbox;display:flex;-webkit-box-align:center;-ms-flex-align:center;align-items:center;height:100%;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.custom-scrollbar{scrollbar-width:thin;scrollbar-color:#d1d6db #fff}.custom-scrollbar::-webkit-scrollbar{width:7px;height:7px}.custom-scrollbar::-webkit-scrollbar-track{background-color:#fff}.custom-scrollbar::-webkit-scrollbar-thumb{background-color:#d1d6db}.custom-scrollbar::-webkit-scrollbar-track,.custom-scrollbar::-webkit-scrollbar-thumb{border-radius:7px}::-webkit-scrollbar{width:7px;height:7px}::-webkit-scrollbar-track{background-color:#fff}::-webkit-scrollbar-thumb{background-color:#d1d6db}::-webkit-scrollbar-track,::-webkit-scrollbar-thumb{border-radius:7px}.container{padding:0}.menu-section-area{position:absolute;width:100%;padding:0;z-index:999;overflow-x:visible}@media only screen and (min-width:992px){#mainNav{display:block}.navbar-expand-lg .navbar-nav{align-items:center;justify-content:flex-end}}@media only screen and (max-width:991.98px){.navbar-nav{width:100%;margin-bottom:0!important}}.navbar-nav-middle{justify-content:center}.navbar-nav-right{justify-content:flex-end}.navbar{padding:0}#mainNav{position:absolute;display:flex!important;transition:all ease .6s;background:var(--navbar-bg);padding:0;align-items:center;width:100%;height:114px;top:0}#mainNav.sticky{position:fixed;z-index:99;width:100%;height:90px;top:0;background-color:var(--navbar-bg);padding:0 0;box-shadow:0 10px 15px rgb(25 25 25/10%);animation:1000ms ease-in-out 0s normal none 1 running fadeInDown}#mainNav.sticky .navbar-nav .nav-item .nav-link{padding:10px 0;margin-right:36px}#mainNav .navbar-brand{position:relative;display:flex;align-items:center;padding:0;margin-right:0;height:100%}#mainNav .navbar-nav .nav-item .nav-link{font-weight:400;font-size:17px;line-height:27px;padding:10px 0;margin-right:33px;position:relative;color:var(--navbar-font-color);display:flex;transition:ease all .5s;position:relative}#mainNav .navbar-nav .nav-item .nav-link span{display:inline-block}#mainNav .navbar-nav .nav-item .nav-link span:after{content:"";display:block;margin:0 auto;width:0;height:1px;background-color:var(--primary-color);transition:opacity .3s ease,width .3s ease;-ms-transition:opacity .3s ease,width .3s ease;position:relative;top:0}#mainNav .navbar-nav .nav-item .nav-link:hover span:after,#mainNav .navbar-nav .nav-item .nav-link.active span:after{width:100%}#mainNav .navbar-nav .nav-item .nav-link:hover,#mainNav .navbar-nav .nav-item .nav-link.active{color:var(--primary-color)!important}.navbar-nav-right .theme-btn-outline{}.language-dropdown,.mode-change,.login-menu-item .nav-link,.user-dropdown{margin-right:25px!important}.language-dropdown .header-item .iconify,.user-dropdown .header-item .iconify{font-size:21px;position:relative;top:-1px;right:-5px;color:var(--secondary-color);margin-left:-7px}.navbar-nav-right .login-menu-item .nav-link{font-size:20px!important;font-weight:500!important;line-height:24px!important}.dropdown-item.active,.dropdown-item:active{color:var(--heading-color)}.navbar .dropdown .dropdown-toggle:after{display:none}.navbar .dropdown-menu a::after{transform:rotate(-90deg);position:absolute;right:1.7rem;color:var(--para-color)}.dropdown-toggle{display:flex;align-items:center}#mainNav .navbar-nav .nav-item .nav-link svg{height:25px;width:27px;padding-top:2px}#mainNav .navbar-nav .dropdown-menu a,.dropdown-item{color:var(--navbar-font-color);padding:8px 20px;font-size:14px;font-weight:500;line-height:20px;display:flex;align-items:center}.dropdown button{color:var(--navbar-font-color);font-weight:500}.navbar .dropdown-menu .dropdown-toggle::after{color:var(--para-color)}#mainNav .navbar-nav .dropdown-menu a,#mainNav .navbar-nav .dropdown-menu a h6,.navbar .dropdown-menu .dropdown-toggle::after{transition:ease all .5s}#mainNav .navbar-nav .dropdown-menu a:hover,#mainNav .navbar-nav .dropdown-menu a:hover h6,.navbar .dropdown-menu .dropdown-toggle:hover::after{color:var(--primary-color);background-color:transparent}body.light .dark-logo{display:none}body.dark .light-logo{display:none}.mode-change .header-item .iconify{width:34px;height:34px}@media all and (min-width:992px){.navbar-expand-lg .offcanvas .offcanvas-body{align-items:center}.navbar-brand.desktop-navbar-brand{display:inline-block!important}.navbar-brand.mobile-navbar-brand{display:none!important}.navbar-right-mobile .language-dropdown,.navbar-right-mobile .mode-change,.navbar-right-mobile .user-dropdown{display:none!important}.navbar-nav .dropdown-menu{position:absolute!important;border-radius:0;border:1px solid var(--border-color)}.dropdown-menu li{position:relative}.dropdown-menu .submenu{display:block;visibility:hidden;opacity:0;position:absolute;left:100%;top:10px}.dropdown-menu .submenu-left{right:100%;left:auto}.dropdown-menu>li:hover{background-color:transparent}.dropdown-menu>li:hover>.submenu{visibility:visible;opacity:1;top:-7px}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar .nav-item .dropdown-menu{display:block;visibility:hidden;opacity:0;transform:translateY(20px);transition:.2s ease-in}.navbar .nav-item:hover>.dropdown-menu{display:block;transform:scaleY(1);opacity:1;visibility:visible;transition:.3s ease-out;border-radius:8px}.top-menu-item .nav-item .dropdown-menu{transform:translateY(20px);display:block;visibility:hidden;opacity:0;transition:.2s ease-in}.top-menu-item .nav-item:hover>.dropdown-menu{transform:scaleY(1);display:block;opacity:1;visibility:visible;transition:.3s ease-out;z-index:9999}.navbar .nav-item .dropdown-menu,.top-menu-item .nav-item .dropdown-menu{margin-top:0;box-shadow:0 10px 29px rgba(202,202,202,.25);border:0;border-radius:0;padding:18px 0}}.navbar-toggler-icon{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0naHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmcnIHZpZXdCb3g9JzAgMCAzMCAzMCc+PHBhdGggc3Ryb2tlPSdyZ2JhKDI1NSwgMjU1LCAyNTUsIDEpJyBzdHJva2UtbGluZWNhcD0ncm91bmQnIHN0cm9rZS1taXRlcmxpbWl0PScxMCcgc3Ryb2tlLXdpZHRoPScyJyBkPSdNNCA3aDIyTTQgMTVoMjJNNCAyM2gyMicvPjwvc3ZnPg==)}.navbar-toggler:focus{box-shadow:none}@media only screen and (max-width:1199px){.navbar-nav-middle{}.navbar-nav-right .theme-btn-outline{}}@media only screen and (max-width:1675px){#mainNav .navbar-nav .nav-item .nav-link,#mainNav.sticky .navbar-nav .nav-item .nav-link{margin-right:25px}.language-dropdown,.mode-change{}.navbar-nav-right .theme-btn-outline{}#mainNav .navbar-nav .nav-item .nav-link,.navbar-nav-right .login-menu-item .nav-link{font-size:16px!important}.theme-btn,.theme-btn-outline,.theme-btn-purple,.theme-btn-green,.theme-btn-red,.edit-btn,.theme-btn-back{font-size:16px;padding:22px 30px!important}}@media only screen and (max-width:1399px){#mainNav .navbar-brand img,.offcanvas-header img{height:30px}.language-dropdown,.mode-change,.login-menu-item .nav-link,.user-dropdown{margin-right:12px!important}.language-dropdown .avatar-md,.user-dropdown .avatar-md,.dropdown-item .avatar-xs{height:1.2rem;width:1.2rem}.mode-change .header-item .iconify{width:26px;height:26px}#mainNav .navbar-nav .nav-item .nav-link,#mainNav.sticky .navbar-nav .nav-item .nav-link{margin-right:22px}.navbar-nav-right .theme-btn-outline{}}@media only screen and (max-width:1360px){.navbar-nav-right .theme-btn-outline{}}@media only screen and (max-width:1199px){#mainNav .navbar-brand img,.footer-about img{}}@media(max-width:991px){#mainNav,#mainNav.sticky{height:60px}.offcanvas-header .btn-close{box-shadow:none}.navbar-brand.desktop-navbar-brand{display:none!important}.navbar-brand.mobile-navbar-brand{display:flex!important}#mainNav .navbar-nav .nav-item .nav-link{padding:8px 0;line-height:23px;color:var(--black-color)}.dropdown-menu .dropdown-menu{margin-left:.7rem;margin-right:.7rem;margin-bottom:.5rem}#mainNav .navbar-nav .nav-item .nav-link:hover,#mainNav .navbar-nav .nav-item .nav-link.active{color:var(--primary-color)!important}.navbar-nav-right .theme-btn-outline{border:1px solid var(--primary-color);color:var(--theme-btn-outline-font-color)!important}.navbar-nav-right .theme-btn-outline:hover{background-color:var(--primary-color);color:var(--white-color)!important}#mainNav .navbar-toggler{padding:.25rem 0;border:none;color:var(--body-font-color)}.language-dropdown,.mode-change,.login-menu-item .nav-link,.user-dropdown{margin-right:10px!important}.offcanvas .navbar-nav-right .language-dropdown,.offcanvas .navbar-nav-right .mode-change,.offcanvas .navbar-nav-right .user-dropdown{display:none!important}}@media only screen and (max-width:575px){.language-dropdown .avatar-md,.user-dropdown .avatar-md{margin-right:0!important}}#scroll{position:fixed;right:10px;bottom:40px;cursor:pointer;width:20px;height:20px;display:none;z-index:10;font-size:20px;text-align:center;color:#fff;line-height:48px}.hero-area-top-part{background-image:url(../img/hero-dots-bg.svg);background-repeat:no-repeat;background-position:center}.hero-area-top-part{background-color:var(--bg-primary);min-height:1067px;padding-top:200px;padding-bottom:100px}.hero-bg-dots-img{left:50%;top:50%;transform:translate(-50%,-50%)}.hero-area-bottom-part{margin-top:-453px}.hero-sub-title{margin:15px auto 29px;width:75%}.hero-content .theme-button{margin:0 12px}.hero-backdrop-strock-wrap{left:50%;top:50%;transform:translate(-50%,-50%)}.hero-backdrop-strock-wrap::after{content:"";position:absolute;width:722.4px;height:630px;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--primary-color);filter:blur(190.692px)}.hero-strock-img{left:50%;top:50%;transform:translate(-50%,-50%);margin-top:-20px}.hero-bottom-img-left{filter:drop-shadow(0px 29.1333px 111.154px rgba(54,134,252,0.17));left:0;bottom:162px}.hero-bottom-img-right{filter:drop-shadow(0px 22.4282px 110.372px rgba(54,134,252,0.17));right:0;top:185px}.generate-content-area{padding-bottom:36px}.generate-content-faq{padding-inline-end:20px}.generate-content-row-wrap{margin-top:77px}.generate-content-faq .accordion-item{background-color:var(--bg-primary);padding:0 0;margin-bottom:14px}.generate-content-faq .accordion .accordion-item:last-child{margin-bottom:0}.generate-content-faq .accordion-button.collapsed{background-color:var(--bg-primary)!important}.generate-content-faq .accordion-collapse.show .accordion-body{background-color:var(--bg-secondary)!important}.generate-content-faq .accordion-button{background-color:var(--bg-secondary)!important}.generate-content-faq .accordion-item:first-of-type{border-top-left-radius:0!important;border-top-right-radius:0!important}.generate-content-faq .accordion-item:last-of-type{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.generate-content-faq .accordion-button .iconify{margin-right:12px;color:var(--secondary-color)}.generate-content-faq .accordion-body{font-weight:400;background-color:var(--bg-secondary)!important}.feature-content-right{background-repeat:no-repeat;background-position:center;background-size:cover}.feature-main-top-img{right:-6%;top:-106px}.feature-main-bottom-img{left:-6%;bottom:-156px}.how-it-works-wrap::after{position:absolute;content:"";border:1.6px dashed var(--primary-color);height:75%;width:0;left:50%;top:62%;transform:translate(0%,-50%);z-index:-1}.how-it-works-wrap::before{position:absolute;content:"";z-index:9;border:1.6px dashed var(--border-color);height:25%;width:0;left:50%;top:13%;transform:translate(0%,-50%)}.timeline-number{width:67px;height:67px;background:#f1f1f1;border-radius:50%;display:flex;justify-content:center;align-items:center;font-weight:500;font-size:24px;z-index:9}.how-it-works-item-right{padding-inline-start:100px;position:relative;padding-top:100px;padding-bottom:100px}.how-it-works-item-left{margin-inline-end:100px}.how-it-works-wrap .how-it-works-item:nth-child(even) .row{flex-direction:row-reverse}.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-right{padding-inline-start:0;padding-inline-end:100px}.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-left{margin-inline-end:0;margin-inline-start:100px}.how-it-works-wrap .how-it-works-item:last-child .row .how-it-works-item-right{padding-bottom:0}.how-it-works-wrap .how-it-works-item:nth-child(even) .row .how-it-works-item-left .how-it-works-strock-bg{transform:rotate(45deg)}.how-it-works-item-title{padding-right:70px}.how-it-works-features .price-check-icon{width:26px;height:26px;margin-top:2px;margin-right:15px!important}.how-it-works-main-img{z-index:9}.how-it-works-strock-bg{width:516.39px;height:457.55px;z-index:9;margin:-20px 0 0 25px}.how-it-works-item-left::after{content:"";position:absolute;width:380px;height:320px;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--primary-color);filter:blur(112.57px)}.support-area{background-color:#160e4d}.about-us-area .section-title{margin-left:0;text-align:left}.about-us-bg-strock-img{left:-94px;top:157px;max-width:1172px}.about-top-img{width:805px;right:30px;bottom:30px}.about-top-content{margin-bottom:51px}.counter-number{color:var(--primary-color)}.about-bottom-left{background-color:var(--footer-bg);background-image:url(../img/about-us/about-bottom-left-bg.jpg);background-repeat:no-repeat;background-position:center;background-size:cover}.about-bottom-left h4{padding-inline-end:30px}.core-pages-nav-tabs{margin-bottom:96px;width:55%;border-bottom:1.6px solid var(--border-color)}.nav-tabs.core-pages-nav-tabs .nav-link{font-size:20px;font-weight:500;color:var(--heading-color);padding:0 22px 13px;margin:0 10px;background-color:transparent;border:none;border-bottom:1.6px solid transparent}.nav-tabs.core-pages-nav-tabs .nav-item.show .nav-link,.nav-tabs.core-pages-nav-tabs .nav-link.active{color:var(--primary-color)!important;background-color:transparent;border-color:var(--primary-color)}.core-pages-main-img{z-index:9}.core-pages-strock-bg-img{width:622.16px;height:551.28px;margin:-22px 34px;z-index:9}.core-pages-content-left::after{content:"";position:absolute;width:464px;height:409px;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--primary-color);filter:blur(122.428px)}.core-pages-content-right{padding-inline-start:25px}.pricing-top-part-content-wrap{background-color:var(--footer-bg);background-image:url(../img/pricing-table-bg.png);background-repeat:no-repeat;background-position:center;background-size:cover;min-height:491px;padding-top:100px}.pricing-area-bottom-part{margin-top:-230px}.pricing-plan-area{padding:0 70px}.choose-plan-area-title,.payment-method-area-title{margin-bottom:50px}.price-card-item{border:.776515px solid var(--border-color);background-color:var(--bg-primary)}.price-title span{color:var(--body-font-color);letter-spacing:-.04em}hr{border:1.6px solid rgba(0,0,0,.1)}.pricing-features{margin:18px 0 11px}.price-check-icon{width:22px;height:22px}.price-card-item.active{background-color:var(--primary-color)!important;box-shadow:0 27px 77px rgba(54,134,252,.46)}.price-card-item.active .theme-btn-outline:hover,.price-card-item.active .theme-btn-outline.active{background-color:var(--bg-primary)!important;color:var(--primary-color)!important}.price-card-item.active h4,.price-card-item.active p,.price-card-item.active h2,.price-card-item.active li,.price-card-item.active .price-title span{color:var(--white-color)}.integrations-area{background-image:url(../img/integrations-img/integrations-dots-bg.png);background-repeat:no-repeat;background-position:center}.logo-bg img{max-height:60px}.integrations-logo-wrap::before{content:"";position:absolute;width:748px;height:430px;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--primary-color);filter:blur(170.192px)}.integrations-strock-bg{margin-top:-28px}.integrations-logo-wrap{display:flex;flex-wrap:wrap;justify-content:center;width:951px;margin:0 auto;padding-bottom:0}.logo-item{backdrop-filter:blur(3px);border-radius:50%;display:flex;align-items:center;justify-content:center}.logo-bg{width:102.21px;height:89.25px;background-image:url(../img/integrations-img/logo-shape-bg.svg);background-repeat:no-repeat;background-position:center;background-size:cover;display:flex;align-items:center;justify-content:center}.customer-testimonial-item{margin-bottom:30px}.customer-testimonial-area .section-title{width:46%}.customer-testimonial-img{overflow:hidden}.customer-testimonial-img img{height:92px;width:92px!important;margin-inline-end:15px}.testimonial-text-wrap{background-image:url(../img/customer-testimonial/testimonial-para-strock.svg);background-repeat:no-repeat;background-position:center;margin-top:-50px;margin-inline-start:10px;padding:20px;width:100%}.customer-testimonial-text{padding:20px}.customer-testimonial-rating{margin-inline-start:30px}.customer-testimonial-rating .iconify{color:#c3c2c2;font-size:20px}.customer-testimonial-rating .iconify.star-filled{color:#ffb526}.customer-testimonial-bg-dots{top:14%;left:23%}.testimonial-bottom-line{width:74px;height:0;border:1px solid var(--bg-secondary)}.testimonial-quote .iconify{color:var(--primary-color);font-size:57px;position:absolute;right:-16px;top:-13px}.testimonial-quote{background:var(--blue-color-transparent);height:45px;width:45px;border-radius:50%;position:relative}.customer-testimonial-slider .owl-nav button{position:absolute;font-size:32px!important;color:var(--white-color)!important}.customer-testimonial-slider .owl-nav button:hover{background:0 0!important}.customer-testimonial-slider .owl-nav{top:37%}.customer-testimonial-area .owl-nav .owl-prev{left:-30px}.customer-testimonial-area .owl-nav .owl-next{right:-30px}.owl-big.owl-theme{position:relative}.owl-theme .owl-dots .owl-dot{display:inline-block;zoom:1;height:24px;width:24px;border:2px solid transparent;border-radius:50%;margin:7px}.owl-theme .owl-dots .owl-dot:hover span{background:var(--heading-color);transition:ease all .5s}.owl-theme .owl-dots .owl-dot.active{border:2px solid var(--heading-color)}.owl-theme .owl-dots .owl-dot span{width:10px;height:10px;margin:5px;background:#dcdcdc;border-radius:30px}.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span{background:var(--heading-color);border:2px solid var(--heading-color)}.owl-small .owl-nav button{height:50px;width:50px;border:1px solid var(--black-color)!important;border-radius:50%!important;background-color:var(--white-color)!important}.owl-small .owl-nav [class*=owl-]:hover{color:var(--text-green)!important}.owl-small .owl-dots,.owl-small .owl-nav{text-align:left}.owl-small .owl-nav{margin-top:30px;margin-left:43px}.faq-floating-bg-img{bottom:-227px;left:0;width:100%;max-height:100%}.accordion-button{background-color:var(--bg-primary);padding:24px 43px 24px 30px;font-weight:500;font-size:24px;line-height:30px}.accordion-button.collapsed{background:var(--bg-primary)}.accordion-button::after{position:absolute;right:19px}.accordion-button:not(.collapsed){color:var(--heading-color);background-color:var(--bg-primary)}.accordion-button:focus{z-index:3;border-color:transparent;outline:0;box-shadow:none}.accordion-body{padding:0 30px 19px;margin:0;color:var(--body-font-color);font-weight:500;font-size:17px;line-height:28px}.accordion-item:first-of-type{border-top-left-radius:0!important;border-top-right-radius:0!important}.accordion-item:last-of-type{border-bottom-right-radius:0!important;border-bottom-left-radius:0!important}.accordion-button:not(.collapsed){box-shadow:none}.accordion-item{background-color:var(--bg-primary);border:1px solid var(--border-color);padding:5px 0;margin-bottom:25px}.accordion-item:not(:first-of-type){border:1px solid var(--border-color)}.accordion-button::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTEyIDIwdi04bTAgMFY0bTAgOGg4bS04IDBINCIvPjwvc3ZnPg==);background-size:1.1rem}.accordion-button:not(.collapsed)::after{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxZW0iIGhlaWdodD0iMWVtIiBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWlkWU1pZCBtZWV0IiB2aWV3Qm94PSIwIDAgMjQgMjQiPjxwYXRoIGZpbGw9Im5vbmUiIHN0cm9rZT0iY3VycmVudENvbG9yIiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS13aWR0aD0iMiIgZD0iTTIwIDEySDQiLz48L3N2Zz4=)}.faq-floating-img{left:50%;top:50%;transform:translate(-50%,-50%);width:auto;margin-top:-58px}.faq-accordion-wrap::after{position:absolute;width:307px;height:280px;left:50%;top:50%;transform:translate(-50%,-50%);background:var(--primary-color);filter:blur(116.444px);content:"";z-index:-1}.footer-area{background-color:var(--footer-bg);padding:140px 0 0}.footer-top-part{padding-bottom:140px}.footer-bg-img{top:0;left:0;width:100%;max-height:100%}.footer-widget{float:right}.footer-subscribe-content form input{background-color:#343e53;border-color:transparent;color:var(--white-color);min-width:255px}.footer-subscribe-content form .form-control::placeholder{color:var(--white-color)}.footer-subscribe-content form .form-control:focus{background-color:#343e53;color:var(--white-color);border-color:transparent}.footer-about img{margin-bottom:17px}.footer-widget>h4{margin-bottom:41px}.footer-widget .footer-widget-title{color:var(--white-color)}.footer-widget.footer-about p{color:var(--footer-text-color)}.footer-social ul li a{width:39px;height:39px;border:1px solid var(--white-color);display:flex;border-radius:50%;font-size:18px;justify-content:center;align-items:center;margin-inline-end:15px}.footer-social ul li a:hover{background-color:var(--primary-color);border:1px solid var(--primary-color)}.footer-social ul li a .iconify{color:var(--white-color)}.footer-links li a,.footer-links ul li{color:var(--footer-text-color)}.footer-about address,.footer-subscribe-content p{color:var(--footer-text-color);margin-bottom:0}.footer-links li a:hover,.footer-bottom-nav ul li a:hover{color:var(--primary-color);text-decoration-line:underline}.footer-links ul li{padding:0 0 18px}.footer-links ul li:last-child{padding-bottom:0}.footer-contact-info ul li img{margin-right:22px}.copyright-text{padding:16px 0;border-top:1px solid rgba(255,255,255,.2)}.copyright-text p,.copyright-text a{color:var(--footer-text-color);font-size:15px;line-height:27px}.copyright-text p a:hover{color:var(--primary-color);text-decoration:underline}