
/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/

: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: 26px;
  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: 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
---------------------------------*/

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

.list-unstyled {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.p-relative {
  position: relative;
}

.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;
}

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/

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

/* dropcap */

.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-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%;
}

/* Logo Slider Component */
.xc-brand-one__wrapper {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  background: #fff;
}

.xc-brand-one__slider {
  display: flex;
}

.xc-brand-one__slider-row {
  flex-wrap: nowrap;
  margin: 0;
  width: fit-content;
  margin-right: 60px; /* Double the padding between cols (15px * 2 * 2 = 60px) */
}

.xc-brand-one__slider-row:last-child {
  margin-right: 0;
}

.xc-brand-one__slider-col {
  padding: 0 15px;
  width: 240px;
  flex: 0 0 auto;
}

.xc-brand-one__item {
  padding: 15px;
  text-align: center;
  background: white;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.xc-brand-one__item:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.xc-brand-one__item img,
.xc-brand-one__item svg {
  max-width: 100%;
  height: auto;
}

/* Gradient Overlays */
.xc-brand-one__overlay-left,
.xc-brand-one__overlay-right {
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.xc-brand-one__overlay-left {
  left: 0;
  background: linear-gradient(to right, white 0%, transparent 100%);
}

.xc-brand-one__overlay-right {
  right: 0;
  background: linear-gradient(to left, white 0%, transparent 100%);
}

/* Hover pause */
.xc-brand-one__wrapper:hover .xc-brand-one__slider {
  animation-play-state: paused;
}

/* Responsive styles */
@media (max-width: 991px) {
  .xc-brand-one__slider-col {
    width: 200px;
    padding: 0 12px;
  }
  .xc-brand-one__slider-row {
    margin-right: 48px; /* Double the tablet padding (12px * 2 * 2 = 48px) */
  }
}

@media (max-width: 575px) {
  .xc-brand-one__slider-col {
    width: 160px;
    padding: 0 10px;
  }
  .xc-brand-one__slider-row {
    margin-right: 40px; /* Double the mobile padding (10px * 2 * 2 = 40px) */
  }
}

/*---------------------------------
    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
------------------- -------------------------------------------*/

/*--------------------------------------------------------------
# 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-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;
}

/* 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: 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);
  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-one__btn .xc-btn {
  padding-left: 40px;
  padding-right: 40px;
}

/*--------------------------------------------------------------
# Animations
------------------- -------------------------------------------*/

@-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);
  }
}
/* 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);
  }
}
@keyframes discountBadgePulse {
    0% {
       box-shadow: 0 0 0 0 rgba(var(--xc-theme-primary-rgb), 0.4);
     }
     70% {
       box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
     }
     100% {
       box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
     }
}
@keyframes xc-title {
  from {
    right: 90%;
  }
  to {
    right: 0;
  }
}
@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}
@keyframes shine {
  100% {
    left: 125%;
  }
}
/* heartbeat animation */
@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);
  }
}
@-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;
}

/*--------------------------------------------------------------
# PreLoader
------------------- -------------------------------------------*/
/*--------------------------------------------------------------
# Background 
------------------- -------------------------------------------*/

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

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

.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 swiper slider dot */

/* 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
------------------- -------------------------------------------*/

/*--------------------------------------------------------------
# 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__title {
  color: var(--xc-common-black);
  font-size: 48px;
}
.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
------------------- -------------------------------------------*/

/*--------------------------------------------------------------
# Tab
------------------- -------------------------------------------*/

/*--------------------------------------------------------------
# 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: 38px;
  }
}

.xc-section__title-wrapper p {
  font-size: 18px;
}
@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
------------------- -------------------------------------------*/

/*----------------------------------------*/
/*  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(/static/img/icons/cross-out-eebeaecdb5382446e8e017e6e400b92c.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(/static/img/icons/cross-out-eebeaecdb5382446e8e017e6e400b92c.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;
}

@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__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;
  }
}

/* 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__logo::after {
  top: 0;
  bottom: 0;
}

/* 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 span {
  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.has-dropdown > a {
  position: relative;
}
 .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: -120%;
  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;
  border-top: 2px solid var(--xc-theme-primary);
  pointer-events: none;
  list-style-type: none;
}
.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
  transition: 0.3s;
  margin-bottom: 0.25rem;
}
 .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 20px 10px 50px;
  font-size: 13px;
  position: relative;
  color: var(--xc-common-black);
  width: 100%;
  transition: 0.3s;
  text-transform: none;
  display: flex;
  align-items: center;
}
.main-menu ul li .submenu li a::before {
  display: none;
}
.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;*/
/*}*/

