
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&amp;family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&amp;display=swap");
.xc-transition-common {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

.xc-transition-color {
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

.xc-transition-transform {
  -webkit-transition: transform 0.3s 0s ease-out;
  -moz-transition: transform 0.3s 0s ease-out;
  -ms-transition: transform 0.3s 0s ease-out;
  -o-transition: transform 0.3s 0s ease-out;
  transition: transform 0.3s 0s ease-out;
}

.xc-transition-border-color {
  -webkit-transition: border-color 0.3s 0s ease-out;
  -moz-transition: border-color 0.3s 0s ease-out;
  -ms-transition: border-color 0.3s 0s ease-out;
  -o-transition: border-color 0.3s 0s ease-out;
  transition: border-color 0.3s 0s ease-out;
}

.xc-transition-bg-color {
  -webkit-transition: backgroud-color 0.3s 0s ease-out;
  -moz-transition: backgroud-color 0.3s 0s ease-out;
  -ms-transition: backgroud-color 0.3s 0s ease-out;
  -o-transition: backgroud-color 0.3s 0s ease-out;
  transition: backgroud-color 0.3s 0s ease-out;
}

.xc-transition-fz {
  -webkit-transition: font-size 0.3s 0s ease-out;
  -moz-transition: font-size 0.3s 0s ease-out;
  -ms-transition: font-size 0.3s 0s ease-out;
  -o-transition: font-size 0.3s 0s ease-out;
  transition: font-size 0.3s 0s ease-out;
}

:root {
  /**
  @font family declaration
  */
  --xc-ff-body: 'Roboto', sans-serif;
  --xc-ff-heading: 'Manrope', sans-serif;
  --xc-ff-p: 'Roboto', sans-serif;
  --xc-ff-fontawesome: "Font Awesome 6 Pro";
  /**
  @color declaration
  */
  --xc-common-white: #ffffff;
  --xc-common-black: #000000;
  --xc-heading-primary: #101828;
  --xc-grey-1: #5B6475;
  --xc-text-body: #475467;
  --xc-text-1: #000;
  --xc-theme-primary: #4E43FA;
  --xc-theme-primary-rgb: 78, 67, 250;
  --xc-theme-secondary: #3618d3;
  --xc-border-1: #B9CCDA;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--xc-ff-body);
  font-size: var(--xc-fz-body);
  font-weight: normal;
  color: var(--xc-text-body);
  line-height: 32px;
  scroll-snap-type: proximity;
}

body.locked {
  overflow-y: hidden;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--xc-ff-heading);
  color: var(--xc-heading-primary);
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: color 0.3s 0s ease-out;
  -moz-transition: color 0.3s 0s ease-out;
  -ms-transition: color 0.3s 0s ease-out;
  -o-transition: color 0.3s 0s ease-out;
  transition: color 0.3s 0s ease-out;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

p {
  font-family: var(--xc-ff-p);
  font-size: var(--xc-fz-p);
  font-weight: 400;
  color: var(--xc-text-body);
  margin-bottom: 15px;
  line-height: 30px;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3 {
  transition: 0.3s;
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

a:focus,
.button:focus {
  text-decoration: none;
  outline: none;
}

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.ul-0 {
  padding: 0;
  margin: 0;
}

.pl-0 {
  padding-left: 0;
}

.w-img img {
  width: 100%;
}

.fix {
  overflow: hidden;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
input[type=url],
textarea {
  outline: none;
  background-color: #EFF0F2;
  height: 60px;
  width: 100%;
  line-height: 60px;
  font-size: 16px;
  border: 2px solid #EFF0F2;
  color: var(--xc-common-black);
  padding-left: 29px;
  padding-right: 29px;
}
[dir=rtl] input[type=text],
[dir=rtl] input[type=email],
[dir=rtl] input[type=tel],
[dir=rtl] input[type=number],
[dir=rtl] input[type=password],
[dir=rtl] input[type=url],
[dir=rtl] textarea {
  text-align: right;
}
input[type=text]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=url]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #84848B;
}
input[type=text]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=url]::-moz-placeholder,
textarea::-moz-placeholder { /* Firefox 19+ */
  color: #84848B;
}
input[type=text]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=url]:-moz-placeholder,
textarea:-moz-placeholder { /* Firefox 4-18 */
  color: #84848B;
}
input[type=text]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=url]:-ms-input-placeholder,
textarea:-ms-input-placeholder { /* IE 10+  Edge*/
  color: #84848B;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
input[type=url]::placeholder,
textarea::placeholder { /* MODERN BROWSER */
  color: #84848B;
}

textarea {
  line-height: 1.8;
  padding-top: 30px;
  padding-bottom: 30px;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

*::-moz-selection {
  background: var(--xc-common-black);
  color: var(--xc-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--xc-common-black);
  color: var(--xc-common-white);
  text-shadow: none;
}

::selection {
  background: var(--xc-common-black);
  color: var(--xc-common-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: var(--xc-common-black);
  font-size: var(--xc-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--xc-common-black);
  font-size: var(--xc-fz-body);
  opacity: 1;
}

/*---------------------------------
    1.2 Common Classes
---------------------------------*/
.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.z-index-1 {
  z-index: 1;
}

.z-index-11 {
  z-index: 11;
}

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}
.list-unstyled{
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

.include-bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.demo {
  -webkit-transition: color 0.3s 0s linear;
  -moz-transition: color 0.3s 0s linear;
  -ms-transition: color 0.3s 0s linear;
  -o-transition: color 0.3s 0s linear;
  transition: color 0.3s 0s linear;
  -webkit-transition: color 0.3s linear, transform 0.2s ease;
  -moz-transition: color 0.3s linear, transform 0.2s ease;
  -ms-transition: color 0.3s linear, transform 0.2s ease;
  -o-transition: color 0.3s linear, transform 0.2s ease;
  transition: color 0.3s linear, transform 0.2s ease;
}
[dir=rtl] .demo {
  margin-left: 0;
  margin-right: 15px;
}
div.demo img {
  margin-left: 10px;
}

[xc-theme=xc-theme-dark] .demo {
  color: yellow;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--xc-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}
.body-overlay:hover {
  cursor: pointer;
}

.body-overlay.opened {
  opacity: 0.5;
  visibility: visible;
}

.xc-header-one__logo {
  max-width: 156px;
}
.xc-header-one__logo img {
  width: 100%;
}

/* dropcap */
.xc-dropcap::first-letter {
  font-size: 50px;
  font-weight: 700;
  float: left;
  text-align: center;
  color: var(--xc-common-black);
  background-color: var(--xc-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  margin-right: 5px;
  line-height: inherit;
}

.class {
  stroke-dasharray: 189px, 191px;
  stroke-dashoffset: 0px;
}

.xc-preloader {
  position: fixed;
  background-color: var(--xc-common-white);
  background-position: center center;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.xc-preloader__image {
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100px auto;
  width: 100%;
  height: 100%;
}
@media (max-width: 575px) {
  .xc-preloader__image {
    background-size: 50px auto;
  }
}

.xc-enable-dark {
  display: none;
}

.xc-dark-swich i {
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
  transition: 0.3s;
}
.xc-dark-swich i.sun {
  display: none;
}

.xc-dark-mode .xc-dark-swich i {
  width: 46px;
  height: 46px;
  text-align: center;
  line-height: 46px;
  border-radius: 50%;
}
.xc-dark-mode .xc-dark-swich i.sun {
  display: inline-block;
}
.xc-dark-mode .xc-dark-swich i.moon {
  display: none;
}

.xc-mobile-nav__content .logo-box a h1 {
  color: var(--xc-common-white);
}

.xc-mobile-nav__social a {
  display: inline-block;
}

.xc-feature-five__section .item + .item {
  margin-left: 40px;
}

.xc-featrue-five__warapper {
  padding-left: 100px;
  padding-right: 100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-featrue-five__warapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.xc-feature-five__section .xc-section__title {
  font-size: 36px;
}

.elementor .xc-header-banner__img img {
  border-radius: 30px;
}

.xc-about-one__feature-list .xc-icon {
  width: 25px;
  height: 25px;
}

.xc-brand-one__item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
}

.xc-brand-one__item img {
  width: 100%;
}

.xc-header-banner-2__bottom img {
  margin-right: 20px;
}

.xc-about-six__list li::before {
  top: 5px;
}

.xc-header-banner__bg {
  left: 0;
  right: 0;
}

/*---------------------------------
    1.3 Default Spacing
---------------------------------*/ /*--------------------------------------------------------------
# Theme Default
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Common Classes
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Default Spacing
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Back to Top
------------------- -------------------------------------------*/
.xc-back-to-top-wrapper {
  position: fixed;
  right: 50px;
  bottom: 0;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50%;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .xc-back-to-top-wrapper {
    right: 20px;
    bottom: 20px;
  }
}
.xc-back-to-top-wrapper.xc-back-to-top-btn-show {
  visibility: visible;
  opacity: 1;
  bottom: 50px;
}

.xc-back-to-top-btn {
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  background: var(--xc-theme-primary);
  box-shadow: 0px 8px 16px rgba(3, 4, 28, 0.3);
  color: var(--xc-common-white);
  border-radius: 50%;
  transition: 0.2s;
}
.xc-back-to-top-btn svg {
  -webkit-transform: translateY(-2px);
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  -o-transform: translateY(-2px);
  transform: translateY(-2px);
}
.xc-back-to-top-btn:hover {
  -webkit-transform: translateY(-4px);
  -moz-transform: translateY(-4px);
  -ms-transform: translateY(-4px);
  -o-transform: translateY(-4px);
  transform: translateY(-4px);
}

/*--------------------------------------------------------------
# Theme Settings
------------------- -------------------------------------------*/
.xc-theme-settings-area {
  position: fixed;
  top: 50%;
  left: 0;
  width: 240px;
  background-color: var(--xc-common-white);
  border: 1px solid #EAEAEF;
  -webkit-transform: translateY(-50%) translateX(-100%);
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  -o-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  z-index: 991;
  direction: ltr;
  border-bottom-right-radius: 4px;
  transition: 0.3s;
}
.xc-theme-settings-area.settings-opened {
  -webkit-transform: translateY(-50%) translateX(0%);
  -moz-transform: translateY(-50%) translateX(0%);
  -ms-transform: translateY(-50%) translateX(0%);
  -o-transform: translateY(-50%) translateX(0%);
  transform: translateY(-50%) translateX(0%);
}
.xc-theme-settings-area.settings-opened .xc-theme-settings-gear {
  opacity: 0;
}
.xc-theme-settings-area.settings-opened .xc-theme-settings-close {
  opacity: 1;
}
.xc-theme-settings-open {
  position: absolute;
  top: -1px;
  left: 100%;
}
.xc-theme-settings-open button {
  background-color: var(--xc-common-white);
  border: 1px solid #EAEAEF;
  border-left: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 24px;
  color: var(--xc-common-black);
  position: relative;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
.xc-theme-settings-gear {
  display: inline-block;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.xc-theme-settings-close {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.xc-theme-header-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}
.xc-theme-wrapper {
  padding: 20px 30px 30px;
}
.xc-theme-toggle {
  text-align: center;
}
.xc-theme-toggle-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}
.xc-theme-toggle-light, .xc-theme-toggle-dark {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}
.xc-theme-toggle input {
  display: none;
}
.xc-theme-toggle:hover {
  cursor: pointer;
}
.xc-theme-toggle label {
  color: var(--xc-common-black);
  font-size: 14px;
  font-weight: 500;
}
.xc-theme-toggle label:hover {
  cursor: pointer;
}
.xc-theme-toggle #xc-theme-toggler {
  display: none;
}
.xc-theme-toggle #xc-theme-toggler:checked + i {
  right: calc(50% - 4px);
}
.xc-theme-toggle-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--xc-common-black);
  background-color: var(--xc-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.xc-theme-dir {
  text-align: center;
  display: none;
}
.xc-theme-dir-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}
.xc-theme-dir-ltr, .xc-theme-dir-rtl {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}
.xc-theme-dir input {
  display: none;
}
.xc-theme-dir:hover {
  cursor: pointer;
}
.xc-theme-dir label {
  color: var(--xc-common-black);
  font-size: 14px;
  font-weight: 500;
}
.xc-theme-dir label:hover {
  cursor: pointer;
}
.xc-theme-dir #xc-dir-toggler {
  display: none;
}
.xc-theme-dir #xc-dir-toggler:checked + i {
  right: calc(50% - 4px);
}
.xc-theme-dir-slide {
  position: absolute;
  top: 50%;
  right: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--xc-common-black);
  background-color: var(--xc-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.xc-theme-color-item.active button::before {
  opacity: 1;
  visibility: visible;
}
.xc-theme-color-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}
.xc-theme-color-btn::before {
  position: absolute;
  content: "\f00c";
  font-weight: 600;
  font-family: var(--xc-ff-fontawesome);
  color: var(--xc-common-white);
  font-size: 16px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.xc-theme-color-btn.xc-color-settings-btn[data-color="#2CAE76"] {
  background-color: #2CAE76;
}
.xc-theme-color-btn.xc-color-settings-btn[data-color="#008080"] {
  background-color: #008080;
}
.xc-theme-color-btn.xc-color-settings-btn[data-color="#AB6C56"] {
  background-color: #AB6C56;
  color: black;
}
.xc-theme-color-btn.xc-color-settings-btn[data-color="#3661FC"] {
  background-color: #3661FC;
}
.xc-theme-color-btn.xc-color-settings-btn[data-color="#F50963"] {
  background-color: #F50963;
}
.xc-theme-color-btn.xc-color-settings-btn[data-color="#FF5A1B"] {
  background-color: #FF5A1B;
}
.xc-theme-color-btn.xc-color-settings-btn[data-color="#FA0095"] {
  background-color: #FA0095;
}
.xc-theme-color-btn.xc-color-settings-btn[data-color="#ED212C"] {
  background-color: #ED212C;
}
.xc-theme-color-input {
  margin-top: 15px;
}
.xc-theme-color-input h6 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
}
.xc-theme-color-input label {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--xc-theme-primary);
  transition: 0.3s;
}
.xc-theme-color-input label:hover {
  cursor: pointer;
}
.xc-theme-color-input input {
  display: none;
}

/*--------------------------------------------------------------
# Buttons
------------------- -------------------------------------------*/
.xc-btn {
  color: var(--xc-common-white);
  background-color: var(--xc-theme-primary);
  border: 1px solid var(--xc-theme-primary);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--xc-ff-heading);
  transition: 0.3s;
  border-radius: 5px;
  display: inline-block;
}
.xc-btn:hover {
  background-color: var(--xc-theme-secondary);
  color: var(--xc-common-white);
  border-color: transparent;
}

.xc-black-btn {
  background-color: var(--xc-common-black);
  border-color: black;
}

.xc-border-btn {
  color: var(--xc-theme-primary);
  border: 1px solid var(--xc-theme-primary);
  padding: 10px 20px;
  font-weight: 700;
  font-size: 14px;
  font-family: var(--xc-ff-heading);
  transition: 0.3s;
  border-radius: 5px;
  display: inline-block;
}
.xc-border-btn:hover {
  background-color: var(--xc-theme-secondary);
  color: var(--xc-common-white);
  border-color: transparent;
}

.xc-header-top-btn {
  color: var(--xc-common-white);
  border: 1px solid var(--xc-common-white);
  padding: 5px 20px;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--xc-ff-heading);
  transition: 0.3s;
  border-radius: 5px;
}
.xc-header-top-btn:hover {
  background-color: var(--xc-theme-secondary);
  color: var(--xc-common-white);
  border-color: transparent;
}

.xc-call-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--xc-theme-secondary);
  background-image: linear-gradient(45deg, transparent 50%, var(--xc-theme-primary) 50%);
  background-position: 25%;
  background-size: 400%;
  -webkit-transition: background 500ms ease-in-out, color 500ms ease-in-out;
  transition: background 500ms ease-in-out, color 500ms ease-in-out;
  padding: 10px 20px;
  border-radius: 5px;
  transition: 0.3s;
}
.xc-call-btn:hover {
  background-position: 100%;
}
.xc-call-btn .xc-icon {
  font-size: 20px;
  color: var(--xc-common-white);
  margin-right: 10px;
}
.xc-call-btn .xc-info p {
  color: var(--xc-common-white);
  margin-bottom: 0;
  font-size: 12px;
  line-height: 1.2;
  font-weight: bold;
}
.xc-call-btn .xc-info p.number {
  font-weight: bold;
  font-size: 15px;
}

.xc-video-btn {
  transition: 0.3s;
}
.xc-video-btn:hover {
  color: var(--xc-theme-primary);
}
.xc-video-btn:hover i {
  color: var(--xc-common-white);
  background-color: var(--xc-theme-primary);
}
.xc-video-btn i {
  text-align: center;
  width: 54px;
  height: 54px;
  line-height: 54px;
  border-radius: 50%;
  margin-right: 5px;
  display: inline-block;
  color: var(--xc-common-white);
  background-color: var(--xc-common-black);
  transition: 0.3s;
}

/* offcanvas btn */
.xc-offcanvas-open-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
  width: 50px;
  height: 50px;
  border: 2px solid var(--xc-common-black);
  border-radius: 50%;
  transition: 0.3s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-offcanvas-open-btn {
    width: 40px;
    height: 40px;
    /* border: 2px solid var(--xc-common-white); */
    border: 1px solid var(--xc-common-black);
  }
}
.xc-offcanvas-open-btn span {
  width: 25px;
  height: 3px;
  border-radius: 5px;
  display: inline-block;
  background-color: var(--xc-common-black);
  /* background-color: var(--xc-common-white); */
  transition: 0.3s;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-offcanvas-open-btn span {
    width: 20px;
    height: 2px;
  }
}
.xc-offcanvas-open-btn span:nth-child(2) {
  margin-left: 5px;
}
.xc-offcanvas-open-btn:hover {
  border-color: var(--xc-theme-primary);
}
.xc-offcanvas-open-btn:hover span {
  background-color: var(--xc-theme-primary);
}

