/*-----------------------------------------------------------------------------------

   

-----------------------------------------------------------------------------------

    CSS INDEX
    ===================

    

-----------------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {
  --font-body: 'Nunito Sans', sans-serif;
  --font-heading: 'Nunito Sans', sans-serif;
  --gradient-color-from: #99E9A5;
  --gradient-color-to: #3847EF;
  --gradient-color-from-2: #331C9C;
  --gradient-color-to-2: #9066FB;
  --color-primary: #99E9A5;
  --color-primary-2: #9066FB;
  --color-heading: #0F1928;
  --color-white: #fff;
  --color-black: #000;
  --color-default: #575D6B;
  --color-dark: #0F1928;
  --color-dark-2: #1F2123;
  --color-gray: #eeedef;
}

/* reset css start */
html {
  scroll-behavior: smooth;
}
.logo-text{
  
    margin: 0;
    line-height: 1.3;
    color: #165AE1;
    font-weight: 700;
    font-size: 28px;
    font-family: "Nunito", sans-serif;
  }
  .logo-text:hover{
    color: #165AE1;
  }
  img.logo-img-header {
    margin-top: -12px;
    margin-right: 5px;
}








body {
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 26px;
  color: var(--color-default);
  background-color: var(--color-white);
}

img {
  max-width: 100%;
  height: auto;
}

ul {
  margin: 0px;
  padding: 0px;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

button:focus {
  outline: none;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  color: inherit;
}

select {
  height: 55px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: calc(100% - 10px) 50%;
  background-repeat: no-repeat;
  padding-right: 20px;
  background-color: transparent;
  border: 0;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="tel"],
form select,
textarea {
  width: 100%;
  height: 50px;
  border-radius: 0;
  padding: 0;
  border: 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  color: var(--color-black);
  font-weight: 500;
}

textarea {
  height: 100px;
}

button {
  border: 0;
}

table {
  width: 100%;
}


p,
li,
span {
  margin-bottom: 0;
}

/* reset css end */
/* global css start */
.nice-select {
  background-color: transparent;
  height: 40px !important;
  line-height: 40px !important;
  min-height: 40px !important;
  padding: 0 30px;
}

.nice-select span {
  color: var(--color-black);
}

.nice-select .list {
  box-shadow: 0.975px 7.94px 21px 0px rgba(239, 239, 239, 0.5);
}

.nice-select .list li {
  margin-right: 0 !important;
}

.nice-select .list .option {
  color: var(--color-black);
}

.nice-select .list .option.selected,
.nice-select .list .option:hover {
  border: none !important;
}

/* global css end */
.body_wrap {
  overflow: hidden;
}

.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.footer-bg {
  background-color: #04060A;
}

.black-bg {
  background: var(--color-black);
}
.rating img.avatar1 {
    border-radius: 100px;
}
.gray-bg {
  background-color: var(--color-gray);
}

.dark-bg {
  background-color: var(--color-dark-2);
}

.bg-deef {
  background-color: var(--color-deep);
}

.white {
  color: var(--color-white);
}

.pos-rel {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.f-right {
  float: right;
}

.border-effect a,
.border-effect-2 a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
  -webkit-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.border-effect a:hover,
.border-effect-2 a:hover {
  background-size: 100% 100%;
  color: inherit;
}

.border-effect-2 a {
  background-image: linear-gradient(transparent calc(100% - 1px), currentColor 1px);
}

.btn-video {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  position: relative;
}

.btn-video:hover {
  color: var(--color-white);
}

.btn-video::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  /* background-color: rgba(15,103,246,.63); */
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  z-index: -2;
}

.border_effect a {
  display: inline !important;
  width: 100%;
  background-repeat: no-repeat;
  background-position-y: -2px;
  background-image: linear-gradient(transparent calc(100% - 2px), currentColor 1px);
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-size: 0 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.border_effect a:hover {
  background-size: 100% 100%;
  color: inherit;
}

@media (max-width: 991px) {
  .tx-col-md-6 {
    width: 50%;
  }
}

@media (max-width: 767px) {
  .tx-col-md-6 {
    width: 100%;
  }

}

.tx-close {
  background: rgba(0, 0, 0, 0.04);
  border: 9px solid transparent;
  color: #777;
  width: 36px;
  height: 36px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.tx-close::before,
.tx-close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #1b1b1b;
}

.tx-close::before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

.tx-close::after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.tx-close:hover::before,
.tx-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

/* order & unorder list reset - start */
.ul_li,
.ul_li_right,
.ul_li_center,
.ul_li_between {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.ul_li>li,
.ul_li_right>li,
.ul_li_center>li,
.ul_li_between>li {
  float: left;
  list-style: none;
  display: inline-block;
}

.ul_li {
  justify-content: flex-start;
}

.ul_li_center {
  justify-content: center;
}

.ul_li_right {
  justify-content: flex-end;
}

.ul_li_between {
  justify-content: space-between;
}

.ul_li_block {
  margin: 0px;
  padding: 0px;
  display: block;
}

.ul_li_block>li {
  display: block;
  list-style: none;
}

.flex-1 {
  flex: 1;
}

.color-black {
  color: var(--color-black);
}

.pagination_wrap ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -5px;
  list-style: none;
}

.pagination_wrap ul li {
  padding: 5px;
}

.pagination_wrap ul li a {
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #8A879F;
  border: 1px solid #EAEAEA;
  display: inline-block;
  -webkit-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  z-index: 1;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  background-color: #F9F9F9;
}

.pagination_wrap ul li a.current_page,
.pagination_wrap ul li a:hover {
  color: var(--color-white);
  background-color: #1B1819;
  border-color: #1B1819;
}

.mr-none-60 {
  margin-right: -60px;
}

.ml-none-60 {
  margin-left: -60px;
}

.pb-8 {
  padding-bottom: 8px;
}

/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-none-5 {
  margin-top: -5px;
}

.mt-none-10 {
  margin-top: -10px;
}

.mt-none-15 {
  margin-top: -15px;
}

.mt-none-20 {
  margin-top: -20px;
}

.mt-none-25 {
  margin-top: -25px;
}

.mt-none-30 {
  margin-top: -30px;
}

.mt-none-35 {
  margin-top: -35px;
}

.mt-none-40 {
  margin-top: -40px;
}

.mt-none-45 {
  margin-top: -45px;
}

.mt-none-50 {
  margin-top: -50px;
}

.mt-none-55 {
  margin-top: -55px;
}

.mt-none-60 {
  margin-top: -60px;
}

.mt-none-65 {
  margin-top: -65px;
}

.mt-none-70 {
  margin-top: -70px;
}

.mt-none-75 {
  margin-top: -75px;
}

.mt-none-80 {
  margin-top: -80px;
}

.mt-none-85 {
  margin-top: -85px;
}

.mt-none-90 {
  margin-top: -90px;
}

.mt-none-95 {
  margin-top: -95px;
}

.mt-none-100 {
  margin-top: -100px;
}

/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

/* typography css start */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.3;
  color: var(--color-heading);
  font-weight: 700;
  font-size: 48px;
  font-family: var(--font-heading);
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}



/*----------------------------------------*/
/*  02. header
/*----------------------------------------*/
.site-header {
  z-index: 3;
  position: relative;
}

.header__top {
  padding: 7px 0;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
  margin-top: -10px;
}

@media (max-width: 767px) {
  .header__top {
    display: none;
  }
}

.header__top-info {
  color: var(--color-white);
  margin-top: 10px;
}

.header__top-info li:not(:last-child) {
  margin-right: 50px;
}

.header__top-info li img {
  margin-right: 9px;
}

.header__links {
  margin-top: 10px;
}

.header__links li:not(:last-child) {
  margin-right: 38px;
}

.header__links li a {
  color: var(--color-white);
}

.header__social {
  margin-left: 73px;
  margin-top: 10px;
}

.header__social li:not(:first-child) {
  margin-left: 16px;
}

.header__social li a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 16px;
}