.submenu-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 1190px) {
  .submenu-icon {
    left: 0;
    width: 24px;
    height: 24px;

  }
}

.main-menu ul li .submenu li a {
  border-top: 0 !important;
  font-size: 14px !important;
}

.main-menu ul li .submenu li a span {
  padding: 0 10px !important;
  left: 40px !important;
}

.main-menu ul li .submenu li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.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__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__area figure {
    background-color: #f1f3f5;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 15px;
    margin: 40px 0 28px 0;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.xc-postbox__area figure img {
    border-radius: 4px;
}

.xc-postbox__text img {
  max-width: 100%;
}
.xc-postbox__text p {
  font-size:18px;
  margin-bottom: 20px;
}
.xc-postbox__text li {
  font-size:18px;
  margin-bottom: 8px;
}
.xc-postbox__text a {
  color:#7d35f2 ;
  text-decoration: none;
}
.xc-postbox__text h3 {
  margin-top:15px;
}
.xc-postbox__text a:hover {
    text-decoration: underline;
    color:#2563eb;
}
.xc-postbox__text {
    & h3{
          @media (max-width: 480px) {
              font-size:24px;
          }
      }
      & h4{
            @media (max-width: 480px) {
                font-size:20px;
            }
        }
}
.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;
}

/*----------------------------------------*/
/* 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("/static/img/shapes/sidebar-title-23910b944a8cc61eb2031542c4784291.png");
  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: 30px;
}
@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: 10px;
}

.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);
}

.xc-footer__divider {
    border-color: #333;
    opacity: 0.5;
    height: 4px;

}

.style-4 .xc-footer__divider {
    border-color: #fff;
    opacity: 0.5;
    height: 4px;
}
.xc-footer__logo-normal {
    display: inline-block;
}

.xc-footer__logo-style4 {
    display: none;
}

/* When in style-4 footer, hide normal logo and show style-4 logo */
.style-4 .xc-footer__logo-normal {
    display: none;
}

.style-4 .xc-footer__logo-style4 {
    display: inline-block;
}

.xc-footer__widget-title .dropdown-toggle[aria-expanded="true"] {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.xc-footer__widget-title .dropdown-toggle {
  transition: transform 0.3s ease;
}
/*----------------------------------------*/
/* Slider css
/*----------------------------------------*/

/*----------------------------------------*/
/* 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-page__img img {
  border-radius: 20px;
}

/*----------------------------------------*/
/* Service css
/*----------------------------------------*/

.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;
  }
}

/*----------------------------------------*/
/* Banner css
/*----------------------------------------*/
.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-three__section {
  background: linear-gradient(180deg, #F1F4FB 0%, rgba(255, 255, 255, 0) 100%);
  padding-top: 236px;
  position: relative;
}

@media (max-width: 768px) {
  .xc-header-banner-three__section {
    padding-top: 106px;
  }
}

.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: #9575cd;
  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);
}

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

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;
}

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

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
/*----------------------------------------*/

/*----------------------------------------*/
/* Video css
/*----------------------------------------*/

/*----------------------------------------*/
/* 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-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
/*----------------------------------------*/