.xc-more-btn {
  color: var(--xc-theme-primary);
  font-weight: 700;
  transition: 0.3s;
}
.xc-more-btn i {
  margin-left: 10px;
}
.xc-more-btn:hover {
  color: var(--xc-theme-secondary);
}

#xc-cursor {
  position: fixed;
  background-color: black;
  z-index: 99;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
  mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
  .xc-cursor__circle {
    width: 10px;
    background-color: black;
    height: 10px;
    margin-top: -50%;
    margin-left: -50%;
    border-radius: 50%;
    border: solid 1px rgba(227, 222, 193, 0.64);
    transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s cubic-bezier(1, 1, 1, 1), border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), width 0.3s cubic-bezier(0.25, 1, 0.5, 1), height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }
  #xc-cursor.arrow .xc-cursor__circle {
    width: 128px;
    height: 128px;
    background-color: var(--xc-theme-primary);
    border-color: var(--xc-theme-primary);
  }
  #xc-cursor.arrow::after {
    content: "Moving";
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    line-height: 68px;
    text-align: center;
    color: var(--xc-common-white);
  }
  #xc-cursor.subtle .xc-cursor__circle {
    opacity: 0.16;
  }
  #xc-cursor.overlay .xc-cursor__circle {
    width: 48px;
    height: 48px;
    background-color: rgba(227, 222, 193, 0.08);
    border-color: transparent;
  }
}
.xc-about-one__btn .xc-btn {
  padding-left: 30px;
  padding-right: 30px;
}

.xc-cta-two__btn .xc-btn,
.xc-cta-one__btn .xc-btn {
  padding-left: 40px;
  padding-right: 40px;
}

/*--------------------------------------------------------------
# Animations
------------------- -------------------------------------------*/
.xc-move-x {
  animation: xc_moveX 9s linear infinite;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@-webkit-keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 40px rgba(10, 165, 205, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
  }
}
/* pulse effect animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(var(--xc-theme-primary-rgb), 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--xc-theme-primary-rgb), 0.4);
  }
  70% {
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes scroll {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes scroll {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-10px);
  }
  100% {
    transform: translatey(0px);
  }
}
@-webkit-keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes xc-title {
  from {
    right: 90%;
  }
  to {
    right: 0;
  }
}
@keyframes xc-zoom {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.5);
  }
}
@keyframes scroll1 {
  0% {
    top: 0px;
    opacity: 1;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 100%;
    opacity: 0.5;
  }
}
@keyframes scroll2 {
  0% {
    opacity: 1;
    bottom: 0px;
  }
  50% {
    bottom: 50%;
  }
  100% {
    bottom: 100%;
    opacity: 0.5;
  }
}
@keyframes preloader {
  0% {
    transform: scale(0.7, 0.7);
  }
  50% {
    transform: scale(1, 1);
  }
  100% {
    transform: scale(0.7, 0.7);
  }
}
@keyframes lineDash {
  0% {
    stroke-dashoffset: 1000;
  }
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* heartbeat animation */
@keyframes xc_heartbeat {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@-webkit-keyframes heartbeat {
  to {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
  }
}
@-webkit-keyframes xc-zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes xc-zoom-fade {
  0% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
  50% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
@keyframes xc-moveX {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@-webkit-keyframes xc-moveY {
  0% {
    transform: translatey(0px);
  }
  50% {
    transform: translatey(-20px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes xc-moveX {
  0% {
    transform: translatex(0px);
  }
  50% {
    transform: translatex(-20px);
  }
  100% {
    transform: translatex(0px);
  }
}
@-webkit-keyframes xc-moveX {
  0% {
    transform: translatex(0px);
  }
  50% {
    transform: translatex(-20px);
  }
  100% {
    transform: translatex(0px);
  }
}
@keyframes xcswing {
  0% {
    transform: rotate(6deg);
  }
  100% {
    transform: rotate(-6deg);
  }
}
@keyframes xcswing2 {
  0% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(-1deg);
  }
}
@-webkit-keyframes xcfadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes xcfadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.xcfadeUp {
  -webkit-animation-name: xcfadeUp;
  animation-name: xcfadeUp;
}

@-webkit-keyframes xcfadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes xcfadeLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.xcfadeLeft {
  -webkit-animation-name: xcfadeLeft;
  animation-name: xcfadeLeft;
}

@-webkit-keyframes xcfadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes xcfadeRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.xcfadeRight {
  -webkit-animation-name: xcfadeRight;
  animation-name: xcfadeRight;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes xcfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes xcfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.xcfadeIn {
  -webkit-animation-name: xcfadeIn;
  animation-name: xcfadeIn;
}

/*--------------------------------------------------------------
# PreLoader
------------------- -------------------------------------------*/
/*--------------------------------------------------------------
# Background 
------------------- -------------------------------------------*/
.grey-bg {
  background-color: var(--xc-grey-1);
}

.grey-bg-2 {
  background-color: var(--xc-grey-2);
}

.white-bg {
  background-color: var(--xc-common-white);
}

.black-bg {
  background-color: var(--xc-common-black);
}

.footer-bg {
  background-color: #081422;
}

.footer-bg-2 {
  background-color: #F3F5F8;
}

/* .theme-bg {
  background-color: var(--xc-theme-primary);
} */

.theme-bg-2 {
  background-color: #F8F7FC;
}

.theme-bg-3 {
  background-color: #F2F3F3;
}

.theme-bg-4 {
  background-color: #F3F5F8;
}

.theme-bg-5 {
  background-color: #F2F4F8;
}

.theme-bg-6 {
  background-color: #11192A;
}

.theme-bg-7 {
  background-color: #3D369D;
}

/*--------------------------------------------------------------
# Carousel css
------------------- -------------------------------------------*/
/* xc range slider css */
.xc-range-slider .inside-slider {
  padding-left: 7px;
  padding-right: 17px;
}
.xc-range-slider .noUi-target {
  background-color: #191C3C;
  border-radius: 12px;
  border: 0;
  box-shadow: none;
}
.xc-range-slider .noUi-connect {
  background-color: var(--xc-theme-primary);
}
.xc-range-slider .noUi-horizontal {
  height: 6px;
}
.xc-range-slider .noUi-handle {
  height: 24px;
  width: 24px;
  background-color: var(--xc-theme-primary);
  border-radius: 50%;
  border: 4px solid var(--xc-common-white);
  box-shadow: 0px 4px 10px rgba(5, 9, 43, 0.3);
  top: -9px;
}
.xc-range-slider .noUi-handle:hover {
  cursor: pointer;
}
.xc-range-slider .noUi-handle::before, .xc-range-slider .noUi-handle::after {
  display: none;
}
.xc-range-slider-dark .noUi-handle {
  border: 4px solid #2D314B;
}

/* xc swiper slider dot */
.xc-swiper-dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--xc-grey-1);
  opacity: 1;
  margin: 0 9px;
  position: relative;
}
.xc-swiper-dot .swiper-pagination-bullet::after {
  position: absolute;
  content: "";
  left: 50%;
  top: 50%;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  background-color: transparent;
  border: 2px solid transparent;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
}
.xc-swiper-dot .swiper-pagination-bullet button {
  font-size: 0;
}
.xc-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--xc-theme-primary);
}
.xc-swiper-dot .swiper-pagination-bullet.swiper-pagination-bullet-active::after {
  border-color: var(--xc-theme-primary);
  transform: translate(-50%, -50%) scale(1);
}

.xc-swiper-arrow {
  width: 80px;
  height: 80px;
  line-height: 80px;
  font-size: 20px;
  text-align: center;
  background-color: var(--xc-common-white);
  color: var(--xc-common-black);
}
.xc-swiper-arrow:hover {
  background-color: var(--xc-common-black);
  color: var(--xc-common-white);
}

/* xc slick arrow */
/*--------------------------------------------------------------
# Nice Select
------------------- -------------------------------------------*/
.nice-select {
  -webkit-tap-highlight-color: transparent;
  background-color: var(--xc-common-white);
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select::after {
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  right: 0;
  content: "\f107";
  font-family: var(--xc-ff-fontawesome);
  transform-origin: center;
  color: var(--xc-common-black);
  font-weight: 500;
  height: auto;
  width: auto;
}
.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled::after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small::after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: var(--xc-common-white);
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}

.no-csspointerevents .nice-select.open .list {
  display: block;
}

/*--------------------------------------------------------------
#  Pagination
------------------- -------------------------------------------*/
.xc-pagination {
  margin-top: 30px;
}
.xc-pagination ul {
  padding-left: 0;
  margin-bottom: 0;
}
.xc-pagination ul li {
  display: inline-block;
}
.xc-pagination ul li:not(:last-child) {
  margin-right: 10px;
}
.xc-pagination a, .xc-pagination span {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;
  border-radius: 7px;
  border: 2px solid #f1f1f1;
  font-size: 18px;
  font-weight: 600;
  transition: 0.3s;
}
.xc-pagination a:not(:last-child), .xc-pagination span:not(:last-child) {
  margin-right: 10px;
}
.xc-pagination a:hover, .xc-pagination a.current, .xc-pagination span:hover, .xc-pagination span.current {
  background: var(--xc-theme-primary);
  border-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
}

/*--------------------------------------------------------------
# Offcanvas
------------------- -------------------------------------------*/
.offcanvas__area {
  position: fixed;
  right: 0;
  top: 0;
  width: 360px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  background: var(--xc-common-white) none repeat scroll 0 0;
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -ms-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -o-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}
.offcanvas__area::-webkit-scrollbar {
  display: none; /* for Chrome, Safari, and Opera */
}
.offcanvas__area.offcanvas-opened {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
}
@media (max-width: 575px) {
  .offcanvas__area {
    width: 100%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .offcanvas__top {
    margin-bottom: 30px;
  }
}
.offcanvas__wrapper {
  position: relative;
  padding: 50px 40px 145px;
  z-index: 1;
  min-height: 100%;
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.offcanvas__close {
  position: absolute;
  top: 30px;
  right: 30px;
}
@media (max-width: 575px) {
  .offcanvas__close {
    right: 20px;
    top: 20px;
  }
}
.offcanvas__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 44px;
  width: 44px;
  line-height: 40px;
  border: 2px solid var(--xc-border-primary);
  background-color: transparent;
  color: var(--xc-text-1);
  border-radius: 50%;
}
.offcanvas__close-btn:hover {
  background-color: var(--xc-theme-primary);
  border-color: transparent;
  color: var(--xc-common-white);
}
.offcanvas__close-btn svg {
  -webkit-transform: translateY(-1px);
  -moz-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  -o-transform: translateY(-1px);
  transform: translateY(-1px);
}
.offcanvas__inner h4 {
  font-family: var(--xc-ff-space);
  font-size: 24px;
  color: var(--xc-common-white);
  line-height: 1.3;
  margin-bottom: 15px;
}
.offcanvas__inner p {
  font-family: var(--xc-ff-inter);
  font-size: 16px;
  line-height: 22px;
  color: var(--xc-common-white);
  margin-bottom: 30px;
}
.offcanvas__inner > img {
  margin-bottom: 30px;
}
.offcanvas__menu ul li {
  list-style: none;
  margin-bottom: 10px;
}
.offcanvas__menu ul li:last-child {
  margin-bottom: 0;
}
.offcanvas__menu ul li a {
  font-weight: 700;
  font-size: 20px;
  color: var(--xc-common-black);
}
.offcanvas__menu ul li:hover > a {
  color: var(--xc-theme-primary);
}
.offcanvas__text p {
  font-family: var(--xc-ff-inter);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.01em;
  color: var(--xc-common-black-4);
  margin-bottom: 25px;
}
.offcanvas__contact-call {
  font-family: var(--xc-ff-space);
  font-weight: 700;
  font-size: 20px;
  color: var(--xc-common-black);
  margin-bottom: 5px;
}
.offcanvas__contact-call a:hover {
  color: var(--xc-theme-primary);
}
.offcanvas__contact-mail {
  font-family: var(--xc-ff-space);
  font-weight: 400;
  font-size: 16px;
  color: var(--xc-text-1);
}
.offcanvas__contact-mail a:hover {
  color: var(--xc-theme-primary);
}
.offcanvas__social {
  margin-bottom: 22px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--xc-border-primary);
}
.offcanvas__social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  background: transparent;
  color: var(--xc-common-black);
  margin-right: 5px;
  border: 2px solid var(--xc-border-primary);
}
.offcanvas__social a:hover {
  background: var(--xc-theme-primary);
  color: var(--xc-common-white);
  border-color: var(--xc-theme-primary);
}
.offcanvas__btn {
  margin-bottom: 125px;
}
.offcanvas__btn a {
  margin-bottom: 20px;
}
.offcanvas__info-item {
  margin-bottom: 38px;
}
.offcanvas__info-item-title {
  font-family: var(--xc-ff-space);
  font-weight: 700;
  font-size: 18px;
  color: var(--xc-common-white);
  margin-bottom: 12px;
}
.offcanvas__info-item p {
  font-size: 16px;
  color: var(--xc-text-16);
  margin-bottom: 0;
  line-height: 22px;
}
.offcanvas__info-item p a:hover {
  color: var(--xc-theme-primary);
}

/*--------------------------------------------------------------
# Breadcrumb
------------------- -------------------------------------------*/
.xc-breadcrumb__area {
  padding-top: 200px;
  padding-bottom: 40px;
  position: relative;
}
.xc-breadcrumb__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
}
.xc-breadcrumb__overlay {
  position: relative;
}
.xc-breadcrumb__overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(12, 26, 33, 0.5);
  z-index: 2;
}
.xc-breadcrumb__title {
  color: var(--xc-common-black);
  font-size: 48px;
}
@media (max-width: 767px) {
  .xc-breadcrumb__title {
    font-size: 30px;
  }
}
.xc-breadcrumb__list {
  color: var(--xc-common-black);
}
.xc-breadcrumb__list .dvdr {
  color: var(--xc-common-black);
  padding-left: 5px;
  padding-right: 5px;
}
.xc-breadcrumb__list a {
  color: var(--xc-common-black);
  transition: 0.3s;
}
.xc-breadcrumb__list a:hover {
  color: var(--xc-theme-primary);
}

/*--------------------------------------------------------------
# Accordion
------------------- -------------------------------------------*/
.xc-accordion .accordion-item {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid rgba(var(--xc-common-black), 1);
}
.xc-accordion .accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.xc-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.xc-accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.xc-accordion .accordion-button {
  padding: 30px 0;
  padding-right: 15px;
  font-size: 24px;
  font-weight: 500;
  color: var(--xc-common-black);
  background-color: transparent;
  /* plus icon css */
}
.xc-accordion .accordion-button::after {
  position: absolute;
  content: "\f106";
  font-family: var(--xc-ff-fontawesome);
  background-image: none;
  top: 28%;
  right: 0;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
  color: var(--xc-theme-primary);
  width: auto;
  height: auto;
  font-weight: 500;
  background: none;
}
.xc-accordion .accordion-button.has-plus-icon::after {
  display: none;
}
.xc-accordion .accordion-button .xc-accordion-plus {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  display: inline-block;
  width: 14px;
  height: 14px;
  @extendxc-transition-common;
}
[dir=rtl] .xc-accordion .accordion-button .xc-accordion-plus {
  right: auto;
  left: 0;
}
.xc-accordion .accordion-button .xc-accordion-plus::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  background-color: #525258;
  border-radius: 2px;
  @extendxc-transition-common;
}
[dir=rtl] .xc-accordion .accordion-button .xc-accordion-plus::after {
  right: 0;
  left: auto;
}
.xc-accordion .accordion-button .xc-accordion-plus::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  background-color: #525258;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  border-radius: 2px;
  @extendxc-transition-common;
}
[dir=rtl] .xc-accordion .accordion-button .xc-accordion-plus::before {
  right: 50%;
  left: auto;
  -webkit-transform: translateX(50%);
  -moz-transform: translateX(50%);
  -ms-transform: translateX(50%);
  -o-transform: translateX(50%);
  transform: translateX(50%);
}
.xc-accordion .accordion-button.collapsed::after {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  color: var(--xc-common-black);
}
.xc-accordion .accordion-button:not(.collapsed) {
  color: var(--xc-theme-primary);
  background-color: transparent;
  box-shadow: none;
}
.xc-accordion .accordion-button:not(.collapsed) .xc-accordion-plus::before {
  -webkit-transform: translateX(-50%) rotate(90deg);
  -moz-transform: translateX(-50%) rotate(90deg);
  -ms-transform: translateX(-50%) rotate(90deg);
  -o-transform: translateX(-50%) rotate(90deg);
  transform: translateX(-50%) rotate(90deg);
  background-color: var(--xc-theme-primary);
}
[dir=rtl] .xc-accordion .accordion-button:not(.collapsed) .xc-accordion-plus::before {
  -webkit-transform: translateX(50%) rotate(90deg);
  -moz-transform: translateX(50%) rotate(90deg);
  -ms-transform: translateX(50%) rotate(90deg);
  -o-transform: translateX(50%) rotate(90deg);
  transform: translateX(50%) rotate(90deg);
}
.xc-accordion .accordion-button:not(.collapsed) .xc-accordion-plus::after {
  background-color: var(--xc-theme-primary);
}
.xc-accordion .accordion-button:focus {
  box-shadow: none;
  border: 0;
}
.xc-accordion .accordion-button:hover {
  color: var(--xc-theme-primary);
}
.xc-accordion .accordion-button:hover::after {
  color: var(--xc-theme-primary);
}
.xc-accordion .accordion-body {
  padding: 0 0 25px;
}
.xc-accordion .accordion-body p {
  font-size: 16px;
  color: var(--xc-text-1);
}

/*--------------------------------------------------------------
# Tab
------------------- -------------------------------------------*/
.xc-tab .nav-tabs {
  padding: 0;
  margin: 0;
  border: 0;
}
.xc-tab .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  border: 0;
}