.header__social li a:hover {
  color: #fff;
}

.header__bar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #F1F1F1;
  display: inline-block;
  margin-right: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .header__bar {
    margin-right: 0;
  }
}

.header__bar span {
  width: 100%;
  height: 2px;
  background-color: #0F1928;
  border-radius: 48px;
  -webkit-border-radius: 48px;
  -moz-border-radius: 48px;
  -ms-border-radius: 48px;
  -o-border-radius: 48px;
  display: inline-block;
  position: absolute;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.header__bar span:nth-child(1) {
  top: 0;
}

.header__bar span:nth-child(2) {
  top: 50%;
  width: 11px;
  margin-top: -1px;
}

.header__bar span:nth-child(3) {
  bottom: 0;
}

.header__bar:hover span:nth-child(2) {
  width: 100%;
}

.header__bar-icon {
  height: 14px;
  width: 18px;
  position: relative;
}



.header-style-two {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  margin-bottom: 0px;
}

.header-style-two .main-menu ul li a {
  color: #1F1F1F;
}

.header-style-two .main-menu ul li .submenu {
  background-color: #0F0E1E;
}

.header-style-two .main-menu ul li .submenu li a {
  color: #fff;
}

.header-style-two .stricked-menu {
  background-color: #ebebf4;
}

.header-style-two .header__button .thm-btn {
  padding: 14px 38px;
}

@media (max-width: 991px) {
  .header-style-two .header__main {
    padding: 20px 0px;
  }
}

.header-style-two .header__bar span {
  background-color: #fff;
}



.stricked-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  top: 0;
  -webkit-transform: translateY(-100%);
  -khtml-transform: translateY(-100%);
  -moz-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -khtml-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -moz-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -ms-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  -o-transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  transition: 0.6s cubic-bezier(0.24, 0.74, 0.58, 1);
  visibility: hidden;
  background-color: var(--color-white);
}

.stricked-menu .main-menu ul li a {
  padding: 30px 0;
}

.stricked-menu.stricky-fixed {
  -webkit-transform: translateY(0%);
  -khtml-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
  transform: translateY(0%);
  visibility: visible;
  -webkit-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -khtml-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -moz-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -ms-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  -o-box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
  box-shadow: 0 3px 18px rgba(2, 21, 78, 0.09);
}

@media (max-width: 991px) {
  .slide-bar {
    padding: 30px;
    padding-top: 70px;
    max-width: 300px;
    right: -300px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}

@media (max-width: 991px) {
  .slide-bar .sidebar-info {
    display: none;
  }
}

@media (max-width: 991px) {
  .slide-bar .side-mobile-menu {
    display: block;
  }
}

@media (max-width: 991px) {
  .slide-bar .close-mobile-menu {
    right: 0;
    left: 0;
  }
}

.slide-bar .tx-close {
  width: 45px;
  height: 45px;
  border-width: 14px;
}

.header-mobile-search input {
  border: 2px solid rgba(150, 144, 162, 0.09);
  padding: 15px;
}

.home-dark .slide-bar {
  background: #030216;
}

.home-dark .side-mobile-menu ul li a {
  color: #fff;
}

.home-dark .slide-bar .tx-close::before,
.home-dark .slide-bar .tx-close::after {
  background-color: #fff;
}

.home-dark .header-mobile-search input {
  background: #0F0E1E;
  color: #fff;
}

.home-dark .header-mobile-search input:focus {
  border-color: var(--color-primary-2);
}

.home-dark .side-mobile-menu ul li a:hover {
  color: var(--color-primary-2);
}

.home-dark .side-mobile-menu ul li ul li:hover>a::before {
  background: var(--color-primary-2);
  border-color: var(--color-primary-2) !important;
}

.home-dark .header__bar {
  border-color: transparent;
  background: rgba(150, 144, 162, 0.1);
  width: 45px;
  height: 45px;
}

.home-dark .header__bar span {
  background-color: #000000;
}

/* Navigation css */
.main-menu {
  display: flex;
  align-items: center;
  flex-grow: 1;
}

.main-menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li:not(:last-child) {
  margin-right: 48px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .main-menu ul li:not(:last-child) {
    margin-right: 52px;
  }
}

@media (max-width: 1199px) {
  .main-menu ul li:not(:last-child) {
    margin-right: 20px;
  }
}

.main-menu ul li .submenu li {
  margin-right: 0;
}

.main-menu ul li a {
  display: inline-block;
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  padding: 35px 0;
  position: relative;
  line-height: 22px;
}

@media (max-width: 1199px) {
  .main-menu ul li a {
    font-size: 15px;
  }
}

.main-menu ul li.menu-item-has-children>a::after {
  content: "\f078";
  transform: translateY(-1px);
  display: inline-block;
  padding-left: 4px;
  font-family: "Font Awesome 5 Pro";
  font-weight: 900;
  font-size: 10px;
}

.main-menu ul li.menu-item-has-children:hover>.submenu {
  opacity: 1;
  visibility: visible;
  -webkit-transform: none !important;
  -ms-transform: none !important;
  transform: none !important;
  pointer-events: all;
}

.main-menu ul li .submenu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  min-width: 240px;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  background: var(--color-white);
  left: -30px;
  padding: 20px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: 3;
  text-align: left;
  -webkit-transform: translate3d(0, 18px, 0);
  -ms-transform: translate3d(0, 18px, 0);
  transform: translate3d(0, 18px, 0);
  pointer-events: none;
  box-shadow: 0 0.5rem 1.875rem rgba(0, 0, 0, 0.1);
}

.main-menu ul li .submenu li a {
  color: var(--color-black);
  padding: 8px 30px;
  display: block;
  margin: 0;
  font-size: 16px;
}

.main-menu ul li .submenu ul {
  left: 100%;
  top: 0px;
}

.main-menu ul li.menu-last ul.submenu {
  right: 0;
  left: auto;
}

.main-menu ul li.menu-last ul.submenu ul {
  right: auto;
  left: -100%;
}

.main-menu ul li ul.submenu .menu-item-has-children>a::after {
  position: absolute;
  top: 9px;
  right: 15px;
  content: "\f105";
  font-size: 13px;
}

.thm-btn {
  /* transition: all 0.2s cubic-bezier(0.68, 0.01, 0.58, 0.75) !important; */
  font-size: 16px;
  font-weight: 500;
  text-transform: None;
  color: var(--color-white);
  border-style: none;
  padding: 10px 10px;
  align-self: center;
  position: relative;

  display: inline-block;
  border-radius: 30px;

}

.thm-btn1 {
  /* transition: all 0.2s cubic-bezier(0.68, 0.01, 0.58, 0.75) !important; */
  font-size: 16px;
  font-weight: 500;
  text-transform: None;
  color: #165AE1;
  border-style: none;
  padding: 18px 10px;
  align-self: center;
  position: relative;
  background: white;
  width: 50%;
  display: inline-block;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  

}