/*----------------------------------------*/
/* 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__item {
  background-color: var(--xc-common-white);
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.14);
  border-radius: 10px;
  padding: 40px 35px 50px;
  margin-bottom: 30px;
  border: 1px solid transparent;
  transition: 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.xc-price-one__item.featured {
  position: relative;
  border: 2px solid #7776FF;
}
.xc-price-one__item.featured.glow-effect {
  animation: glow 2s infinite alternate;
}
@keyframes glow {
  from {
    box-shadow: 0 0 10px rgba(119, 118, 255, 0.2);
  }
  to {
    box-shadow: 0 0 20px rgba(119, 118, 255, 0.4);
  }
}
.xc-price-one__item:hover {
  border-color: var(--xc-theme-primary);
}
.xc-price-one__head {
  padding-bottom: 35px;
  margin-bottom: 25px;
  border-bottom: 1px solid #CDD3E0;
  flex-grow: 1;
}
.xc-price-one__package {
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 30px;
  color: var(--xc-grey-1);
}

.xc-price__container {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 16px 0;
}

.xc-price__original-price {
  color: #6B7280;
  text-decoration: line-through;
  margin: 0;
  font-size: 20px
}

.xc-price-one__price {
  font-weight: 700;
  font-size: 60px;
  color: var(--xc-common-black);
  margin-bottom: 10px;
}
.xc-price-one__price span {
  font-weight: 400;
  font-size: 24px;
  color: var(--xc-grey-1);
}
.discount-badge {
  background: #FFE5E5;
  color: #FF4444;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 14px;
  margin-left: 8px;
  font-weight: 600;
}
.xc-price-one__list {
  flex-shrink: 0;
  width: calc(100% + 4px);
  margin-right: -2px;
  margin-left: -2px;
}
.xc-price-one__list p {
  color: var(--xc-common-black);
  margin-bottom: 15px;
}
.xc-price-one__list i {
  color: #3CCB7F;
  margin-right: 10px;
}
.xc-price-one__btn {
  margin-top: 25px;
}
.xc-price-one__btn a {
  width: 100%;
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: 5px;
  font-weight: 700;
  transition: 0.3s;
}
.xc-price-one__btn .light-btn {
  background-color: rgba(119, 118, 255, 0.1);
  color: #7776FF;
}
.xc-price-one__btn .light-btn:hover {
  background-color: #7776FF;
  color: white;
}
.xc-price-one__btn .gradient-btn {
  background: linear-gradient(90deg, rgba(119,118,255,1) 3%, rgba(111,105,191,1) 50%, rgba(174,44,241,1) 100%);
  color: white;
}
.xc-price-one__btn .gradient-btn:hover {
  opacity: 0.9;
}

.offer-countdown {
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.offer-countdown-content {
  background: rgba(253, 197, 24, 1);
  border-radius: 50px;
  gap: 10px
}
.offer-countdown-timer {
  background: white;
  border-radius: 50px;
  width: 240px;
  text-align: center;
}

@media (max-width: 576px) {
  .offer-countdown-content {
    flex-direction: column;
    padding: 12px !important;
    text-align: center;
    border-radius: 12px;
  }

  .offer-countdown-timer {
    margin-top: 8px;
    min-width: 150px;
  }

  h4 {
    font-size: 16px;
    margin: 0;
  }
}



/*----------------------------------------*/
/* Testimonial css
/*----------------------------------------*/
.xc-testimonial-one__item {
  background-color: #F3F5F8;
  padding: 36px;
  padding-bottom: 20px;
  border-radius: 10px;
}
.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__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;
  }
}

/*----------------------------------------*/
/* Sponsor css
/*----------------------------------------*/

/*----------------------------------------*/
/* Gallery css
/*----------------------------------------*/

/*----------------------------------------*/
/* 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;
}

/*----------------------------------------*/
/* 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: 146px;
  height: 146px;
  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-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;
}

/*----------------------------------------*/
/* Contact css
/*----------------------------------------*/

.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;
}

/*----------------------------------------*/
/*  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-contact-page__input-box input,
.xc-dark-mode .xc-contact-page__input-box 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 .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.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-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-price-one__item {
  background-color: #181d2d;
}
.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 .theme-bg-7, .xc-dark-mode .theme-bg, .xc-dark-mode .theme-bg-2 {
  background-color: #181d2d;
}
.xc-dark-mode .xc-header-transparen {
  background-color: transparent;
}
.xc-dark-mode .theme-bg-5, .xc-dark-mode .xc-service-three__item {
  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 {
  background: none !important;
}
.xc-dark-mode .xc-team-one__item {
  background-color: #181d2d;
}
.discount-badge {
  background-color: rgb(233, 182, 17);
  color: white;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 0.7em;
  font-weight: bold;
  margin-left: 8px;
  display: inline-block;
  transform: rotate(-3deg);
  animation: discountBadgePulse 2s infinite;
}

.xc-dark-mode .xc-cta-one__tagline {
  color: var(--xc-common-white);
}
.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-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-sidebar__wrapper, .xc-dark-mode .xc-cta-four__box {
  background-color: #181d2d;
}
.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__tags span, .xc-dark-mode .xc-postbox__cats span {
  color: var(--xc-common-white);
}
.xc-dark-mode .xc-header-banner-three__shapes .shape-4 {
  display: none;
}
.xc-dark-mode .xc-cta-four__box {
  box-shadow: 0px 0px 250px rgba(78, 67, 250, 0.01);
}
.xc-dark-mode .xc-cta-four__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-transparen .xc-header-one__main {
  background: RGBA(14, 20, 36, var(--bs-bg-opacity, 1)) !important;
}

@media (max-width: 991px) {
  .xc-breadcrumb__area {
    padding-top: 150px;
  }

  .xc-postbox__area.xc-postbox__single {
    padding-top: 60px;
  }
}

@media (max-width: 768px) {
  .xc-breadcrumb__area {
    padding-top: 120px;
  }

  .xc-postbox__area.xc-postbox__single {
    padding-top: 40px;
  }
}

/* Styling for the pricing pills */
.nav-pills {
  display: inline-flex;
  padding: 4px;
  background-color: #f3f4f6;
  border-radius: 999px;
  margin-bottom: 40px;
}