/*--------------------------------------------------------------
# Modal
------------------- -------------------------------------------*/
/*--------------------------------------------------------------
# Section Title
------------------- -------------------------------------------*/
.xc-section__subtitle {
  font-weight: 800;
  font-size: 14px;
  font-family: var(--xc-ff-heading);
  color: var(--xc-theme-primary);
  text-transform: uppercase;
  margin-bottom: 10px;
  display: inline-block;
}
.xc-section__subtitle.style-2 {
  border: 1px solid var(--xc-theme-primary);
  padding-left: 30px;
  padding-right: 30px;
  display: inline-block;
  padding-top: 3px;
  padding-bottom: 3px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.xc-section__title {
  font-weight: 700;
  font-size: 54px;
  line-height: 1.2;
  margin-bottom: 20px;
}
.xc-section__title.animated span::before {
  animation: xc-title 2s ease-in;
}
.xc-section__title.sm-title {
  font-size: 44px;
}
.xc-section__title span {
  position: relative;
  z-index: 1;
}
.xc-section__title span::before {
  content: "";
  background: linear-gradient(270.27deg, #7AD0BD 25.57%, #407CB5 45.03%, #EF5277 57.97%, #F58244 70.65%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 19px;
  z-index: -1;
  border-radius: 5px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .xc-section__title br {
    display: none;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-section__title {
    font-size: 30px;
  }
}

.xc-section__title-wrapper p {
  font-size: 16px;
}
.xc-section__title-wrapper h4{
  font-size: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-section__title-wrapper p br {
    display: none;
  }
}

/*--------------------------------------------------------------
# Error 404 Page
------------------- -------------------------------------------*/
.xc-error__title {
  font-size: 50px;
  letter-spacing: -0.04em;
}
@media (max-width: 575px) {
  .xc-error__title {
    font-size: 30px;
  }
}
.xc-error__content p {
  font-size: 16px;
  line-height: 1.6;
  padding: 0 70px;
  margin-bottom: 27px;
}
@media (max-width: 575px) {
  .xc-error__content p {
    padding: 0;
  }
}
.xc-error__content .tp-btn {
  padding: 12px 26px;
}
.xc-error__content .tp-btn:hover {
  background-color: var(--xc-common-black);
}

/*----------------------------------------*/
/*  earch and nab taggle menu  css
/*----------------------------------------*/
.xc-search-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translateY(-110%);
  transform: translateY(-110%);
  -webkit-transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: opacity 500ms ease, -webkit-transform 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease;
  transition: transform 500ms ease, opacity 500ms ease, -webkit-transform 500ms ease;
}
.xc-search-popup.opened {
  -webkit-transform: translateY(0%);
  transform: translateY(0%);
}

.xc-search-popup__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--xc-common-black);
  opacity: 0.5;
  z-index: -1;
  cursor: url(../img/icons/cross-out.png), pointer;
}

.xc-search-popup__content {
  width: 560px;
  position: relative;
}
.xc-search-popup__content input {
  padding-right: 100px;
}
.xc-search-popup__content button {
  position: absolute;
  top: 2px;
  bottom: 2px;
  right: 2px;
  padding-left: 20px;
  padding-right: 20px;
  background-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
  transition: 0.5s;
}
.xc-search-popup__content button:hover {
  background-color: var(--xc-theme-secondary);
}

/*----------------------------------------*/
/*  DRAWER CSS START
/*----------------------------------------*/
/*--------------------------------------------------------------
# xc-mobile Nav
--------------------------------------------------------------*/
.xc-mobile-nav__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms;
  transition: transform 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  visibility: visible;
}

.xc-mobile-nav__content {
  width: 300px;
  background-color: var(--xc-common-black);
  z-index: 10;
  position: absolute;
  right: 0;
  height: 100%;
  overflow-y: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 15px;
  padding-right: 15px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms;
  transition: opacity 500ms ease 0ms, visibility 500ms ease 0ms, transform 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.xc-mobile-nav__wrapper .container {
  padding-left: 0;
  padding-right: 0;
}

.xc-mobile-nav__wrapper.expanded {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}

.xc-mobile-nav__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #000000;
  opacity: 0.5;
  cursor: url(../img/icons/cross-out.png), pointer;
}

.xc-mobile-nav__wrapper.opened {
  opacity: 1;
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  visibility: visible;
  -webkit-transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms;
  transition: transform 500ms ease 0ms, visibility 500ms ease 0ms, -webkit-transform 500ms ease 0ms;
}
.xc-mobile-nav__wrapper.opened .xc-mobile-nav__content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  -webkit-transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms;
  transition: opacity 500ms ease 500ms, visibility 500ms ease 500ms, transform 500ms ease 500ms, -webkit-transform 500ms ease 500ms;
}

/*--------------------------------------------------------------
# Header Css Start
------------------- -------------------------------------------*/
.xc-header-transparen {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 98;
  background-color: transparent;
}
.xc-header-transparen.xc-white {
  top: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-header-transparen.xc-white {
    top: 5px;
  }
}
.xc-header-transparen.xc-white .xc-header-one__main-wrapper {
  background-color: var(--xc-common-white);
  padding-left: 30px;
  padding-right: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-header-transparen.xc-white .xc-header-one__main-wrapper {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.xc-header-transparen.xc-white .xc-header-sticky .xc-header-one__main-wrapper {
  padding-top: 0;
  padding-bottom: 0;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .xc-header-one__main {
    /* padding-top: 30px;
    padding-bottom: 30px; */
  }
}

.xc-header-one__header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 88;
  background-color: var(--xc-common-white);
}
.xc-header-one__header.xc-header-transparen {
  background-color: transparent;
}
.xc-header-one__header.theme-bg-3 {
  background-color: rgb(242, 243, 243);
}

.xc-header-one__top {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
  padding-bottom: 10px;
}
.xc-header-one__top p {
  color: var(--xc-common-white);
  margin-bottom: 0;
  margin-right: 30px;
}

.xc-header-one__main-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.xc-header-one__right-btn .xc-border-btn {
  margin-right: 10px;
}

.xc-header-one__right-menu .main-menu {
  margin-right: 87px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .xc-header-one__right-menu .main-menu {
    margin-right: 60px;
  }
}

.xc-header-one__right-cta-icons span {
  width: 40px;
  height: 40px;
  font-size: 18px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  display: inline-block;
  border: 2px solid var(--xc-border-1);
  transition: 0.3s;
}
.xc-header-one__right-cta-icons span + span {
  margin-left: 10px;
}
.xc-header-one__right-cta-icons span:hover {
  border-color: var(--xc-theme-primary);
  color: var(--xc-theme-primary);
}
.xc-header-one__right-cta-icons span i {
  font-weight: 500;
}

/* logo */
.xc-header-one__logo {
  position: relative;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  /* .xc-header-one__logo img {
    width: 150px;
  } */
}

.xc-header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--xc-common-white);
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.09);
  z-index: 91;
}

.xc-header-one__main.xc-header-sticky .xc-header-one__right-cta {
  display: none !important;
}
.xc-header-one__main.xc-header-sticky .xc-header-one__logo::after {
  top: 0;
  bottom: 0;
}

.xc-header-two__main.xc-header-sticky {
  background-color: var(--xc-common-black);
}

/* HEADER CSS */
/*----------------------------------------*/
/*  Main menu css
/*----------------------------------------*/
.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  transition: 0.3s;
}
.main-menu ul li + li {
  margin-left: 50px;
}
.main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  color: var(--xc-common-black);
  padding: 33px 0;
  font-weight: 700;
  text-transform: capitalize;
  font-family: var(--xc-ff-heading);
  transition: 0.3s;
}
.main-menu ul li.menu-item-has-children > a, .main-menu ul li.has-dropdown > a {
  position: relative;
}
.main-menu ul li.menu-item-has-children > a::after, .main-menu ul li.has-dropdown > a::after {
  content: "\f107";
  transform: translateY(1px);
  font-size: 14px;
  color: var(--xc-common-black);
  font-family: var(--xc-ff-fontawesome);
  font-weight: 400;
  margin-left: 5px;
  display: inline-block;
  transition: 0.3s;
}
.main-menu ul li .submenu {
  padding: 20px 0;
  display: inline-block;
  margin: 0;
  position: absolute;
  top: 120%;
  left: 0;
  width: 230px;
  background: var(--xc-common-white);
  z-index: 99;
  transition: 0.3s;
  visibility: hidden;
  opacity: 0;
  box-shadow: 0px 4px 60px rgba(69, 105, 231, 0.15);
  border-radius: 0px 0px 10px 10px;
  border: 0px solid transparent;
  transition: 0.4s;
  border-top: 2px solid var(--xc-theme-primary);
  pointer-events: none;
}
.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  transition: 0.3s;
}
.main-menu ul li .submenu li.menu-item-has-children > a::after, .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(-90deg);
  transition: 0.3s;
}
.main-menu ul li .submenu li a {
  padding: 10px 50px;
  font-size: 13px;
  position: relative;
  z-index: 1;
  color: var(--xc-common-black);
  width: 100%;
  transition: 0.3s;
}
.main-menu ul li .submenu li a::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 30px;
  width: 5px;
  height: 2px;
  background-color: var(--xc-theme-primary);
  z-index: -1;
  transition: 0.3s;
}
.main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .submenu li:hover > a {
  color: var(--xc-theme-primary);
}
.main-menu ul li .submenu li:hover > a::after {
  color: var(--xc-theme-primary);
}
.main-menu ul li .submenu li:hover > a::before {
  width: 15px;
}
.main-menu ul li .submenu li:hover > .submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu ul li:hover > a {
  color: var(--xc-theme-primary);
}
.main-menu ul li:hover > a::after {
  color: var(--xc-theme-primary);
  transform: rotate(-179deg);
}
.main-menu ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/*----------------------------------------*/
/* Meanmenu css
/*----------------------------------------*/
.mean-remove {
  display: none !important;
}