.thm-btn1.active {
  background-color: #165AE1;
  /* Active background */
  color: white;
  /* Text color for active */
}







.thm-btn.br-5 {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.thm-btn--dark {
  background-color: var(--color-dark);
}

.thm-btn--dark:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}



/*----------------------------------------*/
/*  03. globel
/*----------------------------------------*/
@media (min-width: 1024px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1310px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.container.mxw_1580 {
  max-width: 1580px;
}

.row>* {
  padding: 0 10px;
}

.home-dark {
  background-color: #E3E8F1;
}

.gradient-bg,
.thm-btn--outline i,
.feature__item .number span,
.feature__dot .active,
.brand__head .number,
.step__single>span,
.sec-title__title>span,
.feature__single a i,
.template__item a i,
.template__item::before,
.intergation__item a i,
.instagram__content a {
  background-color: var(--color-primary);
  background-image: linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  background-image: -moz-linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  background-image: -ms-linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  background-image: -o-linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  background-image: -webkit-linear-gradient(1deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
}

.bg-gradient-2,
.header__top,
.feature__img::before {
  background-color: var(--color-primary);
  background-image: linear-gradient(1deg, var(--gradient-color-to) 0%, var(--gradient-color-from) 100%);
  background-image: -moz-linear-gradient(1deg, var(--gradient-color-to) 0%, var(--gradient-color-from) 100%);
  background-image: -ms-linear-gradient(1deg, var(--gradient-color-to) 0%, var(--gradient-color-from) 100%);
  background-image: -o-linear-gradient(1deg, var(--gradient-color-to) 0%, var(--gradient-color-from) 100%);
  background-image: -webkit-linear-gradient(1deg, var(--gradient-color-to) 0%, var(--gradient-color-from) 100%);
}

.thm-btn--outline i,
.feature__item .number span,
.brand__head .number,
.sec-title__title>span,
.instagram__content a,
.crm-feature__title,
.crm-title__heading {
  background-clip: text;
  -webkit-background-clip: text;
  /* -webkit-text-fill-color: transparent; */
}

.tagcloud {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  margin: -10px;
}

.tagcloud a {
  display: block;
  color: #77787B;
  border: 1px solid #E1E0E0;
  min-height: 36px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  text-transform: capitalize;
  text-decoration: none;
  font-weight: 500;
  padding: 0px 17px;
  margin: 7px;
  position: relative;
}

.tagcloud a::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(104.79deg, #CA60FF 39.56%, #FF60AB 115.02%);
  content: "";
  z-index: -1;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
}

.tagcloud a:hover {
  color: var(--color-white);
  border-color: transparent;
}

.tagcloud a:hover::before {
  opacity: 1;
}

.post-tags li {
  font-size: 15px;
  text-transform: capitalize;
  position: relative;
}

.post-tags li:not(:first-child, :last-child) {
  margin-right: 11px;
  padding-right: 15px;
}

.post-tags li:not(:first-child, :last-child)::before {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: var(--color-primary);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  content: "";
}

.post-tags li span {
  display: inline-block;
  background-color: var(--color-primary);
  padding: 0px 10px;
  line-height: 25px;
  color: var(--color-white);
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  margin-right: 12px;
}

.post-tags li a {
  color: var(--color-black);
}

.post-tags li a:hover {
  color: var(--color-black);
}

.mfp-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close {
  padding: 0;
  right: 0;
  text-align: center;
  top: -36px;
  width: 36px;
  height: 36px;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  background: var(--color-white);
  cursor: pointer;
  opacity: 1;
  font-size: 0;
  border: 9px solid transparent;
  position: absolute;
}

body .mfp-wrap .mfp-container .mfp-content .mfp-figure .mfp-close {
  top: 4px;
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close::before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close::after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -khtml-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -moz-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -ms-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.25s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-color: #222;
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close::before {
  -webkit-transform: rotate(45deg);
  -khtml-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close::after {
  -webkit-transform: rotate(-45deg);
  -khtml-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::before,
body .mfp-wrap .mfp-container .mfp-content .mfp-close:hover::after {
  -webkit-transform: rotate(0);
  -khtml-transform: rotate(0);
  -moz-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
}

.mfp-iframe-holder .mfp-content {
  max-width: 1170px;
}

.revslider-initialised .bixol-bullet-number,
.revslider-initialised .bixol-bullet-round-one,
.revslider-initialised .bixol-bullet-round-two {
  display: none;
}

@-webkit-keyframes fadeInUp-2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) rotateY(15deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0) rotateY(0deg);
  }
}

@keyframes fadeInUp-2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 30px, 0) rotateY(15deg);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0) rotateY(0deg);
  }
}

.fadeInUp-2 {
  -webkit-animation-name: fadeInUp-2;
  animation-name: fadeInUp-2;
  transition: 10s !important;
}

@media (max-width: 767px) {
  .pt-xs-90 {
    padding-top: 90px;
  }
}

/*----------------------------------------*/
/*  04. hero
/*----------------------------------------*/
.hero {
  display: flex;
  align-items: center;
  bottom: 0px;
}

.hero__height {
  min-height: 740px;
}

@media (max-width: 1199px) {
  .hero__height {
    min-height: 650px;
  }
}


.hero__form {
  max-width: 632px;
  position: relative;
  margin-bottom: 40px;
  position: relative;
  margin-left: 3px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__form {
    max-width: 550px;
  }
}

@media (max-width: 1199px) {
  .hero__form {
    max-width: 500px;
  }
}