.nav-pills .nav-link {
  border-radius: 999px;
  padding: 8px 24px;
  color: #4B5563;
  font-weight: 500;
  border: none;
}

.nav-pills .nav-link.active {
  background-color: #4E43FA;
  color: white;
}

/* Tooltip styles */

.featured {
  position: relative;
}

/* Add animation for the Most Popular badge */

.fa-circle-info {
  cursor: help;
  margin-left: 4px;
  font-size: 14px;
  position: relative;
}

.fa-circle-info::after {
  content: attr(data-tooltip);
  position: absolute;
  background: #333;
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  width: 200px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 1;
  font-family: sans-serif;
  font-weight: normal;
  white-space: normal;
  line-height: 1.4;
}

.fa-circle-info:hover::after {
  visibility: visible;
  opacity: 1;
}
/**** start of styling for referral page */
/* Base section styling */
.ref {
  padding: 0;
}

/* Typography */
.ref .xc-section__subtitle {
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
  color: #6c5ce7;
}

.ref .sm-title {
  font-size: 2rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.ref h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 1.5rem;
}

/* Base text styles */
.ref p,
.ref li,
.ref a {
  font-size: 16px;
  line-height: 1.6;
}

/* Spacing utilities */
.ref .mb-30 { margin-bottom: 1.875rem; }
.ref .mb-40 { margin-bottom: 2.5rem; }
.ref .mt-8 { margin-top: 2rem; }
.ref .mt-15 { margin-top: 3rem; }
.ref .mt-20 { margin-top: 1.25rem; }
.ref .pb-70 { padding-bottom: 4.375rem; }

/* Participation steps */

/* Social items */
.ref .social-item {
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 0.75rem;
}

.ref .social-item p {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0;
}

.ref .social-item a {
  text-decoration:none;

}

.ref .social-item:hover {
  background-color: rgba(108, 92, 231, 0.05);
  transform: translateX(5px);
}

/* Icon styling */
.ref .xc-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
}

.ref .xc-icon i {
  font-size: 12px;
  color: #6c5ce7;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #f7fafc;
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: all 0.2s ease-in-out;
}

.icon-wrapper i {
  font-size: 24px;
  color: #6c5ce7;
  transition: all 0.2s ease-in-out;
}