.mean-container {
  margin-bottom: 40px;
}
.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px 13px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: var(--xc-common-white);
  text-decoration: none;
  font-size: 16px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  font-weight: 700;
  display: none !important;
}
.mean-container a.meanmenu-reveal span {
  display: block;
  background: var(--xc-common-white);
  height: 3px;
  margin-top: 3px;
}
.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}
.mean-container .mean-nav {
  background: none;
  margin-top: 0;
  float: left;
  width: 100%;
  margin-top: 44px;
}
.mean-container .mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}
.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}
.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}
.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
}
.mean-container .mean-nav ul li.dropdown-opened > a, .mean-container .mean-nav ul li.dropdown-opened > span {
  color: var(--xc-theme-primary);
}
.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked {
  background: var(--xc-theme-primary);
  color: var(--xc-common-white);
  border-color: var(--xc-theme-primary);
}
.mean-container .mean-nav ul li.dropdown-opened > a.mean-expand.mean-clicked i, .mean-container .mean-nav ul li.dropdown-opened > span.mean-expand.mean-clicked i {
  color: var(--xc-common-white);
}
.mean-container .mean-nav ul li.mean-last {
  border-bottom: none;
  margin-bottom: 0;
}
.mean-container .mean-nav ul li > a.mean-expand i {
  display: inline-block;
}
.mean-container .mean-nav ul li > a > i {
  display: none;
}
.mean-container .mean-nav ul li a, .mean-container .mean-nav ul li span {
  display: block;
  float: left;
  width: 90%;
  padding: 10px 5%;
  margin: 0;
  text-align: left;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  padding: 10px 0;
  color: var(--xc-common-white);
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 700;
  border-color: grey;
  transition: 0.3s;
}
[dir=rtl] .mean-container .mean-nav ul li a, [dir=rtl] .mean-container .mean-nav ul li span {
  float: right;
  text-align: right;
}
.mean-container .mean-nav ul li a:hover, .mean-container .mean-nav ul li span:hover {
  color: var(--xc-theme-primary);
}
.mean-container .mean-nav ul li a:hover i, .mean-container .mean-nav ul li span:hover i {
  color: var(--xc-common-white);
}
.mean-container .mean-nav ul li a.mean-expand, .mean-container .mean-nav ul li span.mean-expand {
  margin-top: 1px;
  width: 26px;
  height: 32px;
  text-align: center;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 2;
  font-weight: 700;
  background: transparent;
  font-size: 14px;
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--xc-common-white);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}
[dir=rtl] .mean-container .mean-nav ul li a.mean-expand, [dir=rtl] .mean-container .mean-nav ul li span.mean-expand {
  right: auto;
  left: 0;
  text-align: center;
}
.mean-container .mean-nav ul li a.mean-expand:hover, .mean-container .mean-nav ul li span.mean-expand:hover {
  background: var(--xc-theme-primary);
  color: var(--xc-common-black);
  border-color: var(--xc-theme-primary);
}
.mean-container .mean-nav ul li a.mean-expand:hover i, .mean-container .mean-nav ul li span.mean-expand:hover i {
  color: var(--xc-common-white);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked, .mean-container .mean-nav ul li span.mean-expand.mean-clicked {
  color: var(--xc-common-white);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover, .mean-container .mean-nav ul li span.mean-expand.mean-clicked:hover {
  background: var(--xc-theme-primary);
  color: var(--xc-common-white);
  border-color: var(--xc-theme-primary);
}
.mean-container .mean-nav ul li a.mean-expand.mean-clicked:hover i, .mean-container .mean-nav ul li span.mean-expand.mean-clicked:hover i {
  color: var(--xc-common-white);
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--xc-common-white);
}
.mean-container .mean-nav ul li li a {
  width: 80%;
  padding: 10px 10%;
  text-shadow: none !important;
  visibility: visible;
}
.mean-container .mean-nav ul li li li a {
  width: 70%;
  padding: 10px 15%;
}
.mean-container .mean-nav ul li li li li a {
  width: 60%;
  padding: 10px 20%;
}
.mean-container .mean-nav ul li li li li li a {
  width: 50%;
  padding: 10px 25%;
}
.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  float: left;
  width: 100%;
  position: relative;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
  margin-bottom: 60px;
}
.mean-container .mean-bar, .mean-container .mean-bar * {
  /* Fix for box sizing on Foundation Framework etc. */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.xc-mobile-nav__close {
  font-size: 25px;
  position: absolute;
  top: 30px;
  right: 10px;
  background-color: var(--xc-common-white);
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}
.xc-mobile-nav__close:hover {
  color: var(--xc-theme-primary);
}
.xc-mobile-nav__contact {
  margin-bottom: 60px;
}
.xc-mobile-nav__contact li + li {
  margin-top: 20px;
}
.xc-mobile-nav__contact i {
  margin-right: 10px;
  color: var(--xc-theme-primary);
}
.xc-mobile-nav__contact a {
  color: var(--xc-common-white);
  transition: 0.3s;
  font-size: 18px;
  opacity: 0.8;
}
.xc-mobile-nav__contact a:hover {
  color: var(--xc-theme-primary);
}
.xc-mobile-nav__social a {
  width: 45px;
  height: 45px;
  border-radius: 5px;
  background-color: var(--xc-common-white);
  line-height: 45px;
  text-align: center;
  color: var(--xc-theme-primary);
  transition: 0.3s;
}
.xc-mobile-nav__social a:hover {
  background-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
}
.xc-mobile-nav__social a + a {
  margin-left: 15px;
}

/*----------------------------------------*/
/* Recent Post css
/*----------------------------------------*/
.xc-postbox__wrapper {
  margin-right: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-postbox__wrapper {
    margin-right: 0px;
  }
}
.xc-postbox__thumb img {
  border-radius: 10px;
}
.xc-postbox__thumb:before {
  position: absolute;
  top: 0;
  left: -80%;
  z-index: 2;
  display: block;
  content: "";
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
  z-index: 1;
}
.xc-postbox__thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
}
.xc-postbox__audio {
  height: 455px;
  width: 100%;
}
.xc-postbox__audio iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.xc-postbox__item {
  overflow: hidden;
}
.xc-postbox__item:hover .xc-postbox__thumb:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}
.xc-postbox__item.xc-grid {
  padding: 30px 30px;
  background: var(--xc-common-white);
  border: 1px solid #ededed;
  border-radius: 10px;
  box-shadow: 0px 0px 150px 0px rgba(78, 67, 250, 0.06);
}
@media (max-width: 575px) {
  .xc-postbox__item.xc-grid {
    padding: 20px;
  }
}
.xc-postbox__item.xc-grid .xc-postbox__title {
  font-size: 22px;
}
.xc-postbox__item.xc-grid .xc-postbox__cat {
  top: 10px;
  left: 10px;
  transform: scale(0.8);
}
.xc-postbox__single h2,
.xc-postbox__single h3,
.xc-postbox__single h4,
.xc-postbox__single h5,
.xc-postbox__single h6 {
  margin-bottom: 15px;
}
.xc-postbox__single .xc-postbox__thumb::before {
  display: none;
}
.xc-postbox__title {
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.3;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .xc-postbox__title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-postbox__title {
    font-size: 33px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-postbox__title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .xc-postbox__title {
    font-size: 25px;
  }
}
.xc-postbox__title a {
  transition: 0.3s;
}
.xc-postbox__title a:hover {
  color: var(--xc-theme-primary);
}
.xc-postbox__cat {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 1;
}
.xc-postbox__cat a {
  background-color: var(--xc-common-white);
  color: var(--xc-theme-primary);
  padding: 5px 20px;
  display: inline-block;
  transition: 0.3s;
  border-radius: 30px;
  border: 1px solid var(--xc-theme-primary);
}
.xc-postbox__cat a:hover {
  background-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
}
.xc-postbox__meta {
  margin-bottom: 10px;
}
.xc-postbox__meta span {
  font-size: 14px;
  font-weight: 500;
  color: #757575;
  text-transform: capitalize;
  display: inline-block;
  margin-right: 30px;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .xc-postbox__meta span {
    margin-right: 20px;
  }
}
.xc-postbox__meta span:last-child {
  margin-right: 0;
}
.xc-postbox__meta span i {
  color: var(--xc-theme-primary);
  margin-right: 5px;
}
.xc-postbox__meta span:hover {
  color: var(--xc-theme-primary);
}
.xc-postbox__meta span:hover i {
  color: var(--xc-theme-primary);
}
.xc-postbox__text img {
  max-width: 100%;
}
.xc-postbox__text p {
  margin-bottom: 20px;
}
.xc-postbox__text-single p {
  margin-bottom: 15px;
}
.xc-postbox__comment ul li {
  margin-bottom: 10px;
  list-style: none;
}
.xc-postbox__comment ul li.children {
  margin-left: 100px;
}
@media (max-width: 575px) {
  .xc-postbox__comment ul li.children {
    margin-left: 15px;
  }
}
.xc-postbox__comment-form {
  margin-bottom: 20px;
}
.xc-postbox__comment-form-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 40px;
}
.xc-postbox__comment-input {
  position: relative;
  margin-bottom: 20px;
}
.xc-postbox__comment-input span {
  font-weight: 600;
  color: var(--xc-common-black);
  margin-bottom: 12px;
  display: block;
}
.xc-postbox__comment-input input, .xc-postbox__comment-input textarea {
  height: 55px;
  padding: 0 20px;
  width: 100%;
  font-size: 14px;
  color: var(--xc-common-black);
  outline: none;
  border: 1px solid transparent;
  border-radius: 7px;
  background: #f7f7f7;
}
.xc-postbox__comment-input textarea {
  height: 175px;
  resize: none;
  padding-top: 20px;
  padding-bottom: 20px;
}
.xc-postbox__comment-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 35px;
}
.xc-postbox__comment-box {
  margin-bottom: 50px;
  padding: 50px 30px;
  background: var(--xc-common-white);
  border: 1px solid #ededed;
  border-radius: 10px;
  box-shadow: 0px 0px 150px 0px rgba(78, 67, 250, 0.06);
}
.xc-postbox__comment-avater img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.xc-postbox__comment-name {
  margin-bottom: 15px;
}
.xc-postbox__comment-name h5 {
  font-size: 18px;
  line-height: 1;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.xc-postbox__comment-name span {
  color: var(--xc-common-white);
  font-size: 16px;
}
@media (max-width: 575px) {
  .xc-postbox__comment-text {
    margin-left: 0;
    margin-top: 15px;
  }
}
.xc-postbox__comment-text p {
  font-size: 16px;
  color: var(--xc-text-11);
  margin-bottom: 15px;
}
.xc-postbox__comment-reply {
  margin-top: 10px;
}
.xc-postbox__comment-reply a {
  display: inline-block;
  color: var(--xc-theme-primary);
  background: rgba(61, 108, 231, 0.1);
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  font-weight: 500;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s;
}
.xc-postbox__comment-reply a:hover {
  color: var(--xc-common-white);
  background: var(--xc-theme-primary);
}
.xc-postbox__comment-agree {
  padding-left: 5px;
}
.xc-postbox__comment-agree input {
  margin: 0;
  appearance: none;
  -moz-appearance: none;
  display: block;
  width: 14px;
  height: 14px;
  background: var(--xc-common-white);
  border: 1px solid #b9bac1;
  outline: none;
  border-radius: 4px;
  flex: 0 0 auto;
  -webkit-transform: translateY(5px);
  -moz-transform: translateY(5px);
  -ms-transform: translateY(5px);
  -o-transform: translateY(5px);
  transform: translateY(5px);
}
.xc-postbox__comment-agree input:checked {
  position: relative;
  background-color: var(--xc-theme-primary);
  border-color: transparent;
}
.xc-postbox__comment-agree input:checked::after {
  box-sizing: border-box;
  content: "\f00c";
  position: absolute;
  font-family: var(--xc-ff-fontawesome);
  font-size: 10px;
  color: var(--xc-common-white);
  top: 46%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.xc-postbox__comment-agree input:hover {
  cursor: pointer;
}
.xc-postbox__comment-agree label {
  padding-left: 8px;
  color: var(--xc-text-1);
}
.xc-postbox__comment-agree label a {
  color: var(--xc-common-black);
  font-weight: 600;
  padding-left: 4px;
}
.xc-postbox__comment-agree label a:hover {
  color: var(--xc-theme-primary);
}
.xc-postbox__comment-agree label:hover {
  cursor: pointer;
}
.xc-postbox__tags span {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 17px;
  color: var(--xc-common-black);
  margin-right: 10px;
}
.xc-postbox__cats span {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 17px;
  color: var(--xc-common-black);
  margin-right: 10px;
}

.xc-postbox-tag__wrapper {
  padding-top: 50px;
  margin-top: 50px;
  border-top: 1px solid var(--xc-border-1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.xc-postbox-tag__wrapper .tagcloud a {
  background-color: transparent;
  padding: 0;
  border: 0;
}
.xc-postbox-tag__wrapper .tagcloud a:not(:last-child):after {
  content: ",";
}
.xc-postbox-tag__wrapper .tagcloud a:hover {
  background-color: transparent;
  color: var(--xc-theme-primary);
}

.tagcloud a,
.catscloud a {
  color: var(--xc-common-black);
  display: inline-block;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 8px 21px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  margin-right: 5px;
  border-radius: 7px;
  border-radius: 50px;
  border: 1px solid #CFCFCF;
  transition: 0.3s;
}
.tagcloud a:hover,
.catscloud a:hover {
  background: var(--xc-theme-primary);
  color: var(--xc-common-white);
  border-color: transparent;
}

blockquote {
  background: #effbf2;
  padding: 35px 50px;
  margin-bottom: 35px;
  position: relative;
}
blockquote:after {
  position: absolute;
  right: 30px;
  bottom: 30px;
  font-weight: 200;
  font-size: 100px;
  content: "\f10e";
  font-family: var(--xc-ff-fontawesome);
  color: var(--xc-theme-primary);
  opacity: 0.7;
}
@media (max-width: 575px) {
  blockquote {
    padding-left: 15px;
    padding-right: 15px;
  }
}
blockquote p {
  line-height: 1.5;
  font-size: 20px;
  color: #57565e;
  font-weight: 400;
}
blockquote cite {
  font-size: 18px;
  display: block;
  margin-top: 10px;
  color: #070337;
  font-style: inherit;
  font-weight: 600;
  position: relative;
}
blockquote cite::before {
  content: "";
  font-size: 28px;
  color: var(--xc-theme-primary);
  padding-bottom: 0px;
  display: inline-block;
  background: var(--xc-theme-primary);
  height: 2px;
  width: 40px;
  font-weight: 400;
  text-align: center;
  top: -4px;
  margin-right: 10px;
  position: relative;
}

.xc-blog-one__thumb {
  position: relative;
}
.xc-blog-one__thumb img {
  border-radius: 10px;
}
.xc-blog-one__date {
  background-color: var(--xc-theme-primary);
  display: inline-block;
  text-align: center;
  padding: 10px 20px;
  position: absolute;
  top: 30px;
  left: 30px;
  color: var(--xc-common-white);
}
.xc-blog-one__date span {
  font-size: 24px;
  font-weight: 700;
  display: block;
}
.xc-blog-one__date p {
  margin-bottom: 0;
  color: var(--xc-common-white);
}
.xc-blog-one__meta {
  padding-top: 20px;
  padding-bottom: 20px;
}
.xc-blog-one__meta ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 0;
}
.xc-blog-one__meta ul li {
  display: inline-block;
  list-style: none;
  font-size: 14px;
}
.xc-blog-one__meta ul li a {
  transition: 0.3s;
  font-weight: 600;
}
.xc-blog-one__meta ul li a:hover {
  color: var(--xc-theme-primary);
}
.xc-blog-one__meta ul li span {
  margin-right: 8px;
  color: var(--xc-theme-primary);
}
.xc-blog-one__meta ul li span i {
  font-weight: 400;
}
.xc-blog-one__meta ul li + li {
  margin-left: 15px;
}
.xc-blog-one__title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-blog-one__title br {
    display: none;
  }
}
.xc-blog-one__title a {
  transition: 0.3s;
}
.xc-blog-one__title a:hover {
  color: var(--xc-theme-primary);
}

.xc-offer-page__content .xc-img img {
  margin-bottom: 50px;
  border-radius: 7px;
}
.xc-offer-page__content h1 {
  font-size: 40px;
  margin-bottom: 15px;
}
.xc-offer-page__content h3 {
  margin-bottom: 15px;
}
.xc-offer-page__content p {
  margin-bottom: 20px;
}
.xc-offer-page__content .xc-checklist {
  position: relative;
  margin-bottom: 20px;
}
.xc-offer-page__content .xc-checklist ul {
  padding-left: 0;
}
.xc-offer-page__content .xc-checklist ul li {
  padding-left: 30px;
  list-style: none;
  font-weight: 700;
}
.xc-offer-page__content .xc-checklist ul li + li {
  margin-top: 10px;
}
.xc-offer-page__content .xc-checklist span {
  position: absolute;
  left: 0;
  flex: 700;
  color: var(--xc-theme-primary);
}

/*----------------------------------------*/
/* Recent Post css
/*----------------------------------------*/
.rc__post + .rc__post {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--xc-border-1);
}
.rc__post-thumb img {
  width: 80px;
  height: 80px;
  border-radius: 5px;
  object-fit: cover;
  margin-right: 15px;
}
.rc__post-title {
  margin-bottom: 6px;
  font-size: 17px;
}
.rc__post-title a {
  transition: 0.3s;
}
.rc__post-title a:hover {
  color: var(--xc-theme-primary);
}
.rc__meta span {
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 600;
}
.rc__meta span i {
  font-weight: 500;
  color: var(--xc-theme-primary);
  margin-right: 5px;
}

/*----------------------------------------*/
/* Sidebar css
/*----------------------------------------*/
.xc-sidebar__wrapper {
  padding: 50px 30px;
  background: var(--xc-common-white);
  border: 1px solid #ededed;
  border-radius: 10px;
  box-shadow: 0px 0px 150px 0px rgba(78, 67, 250, 0.06);
}
@media (max-width: 575px) {
  .xc-sidebar__wrapper {
    padding: 50px 20px;
  }
}
.xc-sidebar__widget + .xc-sidebar__widget {
  margin-top: 50px;
}
.xc-sidebar__widget-title {
  position: relative;
  display: inline-block;
  font-size: 20px;
  padding-left: 35px;
  margin-bottom: 30px !important;
}
.xc-sidebar__widget-title::after {
  font-size: 20px;
  left: -20px;
  position: absolute;
  top: 9px;
  font-weight: 300;
  font-family: var(--xc-ff-fontawesome);
  color: var(--xc-theme-primary);
  content: url("../img/shapes/sidebar-title.gif");
  transform: translateY(-50%) scale(-0.5);
}
.xc-sidebar__widget ul li {
  list-style: none;
  padding-left: 19px;
  margin-bottom: 25px;
  line-height: 1;
}
.xc-sidebar__widget ul li:last-child {
  margin-bottom: 0;
}
.xc-sidebar__widget ul li a {
  font-size: 16px;
  color: var(--xc-text-1);
  position: relative;
  padding-left: 5px;
  transition: 0.3s;
}
.xc-sidebar__widget ul li a::after {
  position: absolute;
  content: "\f101";
  left: -19px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--xc-theme-primary);
  font-family: var(--xc-ff-fontawesome);
  font-size: 16px;
  transition: 0.3s;
}
.xc-sidebar__widget ul li a:hover {
  color: var(--xc-theme-primary);
}
.xc-sidebar__widget ul li a:hover::after {
  color: var(--xc-theme-primary);
  left: -14px;
}
.xc-sidebar__widget ul li ul {
  padding-left: 25px;
  padding-top: 20px;
}
.xc-sidebar__search {
  position: relative;
}
.xc-sidebar__search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background: #F2F4F8;
  border: 0;
  color: #111111;
  padding: 0 25px;
  text-transform: capitalize;
  outline: none;
  padding-top: 3px;
  padding-right: 70px;
}
.xc-sidebar__search button {
  position: absolute;
  top: 0;
  right: 20px;
  height: 100%;
  color: #111;
  line-height: 60px;
  border-radius: 0 7px 7px 0;
  transition: 0.3s;
}
.xc-sidebar__search button:hover {
  color: var(--xc-theme-primary);
}

/*----------------------------------------*/
/*  Postbox css
/*----------------------------------------*/
/*----------------------------------------*/
/* Footer Style 1
/*----------------------------------------*/
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-footer__widget {
    margin-bottom: 50px;
  }
}
.xc-footer__widget-logo {
  width: 154px;
}
.xc-footer__widget-logo img {
  width: 100%;
}
.xc-footer__widget-title {
  font-weight: 700;
  font-size: 18px;
  color: var(--xc-common-black);
  margin-bottom: 30px;
}
.xc-footer__widget a {
  transition: 0.3s;
}
.xc-footer__widget a:hover {
  color: var(--xc-theme-primary);
}
.xc-footer__widget ul {
  padding: 0;
  margin: 0;
}
.xc-footer__widget ul li {
  list-style: none;
  position: relative;
}
.xc-footer__widget ul li + li {
  margin-top: 15px;
}

.xc-footer__widget-nav ul li a {
  position: relative;
  background-image: linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary)), linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary));
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  font-size: 15px;
}
.xc-footer__widget-nav ul li a:hover {
  background-size: 0% 1px, 100% 1px;
}

.xc-footer__widget-about p {
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .xc-footer__widget-about p br {
    display: none;
  }
}
/* .xc-footer__widget-logo {
  margin-bottom: 15px;
} */

.xc-footer__widget-social {
  margin-bottom: 25px;
}
.xc-footer__widget-social a {
  margin-bottom: 10px;
  color: var(--xc-theme-primary);
}
.xc-footer__widget-social a:hover {
  color: var(--xc-theme-black);
}
.xc-footer__widget-social a + a {
  margin-left: 8px;
}

.xc-footer-one__copyright {
  padding-top: 15px;
}
.xc-footer-one__copyright-text {
  color: var(--xc-common-black);
}
.xc-footer-one__copyright.has-border {
  border: 1px solid rgba(var(--xc-common-white), 0.1);
}

.xc-footer-one__section.black-footer {
  padding-top: 220px;
  margin-top: -110px;
}
.xc-footer-one__section.black-footer .xc-footer__widget-info {
  color: #9C9EAB;
}
.xc-footer-one__section.black-footer .xc-footer__widget-title {
  color: var(--xc-common-white);
}
.xc-footer-one__section.black-footer .xc-footer__widget-nav ul li a {
  color: #9C9EAB;
}

.xc-footer-one__section.style-4 {
  padding-top: 250px;
  margin-top: -150px;
}
.xc-footer-one__section.style-4 .xc-footer__widget-info {
  color: var(--xc-common-white);
}
.xc-footer-one__section.style-4 .xc-footer__widget-title {
  color: var(--xc-common-white);
}
.xc-footer-one__section.style-4 .xc-footer__widget-nav ul li a {
  color: var(--xc-common-white);
  background-image: linear-gradient(var(--xc-common-white), var(--xc-common-white)), linear-gradient(var(--xc-common-white), var(--xc-common-white));
}

.style-4 .xc-footer__widget-social a {
  color: var(--xc-common-white);
}

/*----------------------------------------*/
/* Slider css
/*----------------------------------------*/
.xc-slider-one__margin {
  margin-bottom: -130px;
  position: relative;
  z-index: 1;
}

.xc-slider-one__height {
  height: 850px;
  overflow: hidden;
}

.xc-slider-one__content {
  padding-top: 180px;
  word-spacing: 2px;
}