.hero__form::before {
  position: absolute;
  top: 0;
  left: -3px;
  width: 18px;
  height: 100%;
  content: "";
  background-image: linear-gradient(37deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  z-index: -1;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media (max-width: 767px) {
  .hero__form::before {
    display: none;
  }
  .footer__copyright .ul_li {
  justify-content: center !important;
}
.footer__copyright .ul_li_between {
  justify-content: center !important;
}
}

.hero__form input {
  height: 70px;
  background-color: #fff;
  fill: #FFF;
  filter: drop-shadow(0px 12.5215520859px 10.017241478px rgba(0, 0, 0, 0.04)) drop-shadow(0px 22.336309433px 17.8690471649px rgba(0, 0, 0, 0.04)) drop-shadow(0px 41.7776107788px 33.422088623px rgba(0, 0, 0, 0.05)) drop-shadow(0px 100px 80px rgba(0, 0, 0, 0.07));
  padding: 30px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.hero__form button {
  position: absolute;
  top: 10px;
  right: 10px;
  height: 50px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: 10px 50px;
}

@media (max-width: 767px) {
  .hero__form button {
    position: unset;
    width: 100%;
    margin-top: 10px;
  }
}

.hero__list {
  margin-top: -10px;
}

.hero__list li {
  font-size: 14px;
  color: #92969E;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

.hero__list li:not(:last-child) {
  margin-right: 45px;
}

@media (max-width: 1199px) {
  .hero__list li:not(:last-child) {
    margin-right: 20px;
  }
}

.hero__list li i {
  width: 34px;
  height: 34px;
  font-size: 15px;
  color: #8B8F97;
  position: relative;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.hero__list li i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  opacity: 0.10000000149011612;
  z-index: -1;
}

.hero__content {
  -webkit-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  transform: translateY(-40px);
}

@media (max-width: 991px) {
  .hero__content {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.hero__content .title {
  font-size: 65px;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .hero__content .title {
    font-size: 50px;
  }
}

@media (max-width: 767px) {
  .hero__content .title {
    font-size: 32px;
  }
}

.hero__content .title span {
  display: inline-block;
}

.hero__content .title .shape {
  position: relative;
}

.hero__content .title .shape::before {
  background-image: url(../img/shape/word_shape.png);
  position: absolute;
  content: "";
  width: 100%;
  height: 30px;
  left: 9px;
  bottom: 2px;
  background-repeat: no-repeat;
  z-index: -1;
  background-size: 96%;
}

.hero__content p {
  font-size: 20px;
  line-height: 32px;
  color: #575D6B;
}

.hero__content.style-2 {
  -webkit-transform: translateY(45px);
  -ms-transform: translateY(45px);
  transform: translateY(45px);
  max-width: 700px;
}

@media (max-width: 991px) {
  .hero__content.style-2 {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
    margin-bottom: 40px;
  }
}

.hero__content.style-2 .title {
  font-size: 55px;
  margin-bottom: 30px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__content.style-2 .title {
    font-size: 50px;
  }
}

@media (max-width: 1199px) {
  .hero__content.style-2 .title {
    font-size: 43px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .hero__content.style-2 .title {
    font-size: 30px;
  }
}

.hero__content.style-2 .title .shape::before {
  bottom: -6px;
  background-size: 92%;
}

@media (max-width: 767px) {
  .hero__content.style-2 .title .shape::before {
    bottom: -17px;
  }
}

.hero__content.style-2 p {
  margin-bottom: 30px;
}

.hero__content.style-3 .title {
  font-size: 65px;
  margin-bottom: 20px;
  background-clip: text;
  -webkit-background-clip: text;
  color: #165AE1;
  font-weight: 700;
}

@media (max-width: 991px) {
  .hero__content.style-3 .title {
    font-size: 45px;
  }
}

@media (max-width: 767px) {
  .hero__content.style-3 .title {
    font-size: 32px;
  }
}

.hero__content.style-3 .xb-title--typewriter .xb-item--text {
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(0deg, #2a2355 0%, #e7e6ec 100%);
}

.hero__content.style-3 p {
  color: #727272;
  font-size: 20px;
  line-height: 28px;
  border-radius: 36px;
}


.hero__img {
  right: -20%;
  margin-left: -12%;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__img {
    right: -5%;
  }
}

@media (max-width: 991px) {
  .hero__img {
    right: -5%;
    margin-left: 0;
    margin-top: 50px;
  }
}


.hero__img-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 38%;
  height: 100%;
  z-index: -1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/shape/hero_shape.png"), linear-gradient(47deg, #99E9A5 0%, #3847EF 100%);
  z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .hero__img-bg {
    width: 43%;
  }
}

@media (max-width: 1199px) {
  .hero__img-bg {
    width: 41%;
  }
}

@media (max-width: 991px) {
  .hero__img-bg {
    position: unset;
    width: 100%;
  }
}





.hero-style-two {
  padding-top: 130px;
}

@media (max-width: 991px) {
  .hero-style-two {
    padding-top: 70px;
  }
  .faq-div1 {
    margin: 0px !important;
  }
  .faq-div2 {
    margin: 0px !important;
  }
  h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.3;
    color: var(--color-heading);
    font-weight: 700;
    font-size: 38px;
    font-family: var(--font-heading);
}
p {
  font-size: 20px;
}
.last-section h1 {
  font-size: 30px !important;
  font-weight: bold;
  color: #E7EDF5;
}
.app-buttons img {
  width: 145px !important;
  margin-right: 10px;
}
}

.hero-style-two .hero-bg {
  background-position: bottom center;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0px;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  background-color: #efecf3;
}

@media (max-width: 767px) {
  .hero-style-two .hero-bg {
    background-size: 100%;
  }
  h1, h2, h3, h4, h5, h6 {
    margin: 0;
    line-height: 1.3;
    color: var(--color-heading);
    font-weight: 700;
    font-size: 30px;
    font-family: var(--font-heading);
}
p {
  font-size: 18px;
}
.last-section h1 {
  font-size: 28px !important;
  font-weight: bold;
  color: #E7EDF5;
}
.video-container {
  position: relative;
  width: 100%;
  height: 285px !important;
}
.video-cover {
  cursor: pointer;
  width: 100%;
  height: 245px !important;
}
.video-src-home {
  width: 100%;
  height: 245px !important;
  
}
.app-buttons img {
  width: 145px !important;
  margin-right: 10px;
}
.col-md-5.content-section.text-center {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.crm-testimonial__item {
  text-align: start;
  padding: 45px 20px 20px !important;
}
}

.hero .btns.wow.fadeInUp {
  position: relative;
  top: 30px;
}



.hero-img {
  position: absolute;
  top: 0;
  right: 5%;
}

@media (max-width: 767px) {
  .crm-hero__shape {
    display: none;
  }
}

.crm-hero__shape .shape {
  position: absolute;
  z-index: -1;
}

.crm-hero__shape .shape--1 {
  top: 47%;
  left: 52px;
}

.crm-hero__shape .shape--2 {
  top: 10%;
  left: -26%;
}

.crm-hero__shape .shape--3 {
  right: 80px;
  top: 44%;
}

.crm-hero__shape .shape--4 {
  bottom: 3%;
  right: -24%;
}

/* section video  */

.section-video {
  padding-top: 100px;
}

span.span-apart-text {
  color: #165AE1;

}

.video-container {
  position: relative;
  width: 100%;
  height: 505px;
}

.video-cover {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.video-src-home {
  width: 100%;
  height: 100%;
  display: none; /* Initially hide the video */
}


p.mb-30.wow.fadeInUp {
  margin-top: 25px;
  color: #727272;
}

/* section video  */




/*----------------------------------------*/
/*  05. about
/*----------------------------------------*/
.about {
  z-index: 11;
  position: relative;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 40px;
  -webkit-border-radius: 40px;
  -moz-border-radius: 40px;
  -ms-border-radius: 40px;
  -o-border-radius: 40px;
}



/*----------------------------------------*/
/*  07. feature
/*----------------------------------------*/
.feature__wrap {
  margin-top: 80px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

section#feature {
  background: #F0F0F0;
}

.feature__item {
  position: relative;
}

.feature__item .number {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border: 1px solid #2D374A;
  font-weight: 500;
  font-size: 20px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature__item h3 {
  font-size: 20px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.feature__item p {
  font-size: 14px;
  color: #96A1B1;
  line-height: 23px;
}

.feature__dot {
  position: absolute;
  top: 17px;
  right: -34px;
}

.feature__dot span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  opacity: .2;
}

.feature__dot span:not(:last-child) {
  margin-right: 5px;
}

.feature__dot span.active {
  opacity: 1;
}

.feature__wrapper {
  background-color: #F8F8F8;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  padding: 80px;
  margin-top: -145px;
  position: relative;
  z-index: 2;
}

@media (max-width: 1199px) {
  .feature__wrapper {
    padding: 40px;
  }
}

@media (max-width: 767px) {
  .feature__wrapper {
    padding: 25px;
  }
}

.feature__single {
  padding: 60px;
  padding-left: 70px;
  padding-right: 50px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  background: #FFF;
  box-shadow: 0px 1px 4px 0px rgba(0, 20, 90, 0.1);
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .feature__single {
    padding: 50px 40px;
  }
}

@media (max-width: 1199px) {
  .feature__single {
    padding: 50px 40px;
  }
}

@media (max-width: 767px) {
  .feature__single {
    padding: 30px 25px;
  }
}

.feature__single h3 {
  margin-bottom: 40px;
}

.feature__single a {
  font-size: 16px;
  color: #202026;
  display: flex;
  align-items: center;
}

.feature__single a i {
  margin-right: 10px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.feature__list li {
  font-size: 14px;
  color: #92969E;
  padding-left: 36px;
  display: flex;
  align-items: center;
  position: relative;
}

.feature__list li:not(:last-child) {
  margin-bottom: 25px;
}

.feature__list li i {
  position: absolute;
  left: 0;
  top: 4px;
  width: 24px;
  height: 24px;
  font-size: 10px;
  color: #202026;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  z-index: 1;
}

.feature__list li i::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: linear-gradient(90deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
  opacity: 0.10000000149011612;
  z-index: -1;
}

.feature__content-list {
  border-left: 1px solid #E9E9E9;
}

.feature__content-list li {
  max-width: 428px;
  padding: 30px;
  padding-left: 38px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  position: relative;
}

.feature__content-list li::before {
  position: absolute;
  top: 50%;
  left: -2px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 4px;
  height: 0;
  content: "";
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(19deg, var(--gradient-color-from) 0%, var(--gradient-color-to) 100%);
}

.feature__content-list li:not(:last-child) {
  margin-bottom: 10px;
}

.feature__content-list li:hover {
  background-color: #F8F8F8;
}

.feature__content-list li:hover::before {
  height: 124px;
}

.feature__content-list li:hover h3 {
  color: #020014;
}

.feature__content-list li:hover p {
  color: #6B6B71;
}

.feature__content-list li h3 {
  font-size: 26px;
  color: #676672;
  margin-bottom: 20px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.feature__content-list li p {
  color: #A6A6AA;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}



.crm-feature__item {
  background-color: #165AE1;
  padding: 60px 40px;
  padding-top: 63px;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border: 1px solid #1B1F2F;
  height: 100%;
  position: relative;
}

.crm-feature__item::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  background-image: linear-gradient(120deg, #331C9C 0%, #9066FB 100%);
  content: "";
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  z-index: -1;
}

.crm-feature__item:hover::before {
  transform: rotate(3.374deg);
}

.crm-feature__item h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 30px;
  letter-spacing: -1px;
}

.crm-feature__item p {
  font-size: 15px;
  color: #EBEBEB;
  line-height: 23px;
}

.crm-feature__item .ft_icon {
  position: absolute;
  top: 50%;
  right: 42px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  .crm-feature__item .ft_icon {
    display: none;
  }
}

.crm-feature__title {
  font-size: 22px;
  background-image: linear-gradient(0deg, #2a2355 0%, white 70%);
}

.crm-feature__shape .shape {
  position: absolute;
  z-index: -1;
}

.crm-feature__shape .shape--1 {
  bottom: 25%;
  left: 0;
}

.crm-feature__shape .shape--2 {
  bottom: 44%;
  right: 0;
}

[class^="col-"]:last-child .feature__item .feature__dot {
  display: none;
}

@media (max-width: 991px) {
  [class^="col-"]:nth-child(2) .feature__item .feature__dot {
    display: none;
  }
}

/* slider */
 

/* General Swiper CSS */
.slider-container{
  width: 100%;
  position: relative;
}
.swiper-container1 {
  width: 100%;
  height: auto;


}
.swiper-container2 {
  width: 100% !important;
  height: auto;
  position: relative;
}

.swiper-wrapper {
  display: flex;
  
}
 
.swiper-slide {
  display: flex !important;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  background-color: #f3f3f3;
  border: 1px solid #ccc;
  height: 100%;

}

/* First Slider Custom Styles */
.first-slider .swiper-slide {
  background-color: #fbfbfb; /* Green background for second slider */
  color: #fff;
  box-shadow: 1px 1px 10px 1px rgb(222, 215, 215);
}

/* Second Slider Custom Styles */
.second-slider .swiper-slide {
  background-color: #fbfbfb; /* Green background for second slider */
  color: #fff;
  box-shadow: 1px 1px 10px 1px rgb(222, 215, 215);
}

/* Swiper Button Styling */
.swiper-button-next, .swiper-button-prev {
  color: #000;
  position: absolute;
  top: 50%;
  background-color: white;
  padding: 30px;
  border-radius: 100%;

}
.swiper-button-next::after, .swiper-button-prev::after{
  font-size: 25px !important;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-prev {
  left: 10px;
}



/* Hide Sliders by Default */
/* #firstSlider, #secondSlider {
  display: none;
} */

/*----------------------------------------*/
/*  11. testimonial
/*----------------------------------------*/

section.crm-testimonial.pos-rel.pb-80 {
  background: #F0F0F0;
  padding-top: 80px;
}
section.crm-testimonial.pos-rel.pb-80.duplicate {
  background: #E7EDF5;
  padding-top: 60px;
}


.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #000;
  opacity: 0.5;
  margin: 0 5px;
}

.swiper-pagination-bullet-active {
  background-color: #165AE1;
  opacity: 1;
}
.swiper-pagination{
  position:  relative !important;
  top: 05px !important;
}
/* Progres bar */
.bar-section.row{
    padding-left: 50px;
}

.faq-section1 {
  width: 100%;
  display: flex;
  justify-items: center;
  margin-bottom: 20px;
  /*background: #cfe1e1;*/
  border-radius: 15px;
  
    padding-top: 05px;
    padding-bottom: 05px;
}

.faq-div1 {
  margin: 30px 10px;
  padding: 5px;
  width: 100%;
}

.faq-div3 {
  margin: 30px 40px;
  padding: 5px;
  width: 100%;
  
}
.faq-div3 img {
  display: none;
 
}


/* Only show active image */
.faq-div3 img.active {
  display: block;
  height: 600px;
}


.bar-section h1 {
  text-align: start;
  margin-bottom: 20px;
  margin-top: 50px;
  font-size: 35px;
}

.faq-item1 {
  margin-bottom: 10px;
  border-radius: 8px;
  /* max-width: 600px;
  width: 600px; */
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question1 {
  width: 100%;
  padding: 14px 30px;
  background-color: white;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.faq-question1::after {
  content: '';
  background-image: url("../img/icon/fluent_ios-arrow-24-filled\ \(1\).png"); /* Replace with your image URL */
  background-color: #eef0f5;
    background-position: center;
    background-size: 20px;
    padding: 18px 18px;
    border-radius: 8px;
  background-repeat: no-repeat;
  display: inline-block;
  width: 16px; /* Adjust width based on your icon size */
  height: 16px; /* Adjust height based on your icon size */
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.faq-question1.active::after {
  /* transform: rotate(-180deg); */
  background-image: url("../img/icon/fluent_ios-arrow-24-filled.png");
 background-color: #165AE1;
    background-position: center;
    background-size: 20px;
    padding: 18px 18px;
    border-radius: 8px;
  /* Rotate arrow when active */
}

.faq-answer1 {
  display: none;
  padding: 15px;
  background-color: #FFFFFF;
  font-size: 15px;

}

.faq-answer1 p {
  margin: 0;
}

.faq-question1:hover {
  background-color: #f0f0f0;
}
@media (min-width: 769px) and (max-width: 1025px) {
  .faq-div3 {
    margin: 0px 0px;
    padding: 5px;
    width: 100%;
    
  }
  .faq-section1 {
    width: 100%;
    display: flex;
    justify-items: center;
    margin-bottom: 20px;
    /*background: #cfe1e1;*/
    border-radius: 15px;
    padding-left: 10px;
      padding-top: 05px;
      padding-bottom: 05px;
  }
}
@media (min-width: 768px) {
  .faq-item1 img{
    display: none;
}
  
}
@media (max-width: 767px) {
    .faq-div3 {
        display: none;
    }
    .faq-section1 {
      width: 100%;
      display: flex;
      justify-items: center;
      margin-bottom: 20px;
      /*background: #cfe1e1;*/
      border-radius: 15px;
      padding-left: 10px;
        padding-top: 05px;
        padding-bottom: 05px;
    }
    .swiper-button-next::after, .swiper-button-prev::after{
  font-size: 20px !important;
}

    /* Add some margin for images shown below the answers on small screens */
    .faq-answer1 img {
        display: block;
        margin-top: 10px;
    }
}




/* Progres bar */
/* Section faq  */


.section-faq{
  background-color: #F0F0F0;
  padding-top: 35px;
  padding-bottom: 35px;
}
.faq-section {
  width: 100%;
  
  display: flex;
  justify-items: center;
  margin-bottom: 20px;
}

.faq-div1 {
  margin: 30px 10px;
  padding: 5px;
  width: 100%;
}

.faq-div2 {
  margin: 30px 10px;
  padding: 5px;
  width: 100%;
}


.section-faq h1 {
  text-align: center;
  margin-bottom: 20px;
  margin-top: 50px;
  font-size: 35px;
}

.faq-item {
  margin-bottom: 10px;
  border-radius: 8px;
  /* max-width: 600px;
  width: 600px; */
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 30px 30px;
  background-color: white;
  border: none;
  text-align: left;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '';
  background-image: url("../img/icon/fluent_ios-arrow-24-filled\ \(1\).png"); /* Replace with your image URL */
  background-color: #eef0f5;
    background-position: center;
    background-size: 20px;
    padding: 18px 18px;
    border-radius: 8px;
  background-repeat: no-repeat;
  display: inline-block;
  width: 16px; /* Adjust width based on your icon size */
  height: 16px; /* Adjust height based on your icon size */
  margin-left: 10px;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  /* transform: rotate(-180deg); */
  background-image: url("../img/icon/fluent_ios-arrow-24-filled.png");
 background-color: #165AE1;
    background-position: center;
    background-size: 20px;
    padding: 18px 18px;
    border-radius: 8px;
  /* Rotate arrow when active */
}

.faq-answer {
  display: none;
  padding: 15px;
  background-color: #FFFFFF;
  font-size: 16px;
}

.faq-answer p {
  margin: 0;
}

.faq-question:hover {
  background-color: #f0f0f0;
}

/* Section faq  */


/* rating .bar */
.rating-section {
  display: flex;
  position: relative;
  justify-items: center;
  align-items: center;
  gap: 20px;
  padding-bottom: 40px;
}
.rating-container {
  
 
  gap: 20px;
  
}
.rating-score {
  font-size: 160px;
  font-weight: 400;;
  color: #165AE1;
}
.star-rating {
  display: flex;
  gap: 15px;
  margin-top: 60px;
}
.star {
  font-size: 35px;
  color: #165AE1;
  -webkit-text-stroke: 1px #165AE1; /* Apply border to the star font */
  text-stroke: 1px #165AE1; /* Apply border to the star font */
}
.star.half::before {
  content: '\2605';
  background: linear-gradient(90deg, #165AE1 50%, #e0e0e0 50%);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px #165AE1; /* Apply border to the half star */
}


.reviews-count {
  font-size: 14px;
  color: #6c757d;
}
.rating-bars {
  width: 100%;
  /* max-width: 400px; */
  margin-top: -20px;

}
.rating-bar {
  display: flex;
  /* align-items: center; */
  margin-bottom: 8px;
}
.rating-label {
  width: 20px;
  font-size: 14px;
  color: #6c757d;
  position: relative;
    top: -10px;
}
 .progress {
  width: 100%;
  background-color: #e0e0e0;
  height: 8px;
  margin-left: 10px;
  border-radius: 5px;
}
.progress-bar1 {
  background-color: #007bff;
  width: 0;
  transition: width 1s ease-in-out;
}


/* rating .bar */

.star-rating1 {
  /* display: flex; */
  gap: 5px;
  margin-top: 0px;
}
.star-rating1 .star {
  font-size: 15px;
  color: #007bff;
  -webkit-text-stroke: 1px #165AE1; /* Apply border to the star font */
  text-stroke: 1px #165AE1; /* Apply border to the star font */
}
.star-rating1 .star.half::before {
  content: '\2605';
  background: linear-gradient(90deg, #165AE1 50%, #e0e0e0 50%);
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-stroke: 1px #165AE1; /* Apply border to the half star */
}
.crm-testimonial__item {
  text-align: start;
  padding: 65px 40px 40px;
  background-color: #F9FBFE;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: start;
}

.crm-testimonial__item p {
  font-size: 17px;
  line-height: 29px;
  color: #181818;
  max-width: 640px;
  margin: 0 auto;
}

.p-date-1 {
  color: #000;
  font-size: 14px;
}

.p-date-2 {
  color: #000;
  font-size: 14px !important;
}


.crm-testimonial__item .quote {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  opacity: 0.1;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.crm-testimonial__author .avatar {
  width: 100px;
  height: 100px;
  margin-right: 30px !important;

  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  margin-top: -55px;
}

.crm-testimonial__author .avatar1 {
  width: 40px;
  height: 40px;
  margin-right: 30px !important;

  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  overflow: hidden;
  margin-right: 12px;
  margin-top: -55px;
}

.crm-testimonial__author .content {
  -webkit-transform: translateY(3px);
  -ms-transform: translateY(3px);
  transform: translateY(3px);
}

.crm-testimonial__author .content h4 {
  font-size: 16px;
  line-height: 1;
  color: #fff;
}

.crm-testimonial__author .content span {
  font-size: 12px;
  color: #FFFFFF;
}

@media (max-width: 767px) {
  .crm-testimonial__shape {
    display: none;
  }
   section.crm-testimonial.pos-rel.pb-80 h4{
      font-size: 20px !important;
    } 
    .crm-testimonial__item p{
      font-size: 15px !important;
      
  }
  .rating-score {
    font-size: 140px;
    font-weight: 400;
    color: #165AE1;
}
.star-rating {
    display: flex;
    gap: 12px;
    margin-top: 60px;
}
}

.crm-testimonial__shape .shape {
  position: absolute;
}

.crm-testimonial__shape .shape--1 {
  top: -56%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 100%;
  z-index: -1;
  text-align: center;
}

@media (max-width: 1199px) {
  .crm-testimonial__shape .shape--1 {
    top: -27%;
  }
}

.crm-testimonial__shape .shape--2 {
  top: 5px;
  right: 50px;
}

/*----------------------------------------*/
/*  12. preloader
/*----------------------------------------*/
/* #xb-loadding {
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999999;
  top: 0;
  left: 0;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  background-color: #fff;
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

#xb-loadding.xb-loaded {
  opacity: 0;
  visibility: hidden;
}

#xb-loadding.xb-loaded.style9 {
  -webkit-transform: scale(1.5);
  -khtml-transform: scale(1.5);
  -moz-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5);
  transform: scale(1.5);
}

#xb-loadding .xb-dual-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
}

#xb-loadding .xb-dual-ring:after {
  content: " ";
  display: block;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border-width: 4px;
  border-style: solid;
  border-right-color: transparent;
  border-left-color: transparent;
  animation: xb_dual_ring 1.2s linear infinite;
  border-bottom-color: var(--color-primary);
  border-top-color: var(--color-primary);
}

#xb-loadding .loading-spin {
  display: block;
  height: 65px;
  margin: -32px auto 0;
  position: relative;
  top: 50%;
  width: 65px;
}

#xb-loadding .loading-spin .spinner {
  width: 60px;
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-animation: spin-rotate-all 1s linear infinite;
  animation: spin-rotate-all 1s linear infinite;
}

#xb-loadding .loading-spin .spinner .right-side,
#xb-loadding .loading-spin .spinner .left-side {
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  overflow: hidden;
  -webkit-animation: spin-fade-in-first 1.2s linear infinite alternate;
  animation: spin-fade-in-first 1.2s linear infinite alternate;
}

#xb-loadding .loading-spin .spinner .left-side {
  left: 0;
}

#xb-loadding .loading-spin .spinner .right-side {
  right: 0;
}

#xb-loadding .loading-spin .spinner.color-2 .right-side,
#xb-loadding .loading-spin .spinner.color-2 .left-side {
  -webkit-animation: spin-fade-in-second 1.2s linear infinite alternate;
  animation: spin-fade-in-second 1.2s linear infinite alternate;
}

#xb-loadding .loading-spin .spinner .bar {
  width: 100%;
  height: 100%;
  -webkit-border-radius: 200px 0 0 200px;
  -khtml-border-radius: 200px 0 0 200px;
  -moz-border-radius: 200px 0 0 200px;
  -ms-border-radius: 200px 0 0 200px;
  -o-border-radius: 200px 0 0 200px;
  border-radius: 200px 0 0 200px;
  border: 6px solid var(--color-primary);
  position: relative;
}

#xb-loadding .loading-spin .spinner .bar:after {
  content: "";
  width: 6px;
  height: 6px;
  display: block;
  background: var(--color-primary);
  position: absolute;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  border-radius: 6px;
}

#xb-loadding .loading-spin .spinner .right-side .bar {
  -webkit-border-radius: 0 200px 200px 0;
  -khtml-border-radius: 0 200px 200px 0;
  -moz-border-radius: 0 200px 200px 0;
  -ms-border-radius: 0 200px 200px 0;
  -o-border-radius: 0 200px 200px 0;
  border-radius: 0 200px 200px 0;
  border-left: none;
  -webkit-transform: rotate(-10deg);
  -webkit-transform-origin: left center;
  transform: rotate(-10deg);
  transform-origin: left center;
  -webkit-animation: spin-rotate-right .75s linear infinite alternate;
  animation: spin-rotate-right 0.75s linear infinite alternate;
}

#xb-loadding .loading-spin .spinner .right-side .bar:after {
  bottom: -6px;
  left: -3px;
}

#xb-loadding .loading-spin .spinner .left-side .bar {
  border-right: none;
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
  -webkit-animation: spin-rotate-left .75s linear infinite alternate;
  animation: spin-rotate-left 0.75s linear infinite alternate;
}

#xb-loadding .loading-spin .spinner .left-side .bar:after {
  bottom: -6px;
  right: -3px;
}

#xb-loadding.xb-loader.style-2 {
  background-color: #030216;
}

#xb-loadding.xb-loader.style-2 .xb-dual-ring:after {
  border-bottom-color: var(--color-primary-2);
  border-top-color: var(--color-primary-2);
}

@keyframes xb_dual_ring {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes xb_dual_ring {
  0% {
    -webkit-transform: rotate(0);
  }

  100% {
    -webkit-transform: rotate(360deg);
  }
} */

/*----------------------------------------*/
/*  13. backtotop
/*----------------------------------------*/
.progress-wrap {
  position: fixed;
  right: 30px;
  bottom: 40px;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px rgba(255, 170, 0, 0.08);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  transform: translateY(15px);
  -webkit-transform: translateY(15px);
  -moz-transform: translateY(15px);
  -ms-transform: translateY(15px);
  -o-transform: translateY(15px);
}

.progress-wrap::after {
  position: absolute;
  content: '\f176';
  font-family: "Font Awesome 5 Pro";
  text-align: center;
  line-height: 35px;
  font-size: 15px;
  color: var(--color-primary);
  left: 0;
  top: 0;
  height: 35px;
  width: 35px;
  cursor: pointer;
  display: block;
  font-weight: 700;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
  font-size: 13px;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap.style-2::after {
  color: var(--color-primary-2);
}

.progress-wrap.style-2 svg.progress-circle path {
  stroke: var(--color-primary-2);
}

/*----------------------------------------*/
/*  14. cursor
/*----------------------------------------*/
.xb-cursor,
.xb-cursor-section {
  visibility: hidden;
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
  pointer-events: none;
  top: 0;
  left: 0;
}

.xb-cursor .xb-cursor-wrapper,
.xb-cursor-section .xb-cursor-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.xb-cursor .xb-cursor--follower,
.xb-cursor-section .xb-cursor--follower {
  position: absolute;
  background-color: var(--color-primary);
  opacity: .25;
  border-radius: 100%;
  width: 1.5rem;
  height: 1.5rem;
  -webkit-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s cubic-bezier(0.165, 0.84, 0.44, 1), background-color 0.1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.xb-cursor.style-2 .xb-cursor--follower {
  background-color: var(--color-primary-2);
}

.xb-cursor .xb-cursor--label,
.xb-cursor-section .xb-cursor--label {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 15px;
  transform: scale(0);
  will-change: transform, opacity;
  -webkit-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.xb-cursor .xb-cursor--drap,
.xb-cursor-section .xb-cursor--drap {
  line-height: 87px;
  text-align: center;
  width: 87px;
  height: 87px;
  background-color: #000;
  font-size: 0;
  -webkit-border-radius: 87px;
  -khtml-border-radius: 87px;
  -moz-border-radius: 87px;
  -ms-border-radius: 87px;
  -o-border-radius: 87px;
  border-radius: 87px;
  -webkit-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -khtml-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -moz-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -ms-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  -o-transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  transform: scale(0);
  will-change: transform, opacity;
  color: #fff;
}

.xb-cursor .xb-cursor--drap:before,
.xb-cursor-section .xb-cursor--drap:before,
.xb-cursor .xb-cursor--drap:after,
.xb-cursor-section .xb-cursor--drap:after {
  content: "\f10b";
  font-family: caseicon;
  font-size: 10px;
  display: inline-flex;
}

.xb-cursor .xb-cursor--drap:before,
.xb-cursor-section .xb-cursor--drap:before {
  -webkit-transform: scaleX(-1);
  -khtml-transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -ms-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  transform: scaleX(-1);
}

.xb-cursor .xb-cursor--drap:after,
.xb-cursor.is-enabled,
.xb-cursor-section.is-enabled {
  visibility: visible;
}

.xb-cursor.is-hidden .xb-cursor-wrapper,
.xb-cursor-section.is-hidden .xb-cursor-wrapper {
  transform: scale(0) !important;
}

.xb-cursor.is-mouse-down .xb-cursor-wrapper,
.xb-cursor-section.is-mouse-down .xb-cursor-wrapper {
  transform: scale(0.8);
}

.xb-cursor.is-active .xb-cursor--follower,
.xb-cursor-section.is-active .xb-cursor--follower {
  -webkit-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -khtml-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -moz-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -ms-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  -o-box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.12);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
  -webkit-transform: scale(4);
  -khtml-transform: scale(4);
  -moz-transform: scale(4);
  -ms-transform: scale(4);
  -o-transform: scale(4);
  transform: scale(4);
  opacity: 0;
}



/*----------------------------------------*/
/*  19. process
/*----------------------------------------*/
.process .container {
  padding-left: 33px;
  padding-right: 33px;
}

@media (max-width: 1199px) {
  .process .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}


section#process {
  padding-top: 100px;
}

.process__button {
  display: flex;
  justify-content: center;
  align-items: center;
}

.process__button .btns {
  border-radius: 96px;
 
  background: white;
  padding: 0px;
  width: 50%;
  display: flex;
  border: 1px solid #165AE1;
}

@media (max-width: 767px) {
  .process__button {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
  }
}

.process__area {
  padding: 50px 54px;
  background-color: #0F0E1E;
  border: 1px solid #282D45;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

@media (max-width: 767px) {
  .process__area {
    padding: 30px 20px;
  }
}

.process__top .crm-title {
  max-width: 380px;
}


.process__shape .shape {
  position: absolute;
  z-index: -1;
}

.process__shape .shape--1 {
  left: 6%;
  top: 25%;
}

.process__shape .shape--2 {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 5%;
  text-align: center;
  width: 100%;
}

.process__shape .shape--3 {
  right: 5%;
  top: 44%;
}


/* slider  */





/* section last */

  .last-section {
    background-color: #165AE1;
    color: white;
    padding: 50px 0;
    position:  relative !important;
}


.last-section h1 {
  font-size: 48px;
    font-weight: bold;
    color: #E7EDF5;
}

.last-section p {
    font-size: 1.2rem;
    margin-top: 10px;
}

.app-buttons img {
    width: 190px;
    margin-right: 10px;
}

.phone-image {
    max-width: 100%;
    height: auto;
}

.app-images {
    display: flex;
    justify-content: center;
}

.app-images img {
  width: 100%;
  
}

/* section last */


/*----------------------------------------*/
/*  23. footer
/*----------------------------------------*/
.footer__top {
  border-bottom: 1px solid #F1F1F1;
  padding-right: 32px;
}
.site-footer{
  background-color: #E7EDF5;
}
.h4-footer-e{
  color: #181818 !important;
}
.footer__cta a {
  color: #181818;
  line-height: 47px;
}
.logo-text1{
    margin: 0;
    line-height: 1.3;
    color: #165AE1 !important;
    font-weight: 700;
    font-size: 28px;
    font-family: "Nunito", sans-serif;
}

.footer__copyright {
  padding-bottom: 10px;
}

.footer__copyright-text {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.footer__social li:not(:first-child) {
  margin-left: 16px;
}

.footer__social li a {
  color: #181818;
  font-size: 16px;
}

.footer__social li a:hover {
  color: #181818;
}

@media (max-width: 991px) {
  .footer__cta {
    padding-left: 0;
  }
}

.footer__cta .title {
  font-size: 22px;
  color: #181818;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}

.footer__cta h4 {
  font-size: 16px;
  color: #fff;
  line-height: 30px;
  margin-bottom: 42px;
}

.footer__cta .cta-number {
  font-size: 18px;
  color: #fff;
  background-color: #292B2F;
  display: inline-block;
  padding: 13px 28px;
  padding-right: 59px;
  border-radius: 26px;
  -webkit-border-radius: 26px;
  -moz-border-radius: 26px;
  -ms-border-radius: 26px;
  -o-border-radius: 26px;
  border: 1px solid #282A2D;
}

.footer__cta .cta-number span {
  margin-right: 21px;
}

.footer__newsletter {
  max-width: 370px;
  position: relative;
}


@media (max-width: 991px) {
  .footer__cta-social {
    justify-content: start;
  }
}

.footer__cta-social li:not(:first-child) {
  margin-left: 12px;
}

.footer__cta-social li a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  background-color: #292B2F;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 991px) {
  .footer__cta-link {
    justify-content: start;
  }
}

.footer__cta-link li:not(:last-child) {
  margin-right: 36px;
}

.footer__cta-link li a {
  font-size: 16px;
  color: #B3B9C2;
  font-weight: 500;
}

.footer__cta-link li a:hover {
  color: #fff;
}

.footer__cta-area {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid #2A2C2F;
}

.footer__shape .shape {
  position: absolute;
  z-index: -1;
}

.footer__shape .shape--1 {
  top: 47%;
  left: -62px;
}

.footer__shape .shape--2 {
  top: 37%;
  right: -222px;
}

.footer__shape .shape--2 img {
  animation: spin 12s infinite linear;
  -webkit-animation: spin 12s infinite linear;
}



.footer-style-two {
  background-position: center -15px;
  background-repeat: no-repeat;
}

@media (max-width: 991px) {
  .footer-style-two {
    background-position: center -117px;
  }
}

@media (max-width: 767px) {
  .footer-style-two {
    background-size: 100%;
  }
}



.footer-style-two .footer__newsletter button {
  padding: 10px 29px;
}

.footer-style-two .footer__cta .cta-number,
.footer-style-two .footer__cta-social li a {
  background-color: #0F0E1E;
  border-color: #0F0E1E;
}

.crm-community {
  padding-bottom: 325px;
}

@media (max-width: 1199px) {
  .crm-community {
    padding-bottom: 300px;
  }
}

@media (max-width: 991px) {
  .crm-community {
    padding-bottom: 180px;
  }
}

@media (max-width: 767px) {
  .crm-community {
    padding-bottom: 80px;
  }
  .faq-section {
    width: 100%;
    
    display: block;
    justify-items: center;
    margin-bottom: 20px;
  }
}

.crm-community__social li:not(:last-child) {
  margin-right: 25px;
}

.crm-community .thm-btn {
  padding: 16px 60px;
}
.footer__social img {
  width: 20px;
}

@media (max-width: 767px) {
  .crm-footer__shape {
    display: none;
  }
}

.crm-footer__shape .shape {
  position: absolute;
}

.crm-footer__shape .shape--1 {
  top: 0;
  left: 0;
}

.crm-footer__shape .shape--2 {
  bottom: 40%;
  right: 0;
}

@media (max-width: 460px) and (min-width: 400px) {
  .hero p.mb-30.wow.fadeInUp {
    margin-top: 25px;
    color: #727272;
    padding-left: 50px;
    padding-right: 50px;
}  
.section-video p.mb-30.wow.fadeInUp {
  margin-top: 25px;
  color: #727272;
  padding-left: 50px;
  padding-right: 50px;
}  
#feature p.mb-30.wow.fadeInUp {
  margin-top: 25px;
  color: #727272;
  padding-left: 50px;
  padding-right: 50px;
}
.process p.mb-30.wow.fadeInUp {
  margin-top: 25px;
  color: #727272;
  padding-left: 50px;
  padding-right: 50px;
}
.crm-testimonial p.mb-30.wow.fadeInUp {
  margin-top: 25px;
  color: #727272;
  padding-left: 50px;
  padding-right: 50px;
}

}