.platform-name {
  font-size: 1rem;
  font-weight: 500;
  color: #4a5568;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {

  .icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .icon-wrapper i {
    font-size: 20px;
  }
}
/* CTA Button */
.ref .claim-credits-btn-square {
  background: linear-gradient(to right, #6c5ce7, #8e44ad);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 500;
  padding: 12px 24px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(108, 92, 231, 0.2);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.ref .claim-credits-btn-square:hover {
  background: linear-gradient(to right, #8e44ad, #6c5ce7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(108, 92, 231, 0.3);
  color: white;
}

/* Benefit cards */
.ref .benefit-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(108, 92, 231, 0.1);
  position: relative;
  overflow: hidden;
}

.ref .benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #6c5ce7, #8e44ad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.ref .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(108, 92, 231, 0.12);
}

.ref .benefit-card:hover::before {
  transform: scaleX(1);
}

.ref .benefit-icon {
  width: 64px;
  height: 64px;
  background: rgba(108, 92, 231, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.ref .benefit-icon i {
  font-size: 24px;
  color: #6c5ce7;
}

/* Social connect section */

/* Make icons more prominent */

/* Responsive Styles */
@media (max-width: 768px) {
  .ref {
    padding: 3rem 0;
  }

  .ref .sm-title {
    font-size: 1.5rem;
  }

  .ref h4 {
    font-size: 1.125rem;
  }

  .ref p,
  .ref li,
  .ref a {
    font-size: 14px;
  }

  .ref .xc-icon {
    width: 20px;
    height: 20px;
  }

  .ref .benefit-icon {
    width: 48px;
    height: 48px;
  }

  .ref .claim-credits-btn-square {
    padding: 10px 20px;
  }

  /* Adjusted spacing for mobile */
  .ref .mt-8 { margin-top: 1.5rem; }
  .ref .mt-15 { margin-top: 2rem; }
  .ref .mb-30 { margin-bottom: 1.5rem; }
  .ref .mb-40 { margin-bottom: 2rem; }
}


.ref .xc-section__subtitle {
  font-size: 1.125rem;  /* Assuming it's around 18px */
  color: #6B47ED;  /* Using your brand purple color */
  margin-bottom: 0.5rem;
}

.ref.xc-about-six__section {
  margin-bottom: 100px;
    /* Adjusted bottom margin */
}

/* Adjust content wrapper spacing */
.xc-section__title-wrapper {
  margin-bottom: 25px;  /* Reduced bottom margin */
}

/* Benefits section spacing */
.why-share-wrapper {
  padding-top: 20px;  /* Added top padding */
}



@media (max-width: 768px) {
  .ref.xc-about-six__section {
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .ref .benefit-card {
    padding: 1.25rem;
  }

   .ref .claim-credits-btn-square {
    margin-bottom: 1rem;
   }

  .ref.xc-about-six__section {
      padding-bottom: 20px;
      margin-bottom: 0px;
   }

}

.ref .social-icon-wrapper {
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.ref .social-icon-wrapper:hover {
  transform: scale(1.1);
  background-color: #f8f9fa;
}

.ref .social-icon-wrapper svg {
  transition: all 0.3s ease;
}

.ref a:hover .text-muted {
  color: #212529 !important;
  transition: color 0.3s ease;
}

.recommended-platforms {
  margin: 2rem 0;
  border-radius: 1rem;
}

.platform-icon-wrapper {
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  background-color: #f8f9fa;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.platform-icon-wrapper:hover {
  background-color: #f8f9fa !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.platform-icon-wrapper svg {
  transition: transform 0.2s ease-in-out;
   width: 28px;
   height: 28px;
}

.platform-icon-wrapper:hover svg {
  transform: scale(1.1);
}


.recommended-platforms .row {
    background-color: #ffffff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .recommended-platforms .row {
    gap: 1.5rem;
  }

  .platform-icon-wrapper {
    padding: 0.75rem !important;
  }

  .platform-icon-wrapper svg {
    width: 20px;
    height: 20px;
  }
}

.ref .hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
    background-color: #ffffff;
}

/**** end of styling for referral page */


/**** start of styling for webinar page */

.webinar-hero {
    position: relative;
    padding: 2rem 0 1rem 0;
    text-align: center;
    background: transparent;
    z-index: 1;
}

.webinar-hero .row,
.webinar-section .row {
    display: flex;
}

.webinar-hero .row {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
    gap: 1rem;
}

.webinar-section .row {
    margin: 0 -20px;
}

.webinar-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2D2D2D;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.webinar-hero__description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.4rem;
    color: #5c1dba;
    line-height: 1.8;
    font-weight: 500;
}

.webinar-hero__description::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 5px;
    background: linear-gradient(90deg, rgba(119,118,255,1) 3%, rgba(111,105,191,1) 50%, rgba(174,44,241,1) 100%);
    border-radius: 4px;
}

.webinar-section__title {
    margin-top: 1.5rem;
    font-size: 2rem;
    text-align: left;
    color: #421083;
    font-weight: 600;
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.title-arrow {
    width: 24px;
    height: 24px;
    fill: #7C3AED;
    animation: bounceRight 2s infinite;
}

@keyframes bounceRight {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(5px);
    }
}

.webinar-section .col-md-6 {
    padding: 0 20px;
    margin-bottom: 80px;
}

.webinar-card {
    background: #f9f7ff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.webinar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.webinar-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    padding: 1.25rem;
    border-radius: 24px;
    transition: border-radius 0.3s ease, background-color 0.3s ease;
}

.webinar-card:hover .webinar-card__image {
    border-radius: 20px;
}

.webinar-card__body {
    padding: 0.25rem 1.75rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.webinar-card__profile {
    display: flex;
     align-items: flex-start;  /* Changed from center to flex-start */
        gap: 1rem;  /* Using gap instead of margin-right */
    margin-bottom: 1.25rem;
}

.webinar-card__avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e8deff;
    margin-right: 1rem;
}



.webinar-card__profile-content {
    flex: 1;
}

.webinar-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    font-weight: 600;
    color: #421083;
    line-height: 1.4;
}