.xc-slider-subtitle {
  font-size: 14px;
  font-weight: 700;
  color: var(--xc-common-white);
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.xc-slider-title {
  font-size: 60px;
  color: var(--xc-common-white);
  text-transform: uppercase;
  margin-bottom: 45px;
  font-weight: 600;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-slider-title br {
    display: none;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-slider-title {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .xc-slider-title {
    font-size: 38px;
  }
}

.xc-slider-one__shape-1 {
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  mix-blend-mode: multiply;
}

.xc-slider-two__margin {
  margin-bottom: -130px;
  position: relative;
  z-index: 1;
}

.xc-slider-two__height {
  height: 1040px;
  overflow: hidden;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-slider-two__height {
    height: 800px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-slider-two__height {
    height: 1000px;
  }
}

.xc-slider-two__content {
  padding-top: 350px;
  word-spacing: 2px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-slider-two__content {
    padding-top: 250px;
  }
}
@media (max-width: 575px) {
  .xc-slider-two__content {
    padding-top: 150px;
  }
}

.xc-slider-title.xc-slider-two-title {
  text-transform: capitalize;
  margin-bottom: 35px;
}

.xc-slider-two__info {
  font-size: 24px;
  font-weight: 600;
  color: var(--xc-common-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-slider-two__info {
    font-size: 20px;
  }
}

.xc-slider-two__shape-1 {
  opacity: 0.5;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: -1;
  mix-blend-mode: multiply;
}

.xc-slider-two__menu-list {
  background-color: rgba(0, 0, 0, 0.6);
  display: inline-block;
}
.xc-slider-two__menu-list h3 {
  color: var(--xc-common-white);
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.xc-slider-two__menu-list .xc-icon {
  color: var(--xc-theme-primary);
  font-size: 45px;
  margin-right: 15px;
  line-height: 1;
}
.xc-slider-two__menu-list ul {
  margin: 0;
  padding: 0;
}
.xc-slider-two__menu-list ul li {
  display: inline-flex;
  align-items: center;
  padding: 40px 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-slider-two__menu-list ul li {
    padding: 20px 10px;
  }
}
.xc-slider-two__menu-list ul li + li {
  border-left: 1px solid rgba(var(--xc-common-white), 0.2);
}

/*----------------------------------------*/
/* About css
/*----------------------------------------*/
.xc-about-one__img {
  background: linear-gradient(135.24deg, #FBB6B4 1.75%, #9894DC 90.31%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  display: inline-block;
  padding: 64px 60px;
  padding-left: 0px;
  padding-bottom: 50px;
}
.xc-about-one__img img {
  border-radius: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .xc-about-one__img img {
    width: 100%;
  }
}
.xc-about-one__feature-list .xc-icon {
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 11px;
  margin-right: 10px;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  background-color: rgba(var(--xc-theme-primary-rgb), 0.3);
  color: var(--xc-theme-primary);
  position: absolute;
  left: 0;
  top: 3px;
}
.xc-about-one__feature-list p {
  font-size: 18px;
  padding-left: 35px;
  position: relative;
}
.xc-about-one__feature-list p a {
  color: var(--xc-common-black);
  text-decoration: underline;
  transition: 0.3s;
}
.xc-about-one__feature-list p a:hover {
  color: var(--xc-theme-primary);
}

.xc-about-two__feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}
.xc-about-two__title {
  font-size: 34px;
  line-height: 1.3;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .xc-about-two__title {
    font-size: 25px;
  }
  .xc-about-two__title br {
    display: none;
  }
}
.xc-about-two__name {
  font-size: 16px;
  color: #000;
}
.xc-about-two__bio {
  font-size: 16px;
}
.xc-about-two__img {
  position: relative;
  padding-left: 40px;
  padding-right: 75px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-about-two__img {
    padding-left: 0;
  }
}
.xc-about-two__img .w-img img {
  border-radius: 10px;
}
.xc-about-two__img .shape-1 {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  animation: xc-moveY 4s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-about-two__img .shape-1 {
    top: -20px;
    left: 50px;
  }
}
.xc-about-two__img .shape-2 {
  position: absolute;
  right: 35px;
  top: 50px;
  box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.25);
  border-radius: 50%;
  animation: xc-moveY 5s infinite;
}
.xc-about-two__feature {
  margin-top: 40px;
  padding-top: 40px;
  margin-right: 100px;
  border-top: 1px solid #CAC6FD;
}
.xc-about-two__count {
  font-size: 30px;
  font-weight: 700;
  color: var(--xc-theme-primary);
}
.xc-about-two__count p {
  margin-top: 15px;
  font-size: 16px;
  color: var(--xc-common-black);
}

.xc-about-three__img {
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-about-three__img img {
    width: 100%;
  }
}
.xc-about-three__img-shape {
  position: absolute;
  left: 30px;
  top: 60px;
  animation: xc-moveX 4s infinite linear;
}
.xc-about-three__feature-list {
  counter-reset: section;
  position: relative;
  padding-top: 30px;
}
.xc-about-three__feature-list::before {
  content: "";
  position: absolute;
  top: 0px;
  left: 28px;
  bottom: 0px;
  border: 1px dotted rgba(var(--xc-theme-primary-rgb), 0.5);
}
.xc-about-three__feature-item {
  display: flex;
  margin-bottom: 50px;
}
.xc-about-three__feature-item.item-3 .xc-about-three__feature-count {
  background-color: var(--xc-theme-primary);
}
.xc-about-three__feature-item.item-3 .xc-about-three__feature-count::before {
  color: var(--xc-common-white);
}
.xc-about-three__feature-title {
  font-size: 18px;
  margin-bottom: 15px;
}
.xc-about-three__feature-count {
  position: relative;
  width: 56px;
  height: 56px;
  margin-right: 30px;
  line-height: 56px;
  text-align: center;
  border-radius: 50%;
  background-color: #E8E7F8;
  flex-shrink: 0;
}
.xc-about-three__feature-count::before {
  color: var(--xc-theme-primary);
  font-size: 20px;
  font-weight: 600;
  counter-increment: section;
  content: "0" counter(section);
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-about-four__img {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-about-four__img img {
    width: 100%;
  }
}
.xc-about-four__tag {
  width: 300px;
  margin-bottom: 40px;
}
.xc-about-four__tag span {
  display: inline-block;
}
.xc-about-four__tag a {
  display: inline-block;
  padding: 5px 20px;
  background-color: #E9E7EE;
  border-radius: 100px;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: 0.3s;
}
.xc-about-four__tag a:hover {
  background-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-about-five__img {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-about-five__img img {
    width: 100%;
  }
}
.xc-about-five__button {
  display: flex;
  margin-top: 60px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-about-five__button {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.xc-about-five__feature {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-about-five__feature {
    margin-bottom: 30px;
  }
}
.xc-about-five__feature p {
  font-size: 16px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-about-five__feature p br {
    display: none;
  }
}
.xc-about-five__icon {
  color: var(--xc-theme-primary);
  font-size: 34px;
  margin-bottom: 10px;
  display: inline-block;
}

.xc-about-six__left {
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-about-six__left .img-1 {
    margin-bottom: 30px;
  }
}
.xc-about-six__left img {
  border-radius: 10px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-about-six__left img {
    width: 100%;
  }
}
.xc-about-six__left .img-2 {
  margin-left: 30px;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-about-six__left .img-2 {
    margin-left: 0;
  }
}
.xc-about-six__left .img-2 .shape-2 {
  position: absolute;
  right: -40px;
  top: -40%;
  z-index: -1;
  animation: xc-zoom 9s infinite;
}
.xc-about-six__left .img-3 {
  text-align: center;
  position: relative;
}
.xc-about-six__left .img-3 .shape-1 {
  position: absolute;
  left: 80px;
  top: -20%;
  z-index: -1;
  animation: xc-zoom 12s infinite;
}
.xc-about-six__banner {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 50px;
  padding-right: 50px;
  border-radius: 30px;
  display: inline-block;
  position: absolute;
  top: 25%;
  left: 100px;
  background-color: var(--xc-common-white);
  box-shadow: 0px 0px 250px 0px rgba(78, 67, 250, 0.31);
  font-size: 20px;
  z-index: 1;
  animation: xc-moveX 11s infinite;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-about-six__banner {
    top: 15%;
    left: 25px;
    font-size: 16px;
  }
}
.xc-about-six__banner i {
  color: var(--xc-theme-primary);
  margin-right: 10px;
  display: inline-block;
}
.xc-about-six__list li {
  position: relative;
  padding-left: 25px;
}
.xc-about-six__list li::before {
  position: absolute;
  left: 0;
  top: 8px;
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-color: var(--xc-theme-primary);
  display: inline-block;
}
.xc-about-six__list p {
  font-size: 18px;
  line-height: 1.4;
}

.xc-about-page__img img {
  border-radius: 20px;
}

/*----------------------------------------*/
/* Service css
/*----------------------------------------*/
.xc-service-one__box {
  text-align: center;
  background-color: var(--xc-common-white);
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.26);
  border-radius: 10px;
  padding: 40px;
  padding-top: 0;
  margin-bottom: 90px;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-service-one__box p br {
    display: none;
  }
}
.xc-service-one__box:hover {
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.36);
}
.xc-service-one__box:hover .xc-service-one__icon::before, .xc-service-one__box:hover .xc-service-one__icon::after {
  transform: rotate(0);
}
.xc-service-one__box.xc-featured {
  background-color: var(--xc-common-black);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.xc-service-one__box.xc-featured p {
  color: #ACB9CB;
}
.xc-service-one__box.xc-featured .xc-btn {
  color: var(--xc-common-white);
  display: inline-block;
}
.xc-service-one__box.xc-featured .xc-service-one__icon {
  margin-bottom: 0;
  margin-top: 25px;
  margin-bottom: 0px;
}
.xc-service-one__box.xc-featured .xc-service-one__icon::before, .xc-service-one__box.xc-featured .xc-service-one__icon::after {
  display: none;
}
.xc-service-one__box.xc-featured .xc-service-one__title a {
  color: var(--xc-common-white);
  background-image: linear-gradient(var(--xc-common-white), var(--xc-common-white)), linear-gradient(var(--xc-common-white), var(--xc-common-white));
}
.xc-service-one__box.xc-featured .xc-shape-1, .xc-service-one__box.xc-featured .xc-shape-2, .xc-service-one__box.xc-featured .xc-shape-3 {
  position: absolute;
  z-index: -1;
}
.xc-service-one__box.xc-featured .xc-shape-1 {
  left: -200px;
  top: -160px;
  animation: light infinite 1s;
}
.xc-service-one__box.xc-featured .xc-shape-2 {
  top: 80px;
  right: -100px;
}
.xc-service-one__box.xc-featured .xc-shape-3 {
  top: 50px;
  right: -100px;
}
.xc-service-one__icon {
  font-weight: 400;
  font-size: 40px;
  color: var(--xc-theme-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  z-index: 1;
  padding: 20px 40px;
  margin-top: -30px;
}
.xc-service-one__icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: rotate(15deg);
  display: inline-block;
  background: linear-gradient(119.54deg, rgba(78, 67, 250, 0.36) -7.49%, rgba(85, 102, 231, 0.072) 71.5%);
  border-radius: 15px;
  z-index: -1;
  transition: 0.2s;
}
.xc-service-one__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: rotate(15deg) translateX(30px) translateY(-15px);
  display: inline-block;
  border: 1px solid var(--xc-border-1);
  border-radius: 15px;
  z-index: -1;
  transition: 0.4s;
}
.xc-service-one p {
  font-size: 16px;
}
.xc-service-one__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 15px;
}
.xc-service-one__title a {
  background-image: linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary)), linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary));
  display: inline;
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.4s linear;
}
.xc-service-one__title a:hover {
  background-size: 0% 2px, 100% 2px;
  color: var(--xc-theme-primary);
}
.xc-service-one__btn {
  display: block;
  color: var(--xc-theme-primary);
  transition: 0.3s;
  font-weight: 700;
}

.xc-service-two__item {
  background: var(--xc-common-white);
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.1);
  border-radius: 10px;
  padding-left: 34px;
  padding-right: 34px;
  padding-top: 24px;
  padding-bottom: 35px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-service-two__item {
    text-align: center;
    margin-bottom: 30px;
    padding-top: 35px;
  }
}
.xc-service-two__item.item-1 {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.xc-service-two__item.item-2 {
  border-radius: 0;
  padding-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-service-two__item.item-2 {
    padding-left: 34px;
  }
}
.xc-service-two__item.item-3 {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 80px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-service-two__item.item-3 {
    padding-left: 34px;
  }
}
.xc-service-two__item:hover .xc-service-two__icon {
  transform: translateY(-5px) translate3d(0, -5px, 0);
}
.xc-service-two__item p {
  font-size: 16px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-service-two__item p br {
    display: none;
  }
}
.xc-service-two__icon {
  width: 66px;
  height: 66px;
  text-align: center;
  display: inline-block;
  border-radius: 15px 15px 15px 0px;
  margin-bottom: 20px;
  transform: translate3d(0, 0, 0);
  transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}
.xc-service-two__icon i {
  line-height: 66px;
  font-size: 34px;
  color: var(--xc-common-white);
}
.xc-service-two__title {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 10px;
}
.xc-service-two__title a {
  background-image: linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary)), linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary));
  display: inline;
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.3s linear;
}
.xc-service-two__title a:hover {
  background-size: 0% 2px, 100% 2px;
  color: var(--xc-theme-primary);
}
.xc-service-two__btn {
  display: block;
  color: var(--xc-theme-primary);
  transition: 0.3s;
  font-weight: 700;
}
.xc-service-two__btn i {
  margin-left: 5px;
  display: inline-block;
}
.xc-service-two__bottom p {
  font-size: 16px;
}
.xc-service-two__bottom p a {
  font-size: 14px;
  font-weight: 700;
  color: var(--xc-theme-primary);
}
.xc-service-two__bottom p a:hover {
  color: var(--xc-theme-secondary);
}

.xc-service-three__item {
  padding: 40px;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: right;
  border-radius: 10px;
  margin-bottom: 30px;
  background-size: cover;
  background-color: #FFF;
  box-shadow: 0px 0px 250px 0px rgba(78, 67, 250, 0.14);
}
.xc-service-three__item:hover .xc-service-three__icon {
  transform: translateY(-5px) translate3d(0, -5px, 0);
}
.xc-service-three__icon {
  color: var(--xc-theme-primary);
  transform: translate3d(0, 0, 0);
  border-radius: 5px;
  font-size: 28px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin-bottom: 30px;
  text-align: center;
  background: var(--xc-common-white);
  box-shadow: 0px 0px 250px 0px rgba(78, 67, 250, 0.1);
  transition: transform 0.3s cubic-bezier(0.21, 0.6, 0.44, 2.18);
}
.xc-service-three__icon i {
  text-shadow: 6px 9px 10px #E9D5F7;
}
.xc-service-three__title {
  font-weight: 700;
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 15px;
}
.xc-service-three__title a {
  background-image: linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary)), linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary));
  display: inline;
  background-size: 0% 2px, 0 2px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: 0.3s linear;
}
.xc-service-three__title a:hover {
  background-size: 0% 2px, 100% 2px;
  color: var(--xc-theme-primary);
}
.xc-service-three__content p {
  font-size: 16px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-service-three__content p br {
    display: none;
  }
}

.service__area {
  position: relative;
}

.xc-service-details__left {
  margin-left: 20px;
}
.xc-service-details__left p {
  font-size: 16px;
  margin-bottom: 25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-service-details__left {
    margin-left: 0;
  }
}
.xc-service-details__left h1,
.xc-service-details__left h2,
.xc-service-details__left h3,
.xc-service-details__left h4 {
  margin-bottom: 25px;
}
.xc-service-details__left img {
  margin-bottom: 25px;
  border-radius: 10px;
}
.xc-service-details__right {
  padding: 50px 30px;
  background: var(--xc-common-white);
  border: 1px solid #ededed;
  border-radius: 10px;
  box-shadow: 0px 0px 150px 0px rgba(78, 67, 250, 0.06);
  position: sticky;
  top: 120px;
}
.xc-service-details__right-content {
  margin-bottom: 35px;
}
.xc-service-details__meta-item {
  margin-bottom: 25px;
}
.xc-service-details__meta-item h5 {
  font-size: 18px;
}
.xc-service-details__meta-icon {
  font-size: 22px;
  color: var(--xc-theme-primary);
  margin-right: 10px;
}
.xc-service-details__sidebar-title {
  margin-bottom: 15px;
  font-size: 25px;
}