.webinar-card__date {
    color: #6c757d;
    font-size: 0.9rem;
    margin: 0 0 0.25rem 0;
    line-height: 1.3;
}

.webinar-card__name {
    font-weight: 500;
    color: #2d2d2d;
    font-size: 0.9rem;
    margin: 0 0 0.25rem 0;
}

.webinar-card__tags {
    margin-bottom: 1.25rem;
}

.webinar-tag {
    display: inline-block;
    background-color: #f5f1ff;
    color: #5c1dba;
    font-size: 0.85rem;
    padding: 0.35rem 0.85rem;
    border-radius: 1rem;
    margin-right: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.webinar-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
}

.webinar-btn--primary {
    background-color: #7d35f2;
    color: white;
    border: none;
}


.webinar-btn--primary:hover,
.webinar-btn--primary:visited,
.webinar-btn--primary:active {
    background-color: #6c21dc;
    color: white !important;
    text-decoration: none;
}

.webinar-btn--primary:disabled,
.webinar-btn--primary.disabled {
    background-color: #b794f9;  /* Lighter purple for disabled state */
    color: #e2e2e2;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

@media (max-width: 768px) {
    .webinar-hero {
        padding: 2rem 0;
    }

    .webinar-hero__title {
        font-size: 2.75rem;
        margin-bottom: 1rem;
    }

    .webinar-hero__description {
        font-size: 1.125rem;
    }

    .webinar-section {
        padding: 3rem 0;
    }

    .webinar-section__title {
        font-size: 2rem;
        margin-bottom: 2.5rem;
    }

    .webinar-section .col-md-6 {
        margin-bottom: 30px;
    }

    .webinar-card__body {
        padding: 1.25rem;
    }
}

@media (max-width: 480px) {
    .webinar-hero {
        padding: 2rem 0;
    }

    .webinar-hero__title {
        font-size: 2.25rem;
    }

    .webinar-hero__description {
        font-size: 1rem;
    }

    .webinar-section__title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
}

.youtube-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all 0.3s ease;
    transform-origin: center;
    transform: translate(-50%, -50%) scale(1.3);
}

.play-button-bg {
    position: absolute;
    width: 75px;
    height: 52px;
    background-color: #FF0000;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.youtube-play-button i {
    position: relative;
    color: white;
    font-size: 22px;
    z-index: 1;
    padding: 15px 28px;
}

.youtube-play-button:hover .play-button-bg {
    background-color: #cc0000;
}

/**** end of styling for webinar page */

/**** start of styling for home page tool section*/

.ai-tools-section {
  padding-bottom: 80px;
  max-width: 1200px;
  font-family: var(--xc-ff-heading);
}
.tool-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px;
  transition: all 0.3s;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  background-color: #f9fafb;
}
.icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
  flex-shrink: 0;
  line-height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
.tool-title {
  font-weight: 600;
  color: #4B5563;
  font-size: 1rem;
}
.tool-link {
  text-decoration: none;
}

.tool-container:last-child:nth-child(3n-2) {
  margin-left: auto;
  margin-right: auto;
}

/**** end of styling for home page tool section*/

/** referal page styling */
.platform-bubble {
  background-color: #f8f9fa;
  border-radius: 20px;
  padding: 20px 10px;
  transition: all 0.3s ease;
  height: 100%;
  width: 100%;
}

.platform-bubble:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.platform-icon-wrapper {
  background-color: white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}

.platform-name {
  font-weight: 500;
  color: #343a40;
  font-size: 0.9rem;
  margin-top: 5px;
}

.credits-badge .badge {
  background-color: #28a745;
  color: white;
  font-weight: 500;
  font-size: 0.8rem;
}

.download-card {
    border: none;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    background: white;
    overflow: hidden;
    height: 100%;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px; /* Increased from 20px to 24px for better spacing */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.download-btn {
    background-color: #e8e8e8;
    border: none;
    border-radius: 12px;
    padding: 12px 24px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.download-btn:hover {
    background-color: #ddd;
    color: #333;
    text-decoration: none;
    transform: translateY(-2px);
}
/* end of referal page styling */