/*----------------------------------------*/
/* Banner css
/*----------------------------------------*/
.xc-header-banner__shape .shape-1 {
  position: absolute;
  left: 200px;
  animation: xc-moveX 4s infinite;
  z-index: -1;
}
.xc-header-banner__shape .shape-2 {
  position: absolute;
  left: 0;
  top: 20%;
  animation: xc-moveY 3s infinite;
  z-index: -1;
}
.xc-header-banner__shape .shape-3 {
  position: absolute;
  right: 20px;
  animation: xc-moveY 5s infinite;
  z-index: -1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-header-banner__two-avata {
    display: none;
  }
}
.xc-header-banner__two-avata .avata-1 {
  position: absolute;
  left: 30px;
  top: -50px;
  animation: xc-moveX 8s infinite;
  z-index: -1;
}
.xc-header-banner__two-avata .avata-2 {
  position: absolute;
  left: 100px;
  animation: xc-moveY 7s infinite;
  z-index: -1;
}
.xc-header-banner__two-avata .avata-3 {
  position: absolute;
  top: -50px;
  right: 30px;
  animation: xc-moveY 9s infinite;
  z-index: -1;
}
.xc-header-banner__two-avata .avata-4 {
  position: absolute;
  top: 250px;
  right: 60px;
  animation: xc-moveX 10s infinite;
  z-index: -1;
}
.xc-header-banner__two-shape {
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -1;
}
.xc-header-banner__section {
  position: relative;
  overflow: hidden;
  padding-top: 230px;
  z-index: 22;
}
.xc-header-banner__section .xc-note {
  margin-top: 15px;
}
.xc-header-banner__title span {
  color: var(--xc-theme-primary);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-header-banner__title br {
    display: none;
  }
}
.xc-header-banner__bg {
  position: absolute;
  bottom: -200px;
  z-index: -1;
}
s .xc-header-banner__bg.style-2 {
  top: 0;
  bottom: 0px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-header-banner__bg {
    bottom: 0;
  }
}
.xc-header-banner__tag {
  background-color: rgba(var(--xc-theme-primary-rgb), 0.1);
  padding: 10px 30px;
  border-radius: 30px;
  color: var(--xc-theme-primary);
  font-size: 16px;
  margin-bottom: 10px;
  display: inline-block;
}
.xc-header-banner__tag.rgb-bg {
  background: linear-gradient(270.27deg, #7AD0BD 3.73%, #407CB5 45.18%, #EF5277 72.75%, #F58244 99.76%);
  color: var(--xc-common-white);
}
.xc-header-banner__tag.rgb-bg i {
  margin-right: 5px;
}
.xc-header-banner__info {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 30px;
}
.xc-header-banner__btns .xc-spt {
  margin: 0 10px;
  display: inline-block;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-header-banner__btns .xc-spt {
    display: block;
    margin-top: 10px;
    margin-bottom: 10px;
  }
}
.xc-header-banner__img {
  margin-top: 90px;
}
.xc-header-banner__img.style-2 img {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.xc-header-banner__img img {
  border-radius: 30px;
}
.xc-header-banner__video {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  left: 0;
  right: 0;
}
.xc-header-banner__video a {
  width: 142px;
  height: 142px;
  font-size: 24px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--xc-common-black);
  line-height: 142px;
  text-align: center;
  color: var(--xc-common-white);
  animation: pulse 2s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-header-banner__video a {
    transform: scale(0.8);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-header-banner__video a {
    transform: scale(0.5);
  }
}

.xc-header-banner-2__section {
  padding-top: 310px;
}
.xc-header-banner-2__img {
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-header-banner-2__img img {
    width: 100%;
  }
}
.xc-header-banner-2__img .dot-shape {
  position: absolute;
  top: -20px;
  left: 40%;
  z-index: -1;
  animation: xc-zoom-fade 4s infinite linear;
}
.xc-header-banner-2__btn-1 {
  margin-right: 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-header-banner-2__btn-1 {
    margin-bottom: 30px;
  }
}
.xc-header-banner-2__title {
  font-size: 56px;
  position: relative;
  z-index: 4;
}
.xc-header-banner-2__title span {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.xc-header-banner-2__title span::before {
  content: url(../img/shapes/header-banner-3.svg);
  position: absolute;
  top: 30px;
  left: 0;
  z-index: -2;
  transform: translateX(0%);
}
.xc-header-banner-2__title span svg.svg {
  position: absolute;
  bottom: -15px;
  left: 0;
  z-index: -2;
  width: 1;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-header-banner-2__title br {
    display: none;
  }
}
.xc-header-banner-2__title-wrapper {
  position: relative;
}
.xc-header-banner-2__title-wrapper .line-shape {
  position: absolute;
  top: -50px;
  right: 50px;
  animation: xc-moveX 4s infinite linear;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-header-banner-2__bottom {
    margin-bottom: 60px;
  }
}

.xc-header-banner-three__section {
  background: linear-gradient(180deg, #F1F4FB 0%, rgba(255, 255, 255, 0) 100%);
  padding-top: 236px;
  position: relative;
}
.xc-header-banner-three__shapes .shape-1 {
  position: absolute;
  left: 168px;
  top: 160px;
  z-index: -1;
  animation: xc-moveY 10s infinite;
}
.xc-header-banner-three__shapes .shape-2 {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  animation: xc-moveX 9s infinite;
}
.xc-header-banner-three__shapes .shape-3 {
  position: absolute;
  right: 460px;
  top: 180px;
  z-index: 1;
  animation: xc-moveX 8s infinite;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-header-banner-three__shapes .shape-3 {
    display: none;
  }
}
.xc-header-banner-three__shapes .shape-4 {
  position: absolute;
  bottom: -100px;
  right: 0;
  z-index: -1;
  animation: xc-moveY 7s infinite;
}
.xc-header-banner-three__img {
  border-radius: 15px;
  background: linear-gradient(135deg, #FBB8B6 0%, #A7A5F3 99.48%);
  padding: 15px;
  margin-right: -173px;
  position: relative;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .xc-header-banner-three__img {
    margin-right: 0px;
  }
  .xc-header-banner-three__img img {
    width: 100%;
  }
}
.xc-header-banner-three__video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--xc-common-white);
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 5px;
  padding-right: 30px;
  border-radius: 100px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-header-banner-three__video {
    padding-right: 5px;
  }
}
.xc-header-banner-three__video p {
  margin-bottom: 0;
  font-weight: 700;
  padding-bottom: 0;
  margin-left: 15px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-header-banner-three__video p {
    display: none;
  }
}
.xc-header-banner-three__video a {
  font-size: 16px;
  width: 46px;
  height: 46px;
  line-height: 46px;
  border-radius: 50%;
  display: inline-block;
  color: var(--xc-common-white);
  background-color: var(--xc-common-black);
  transition: 0.3s;
  text-align: center;
  animation: pulse 2s infinite;
}
.xc-header-banner-three__video a:hover {
  background-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
}

.dynamic-title {
  font-size: 90px;
  float: none;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--xc-ff-heading);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .dynamic-title {
    font-size: 80px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .dynamic-title {
    font-size: 50px;
    line-height: 1.2;
  }
}

span.gold-title {
  line-height: 1.2;
  margin: -10px 0;
  padding-left: 8px;
  color: var(--xc-theme-base);
  font-family: var(--xc-ff-heading);
  background: linear-gradient(270.27deg, #7AD0BD 25.57%, #407CB5 45.03%, #EF5277 57.97%, #F58244 70.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

/* -------------------------------- 

Primary style

-------------------------------- */
.cd-words-wrapper {
  display: inline-block;
  position: relative;
  text-align: left;
}

.cd-words-wrapper b {
  display: inline-block;
  position: absolute;
  white-space: nowrap;
  left: 0;
  top: 0;
  font-style: normal;
}

.cd-words-wrapper i {
  font-style: normal;
}

.cd-words-wrapper b.is-visible {
  position: relative;
}

.no-js .cd-words-wrapper b {
  opacity: 0;
}

.no-js .cd-words-wrapper b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xloading-bar 

-------------------------------- */
.cd-headline.loading-bar span {
  display: inline-block;
  padding: 0.2em 0;
}

.cd-headline.loading-bar .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.loading-bar .cd-words-wrapper::after {
  /* loading bar */
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #0096a7;
  z-index: 2;
  -webkit-transition: width 0.3s -0.1s;
  -moz-transition: width 0.3s -0.1s;
  transition: width 0.3s -0.1s;
}

.cd-headline.loading-bar .cd-words-wrapper.is-loading::after {
  width: 100%;
  -webkit-transition: width 3s;
  -moz-transition: width 3s;
  transition: width 3s;
}

.cd-headline.loading-bar b {
  top: 0.2em;
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.cd-headline.loading-bar b.is-visible {
  opacity: 1;
  top: 0;
}

/* -------------------------------- 

xclip 

-------------------------------- */
.cd-headline.clip .cd-words-wrapper {
  overflow: hidden;
  vertical-align: top;
}

.cd-headline.clip .cd-words-wrapper::after {
  /* line */
  content: "";
  position: absolute;
  top: 25px;
  bottom: 15px;
  display: inline-block;
  right: 0;
  width: 4px;
  background: linear-gradient(0deg, #7AD0BD 25.57%, #407CB5 45.03%, #EF5277 57.97%, #F58244 70.65%);
}

.cd-headline.clip b {
  opacity: 0;
}

.cd-headline.clip b.is-visible {
  opacity: 1;
}

/* -------------------------------- 

xzoom 
-------------------------------- */
.cd-headline.zoom .cd-words-wrapper {
  -webkit-perspective: 300px;
  -moz-perspective: 300px;
  perspective: 300px;
}

.cd-headline.zoom b {
  opacity: 0;
}

.cd-headline.zoom b.is-visible {
  opacity: 1;
  -webkit-animation: zoom-in 0.8s;
  -moz-animation: zoom-in 0.8s;
  animation: zoom-in 0.8s;
}

.cd-headline.zoom b.is-hidden {
  -webkit-animation: zoom-out 0.8s;
  -moz-animation: zoom-out 0.8s;
  animation: zoom-out 0.8s;
}

@-webkit-keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
}
@-moz-keyframes zoom-in {
  0% {
    opacity: 0;
    -moz-transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
}
@keyframes zoom-in {
  0% {
    opacity: 0;
    -webkit-transform: translateZ(100px);
    -moz-transform: translateZ(100px);
    -ms-transform: translateZ(100px);
    -o-transform: translateZ(100px);
    transform: translateZ(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
  }
}
@-moz-keyframes zoom-out {
  0% {
    opacity: 1;
    -moz-transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateZ(-100px);
  }
}
@keyframes zoom-out {
  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateZ(-100px);
    -moz-transform: translateZ(-100px);
    -ms-transform: translateZ(-100px);
    -o-transform: translateZ(-100px);
    transform: translateZ(-100px);
  }
}
/*----------------------------------------*/
/* Feature css
/*----------------------------------------*/
.xc-feature-one__section {
  counter-reset: section;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.xc-feature-one__section .xc-shape-left {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  animation: xc-moveX 5s infinite;
}
.xc-feature-one__section .xc-shape-right {
  position: absolute;
  right: -50px;
  top: 0;
  z-index: -1;
  animation: xc-moveX 5s infinite;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-feature-one__section .xc-shape-right {
    display: none;
  }
}
.xc-feature-one__section .xc-shape-line {
  position: absolute;
  right: 0;
  left: 0;
  top: -50px;
  text-align: center;
  z-index: -1;
}
.xc-feature-one__item {
  padding: 20px 50px;
  background: var(--xc-common-white);
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.14);
  border-radius: 10px;
}
.xc-feature-one__item p {
  font-weight: 400;
  font-size: 16px;
}
.xc-feature-one__title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 20px;
}
.xc-feature-one__counter::before {
  font-family: var(--xc-ff-heading);
  font-style: normal;
  font-weight: 700;
  font-size: 70px;
  line-height: 62px;
  background: linear-gradient(179.3deg, #4E43FA 0.6%, rgba(90, 87, 137, 0) 81.88%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  counter-increment: section;
  content: "0" counter(section);
}

.xc-feature-two__section .feature-item-2, .xc-feature-two__section .feature-item-4, .xc-feature-two__section .feature-item-6 {
  flex-direction: row-reverse;
}
.xc-feature-two__section .feature-item-2 .xc-feature-two__content, .xc-feature-two__section .feature-item-4 .xc-feature-two__content, .xc-feature-two__section .feature-item-6 .xc-feature-two__content {
  text-align: end;
  padding-right: 110px;
  padding-left: 0px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-feature-two__section .feature-item-2 .xc-feature-two__content, .xc-feature-two__section .feature-item-4 .xc-feature-two__content, .xc-feature-two__section .feature-item-6 .xc-feature-two__content {
    text-align: start;
    padding-right: 60px;
    padding-left: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__section .feature-item-2 .xc-feature-two__content, .xc-feature-two__section .feature-item-4 .xc-feature-two__content, .xc-feature-two__section .feature-item-6 .xc-feature-two__content {
    text-align: start;
    padding-right: 0px;
    padding-left: 30px;
  }
}
.xc-feature-two__section .feature-item-2 .xc-feature-two__content::before, .xc-feature-two__section .feature-item-4 .xc-feature-two__content::before, .xc-feature-two__section .feature-item-6 .xc-feature-two__content::before {
  left: auto;
  right: 0;
  top: 20px;
  transform: translateY(-50%) rotate(-180deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__section .feature-item-2 .xc-feature-two__content::before, .xc-feature-two__section .feature-item-4 .xc-feature-two__content::before, .xc-feature-two__section .feature-item-6 .xc-feature-two__content::before {
    left: 0;
    right: auto;
    transform: translateY(-50%) rotate(0deg);
  }
}
.xc-feature-two__section .feature-item-2 .xc-feature-two__imgs, .xc-feature-two__section .feature-item-4 .xc-feature-two__imgs, .xc-feature-two__section .feature-item-6 .xc-feature-two__imgs {
  padding-left: 110px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__section .feature-item-2 .xc-feature-two__imgs, .xc-feature-two__section .feature-item-4 .xc-feature-two__imgs, .xc-feature-two__section .feature-item-6 .xc-feature-two__imgs {
    padding-left: 0px;
  }
}
.xc-feature-two__section .feature-item-2 .xc-feature-two__imgs .img-1, .xc-feature-two__section .feature-item-4 .xc-feature-two__imgs .img-1, .xc-feature-two__section .feature-item-6 .xc-feature-two__imgs .img-1 {
  right: 0;
  left: auto;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__section .feature-item-2 .xc-feature-two__imgs .img-1, .xc-feature-two__section .feature-item-4 .xc-feature-two__imgs .img-1, .xc-feature-two__section .feature-item-6 .xc-feature-two__imgs .img-1 {
    left: 60px;
    right: auto;
  }
}
.xc-feature-two__shapes img {
  border-radius: 10px;
}
.xc-feature-two__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  border: 1px dashed var(--xc-theme-primary);
  opacity: 0.3;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__line {
    left: 0;
  }
}
.xc-feature-two__item + .xc-feature-two__item {
  margin-top: 60px;
}
.xc-feature-two__content {
  padding-left: 110px;
  padding-right: 40px;
  margin-top: 50px;
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-feature-two__content {
    padding-left: 60px;
    padding-right: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__content {
    padding-left: 30px;
    padding-right: 0;
  }
}
.xc-feature-two__content::before {
  content: url(../img/shapes/feature-2-arrow.png);
  position: absolute;
  left: 0;
  top: 20px;
  transform: translateY(-50%);
}
.xc-feature-two__count {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 20px;
  text-align: center;
  color: var(--xc-common-white);
  display: inline-block;
  background-color: var(--xc-theme-primary);
}
.xc-feature-two__title {
  font-size: 36px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .xc-feature-two__title {
    font-size: 25px;
  }
  .xc-feature-two__title br {
    display: none;
  }
}
.xc-feature-two__info {
  font-size: 16px;
}
.xc-feature-two__imgs {
  position: relative;
}
.xc-feature-two__imgs .main-img-1 {
  padding-left: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-feature-two__imgs .main-img-1 {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__imgs .main-img-1 {
    padding-left: 30px;
  }
  .xc-feature-two__imgs .main-img-1 img {
    width: 100%;
  }
}
.xc-feature-two__shapes .img-1 {
  position: absolute;
  left: 0;
  top: 80px;
  box-shadow: 0px 0px 250px 0px rgba(78, 67, 250, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-feature-two__shapes .img-1 {
    left: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__shapes .img-1 {
    left: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__shapes .img-1 img {
    width: 100%;
  }
}
.xc-feature-two__shapes .img-2 {
  position: absolute;
  left: 60%;
  transform: translateX(-50%);
  bottom: 30px;
  box-shadow: 0px 0px 250px 0px rgba(78, 67, 250, 0.1);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-two__shapes .img-2 img {
    width: 100%;
  }
}

.xc-feature-three__item {
  display: flex;
  padding: 40px 100px 50px 40px;
  border-radius: 10px;
  border: 1px solid rgba(var(--xc-theme-primary-rgb), 0.5);
  margin-bottom: 30px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-feature-three__item {
    padding-right: 40px;
    padding-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-feature-three__item {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .xc-feature-three__item {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.xc-feature-three__icon span {
  font-size: 44px;
  margin-right: 44px;
  display: inline-block;
  color: #FF9D00;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-three__icon span {
    margin-right: 30px;
  }
}
.xc-feature-three__icon.color-2 span {
  color: #3C5DFF;
}
.xc-feature-three__icon.color-3 span {
  color: #3C5DFF;
}
.xc-feature-three__icon.color-4 span {
  color: #33B89F;
}
.xc-feature-three__content p {
  font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-three__content p br {
    display: none;
  }
}
.xc-feature-three__title {
  font-size: 20px;
  margin-bottom: 20px;
}

.xc-feature-four__item {
  margin-bottom: 30px;
}
.xc-feature-four__icon span {
  font-size: 44px;
  width: 96px;
  height: 96px;
  line-height: 96px;
  margin-bottom: 30px;
  display: inline-block;
  color: #FF9D00;
  text-align: center;
  border-radius: 10px;
  background-color: #FAF0D8;
}
.xc-feature-four__icon span i {
  text-shadow: 6px 9px 10px #FFB29A;
}
.xc-feature-four__icon.color-2 span {
  color: #9241F8;
  background-color: #E4D6F5;
}
.xc-feature-four__icon.color-2 span i {
  text-shadow: 6px 9px 10px #C494FF;
}
.xc-feature-four__icon.color-3 span {
  color: #3C5DFF;
  background-color: #D8DEFF;
}
.xc-feature-four__icon.color-3 span i {
  text-shadow: 6px 9px 10px #8599FF;
}
.xc-feature-four p {
  font-size: 16px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-feature-four p br {
    display: none;
  }
}
.xc-feature-four__title {
  font-size: 24px;
  margin-bottom: 20px;
}

.xc-feature-five__section .item + .item {
  margin-left: 40px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-feature-five__section .item + .item {
    margin-left: 0;
  }
}
.xc-feature-five__section .xc-section__title {
  font-size: 36px;
}
.xc-feature-five__item {
  background-color: var(--xc-common-white);
  display: inline-block;
  padding: 20px 25px;
  border-radius: 100px;
  margin-bottom: 30px;
}
@media (max-width: 575px) {
  .xc-feature-five__item {
    padding: 20px 20px;
  }
}
.xc-feature-five__title {
  font-size: 16px;
}
.xc-feature-five__title i {
  margin-right: 10px;
  color: var(--xc-theme-primary);
}

.xc-featrue-five__warapper {
  padding-left: 100px;
  padding-right: 100px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-featrue-five__warapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/*----------------------------------------*/
/* Video css
/*----------------------------------------*/
.xc-video-two__left {
  position: relative;
  margin-top: 70px;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-video-two__left .img-1 img {
    width: 100%;
  }
}
.xc-video-two__video {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
}
.xc-video-two__video a {
  font-size: 16px;
  width: 66px;
  height: 66px;
  line-height: 66px;
  border-radius: 66%;
  display: inline-block;
  background-color: var(--xc-common-white);
  transition: 0.3s;
  animation: pulse 2s infinite;
}
.xc-video-two__video a:hover {
  background-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
}
.xc-video-two__shapes .shape-1 {
  position: absolute;
  top: -50px;
  left: -100px;
  z-index: 1;
  animation: xc-moveY 8s infinite;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-video-two__shapes .shape-1 {
    display: none;
  }
}
.xc-video-two__shapes .shape-2 {
  position: absolute;
  top: -150px;
  right: 10px;
  z-index: 1;
  animation: xc-moveX 8s infinite;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-video-two__shapes .shape-2 {
    display: none;
  }
}
.xc-video-two__shapes .shape-3 {
  position: absolute;
  top: 0;
  left: -50px;
  z-index: -1;
  animation: xc-zoom 8s infinite;
}
.xc-video-two__shapes .shape-4 {
  position: absolute;
  top: -50px;
  right: 0;
  z-index: -1;
  animation: xc-zoom 11s infinite;
}

/*----------------------------------------*/
/* CTA css
/*----------------------------------------*/
.xc-cta-one__inner {
  padding: 70px 100px 70px 100px;
  background-size: cover;
  border-radius: 10px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-cta-one__inner {
    padding: 70px 40px 70px 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-one__inner {
    padding: 70px 30px 70px 30px;
  }
}
.xc-cta-one__shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  animation: xc-moveX 5s infinite;
}
.xc-cta-one__circle {
  position: absolute;
  bottom: 50px;
  right: -15%;
  z-index: -1;
  animation: zoom 19s infinite;
}
.xc-cta-one__title {
  font-size: 40px;
  margin-bottom: 25px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-one__title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-cta-one__title br {
    display: none;
  }
}
.xc-cta-one__tagline {
  font-size: 16px;
  font-weight: 700;
  color: var(--xc-common-black);
  margin-bottom: 10px;
  display: inline-block;
}
.xc-cta-one__tagline i {
  background: linear-gradient(335.12deg, #7AD0BD 34.43%, #407CB5 54.7%, #EF5277 68.19%, #F58244 81.4%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-right: 8px;
}
.xc-cta-one__btn {
  margin-left: 100px;
  text-align: end;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-one__btn {
    margin-left: 0;
    text-align: left;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-one__checklist {
    margin-bottom: 20px;
  }
}
.xc-cta-one__checklist span {
  font-size: 14px;
  color: #475467;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-one__checklist span {
    display: block;
  }
}
.xc-cta-one__checklist span + span {
  margin-left: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-one__checklist span + span {
    margin-left: 0;
    margin-top: 10px;
  }
}
.xc-cta-one__checklist i {
  background-color: #3CCB7F;
  width: 19px;
  height: 19px;
  line-height: 19px;
  border-radius: 50%;
  display: inline-block;
  font-size: 10px;
  margin-right: 10px;
  text-align: center;
  color: var(--xc-common-white);
  position: relative;
  top: -2px;
}

.xc-cta-two__content {
  display: flex;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-two__content {
    flex-wrap: wrap;
  }
}
.xc-cta-two__content p {
  color: var(--xc-common-white);
}
.xc-cta-two__inner {
  padding: 50px 110px 40px 100px;
  background-size: cover;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-cta-two__inner {
    padding: 70px 40px 70px 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-two__inner {
    padding: 70px 40px 70px 40px;
  }
}
.xc-cta-two__title {
  font-size: 40px;
  margin-bottom: 10px;
  color: var(--xc-common-white);
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-two__title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-cta-two__title br {
    display: none;
  }
}
.xc-cta-two__icon {
  margin-right: 24px;
}
.xc-cta-two__btn {
  text-align: end;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-cta-two__btn {
    text-align: start;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-cta-two__btn {
    margin-left: 85px;
  }
}

.xc-cta-three__content p br {
  display: none;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-cta-three__img, .xc-cta-three__img-right {
    display: flex;
    justify-content: center;
  }
}
.xc-cta-three__img img, .xc-cta-three__img-right img {
  border-radius: 10px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-cta-three__img img, .xc-cta-three__img-right img {
    width: 100%;
  }
}
.xc-cta-three__img-sm {
  margin-left: 30px;
  animation: xc-moveY 4s infinite;
}
.xc-cta-three__img-sm-2 {
  margin-right: 30px;
  animation: xc-moveY 5s infinite;
}

.xc-cta-four__box {
  text-align: center;
  text-align: center;
  background-color: var(--xc-common-white);
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.26);
  border-radius: 10px;
  padding: 40px;
  padding-top: 0;
  margin-bottom: 70px;
  transition: 0.3s;
}
.xc-cta-four__box a {
  transition: 0.3s;
}
.xc-cta-four__box a:hover {
  color: var(--xc-theme-primary);
}
.xc-cta-four__box:hover {
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.36);
}
.xc-cta-four__box:hover .xc-cta-four__icon::before, .xc-cta-four__box:hover .xc-cta-four__icon::after {
  transform: rotate(0);
}
.xc-cta-four__title {
  font-size: 22px;
  margin-bottom: 15px;
}
.xc-cta-four__icon {
  font-weight: 400;
  font-size: 40px;
  color: var(--xc-theme-primary);
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
  z-index: 1;
  padding: 20px 40px;
  margin-top: -30px;
}
.xc-cta-four__icon::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: rotate(15deg);
  display: inline-block;
  background: linear-gradient(119.54deg, rgba(78, 67, 250, 0.36) -7.49%, rgba(85, 102, 231, 0.072) 71.5%);
  border-radius: 15px;
  z-index: -1;
  transition: 0.2s;
}
.xc-cta-four__icon::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  transform: rotate(15deg) translateX(30px) translateY(-15px);
  display: inline-block;
  border: 1px solid var(--xc-border-1);
  border-radius: 15px;
  z-index: -1;
  transition: 0.4s;
}

/*----------------------------------------*/
/* FunFact css
/*----------------------------------------*/
.xc-funfact-one__img {
  text-align: center;
  width: 114px;
  height: 114px;
  line-height: 114px;
  margin-bottom: 30px;
  border-radius: 50%;
  background: #FFF;
  box-shadow: 0px 0px 250px 0px rgba(78, 67, 250, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-funfact-one__img {
    margin: 0 auto;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-funfact-one__img {
    transform: scale(0.7);
  }
}

/*----------------------------------------*/
/* Price css
/*----------------------------------------*/
.xc-price-one__section {
  background-position: bottom;
}
.xc-price-one__section.style-2 {
  padding-top: 1px;
}
.xc-price-one__section.style-2 .xc-section__subtitle {
  border: 1px solid var(--xc-theme-primary);
  padding-left: 30px;
  padding-right: 30px;
  display: inline-block;
  padding-top: 3px;
  padding-bottom: 3px;
  border-radius: 100px;
  margin-bottom: 10px;
}
.xc-price-one__tab-nav {
  margin: 0 auto;
  margin-bottom: 75px;
  position: relative;
}
.xc-price-one__tab-offer {
  position: absolute;
  right: -15%;
  top: 5px;
  text-align: center;
  -moz-animation: xcswing 1s ease-in-out 1s forwards infinite alternate;
  -webkit-animation: xcswing 1s ease-in-out 1s forwards infinite alternate;
  animation: xcswing 1s ease-in-out 1s forwards infinite alternate;
  transform-origin: center center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-price-one__tab-offer {
    right: 90px;
    top: 59px;
  }
}
.xc-price-one__tab-offer span {
  display: block;
  padding-left: 50px;
  font-weight: 700;
  position: relative;
  top: -15px;
  color: var(--xc-theme-primary);
}
.xc-price-one__item {
  background-color: var(--xc-common-white);
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.14);
  border-radius: 10px;
  padding-left: 35px;
  padding-right: 35px;
  padding-top: 40px;
  padding-bottom: 50px;
  margin-bottom: 30px;
  border: 1px solid transparent;
  transition: 0.3s;
}
.xc-price-one__item.featured {
  position: relative;
  padding-top: 80px;
  margin-top: -40px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-price-one__item.featured {
    margin-top: 0px;
  }
}
.xc-price-one__item.featured .xc-price-one__banner {
  display: block;
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
}
.xc-price-one__item.featured .xc-price-one__banner p {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  font-family: var(--xc-ff-heading);
  padding-top: 13px;
  padding-bottom: 13px;
  text-align: center;
  background-color: var(--xc-theme-primary);
  text-transform: uppercase;
  color: var(--xc-common-white);
  font-weight: 700;
  width: 100%;
}
.xc-price-one__item.featured .xc-price-one__btn a {
  background-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
}
.xc-price-one__item.featured .xc-price-one__btn a:hover {
  opacity: 0.9;
}
.xc-price-one__item:hover {
  border-color: var(--xc-theme-primary);
}
.xc-price-one__banner {
  display: none;
}
.xc-price-one__head {
  padding-bottom: 35px;
  margin-bottom: 25px;
  border-bottom: 1px solid #CDD3E0;
}
.xc-price-one__package {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--xc-grey-1);
}
.xc-price-one__price {
  font-weight: 700;
  font-size: 60px;
  color: var(--xc-common-black);
}
.xc-price-one__price span {
  font-weight: 400;
  font-size: 24px;
  color: var(--xc-grey-1);
}
.xc-price-one__list p {
  color: var(--xc-common-black);
}
.xc-price-one__list i {
  color: #3CCB7F;
  margin-right: 5px;
}
.xc-price-one__btn a {
  background-color: rgba(var(--xc-theme-primary-rgb), 0.3);
  color: var(--xc-theme-primary);
  width: 100%;
  display: block;
  text-align: center;
  padding-top: 13px;
  padding-bottom: 13px;
  border-radius: 5px;
  font-weight: 700;
  transition: 0.3s;
}
.xc-price-one__btn a:hover {
  color: var(--xc-common-white);
  background-color: rgba(var(--xc-theme-primary-rgb), 1);
}
.xc-price-one__tab-wrapper {
  text-align: center;
}
.xc-price-one__tab-nav {
  padding: 8px;
  background-color: var(--xc-grey-11);
  border-radius: 10px;
  width: 356px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-price-one__tab-nav {
    width: 100%;
  }
}
.xc-price-one__tab-nav .nav-link {
  font-family: var(--xc-ff-inter);
  font-weight: 700;
  font-size: 16px;
  background-color: transparent;
  color: var(--xc-common-black);
  padding: 14px 44px;
  border-radius: 100px;
  border: 0;
}
[dir=rtl] .xc-price-one__tab-nav .nav-link {
  padding-right: 44px;
  padding-left: 0;
}
.xc-price-one__tab-nav .nav-link span {
  font-weight: 700;
  font-size: 16px;
  color: #F46A35;
  padding: 11px 44px;
  border-radius: 30px;
  background: rgba(244, 106, 53, 0.1);
  display: inline-block;
  line-height: 1;
  margin-left: 5px;
}
[dir=rtl] .xc-price-one__tab-nav .nav-link span {
  margin-left: 0;
  margin-right: 5px;
}
.xc-price-one__tab-nav .nav-link:first-child {
  padding-right: 29px;
}
.xc-price-one__tab-nav .nav-link.active {
  background-color: transparent;
  color: var(--xc-common-white);
}
.xc-price-one__tab-nav .xc-price-tab-slide {
  position: relative;
  z-index: 1;
  background: var(--xc-common-white);
  border-radius: 100px;
  display: inline-block;
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.14);
}
.xc-price-one__tab-nav .xc-price-tab-slide:hover {
  cursor: pointer;
}
.xc-price-one__tab-nav .xc-price-tab-slide label:hover {
  cursor: pointer;
}
.xc-price-one__tab-nav .xc-price-tab-slide #price-tab-check {
  display: none;
}
.xc-price-one__tab-nav .xc-price-tab-slide #price-tab-check:checked + i {
  right: 111px;
  width: 150px;
}
[dir=rtl] .xc-price-one__tab-nav .xc-price-tab-slide #price-tab-check:checked + i {
  right: auto;
  left: 190px;
}
.xc-price-one__tab-nav .xc-price-tab-slide i {
  position: absolute;
  top: 3px;
  bottom: 2px;
  right: 3px;
  width: 136px;
  display: inline-block;
  color: var(--xc-common-white);
  background-color: var(--xc-common-black);
  border-radius: 100px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}

.xc-nav .nav-tabs {
  border: 0;
}

/*----------------------------------------*/
/* Testimonial css
/*----------------------------------------*/
.xc-testimonial-one__item {
  background-color: #F3F5F8;
  padding: 36px;
  padding-bottom: 20px;
  border-radius: 10px;
}
.xc-testimonial-one__img {
  margin-right: 20px;
}
.xc-testimonial-one__avata {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.xc-testimonial-one__avata img {
  border-radius: 50%;
}
.xc-testimonial-one__name h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--xc-theme-common);
}
.xc-testimonial-one__name p {
  font-size: 16px;
}
.xc-testimonial-one__title {
  font-size: 18px;
  margin-bottom: 10px;
}
.xc-testimonial-one__ratting {
  margin-bottom: 8px;
}
.xc-testimonial-one__ratting span {
  color: #FFCC29;
}
.xc-testimonial-one__review {
  font-size: 18px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background-color: var(--xc-theme-primary);
}

.xc-testimonials-one__carousel.owl-carousel .owl-item img {
  width: inherit;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .xc-testimonials-one__carousel {
    text-align: center;
  }
}

.xc-testimonial-two__section {
  padding-top: 220px;
  margin-top: -100px;
}

/*----------------------------------------*/
/* Sponsor css
/*----------------------------------------*/
.xc-sponsor-one__carousel {
  padding: 40px 0;
  border-bottom: 1px solid var(--xc-border-1);
}
.xc-sponsor-one__carousel.owl-carousel .owl-item img {
  width: unset;
}
.xc-sponsor-one__carousel.owl-carousel .owl-stage-outer {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-sponsor-one__carousel.owl-carousel .owl-stage-outer {
    padding-left: 0;
    padding-right: 40px;
  }
  .xc-sponsor-one__carousel.owl-carousel .owl-stage-outer .item {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.xc-sponsor-two__section .xc-sponsor-one__carousel {
  border: 1px solid var(--xc-border-1);
}

.xc-brand-one__count {
  font-weight: 700;
  /* font-size: 36px; */
  background: linear-gradient(270.27deg, #7AD0BD 25.57%, #407CB5 45.03%, #EF5277 57.97%, #F58244 70.65%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-brand-one__count {
    font-size: 25px;
  }
}

.xc-brand-one__title {
  font-size: 42px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-brand-one__title {
    font-size: 36px;
  }
}

.style-2 .xc-brand-one__title {
  font-size: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .xc-brand-one__item {
    margin-bottom: 30px;
  }
}

.xc-sponsor-two__item {
  background-color: var(--xc-common-white);
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  box-shadow: 0px 0px 250px 0px rgba(78, 67, 250, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
}
.xc-sponsor-two__title {
  font-size: 44px;
  font-weight: 700;
  line-height: 62px;
  margin-bottom: 50px;
}
@media (max-width: 768px) { 
  .xc-sponsor-two__title {
    font-size: 28px; 
    line-height: 40px; 
    margin-bottom: 30px; 
  }
}


/*----------------------------------------*/
/* Gallery css
/*----------------------------------------*/
.xc-gallery-one__item img {
  border-radius: 10px;
}
.xc-gallery-one__filter {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 0 auto;
  text-align: center;
  text-align: center;
  padding-left: 0;
  gap: 10px;
  margin-bottom: 30px;
}
.xc-gallery-one__filter li {
  display: inline-block;
  list-style: none;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-gallery-one__filter li {
    display: block;
  }
}
.xc-gallery-one__filter li .filter-text {
  color: var(--xc-common-black);
  cursor: pointer;
  padding: 5px 25px;
  border-radius: 100px;
  box-shadow: 0px 0px 120px 0px rgba(78, 67, 250, 0.28);
  border: 1px solid var(--xc-theme-primary);
  position: relative;
  background-color: transparent;
  z-index: 1;
  display: inline-block;
  overflow: hidden;
  transition: 0.3s;
}
.xc-gallery-one__filter li .filter-text::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  left: -5px;
  border: 1px solid var(--xc-theme-primary);
  display: inline-block;
  background-color: var(--xc-theme-primary);
  border-radius: 100px;
  z-index: -1;
  transition: 0.3s;
}
.xc-gallery-one__filter li:hover .filter-text {
  color: var(--xc-common-white);
}
.xc-gallery-one__filter li:hover .filter-text::before {
  width: 120%;
}
.xc-gallery-one__filter li.active .filter-text {
  background-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
}
.xc-gallery-one__filter li + li {
  margin-left: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-gallery-one__filter li + li {
    margin-left: 0;
  }
}

/*----------------------------------------*/
/* Histroy css
/*----------------------------------------*/
.xc-about-history__item {
  padding: 50px 40px;
  margin-bottom: 30px;
  border-radius: 10px;
  border: 1px solid #CAC6FD;
  position: relative;
}
.xc-about-history__item .shape {
  position: absolute;
  right: 20%;
  top: 40px;
  animation: xc-moveY 5s infinite;
}
.xc-about-history__imgs {
  display: flex;
}
.xc-about-history__imgs img {
  border-radius: 110px;
}
.xc-about-history__imgs .img-1 {
  margin-right: 20px;
  margin-bottom: 30px;
}
.xc-about-history__imgs .img-2 {
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 110px;
  overflow: hidden;
}
.xc-about-history__date {
  color: var(--xc-theme-primary);
  font-weight: 600;
  margin-bottom: 10px;
  display: inline-block;
}
.xc-about-history__title {
  font-size: 30px;
  margin-bottom: 10px;
}
.xc-about-history__title a {
  background-image: linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary)), linear-gradient(var(--xc-theme-primary), var(--xc-theme-primary));
  display: inline;
  background-size: 0% 3px, 0 3px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.xc-about-history__title a:hover {
  background-size: 0% 3px, 100% 3px;
}
.xc-about-history__info {
  font-size: 16px;
}

/*----------------------------------------*/
/* Team css
/*----------------------------------------*/
.xc-team-one__item {
  border-radius: 10px;
  border: 1px solid #CAC6FD;
  background: #FFF;
  padding: 30px 20px;
  margin-bottom: 30px;
}
.xc-team-one__item:hover .xc-team-one__img img {
  transform: scale(1.1);
}
.xc-team-one__item:hover .xc-team-one__img::after {
  opacity: 0.5;
  width: 100%;
}
.xc-team-one__img {
  position: relative;
  overflow: hidden;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
}
.xc-team-one__img img {
  /* border-radius: 50%; */
  transition: 0.3s;
}
.xc-team-one__img::after {
  position: absolute;
  content: "";
  background-color: rgba(var(--xc-theme-primary-rgb), 0.4);
  top: 0;
  bottom: 0;
  width: 0;
  left: 0;
  opacity: 0;
  z-index: 1;
  transition: 0.3s;
  border-radius: 50%;
}
.xc-team-one__name {
  font-size: 18px;
  margin-top: 20px;
}
.xc-team-one__name a {
  transition: 0.3s;
}
.xc-team-one__name a:hover {
  color: var(--xc-theme-primary);
}
.xc-team-one__bio {
  margin-bottom: 5px;
  display: inline-block;
}
.xc-team-one__social a {
  font-size: 12px;
  transition: 0.3s;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin: 0 5px;
  background-color: var(--xc-theme-primary);
  color: var(--xc-common-white);
  border-radius: 10px;
  border-top-left-radius: 0;
  border-bottom-right-radius: 0;
  display: inline-block;
}
.xc-team-one__social a:hover {
  background-color: var(--xc-common-black);
}

/*----------------------------------------*/
/* Faq css
/*----------------------------------------*/
.xc-accrodion {
  padding: 30px 40px;
  background-color: var(--xc-common-white);
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.14);
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.xc-accrodion::before {
  position: absolute;
  left: 0;
  content: "";
  width: 3px;
  top: 0;
  height: 0;
  transition: 0.5s;
  background-color: var(--xc-theme-primary);
}
.xc-accrodion.active::before {
  height: 100%;
}
.xc-accrodion.active .xc-accrodion-title {
  align-items: flex-start;
}
.xc-accrodion p {
  margin-bottom: 0;
  font-size: 16px;
  margin-left: 72px;
}
@media (max-width: 575px) {
  .xc-accrodion p {
    margin-left: 0;
  }
}

.xc-accrodion-content {
  margin-top: 15px;
}

.xc-accrodion-title {
  display: flex;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
}
@media (max-width: 575px) {
  .xc-accrodion-title {
    flex-wrap: wrap;
  }
}
.xc-accrodion-title .xc-icon {
  color: var(--xc-theme-primary);
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  font-size: 24px;
  background-color: rgba(var(--xc-theme-primary-rgb), 0.2);
  display: inline-block;
  border-radius: 10px;
  margin-right: 30px;
}
@media (max-width: 575px) {
  .xc-accrodion-title .xc-icon {
    margin-bottom: 10px;
  }
}
.xc-accrodion-title h4 {
  position: relative;
  font-size: 24px;
  margin-bottom: 0px;
  line-height: 1.3;
}

.xc-faq-one__img {
  background: linear-gradient(135.24deg, #FBB6B4 1.75%, #9894DC 90.31%);
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding-top: 70px;
  padding-left: 74px;
  padding-bottom: 84px;
  margin-left: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), (max-width: 575px) {
  .xc-faq-one__img {
    margin-left: 0;
    padding: 30px;
    padding-right: 0;
  }
}

.xc-accrodion.active .xc-accrodion-title h4 {
  color: var(--xc-theme-primary);
}

.xc-faq-two__section .xc-accrodion {
  border: 1px solid #CAC6FD;
  border-radius: 10px;
  box-shadow: none;
}
.xc-faq-two__section .xc-accrodion.active::before {
  height: 0;
}

.xc-accrodion.active .xc-accrodion-title {
  cursor: unset;
}

.xc-faq-three__wrapper {
  border-radius: 10px;
  border: 1px solid #CAC6FD;
  padding-top: 55px;
  padding-left: 30px;
  padding-bottom: 30px;
  padding-right: 55px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-faq-three__wrapper {
    padding-right: 30px;
  }
}
.xc-faq-three__left {
  position: relative;
}
.xc-faq-three__shapes .shape-1 {
  position: absolute;
  top: 50px;
  left: 0px;
  animation: xc-moveY 9s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-faq-three__shapes .shape-1 img {
    transform: scale(0.5);
  }
}
.xc-faq-three__shapes .shape-2 {
  position: absolute;
  top: -50px;
  right: 150px;
  animation: xc-moveX 8s infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-faq-three__shapes .shape-2 {
    right: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .xc-faq-three__shapes .shape-2 img {
    transform: scale(0.5);
  }
}

/*----------------------------------------*/
/* Contact css
/*----------------------------------------*/
.xc-google-map__one {
  width: 100%;
  height: 500px;
}

.xc-contact-page__input-box {
  margin-bottom: 30px;
}
.xc-contact-page__input-box input {
  border-radius: 3px;
  border: 1px solid #D2D2D2;
  background: var(--xc-common-white);
}
.xc-contact-page__input-box textarea {
  min-height: 170px;
  border-radius: 3px;
  border: 1px solid #D2D2D2;
  background: var(--xc-common-white);
}
.xc-contact-page__input-box button {
  padding-left: 30px;
  padding-right: 30px;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .xc-contact-img img {
    width: 100%;
  }
}

/*----------------------------------------*/
/*  ECOMMERCE CSS START
/*----------------------------------------*/
body.xc-dark-mode {
  background-color: RGBA(17, 24, 43, var(--bs-bg-opacity, 1)) !important;
  color: #8ca9d3;
}
body.xc-dark-mode .xc-disabled-dark {
  display: none;
}
body.xc-dark-mode .xc-enable-dark {
  display: inline-block;
}

.xc-dark-mode p {
  color: #8ca9d3;
}
.xc-dark-mode h1,
.xc-dark-mode h2,
.xc-dark-mode h3,
.xc-dark-mode h4,
.xc-dark-mode h5,
.xc-dark-mode h6 {
  color: var(--xc-common-white);
}
.xc-dark-mode .bg-white {
  background-color: #181d2d !important;
}
.xc-dark-mode blockquote {
  background: #181d2d !important;
}
.xc-dark-mode blockquote cite {
  color: #8ca9d3;
}
.xc-dark-mode .xc-border-btn {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-black-btn {
  background-color: var(--xc-theme-primary);
}
.xc-dark-mode .xc-black-btn:hover {
  background-color: var(--xc-theme-secondary);
}
.xc-dark-mode .xc-contact-page__input-box input,
.xc-dark-mode .xc-contact-page__input-box textarea,
.xc-dark-mode .xc-postbox__comment-input input,
.xc-dark-mode .xc-postbox__comment-input textarea {
  background: #181d2d !important;
  color: #8ca9d3;
}

.xc-dark-mode .xc-header-one__header {
  background-color: RGBA(17, 24, 43, var(--bs-bg-opacity, 1)) !important;
}
.xc-dark-mode .xc-header-transparen.xc-white .xc-header-one__main-wrapper {
  background-color: RGBA(17, 24, 43, var(--bs-bg-opacity, 1)) !important;
}
.xc-dark-mode .main-menu ul li a {
  color: var(--xc-common-white);
}
.xc-dark-mode .main-menu ul li .submenu li a {
  color: var(--xc-common-white);
}
.xc-dark-mode .main-menu ul li.menu-item-has-children > a::after,
.xc-dark-mode .main-menu ul li.has-dropdown > a::after {
  color: var(--xc-common-white);
}
.xc-dark-mode div.main-menu ul li.current a::after {
  color: var(--xc-theme-primary);
}
.xc-dark-mode .xc-header-sticky {
  background-color: RGBA(17, 24, 43, var(--bs-bg-opacity, 1)) !important;
}
.xc-dark-mode .xc-btn {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-black-btn {
  color: var(--xc-common-black);
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-black-btn:hover {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-border-btn:hover {
  color: var(--xc-common-white);
}
.xc-dark-mode .main-menu ul li .submenu {
  background: RGBA(17, 24, 43, var(--bs-bg-opacity, 1)) !important;
}
.xc-dark-mode .xc-header-one__top p {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-brand-one__item {
  text-align: center;
  padding: 30px;
  border-radius: 10px;
}
.xc-dark-mode .xc-testimonial-one__item {
  background-color: #181d2d;
}
.xc-dark-mode .xc-service-one__box.xc-featured .xc-btn {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-price-one__item {
  background-color: #181d2d;
}
.xc-dark-mode .xc-price-one__item.featured .xc-price-one__banner p {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-price-one__item.featured .xc-price-one__btn a {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-price-one__btn a {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-accrodion {
  background-color: #181d2d;
}
.xc-dark-mode .xc-postbox__item.xc-grid {
  background-color: #181d2d;
  border-color: #181d2d;
}
.xc-dark-mode .footer-bg-2, .xc-dark-mode .theme-bg-7, .xc-dark-mode .theme-bg, .xc-dark-mode .theme-bg-4, .xc-dark-mode .theme-bg-3, .xc-dark-mode .theme-bg-2 {
  background-color: #181d2d;
}
.xc-dark-mode .xc-header-transparen, .xc-dark-mode .theme-bg-3 {
  background-color: transparent;
}
.xc-dark-mode .xc-funfact-one__img {
  background-color: rgb(7, 19, 33);
}
.xc-dark-mode .theme-bg-5, .xc-dark-mode .xc-service-three__item, .xc-dark-mode .xc-feature-five__item, .xc-dark-mode .xc-header-banner-2__section {
  background: RGBA(14, 20, 36, var(--bs-bg-opacity, 1)) !important;
}
.xc-dark-mode .xc-service-three__item {
  background-image: none !important;
  background-color: RGBA(14, 20, 36, var(--bs-bg-opacity, 1)) !important;
}
.xc-dark-mode .xc-header-banner-three__section, .xc-dark-mode .xc-header-banner__section, .xc-dark-mode .xc-service-two__section {
  background: none !important;
}
.xc-dark-mode .xc-header-banner__two-shape {
  opacity: 0.1;
}
.xc-dark-mode .xc-service-one__box.xc-featured {
  background-color: #181d2d;
}
.xc-dark-mode .xc-team-one__item, .xc-dark-mode .xc-service-two__item, .xc-dark-mode .xc-service-one__box {
  background-color: #181d2d;
}
.xc-dark-mode .xc-price-one__tab-nav .xc-price-tab-slide {
  background-color: #181d2d;
}
.xc-dark-mode .xc-price-one__tab-nav .nav-link {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-price-one__tab-nav .xc-price-tab-slide i {
  background-color: RGBA(17, 24, 43, var(--bs-bg-opacity, 1)) !important;
}
.xc-dark-mode .xc-cta-one__tagline {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-service-one__box.xc-featured .xc-service-one__title a {
  color: var(--xc-common-white);
  background-image: linear-gradient(#8ca9d3, #8ca9d3), linear-gradient(#8ca9d3, #8ca9d3);
}
.xc-dark-mode .xc-service-one__box.xc-featured .xc-service-one__title a:hover {
  color: var(--xc-theme-primary);
}
.xc-dark-mode .xc-service-one__box.xc-featured .xc-service-one__icon {
  padding-bottom: 10px;
}
.xc-dark-mode .xc-about-one__feature-list p a {
  color: #8ca9d3;
}
.xc-dark-mode .xc-about-one__feature-list p a:hover {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-cta-one__checklist span {
  color: #8ca9d3;
}
.xc-dark-mode .xc-header-banner__video a {
  background-color: var(--xc-common-black);
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-gallery-one__filter li .filter-text {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-service-details__right {
  background-color: transparent;
}
.xc-dark-mode .xc-breadcrumb__list {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-breadcrumb__list .dvdr {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-breadcrumb__list a {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-breadcrumb__list a:hover {
  color: var(--xc-theme-primary);
}
.xc-dark-mode .xc-postbox__comment-box, .xc-dark-mode .xc-sidebar__wrapper, .xc-dark-mode .xc-cta-four__box {
  background-color: #181d2d;
}
.xc-dark-mode .xc-google-map__one {
  filter: grayscale(1);
}
.xc-dark-mode .tagcloud a, .xc-dark-mode .catscloud a {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-sidebar__widget ul li a {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-sidebar__widget ul li a:hover {
  color: var(--xc-theme-primary);
}
.xc-dark-mode .xc-postbox__comment-agree label, .xc-dark-mode .xc-postbox__tags span, .xc-dark-mode .xc-postbox__cats span {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-about-four__tag a {
  background-color: #181d2d;
}
.xc-dark-mode .xc-header-banner-three__shapes .shape-4 {
  display: none;
}
.xc-dark-mode .xc-sidebar__widget-wrapper .widget_block.xc-sidebar__widget ul li a,
.xc-dark-mode .wp-block-tag-cloud a {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-sidebar__widget-wrapper .widget_block.xc-sidebar__widget ul li a:hover,
.xc-dark-mode .wp-block-tag-cloud a:hover {
  color: var(--xc-common-white) !important;
}
.xc-dark-mode .xc-sidebar__widget-wrapper .widget_block.xc-sidebar__widget ul li a {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-sidebar__widget-wrapper .widget_block.xc-sidebar__widget ul li a:hover {
  color: var(--xc-theme-primary) !important;
}
.xc-dark-mode .xc-postbox__comment-text a {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-cta-four__box,
.xc-dark-mode .xc-service-one__box {
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.01);
}
.xc-dark-mode .xc-cta-four__box:hover,
.xc-dark-mode .xc-service-one__box:hover {
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.36);
}
.xc-dark-mode .xc-postbox__item.xc-grid,
.xc-dark-mode .xc-price-one__item,
.xc-dark-mode .xc-accrodion {
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.01);
}
.xc-dark-mode .xc-header-banner-2__bottom p {
  margin-bottom: 0;
}
.xc-dark-mode .xc-video-btn i {
  background-color: var(--xc-common-white);
  color: var(--xc-theme-primary);
}
.xc-dark-mode .xc-video-btn i:hover {
  color: var(--xc-common-white);
  background-color: var(--xc-theme-primary);
}
.xc-dark-mode .xc-header-transparen .xc-header-one__main {
  background: RGBA(14, 20, 36, var(--bs-bg-opacity, 1)) !important;
}

/* my css */
/* section zero */

.zero button {
  border: none;
  background-color: transparent !important;
  color: #000 !important; /* Default text color */
}
.custom-nav-pills {
  gap: 20px; 
}
#pills-tabContent img {
      max-height: 500px;
      object-fit: contain;
    }
.zero .custom-nav-pills .nav-link.active {
  border-bottom: 3px solid #4b535b; 
  border-radius: 0;
  color: #000000 !important; 
  background-color: transparent !important; 
}
 .custom-nav-pills .nav-link:hover {
  border-radius: 0;
  border-bottom: 1px solid #4b535b; 
}
.how_its_work{
  /* background-color: linear-gradient(135.24deg, #FBB6B4 1.75%, #9894DC 90.31%); */
  background: linear-gradient(135.24deg, #FBB6B4 1.75%, #9894DC 90.31%);
  padding: 5%;
  border-radius: 20px;
}
.xc-faq-one__section button{
  border: none;
  background-color: transparent !important;
  color: #000 !important; 
}
.xc-faq-one__section .how_its_work_ul .nav-link.active {
  border-bottom: 3px solid #4b535b; 
  border-radius: 0;
  color: #000000 !important; 
  background-color: transparent !important; 
}
.how_its_work_ul .nav-link:hover {
  border-radius: 0;
  border-bottom: 1px solid #4b535b; 
}
.circle-span {
  display: inline-block;
  width: 30px; 
  height: 30px; 
  background-color: #000; 
  color: white; 
  text-align: center;
  line-height: 30px; 
  border-radius: 50%; 
  font-size: 15px;
}

@media (max-width: 768px) {
  .how_its_work_ul {
    flex-direction: column; 
    gap: 10px; 
  }

  .nav-link .d-flex {
    flex-direction: row; 
    justify-content: flex-start;
  }

  .circle-span {
    margin-right: 10px; 
  }
}

/* resume tab css */
.upper-content-container .upper-content,
.tab-buttons-container .button-container {
  display: none;
}

.upper-content-container .upper-content.active,
.tab-buttons-container .button-container.active {
  display: block;
}
.tabs-container button{
  border: none;
  background-color: transparent !important;
  color: #000 !important; /* Default text color */
  margin-bottom: 20px;
}
.resume-tab-ul .nav-link:hover {
  border-radius: 0;
  border-bottom: 1px solid #4b535b; 
}
.xc-postbox__area .resume-tab-ul .nav-link.active {
  border-bottom: 3px solid #4b535b; 
  border-radius: 0;
  color: #000000 !important; 
  background-color: transparent !important; 
}
.tab-buttons-container {
  /* background: linear-gradient(135.24deg, #9894DC 1.75%, #FBB6B4 90.31%); */
  background-color: var(--xc-theme-primary);
  padding: 5%;
  border-radius: 20px;
}
.tab-buttons-container button{
  border: 2px solid white;
  color: white;
}

 /* testomonial css */
.xc-brand-one__section p{
  font-size: 18px !important;
}

/* Scrollbar styles for Webkit browsers */
::-webkit-scrollbar {
  width: 12px; 
  height: 12px; 
}

::-webkit-scrollbar-track {
  background: #f2f2f2; 
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--xc-theme-primary);
  border-radius: 6px; 
  border: 3px solid #f2f2f2; 
}

::-webkit-scrollbar-thumb:hover {
  background: var(--xc-theme-primary);
}
.scroller-card {
  position: relative;
}
.xc-about-one__section .card{
  position: sticky;
  top: 500px;
  /* background-color: red; */
}
.xc-cta-one__section .mailto{
  color:var(--xc-theme-primary);
}

@media (max-width: 768px) {
  .xc-header-banner__title {
    font-size: 30px !important;
    line-height: 1.4;
  }

  .xc-header-banner__info {
    font-size: 18px !important;
    line-height: 1.6;
  }

  @media (max-width: 768px) {
  .cd-words-wrapper {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
}
}
.popup-overlay {
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.popup-box {
  background: #fff;
  width: 90%;
  max-width: 600px;
  margin: 100px auto;
  padding: 20px;
  text-align: center;
  position: relative;
  border-radius: 8px;
  animation: fadeIn 0.4s ease-in-out;
}

.popup-close {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 22px;
  cursor: pointer;
}
.popup-btn:hover{
  color: white;
  background-color: var(--xc-theme-primary);
}

.popup-btn {
  display: inline-block;
  margin-top: 15px;
  background: #000;
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
}

.popup-reviews {
  margin-top: 20px;
  display: flex;
  justify-content: space-around;
  font-size: 14px;
}

@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

