/* 1.1 typography */
@import url('css2.css');

body {
  line-height: 31px;
  font-family: var(--font2);
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  font-size: 17px;
  background-color: #000000;
  overflow-x: hidden;
}

:root {
  --brand: #7b1fa2;
  --brand2: #673ab7;
  --brand3: #a53c3b;
  --brand4: #4ad5f0;
  --font1: 'Jost', sans-serif;
	/* --font2: 'Comfortaa', cursive; */
  --font2: 'Microsoft YaHei';
}


p,
.paragraph {
  font-weight: 300;
  color: #ffffff;
  font-size: 17px;
  line-height: 31px;
  font-family: var(--font2);
}

ol,
ul {
  list-style-type: none;
  margin: 0px;
  padding: 0px;
}

img {
  vertical-align: middle;
  border: 0;
}

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

a,
button,
select {
  cursor: pointer;
  transition: .2s ease;
}

a:focus,
button:focus,
select:focus {
  outline: 0;
}

a:hover {
  color: #008dec;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  color: #ffffff;
  font-family: var(--font1);
  font-weight: 600;
  line-height: 1.5;
}

.slick-slide {
  outline: 0;
}

h1,
.h1 {
  font-size: 56px;
}

h2,
.h2 {
  font-size: 43px;
}

h3,
.h3 {
  font-size: 37px;
}

h4,
.h4 {
  font-size: 22px;
}

h5,
.h5 {
  font-size: 16px;
}

h6,
.h6 {
  font-size: 13px;
}

/* /////////////////////////////////////////////////
                common css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                scrollbar css start
///////////////////////////////////////////////// */
html::-webkit-scrollbar {
  width: 1.30vw;
}

html::-webkit-scrollbar-thumb {
  background-color: var(--brand2);
}

html::-webkit-scrollbar-thumb:hover {
  background-color: var(--brand2);
}

html::-webkit-scrollbar-track {
  background-color: #000000;
}

html::-webkit-scrollbar-track:hover {
  background-color: #000000;
}

/* blink based browser */

/* geckeo based browser */
html {
  /* scrollbar-width: bold; */
  scrollbar-color: var(--brand2) #000000;
}

/* /////////////////////////////////////////////////
                scrollbar css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                button css start
///////////////////////////////////////////////// */
.btn {
  font-size: 18px;
  text-transform: capitalize;
  padding: 15px 30px;
  font-weight: 400;
  border: 0;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  transition: .2s ease;
}

.btn:focus {
  outline: 0;
  box-shadow: none !important;
}

.btn:active {
  box-shadow: none;
}

.btn-primary {
  background-image: linear-gradient(59deg, var(--brand4)0%, var(--brand2)95%);
  color: #fff;
  transition: background 1s ease-out;
}

.btn-primary:active {
  background: linear-gradient(59deg, var(--brand2) 0%, var(--brand4) 95%) !important;
}

.btn-primary:hover {
  background: linear-gradient(59deg, var(--brand2) 0%, var(--brand4) 95%) !important;
  color: #ffffff;
}

.btn-secondary {
  background-image: linear-gradient(6deg, #17ffd3 0%, #23e3ee 100%);
  background-color: transparent;
  color: #091337;
}

.btn-secondary:active {
  background: linear-gradient(6deg, #17ffd3 0%, #23e3ee 100%) !important;
}

.btn-secondary:hover {
  background: linear-gradient(186deg, #17ffd3 0%, #23e3ee 100%);
  color: #091337;
}

.btn-lg {
  padding: 15px 85px;
}


/* button style one */
.btnstyle {
  position: relative;
  top: 0;
  left: 0;
  width: 250px;
  height: 50px;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  display: inline-block;
}

.btnstyle a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--brand2);
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 10px;
  letter-spacing: 1px;
  text-decoration: none;
  overflow: hidden;
  color: #fff;
  font-weight: 400;
  z-index: 1;
  transition: 0.5s;
  backdrop-filter: blur(15px);
}

.btnstyle:hover a {
  letter-spacing: 3px;
}

.btnstyle a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0.15), transparent);
  transform: skewX(45deg) translate(0);
  transition: 0.5s;
  filter: blur(0px);
}

.btnstyle:hover a::before {
  transform: skewX(45deg) translate(200px);
}

.btnstyle::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  bottom: -5px;
  width: 30px;
  height: 10px;
  background: #f00;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0.1s;
}

.btnstyle:hover::before

/*lightup button*/
  {
  bottom: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

.btnstyle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  top: -5px;
  width: 30px;
  height: 10px;
  background: #f00;
  border-radius: 10px;
  transition: 0.5s;
  transition-delay: 0.1s;
}

.btnstyle:hover::after

/*lightup button*/
  {
  top: 0;
  height: 50%;
  width: 80%;
  border-radius: 30px;
}

.btnstyle::before,
/*chnage 1*/
.btnstyle::after {
  background: #1eff45;
  box-shadow: 0 0 5px #1eff45, 0 0 15px #1eff45, 0 0 30px #1eff45,
    0 0 60px #1eff45;
}

/* button style 2 */
.btnstyle_two {
  border: none;
  outline: none;
  color: #fff;
  background: #111;
  cursor: pointer;
  position: relative;
  z-index: 0;
}

.btnstyle_two:before {
  content: '';
  background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
}

.btnstyle_two:active {
  color: #000
}

.btnstyle_two:active:after {
  background: transparent;
}

.btnstyle_two:hover:before {
  opacity: 1;
}

.btnstyle_two::after {
  z-index: -1;
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(59deg, var(--brand2) 0%, var(--brand4) 95%);
  left: 0;
  top: 0;
  box-shadow: 0 15px 15px rgba(0, 0, 0, 0.3);
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }

  50% {
    background-position: 400% 0;
  }

  100% {
    background-position: 0 0;
  }
}


/* /////////////////////////////////////////////////
                button css end
///////////////////////////////////////////////// */


/* section css start */

.section {
  padding-top: 130px;
  padding-bottom: 130px;
}

.section-sm {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section-lg {
  padding-top: 100px;
  padding-bottom: 100px;
}

/* section css end */

/* neon text css start */

.neon-text {
  position: relative;
  margin-bottom: 20px;
  padding: 0 20px;
  font-size: 40px;
  color: #fff;
  text-shadow: 0 0 20px #ff005b;
  display: inline-block;
  letter-spacing: 7px;
}

.neon-text:after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 20px;
  z-index: -1;
  color: #ff005b;
  filter: blur(15px);
}

.neon-text:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fe3a80;
  z-index: -2;
  opacity: .5;
  filter: blur(40px);
}

/* neon text css end */
/* section title start */
.section-title {
  font-size: 46px;
  margin-bottom: 30px;
  color: #fff;
  font-family: var(--font1);
  font-weight: 700;
  text-transform: capitalize;
}

/* section title end */

.simple-title h3 {
  font-size: 25px;
  font-weight: 800;
  font-family: var(--font1);
  border-left: 5px solid var(--brand2);
  padding-left: 9px;
  text-transform: capitalize;
}

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

/* overlay */
.overlay {
  position: relative;
}

.overlay::before {
  position: absolute;
  content: '';
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: #000;
  opacity: .5;
}

.outline-0 {
  outline: 0 !important;
}

.d-unset {
  display: unset !important;
}

.page-title {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-primary {
  background: #008dec !important;
}

.bg-gray {
  background: #f2f3f5;
}

.text-primary {
  color: #008dec !important;
}

.text-dark {
  color: #091337 !important;
}

.text-purple {
  color: #9491ff !important;
}

.text-color {
  color: #4d546f;
}

.primary-shadow {
  box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
}


.shadow-primary {
  box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
}


.social-icon li {
  margin: 12px 12px;
  z-index: 3;
  position: relative;
}

.social-icon li a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  background: #333;
  border-radius: 50%;
  font-size: 30px;
  transition: .5s;
}

.social-icon li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #009C75;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
  visibility: hidden;

}

.social-icon li a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #009C75;
  visibility: visible;
}

.social-icon li a:hover {
  color: #009C75;
  box-shadow: 0 0 5px #009C75;
  text-shadow: 0 0 5px #009C75;
}

/* /////////////////////////////////////////////////
                margin padding css start
///////////////////////////////////////////////// */
.mb-10 {
  margin-bottom: 10px !important;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-30 {
  margin-bottom: 30px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mb-60 {
  margin-bottom: 60px !important;
}

.mb-70 {
  margin-bottom: 70px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.mb-90 {
  margin-bottom: 90px !important;
}

.mb-100 {
  margin-bottom: 100px !important;
}

.pb-100 {
  padding-bottom: 100px !important;
}

/* /////////////////////////////////////////////////
                margin padding css end
///////////////////////////////////////////////// */


/* /////////////////////////////////////////////////
                go-top css start
///////////////////////////////////////////////// */
.go-top {
  color: #ffffff;
  position: fixed;
  z-index: 4;
  top: 0;
  right: 15px;
  width: 45px;
  height: 45px;
  opacity: 0;
  visibility: hidden;
  text-align: center;
  line-height: 45px;
  border-radius: 5px;
  background-color: rgb(103, 58, 183);
  -webkit-transition: .9s;
  transition: .9s;
  cursor: pointer;
}

.go-top.active {
  top: 98%;
  -webkit-transform: translateY(-98%);
  transform: translateY(-98%);
  opacity: 1;
  visibility: visible;
}

.go-top i {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  margin: 0 auto;
}

.go-top i:last-child {
  top: 60%;
  opacity: 0;
  visibility: hidden;
}

.go-top::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  border-radius: 5px;
  background-color: var(--brand);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.go-top:hover,
.go-top:focus {
  color: #ffffff;
}

.go-top:hover::before,
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}

.go-top:hover i:first-child,
.go-top:focus i:first-child {
  top: 0;
  opacity: 0;
  visibility: hidden;
}

.go-top:hover i:last-child,
.go-top:focus i:last-child {
  top: 50%;
  opacity: 1;
  visibility: visible;
}

/* /////////////////////////////////////////////////
                go-top css end
///////////////////////////////////////////////// */

/* /////////////////////////////////////////////////
                animation css start
///////////////////////////////////////////////// */
.translate-y-150 {
  -webkit-transform: translateY(150px);
  transform: translateY(150px);
}

.left-right-animation {
  animation: left_right 3s ease-in infinite alternate-reverse;
}

@-webkit-keyframes left_right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes left_right {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.up-down-animation {
  animation: up_down 3s ease-in infinite alternate-reverse;
}

@-webkit-keyframes up_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes up_down {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

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

/* /////////////////////////////////////////////////
                animation css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                header css start
///////////////////////////////////////////////// */
.header-area {
  position: fixed;
  z-index: 600;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-transition-duration: 500ms;
  -o-transition-duration: 500ms;
  transition-duration: 500ms;
}

.header-area .main-header-area.sticky {
  top: 0;
  width: 100%;
  position: fixed;
  background-color: #ffffff;
  box-shadow: 0 3px 50px rgba(0, 0, 0, 0.2);
  border-bottom: none;
  left: 0;
  z-index: 650;
  border-bottom-color: transparent;
}

.classy-nav-container {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 0;
}

.classy-nav-container .classy-navbar {
  height: 100px;
  padding: 0 3%;
}

.classy-nav-container .classy-navbar .classynav ul li a {
  position: relative;
  z-index: 1;
  font-weight: 500;
  font-size: 16px;
  text-transform: capitalize;
  color: #ffffff;
}

.classy-nav-container .classy-navbar .classynav ul li a:focus,
.classy-nav-container .classy-navbar .classynav ul li a:hover {
  color: #ffffff;
}

.classy-nav-container .classy-navbar .classynav ul li.cn-dropdown-item ul li a {
  font-size: 14px;
  text-transform: capitalize;
}

.classynav ul li.has-down>a::after,
.classynav ul li.has-down.active>a::after,
.classynav ul li.megamenu-item>a::after {
  color: #ffffff;
}

.breakpoint-off .classynav ul li .dropdown {
  background-color: #000000;
  box-shadow: 0px 0 10px 0px var(--brand4);
}

.classynav ul li .dropdown li a {
  border-bottom: none;
  height: 40px;
}

.classynav ul li .dropdown li .dropdown li .dropdown li a,
.classynav ul li .dropdown li .dropdown li a {
  border-bottom: none;
}

/* /////////////////////////////////////////////////
                header css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                breadcrumb css start
///////////////////////////////////////////////// */
/*-- Banner --*/
.banner-area {
  position: relative;
  min-height: 300px;
  color: #fff;
  background-position: 50% 50%;
  background-size: cover;
}

.banner-title {
  color: #fff;
  text-transform: uppercase;
  font-size: 58px;
  font-weight: 900;
  margin-bottom: 15px;
  font-family: var(--font1);
}

.banner-text {
  position: absolute;
  top: 60%;
  left: 0;
  right: 0;
  max-width: 1170px;
  margin: 0 auto;
  width: 100%;
  z-index: 1;
  transform: translateY(-50%);
}

.banner-heading {
  text-align: center;
}

.breadcrumb {
  padding: 0;
  background: none;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}

.breadcrumb li a,
.breadcrumb .breadcrumb-item,
.breadcrumb li a:focus,
.breadcrumb li a:hover {
  color: #fff !important;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item::before {
  color: #fff;
}

.breadcrumb {
  display: inline-block;
  overflow: hidden;
  border-radius: 5px;
  /*Lets add the numbers for each link using CSS counters. flag is the name of the counter. to be defined using counter-reset in the parent element of the links*/
  counter-reset: flag;
}

.breadcrumb a {
  text-decoration: none;
  outline: none;
  display: block;
  float: left;
  font-size: 12px;
  line-height: 36px;
  color: white;
  /*need more margin on the left of links to accomodate the numbers*/
  padding: 0 10px 0 60px;
  background: linear-gradient(59deg, var(--brand4)0%, var(--brand2)95%);
  position: relative;
  font-weight: 800;
}

/*since the first link does not have a triangle before it we can reduce the left padding to make it look consistent with other links*/
.breadcrumb a:first-child {
  padding-left: 46px;
  border-radius: 5px 0 0 5px;
  /*to match with the parent's radius*/
}

.breadcrumb a:first-child:before {
  left: 14px;
}

.breadcrumb a:last-child {
  border-radius: 0 5px 5px 0;
  /*this was to prevent glitches on hover*/
  padding-right: 20px;
}

/*hover/active styles*/
.breadcrumb a.active {
  background: linear-gradient(59deg, var(--brand4)0%, var(--brand2)95%);
}

.breadcrumb a:hover {
  background: linear-gradient(59deg, var(--brand2) 0%, var(--brand4) 95%) !important;
}

.breadcrumb a.active:after {
  background: linear-gradient(59deg, var(--brand4)0%, var(--brand2)95%);
}

.breadcrumb a:hover:after {
  background: linear-gradient(59deg, var(--brand2) 0%, var(--brand4) 95%) !important;
}

.breadcrumb i {
  color: #fff;
}

/*adding the arrows for the breadcrumbs using rotated pseudo elements*/
.breadcrumb a::after {
  content: '';
  position: absolute;
  top: 0;
  right: -18px;
  width: 36px;
  height: 36px;
  transform: scale(0.707) rotate(45deg);
  z-index: 1;
  background: #666;
  box-shadow: 2px -2px 0 2px rgba(0, 0, 0, 0.4), 3px -3px 0 2px rgba(255, 255, 255, 0.1);
  border-radius: 0 5px 0 50px;
}

/*we dont need an arrow after the last link*/
.breadcrumb a:last-child:after {
  content: none;
}

/*we will use the :before element to show numbers*/
.breadcrumb a:before {
  content: counter(flag);
  counter-increment: flag;
  /*some styles now*/
  border-radius: 100%;
  width: 20px;
  height: 20px;
  line-height: 20px;
  margin: 8px 0;
  position: absolute;
  top: 0;
  left: 30px;
  background: var(--brand3);
  font-weight: bold;
}

/* /////////////////////////////////////////////////
                breadcrumb css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                hero css start
///////////////////////////////////////////////// */
.hero-section {
  padding-top: 250px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom center;
  margin-bottom: 100px;
}

.svg-box {
  width: 800px;
  height: 100%;
  position: relative;
  z-index: 1;
  display: inline-block;
  top: -200px;
  left: -18%;
  /* transform: translate(-50%, -25px); */
}

.svg-box #robot {
  cursor: pointer;
}


.banner-image {
  position: absolute;
  top: 110%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}


.hero-bg-1 {
  position: absolute;
  left: 30px;
  top: 200px;
}

.hero-bg-2 {
  position: absolute;
  top: 20%;
  left: 20%;
}

.hero-bg-3 {
  position: absolute;
  bottom: 0%;
  left: 10%;
}

.hero-bg-4 {
  top: 210px;
  right: 40%;
  position: absolute;
}

.hero-bg-5 {
  position: absolute;
  top: 300px;
  right: 38%;
}

.hero-bg-6 {
  position: absolute;
  right: 10%;
  bottom: 50%;
}

.hero-bg-7 {
  position: absolute;
  left: 40%;
  bottom: 2%;
  z-index: 1;
}

.hero-bg-8 {
  position: absolute;
  bottom: -30%;
  right: 50%;
  z-index: 1;
}

.hero-bg-9 {
  position: absolute;
  right: 20%;
  bottom: -10%;
  z-index: 1;
}

@keyframes background-pan {
  from {
    background-position: 0% center;
  }

  to {
    background-position: -200% center;
  }
}

@keyframes scale {

  from,
  to {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(180deg);
  }
}


.magic-word {
  font-size: 56px;
}

h1>.magic {
  display: inline-block;
  position: relative;
}

h1>.magic>.magic-star {
  --size: clamp(20px, 1.5vw, 30px);

  animation: scale 700ms ease forwards;
  display: block;
  height: var(--size);
  left: var(--star-left);
  position: absolute;
  top: var(--star-top);
  width: var(--size);
}

h1>.magic>.magic-star>svg {
  animation: rotate 1000ms linear infinite;
  display: block;
  opacity: 0.7;
}

h1>.magic>.magic-star>svg>path {
  fill: rgb(255, 255, 255);
}

h1>.magic>.magic-text {
  animation: background-pan 3s linear infinite;
  background: linear-gradient(to right,
      rgb(123, 31, 162),
      rgb(103, 58, 183),
      rgb(244, 143, 177),
      rgb(123, 31, 162));
  background-size: 200%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


/* /////////////////////////////////////////////////
                hero css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                main-slider css start
///////////////////////////////////////////////// */

/* main-slider Styles */
#main-slider {
  height: 759px;
  color: #fff;
  background-color: #222;
}

#main-slider .content-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

#main-slider .content-slider input {
  display: none;
}

#main-slider .content-slider .slider {
  position: relative;
  width: inherit;
  height: inherit;
  overflow: hidden;
}

#main-slider .content-slider .slider .banner {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  z-index: 0;
  width: inherit;
  height: inherit;
  text-align: center;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  transition: all 0.5s ease;
}

#main-slider .content-slider .slider .banner .banner-inner-wrapper {
  height: 100%;
  padding-top: 218px;
  /* background-image: linear-gradient(rgba(243, 129, 129, 0.9), rgba(252, 227, 138, 0.9)); */
  box-sizing: border-box;
}

#main-slider .content-slider .slider .banner .banner-inner-wrapper h2 {
  padding-bottom: 4.8px;
  font-family: var(--font1);
  font-style: italic;
  font-weight: 400;
  font-size: 40px;
  text-transform: capitalize;

}

#main-slider .content-slider .slider .banner .banner-inner-wrapper h1 {
  font-size: 96px;
  line-height: 95%;
  font-family: var(--font1);
  text-transform: capitalize;
}

#main-slider .content-slider .slider .banner .banner-inner-wrapper .line {
  display: block;
  width: 64px;
  height: 3px;
  margin: 40px auto;
  background: #fff;
}

#main-slider .content-slider .slider #top-banner-1 {
  background: url('../image/1.jpg') no-repeat center center;
  background-size: cover;
}

#main-slider .content-slider .slider #top-banner-2 {
  background: url('../image/2.jpg') no-repeat center center;
  background-size: cover;
}

#main-slider .content-slider .slider #top-banner-3 {
  background: url('../image/3.jpg') no-repeat center center;
  background-size: cover;
}

#main-slider .content-slider .slider #top-banner-4 {
  background: url('../image/4.jpg') no-repeat center center;
  background-size: cover;
}

#main-slider .content-slider nav {
  position: absolute;
  bottom: 8px;
  width: 100%;
  z-index: 10;
  text-align: center;
}

#main-slider .content-slider nav .controls {
  display: block;
  width: 70%;
  margin: 0 auto;
  font-family: Montserrat, sans-serif;
  color: #fff;
}

#main-slider .content-slider nav .controls label {
  position: relative;
  display: inline-block;
  width: 20%;
  height: 49.6px;
  overflow: hidden;
  margin: 0 16px;
  padding-top: 16px;
  text-align: left;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.3s;
}

#main-slider .content-slider nav .controls label .progressbar {
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: #ffffff;
  z-index: 100;
}

#main-slider .content-slider nav .controls label .progressbar .progressbar-fill {
  position: inherit;
  width: inherit;
  height: inherit;
  margin-left: -100%;
  background: var(--brand2);
}

#main-slider .content-slider nav .controls label span {
  font-size: 22.4px;
  font-weight: 700;
}

#main-slider .content-slider nav .controls label:hover {
  color: var(--brand2);
}

#main-slider .content-slider #banner1:checked~.slider #top-banner-1,
#main-slider .content-slider #banner2:checked~.slider #top-banner-2,
#main-slider .content-slider #banner3:checked~.slider #top-banner-3,
#main-slider .content-slider #banner4:checked~.slider #top-banner-4 {
  opacity: 1;
  z-index: 1;
}

#main-slider .content-slider #banner1:checked~nav label:nth-of-type(1),
#main-slider .content-slider #banner2:checked~nav label:nth-of-type(2),
#main-slider .content-slider #banner3:checked~nav label:nth-of-type(3),
#main-slider .content-slider #banner4:checked~nav label:nth-of-type(4) {
  cursor: default;
  color: #fff;
  transition: all 0.5s;
}

#main-slider .content-slider #banner1:checked~nav label:nth-of-type(1) .progressbar,
#main-slider .content-slider #banner2:checked~nav label:nth-of-type(2) .progressbar,
#main-slider .content-slider #banner3:checked~nav label:nth-of-type(3) .progressbar,
#main-slider .content-slider #banner4:checked~nav label:nth-of-type(4) .progressbar {
  background: #fff;
}

#main-slider .content-slider #banner1:checked~nav label:nth-of-type(1) .progressbar-fill,
#main-slider .content-slider #banner2:checked~nav label:nth-of-type(2) .progressbar-fill,
#main-slider .content-slider #banner3:checked~nav label:nth-of-type(3) .progressbar-fill,
#main-slider .content-slider #banner4:checked~nav label:nth-of-type(4) .progressbar-fill {
  animation: progressBarFill 5s linear;
}

/* Animations */
@keyframes progressBarFill {
  from {
    margin-left: -100%;
  }

  to {
    margin-left: 0;
  }
}


/* /////////////////////////////////////////////////
                main-slider css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                feature css start
///////////////////////////////////////////////// */
.feature {
  position: relative;
}

.feature-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.single-feature {
  text-align: center;
  padding: 50px 40px;
  transition: all .3s;
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: linear-gradient(59deg, var(--brand4)0%, var(--brand2)95%);
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.single-feature:hover {
  box-shadow: 0px 0px 8px 0px #fff;
}

.feature-icon {
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}


.single-feature:hover .feature-icon {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
}


.circles-wrap {
  position: absolute;
  bottom: -25%;
  left: 39%;
  z-index: -1;
}

span.circle {
  border-radius: 50%;
  position: absolute;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.circles {
  height: 400px;
  width: 400px;
  background: transparent;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

span.circle.circle-1 {
  height: 100px;
  width: 100px;
  background: rgba(93, 0, 255, 0.3);
  z-index: 5;
  display: inline-block;
  z-index: 5;
}


span.circle.circle-2 {
  height: 200px;
  width: 200px;
  background: rgba(115, 40, 245, 0.3);
  z-index: 4;
}

span.circle.circle-3 {
  height: 300px;
  width: 300px;
  background: rgba(141, 84, 239, 0.3);
  z-index: 3;
}

span.circle.circle-4 {
  height: 400px;
  width: 400px;
  background: rgba(167, 127, 237, 0.3);
  z-index: 2;
}



.single-feature:hover span.circle,
.single-feature.active span.circle {
  transform: scale(1);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}


.feature-area .circles-wrap {
  position: absolute;
  bottom: -32%;
  left: auto;
  z-index: -1;
  right: -50%;
}


.feature-text h4 {
  font-size: 24px;
  text-transform: capitalize;
  color: #ffffff;
  margin-bottom: 30px;
}

.feature-text {
  margin: 30px 0 30px 0px;
}

.feature-area .feature-text {
  margin: 30px 0 0px 0px;
}


.feature-text p {
  color: #ffffff;
  text-transform: capitalize;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
  padding-bottom: 15px;
}


.single-feature.active,
.single-feature:hover {
  background: linear-gradient(59deg, var(--brand2) 0%, var(--brand4) 95%);
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.single-feature .feature-text a {
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 30px;
  margin-top: 5px;
}

.single-feature.active .feature-text h4,
.single-feature.active .feature-text h3,
.single-feature:hover .feature-text h3,
.single-feature.active .feature-text h5,
.single-feature:hover .feature-text h5,
.single-feature:hover .feature-text h4,
.single-feature.active .feature-text p,
.single-feature:hover .feature-text p {
  color: #fff;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

/* /////////////////////////////////////////////////
                feature css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                marketing css start
///////////////////////////////////////////////// */
.seo {
  position: relative;
  overflow: visible;
}

.seo-bg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.seo-bg-shape-1 {
  position: absolute;
  left: 25%;
  top: 0;
  z-index: -1;
}

.seo-bg-shape-2 {
  position: absolute;
  right: 2%;
  top: 50%;
  z-index: -1;
}

.seo-bg-shape-3 {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: -1;
}

/* /////////////////////////////////////////////////
                marketing css end
///////////////////////////////////////////////// */

/* /////////////////////////////////////////////////
                portfolio css start
///////////////////////////////////////////////// */

.section.portfolio .filters {
  text-align: center;
  margin-top: 50px;
}

.section.portfolio .filters ul {
  padding: 0;
}

.section.portfolio .filters ul .active {
  color: var(--brand4);
}

.section.portfolio .filters ul li {
  list-style: none;
  display: inline-block;
  padding: 20px 30px;
  cursor: pointer;
  position: relative;
  color: #fff;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  text-transform: capitalize;
  font-weight: 800;
}

.section.portfolio .filters ul li:hover {
  color: var(--brand4);
}

.section.portfolio .filters ul li::after {
  content: "";
  display: block;
  width: calc(0% - 60px);
  position: absolute;
  height: 2px;
  background: var(--brand4);
  transition: width 350ms ease-out;
}

.section.portfolio .filters ul li:hover:after {
  width: calc(100% - 60px);
  transition: width 350ms ease-out;
}

.section.portfolio .filters ul li.active:after {
  width: calc(100% - 60px);
}

.section.portfolio .filters-content {
  margin-top: 50px;
}

.section.portfolio .filters-content .show {
  opacity: 1;
  visibility: visible;
  transition: all 350ms;
}

.section.portfolio .filters-content .hide {
  opacity: 0;
  visibility: hidden;
  transition: all 350ms;
}

.section.portfolio .filters-content .item {
  text-align: center;
  cursor: pointer;
  margin-bottom: 30px;
}

.section.portfolio .filters-content .item .p-inner {
  padding: 20px 30px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.section.portfolio .filters-content .item .p-inner h5 {
  font-size: 15px;
}

.section.portfolio .filters-content .item .p-inner .cat {
  font-size: 13px;
}

.section.portfolio .filters-content .item img {
  width: 100%;
}

.portfolio-item {
  padding: 0;
}

.portfolio-item .portfolio-img-container {
  position: relative;
  overflow: hidden;
}

.portfolio-item .portfolio-img-container img {
  transform: perspective(1px) scale3d(1.1, 1.1, 1);
  transition: all 400ms;
}

.portfolio-item .portfolio-img-container:hover img {
  transform: perspective(1px) scale3d(1.15, 1.15, 1);
}

.portfolio-item .portfolio-img-container:after {
  opacity: 0;
  position: absolute;
  content: "";
  top: 0;
  right: auto;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition: all 400ms;
}

.portfolio-item .portfolio-img-container:hover:after {
  opacity: 1;
}

.portfolio-item .portfolio-img-container .portfolio-popup .gallery-icon {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 8px 12px;
  background: var(--brand2);
  color: #fff;
  opacity: 0;
  transform: perspective(1px) scale3d(0, 0, 0);
  transition: all 400ms;
}

.portfolio-item .portfolio-img-container:hover .portfolio-popup .gallery-icon {
  opacity: 1;
  transform: perspective(1px) scale3d(1, 1, 1);
}

.portfolio-item .portfolio-img-container .portfolio-item-info {
  position: absolute;
  top: 50%;
  margin-top: -10%;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0 30px;
  z-index: 1;
}

.portfolio-item .portfolio-img-container .portfolio-item-info-content {
  opacity: 0;
  transform: perspective(1px) translate3d(0, 15px, 0);
  transition: all 400ms;
}

.portfolio-item .portfolio-img-container .portfolio-item-info-content .portfolio-item-title {
  font-size: 20px;
}

.portfolio-item .portfolio-img-container .portfolio-item-info-content .portfolio-item-title a {
  color: #fff;
}

.portfolio-item .portfolio-img-container .portfolio-item-info-content .portfolio-item-title a:hover {
  color: var(--brand2);
}

.portfolio-item .portfolio-img-container .portfolio-item-info-content .service-cat {
  background: var(--brand2);
  display: inline-block;
  padding: 2px 8px;
  font-weight: 700;
  color: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.portfolio-item .portfolio-img-container:hover .portfolio-item-info-content {
  opacity: 1;
  transform: perspective(1px) translate3d(0, 0, 0);
}

/* Single portfolio */

.single-portfolio-details {
  margin: 30px 0;
}

.single-portfolio-details h4 {
  font-size: 22px;
  font-family: var(--font1);
}

.single-portfolio-details p {
  font-size: 16px;
  font-family: var(--font2);
}

.single-portfolio-details a {
  color: #ffc107;
}



.portfolio-side-list {
  padding: 0 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 2px solid var(--brand2);
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  text-align: center;
}

.single-portfolio-details ul {
  margin: 0 !important;
}

.portfolio-slider .slick-list {
  overflow: visible;
}

.portfolio-slider .slick-arrow {
  border: 0;
  background: transparent;
  color: var(--brand4);
  position: absolute;
  bottom: -46px;
  z-index: 1;
  font-size: 25px;
}

.portfolio-slider .slick-arrow.slick-disabled {
  color: #86ceff;
}

.portfolio-slider .prevArrow {
  left: 10px;
}

.portfolio-slider .nextArrow {
  left: 50px;
}

.gallery {
  display: grid;
  grid-gap: 10px;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: 200px 200px;
  grid-auto-flow: dense;
}

.gallery__item .image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery__item {
  position: relative;
}

.gallery__item .gallery-overlay a {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  font-size: 28px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
}

.gallery__item .gallery-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  background: #673ab752;
  transform: scale(0);
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  box-shadow: inset 0px 0px 7px 0px #FFF;
}

.gallery__item:hover .gallery-overlay {
  transform: scale(1);
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
}

.single-portfolio-details ul li a {
  background: #673ab752;
  padding: 10px 10px;
  text-align: center;
  margin-bottom: 10px;
  display: block;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font1);
}

.single-portfolio-details ul li a:hover {
  background-color: var(--brand2);
  color: #fff;
}

.single-portfolio-details ul li {
  font-size: 16px;
  font-family: var(--font2);
}

.social-portfolio-icons ul li {
  margin-right: 10px;
}

.social-portfolio-icons ul li a {
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  background: #673ab752;
  font-size: 16px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-portfolio-icons ul li a:hover {
  background: var(--brand2);
  color: #fff;
}

.detail-number {
  font-size: 60px;
  color: var(--brand4);
  font-weight: 800;
  line-height: 0.8;
  font-family: var(--font1);
}

.detail-content h5 {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}

.detail-content p {
  font-size: 16px;
}

.portfolio-bg-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 400px;
}

.portfolio-bg-1 {
  position: absolute;
  left: 50px;
  top: 10%;
  z-index: -1;
}

.portfolio-bg-2 {
  position: absolute;
  right: 50px;
  top: 10%;
  z-index: -1;
}

.portfolio-bg-3 {
  position: absolute;
  right: 50px;
  top: 50%;
  z-index: -1;
}

.portfolio-bg-4 {
  position: absolute;
  left: 50px;
  bottom: 30%;
  z-index: -1;
}

.portfolio-bg-5 {
  position: absolute;
  left: 10%;
  bottom: 5%;
  z-index: -1;
}

/* /////////////////////////////////////////////////
                portfolio css end
///////////////////////////////////////////////// */

/* /////////////////////////////////////////////////
                service css start
///////////////////////////////////////////////// */
.service {
  position: relative;
  overflow: visible;
}

.service-list li {
  margin-bottom: 30px;
  color: #ffffff;
}

.service-list li i {
  margin-right: 20px;
  color: #ffffff;
}

.service-bg {
  position: absolute;
  right: 0;
  top: -10%;
  z-index: -1;
}

.service-bg-shape-1 {
  position: absolute;
  left: 50%;
  top: 150px;
  z-index: -1;
}

.service-bg-shape-2 {
  position: absolute;
  left: 40%;
  bottom: 0;
  z-index: -1;
}

/* /////////////////////////////////////////////////
                service css end
///////////////////////////////////////////////// */

/* /////////////////////////////////////////////////
                service main css start
///////////////////////////////////////////////// */
.service_main .service-col {
  background: #673ab752;
  box-shadow: inset 0px 0px 7px 0px #FFF;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.service_main .service-col h4 {
  font-size: 30px;
  font-weight: 800;
  font-family: var(--font1);
  text-transform: capitalize;
}

.service_main .service-col a {
  font-size: 12px;
  font-weight: 800;
  font-family: var(--font1);
  text-transform: capitalize;
  border: 2px solid #fff;
  padding: 10px 20px;
  border-radius: 20px 0;
  -webkit-border-radius: 20px 0;
  -moz-border-radius: 20px 0;
  -ms-border-radius: 20px 0;
  -o-border-radius: 20px 0;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.service_main .service-col:hover {
  box-shadow: inset 0px 0px 7px 0px var(--brand);
}

.service_main .service-col a:hover {
  color: #fff;
  border-radius: 0px 20px;
  -webkit-border-radius: 0px 20px;
  -moz-border-radius: 0px 20px;
  -ms-border-radius: 0px 20px;
  -o-border-radius: 0px 20px;
}

/* /////////////////////////////////////////////////
                service main css end
///////////////////////////////////////////////// */

/* /////////////////////////////////////////////////
                team css start
///////////////////////////////////////////////// */
.team {
  overflow: visible;
  position: relative;
}

.team-slider {
  overflow: hidden;
  padding-bottom: 100px;
}

.team-slider .slick-list {
  overflow: visible;
}

.team-slider .slick-arrow {
  border: 0;
  background: transparent;
  color: var(--brand3);
  position: absolute;
  bottom: 0;
  z-index: 1;
  font-size: 25px;
}

.team-slider .slick-arrow.slick-disabled {
  color: #86ceff;
}

.team-slider .prevArrow {
  left: 10px;
}

.team-slider .nextArrow {
  left: 50px;
}

.team-bg {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.team-bg-shape-1 {
  position: absolute;
  top: 100px;
  left: 20px;
  z-index: -1;
}

.team-bg-shape-2 {
  position: absolute;
  top: 100px;
  right: -5px;
  z-index: -1;
}

.team-bg-shape-3 {
  position: absolute;
  bottom: 20%;
  right: 40%;
  z-index: -1;
}

.team-bg-shape-4 {
  position: absolute;
  bottom: 20%;
  right: 180px;
  z-index: -1;
}

.team-block {
  position: relative;
}

.team-block .inner-box {
  position: relative;
  /* padding: 40px 70px 28px 0px; */
	padding: 0px 28px 28px 0px;
  margin: 0 20px;
}

.team-block .inner-box:before {
  position: absolute;
  content: '';
  width: 83%;
  right: 0px;
  top: 0px;
  left: 70px;
  bottom: 0px;
  border-radius: 10px;
  background: linear-gradient(59deg, var(--brand4)0%, var(--brand2)95%);
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
}

.team-block .inner-box::after {
  position: absolute;
  content: '';
  top: 0px;
  left: 70px;
  bottom: 0px;
  width: 0%;
  border-radius: 10px;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  background-image: -ms-linear-gradient(top, #673ab7 0%, #a53c3b 100%);
  background-image: -moz-linear-gradient(top, #673ab7 0%, #a53c3b 100%);
  background-image: -o-linear-gradient(top, #673ab7 0%, #a53c3b 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #673ab7), color-stop(100, #a53c3b));
  background-image: -webkit-linear-gradient(top, #673ab7 0%, #a53c3b 100%);
  background-image: linear-gradient(to bottom, #673ab7 0%, #a53c3b 100%);
}

.team-block .inner-box:hover::after {
  width: 83%;
}

.team-block .inner-box .social-icons {
  position: absolute;
  right: 25px;
  top: 100px;
  z-index: 1;
}

.team-block .inner-box .social-icons li {
  position: relative;
  margin-bottom: 20px;
}

.team-block .inner-box .social-icons li a {
  position: relative;
  color: #fff;
  font-size: 18px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.team-block .inner-box .lower-content h3 a {
  font-size: 19px;
  color: #fff;
  font-family: var(--font1);
}

.team-block .inner-box:hover .lower-content h3 a,
.team-block .inner-box:hover .social-icons li a,
.team-block .inner-box:hover .lower-content .designation {
  color: #ffffff;
}

.team-block .inner-box .image {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: inset 0px 0px 35px rgba(0, 0, 0, 0.20);
}

.team-block .inner-box .image img {
  position: relative;
  width: 100%;
  display: block;
}

.team-block .inner-box .lower-content {
  position: relative;
  text-align: left;
  z-index: 1;
  padding: 30px 15px 0px 110px;
}

.team-block .inner-box .lower-content h3 {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3em;
  border-left: 3px solid var(--brand4);
  padding-left: 5px;
}

.team-block .inner-box .lower-content h3 a {
  position: relative;
  color: #fff;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.team-block .inner-box .lower-content .designation {
  position: relative;
  margin-top: 5px;
  color: #fff;
  font-size: 15px;
}

/* /////////////////////////////////////////////////
                team css end
///////////////////////////////////////////////// */

/* /////////////////////////////////////////////////
                pricing css start
///////////////////////////////////////////////// */
.pricing {
  position: relative;
  overflow: visible;
}

.card {
  position: relative;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  margin: 0 auto;
  padding: 40px 20px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  -webkit-transition: .5s;
  transition: .5s;
  border: none;
  background: #333;
}

.card:hover {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.card-style:nth-child(1) .card,
.card-style:nth-child(1) .card .title .fa {
  background: linear-gradient(-45deg, #f403d1, #64b5f6);

}

.card-style:nth-child(2) .card,
.card-style:nth-child(2) .card .title .fa {
  background: linear-gradient(-45deg, #ffec61, #f321d7);

}

.card-style:nth-child(3) .card,
.card-style:nth-child(3) .card .title .fa {
  background: linear-gradient(-45deg, #24ff72, #9a4eff);

}

/* .card::before{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: rgba(255, 255, 255, .1);
z-index: 1;
-webkit-transform: skewY(-5deg) scale(1.5);
        transform: skewY(-5deg) scale(1.5);
} */
.title .fa {
  color: #fff;
  font-size: 60px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  -webkit-box-shadow: 0 10px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 10px rgba(0, 0, 0, .1);

}

.title h2 {
  position: relative;
  margin: 20px 0 0;
  padding: 0;
  color: #fff;
  font-size: 28px;
  z-index: 2;
  font-family: var(--font2);
  font-weight: 800;
}

.price,
.option {
  position: relative;
  z-index: 2;
}

.price h4 {
  margin: 0;
  padding: 20px 0;
  color: #fff;
  font-size: 60px;
}

.price p {
  font-size: 14px;
}

.option ul {
  margin: 0;
  padding: 0;

}

.option ul li {
  margin: 0 0 10px;
  padding: 0;
  list-style: none;
  color: #fff;
  font-size: 16px;
}

.card a {
  position: relative;
  z-index: 2;
  background: #fff;
  color: black;
  width: 150px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  display: block;
  text-align: center;
  margin: 20px auto 0;
  font-size: 16px;
  cursor: pointer;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .1);
  box-shadow: 0 5px 10px rgba(0, 0, 0, .1);

}

.card a:hover {
  text-decoration: none;
}


.pricing-bg-shape-1 {
  position: absolute;
  left: 20%;
  top: 100px;
  z-index: -1;
}

.pricing-bg-shape-2 {
  position: absolute;
  right: 10%;
  top: 210px;
  z-index: -1;
}

.pricing-bg-shape-3 {
  position: absolute;
  bottom: 20%;
  left: 0;
  z-index: -1;
}

.pricing-table-1 {
	font-size: 16px
}

.pricing-table-1 .features-holder,
.pricing-table-1 .price-table {
	float: left;
	border-right: none;
	border-left: none
}

.pricing-table-1 .features-holder {
	width: 50%;
	text-align: left
}

.pricing-table-1 .features-title,
.pricing-table-1 .price-table .table-header {
	display: table;
	height: 50px;
	width: 100%;
	padding: 10px;
	/* border-bottom: 1px solid #e9ebec */
}

.pricing-table-1 .features-title h5,
.pricing-table-1 .price-table .table-header h5 {
	margin: 0
}

.features-list-wrapper,
.pricing-table-1 .price-table .table-content {
	/* border-left: 1px solid #e9ebec */
}

.pricing-table-1 .features-list-wrapper {
	background: #000000
}

.pricing-table-1 .price-table .table-content ul,
.pricing-table-1 ul.features-list {
	list-style: none;
	margin: 0;
	padding: 0
}

.pricing-table-1 .price-table .table-content ul li,
.pricing-table-1 ul.features-list li {
	font-size: 14px;
	margin: 0;
	padding: 10px;
	/* border-bottom: 1px solid #e9ebec; */
	color: #8e8e8e;
	font-weight: 500;
	height: 80px
}

.pricing-table-1 ul.features-list li h6 {
	margin: 0;
	font-size: inherit;
	font-weight: inherit;
	line-height: 10px
}

.pricing-table-1 ul.features-list li p {
	margin-top: 10px;
	font-size: 0.9375rem;
	/* font-weight: inherit; */
	line-height: 20px
}

.pricing-table-1 .price-table {
	width: 15%;
	text-align: center;
	background: #000000
}

.pricing-table-1 .price-table:last-child {
	/* border-right: 1px solid #e9ebec */
}

.pricing-table-1 .price-table .table-header {
	/* border-left: 1px solid #e9ebec;
	border-top: 1px solid #e9ebec */
}

.pricing-table-1 .price-table .table-content ul li {
	line-height: 30px
}

.pricing-table-1 .price-table .table-footer {
	border-left: 1px solid #e9ebec;
	border-bottom: 1px solid #e9ebec;
	padding: 20px 0
}

.pricing-table-1 .price-table .table-footer .price-holder {
	font-weight: 600;
	padding-bottom: 10px
}

.pricing-table-1 .price-table .table-footer .btn i {
	font-size: 16px;
	margin: 0;
	padding: 0
}

.pricing-table-1 .price-table-vip .table-content ul li,
.pricing-table-1 .price-table-vip .table-header h5 {
	color: #f8c06b
}

.pricing-table-1 .price-table-featured .table-content ul li,
.pricing-table-1 .price-table-featured .table-header h5 {
	color: #05b489
}
/* /////////////////////////////////////////////////
                pricing css end
///////////////////////////////////////////////// */

/* /////////////////////////////////////////////////
                newsletter css start
///////////////////////////////////////////////// */
.newsletter {
  position: relative;
}

.newsletter-form {
  height: 85px;
  width: 100%;
  padding: 0 40px;
  border: 0;
  background: #fff;
  box-shadow: 0px 35px 46px 0px rgba(172, 189, 199, 0.28);
  border-radius: 5px;
}

.newsletter-form:focus {
  outline: 0;
  box-shadow: none;
}

.newsletter-btn:hover {
  background: var(--brand);
  color: #fff;
}

.newsletter-btn {
  position: absolute;
  height: 100%;
  background: var(--brand2);
  top: 0;
  right: 0;
  border-radius: 0 5px 5px 0;
  font-weight: 700;
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.newsletter-bg-shape {
  position: absolute;
  top: 0;
  right: 10%;
  z-index: -1;
}

/* /////////////////////////////////////////////////
                newsletter css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                footer css start
///////////////////////////////////////////////// */
.footer {
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}

.footer-section {
  padding-top: 100px;
}

.footer-menu a {
  color: #ffffff;
  display: block;
  padding: 15px;
  font-weight: 400;
}

.copyright {
  margin-top: 10px;
  color: #fff;
  padding: 25px 0;
  position: relative;
  z-index: 1;
  font-weight: 600;
  font-size: 12px;
}

.copyright-info {
  color: #FFF;
}

.copyright-info a{
  color: #FFF;
	font-size: 12px;
}

/* /////////////////////////////////////////////////
                footer css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                client logo css start
///////////////////////////////////////////////// */
.client-logo-slider img {
  transition: .2s ease;
}

.client-logo-slider a:hover img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

/* /////////////////////////////////////////////////
                client logo css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                service css start
///////////////////////////////////////////////// */
.single-service-details {
  margin: 30px 0;
}

.single-service-details p {
  font-size: 16px;
  font-family: var(--font2);
}

.service-side-list {
  padding: 20px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 2px solid var(--brand2);
  background: rgba(0, 0, 0, 0.6)
}

.single-service-details ul {
  margin: 0 !important;
}

.single-service-details ul li a {
  background: #673ab752;
  padding: 10px 10px;
  text-align: center;
  margin-bottom: 10px;
  display: block;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  font-family: var(--font1);
}

.single-service-details ul li a:hover {
  background-color: var(--brand2);
  color: #fff;
}

.single-service-details ul li {
  font-size: 16px;
  font-family: var(--font2);
}

.social-service-icons ul li {
  margin-right: 10px;
}

.social-service-icons ul li a {
  width: 40px;
  height: 40px;
  text-align: center;
  display: block;
  background: #673ab752;
  font-size: 16px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  display: flex;
  justify-content: center;
  align-items: center;
}

.social-service-icons ul li a:hover {
  background: var(--brand2);
  color: #fff;
}

.detail-number {
  font-size: 60px;
  color: var(--brand4);
  font-weight: 800;
  line-height: 0.8;
  font-family: var(--font1);
}

.detail-content h5 {
  text-transform: capitalize;
  font-size: 22px;
  font-weight: 700;
}

.detail-content p {
  font-size: 16px;
}

.service-bg-image {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center 400px;
}

.service-bg-1 {
  position: absolute;
  left: 50px;
  top: 10%;
  z-index: -1;
}

.service-bg-2 {
  position: absolute;
  right: 50px;
  top: 10%;
  z-index: -1;
}

.service-bg-3 {
  position: absolute;
  right: 50px;
  top: 50%;
  z-index: -1;
}

.service-bg-4 {
  position: absolute;
  left: 50px;
  bottom: 30%;
  z-index: -1;
}

.service-bg-5 {
  position: absolute;
  left: 10%;
  bottom: 5%;
  z-index: -1;
}

/* /////////////////////////////////////////////////
                service css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                faq css start
///////////////////////////////////////////////// */
.faq_form .form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
  background-color: transparent;
  color: #fff;
}

.faq_form .form-control:focus {
  color: #fff;
  border-color: #450e8b;
  box-shadow: 0 8px 28px rgba(68, 14, 139, 0.5);
}

.faq_form .form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  color: #fff;
}

.faq_form .form-control {
  color: #fff;
}

.faq_form .form-floating>label {
  color: #fff;
}

.faq_form .form-control {
  background-color: transparent;
  border-color: #450e8b;
}

.faq_button {
  text-align: center;
  margin-top: 12px;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: var(--brand);
}

.accordion-item {
  border: none;
  font-family: var(--font2);
  margin-bottom: 4px;
}

.accordion-body {
  color: #fff;
  background: #673ab752;
}

.accordion-body p {
  font-size: 15px;
	color: #fff;
}

.accordion-button:not(.collapsed) {
  box-shadow: 0px 3px 4px 0px #450e8b;
}

.accordion {
  --bs-accordion-bg: none;
}

.accordion-button {
  color: #fff;
  background-color: var(--brand2);
}

.accordion-button::after {
  flex-shrink: 0;
  width: var(--bs-accordion-btn-icon-width);
  height: var(--bs-accordion-btn-icon-width);
  margin-left: auto;
  content: "";
  background-image: none;
  background-repeat: no-repeat;
  background-size: var(--bs-accordion-btn-icon-width);
  transition: var(--bs-accordion-btn-icon-transition);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\2b";
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
}

.accordion-button:not(.collapsed)::after {
  transform: none;
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  content: "\f068";
}

.accordion-button:focus {
  z-index: 3;
  border-color: none;
  outline: 0;
  box-shadow: none;
}

.form-floating>label {
  font-size: 13px;
}

.faq_button button {
  font-size: 16px;
  font-weight: 800;
  font-family: var(--font1);
  text-transform: capitalize;
  border: 2px solid var(--brand2);
	border-radius: 25px;
  padding: 5px 25px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  background: var(--brand2);
  color: #fff;
}

.faq_button button:hover {
  border: 2px solid var(--brand);
  background: var(--brand);
}

/* /////////////////////////////////////////////////
                faq css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                about css start
///////////////////////////////////////////////// */
.about {
  position: relative;
  overflow: visible;
}

.about-boxes {
  margin-top: 83px;
}

.about-box {
  margin-bottom: 48px;
  display: flex;
  align-items: start;
  justify-content: start;
}

.about-box img {
  margin-left: 12px;
}

.about-box p,
h5 {
  color: #fff;
}

.about-box h5 {
  font-size: 20px;
  font-weight: 700;
}

.about-box p {
  font-size: 16px;
}

.about-box i {
  font-size: 20px;
  padding: 15px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  margin-right: 12px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
  background-image: linear-gradient(59deg, var(--brand2) 0%, var(--brand3)95%);
  color: #fff;
}

.about-box:hover i {
  transform: translateY(-5px);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  -o-transform: translateY(-5px);
  background: linear-gradient(59deg, var(--brand3) 0%, var(--brand2) 95%) !important;
  color: #ffffff;
}

.about {
  position: relative;
  overflow: visible;
}

.about-bg {
  position: absolute;
  right: 0;
  top: 1%;
  z-index: -1;
}


.about-bg-1 {
  position: absolute;
  left: 30%;
  top: 10%;
  z-index: -1;
}

.about-bg-2 {
  position: absolute;
  top: 30%;
  right: 40px;
  z-index: -1;
}

.about-bg-3 {
  position: absolute;
  bottom: 20%;
  left: 30px;
  z-index: -1;
}

.about-bg-4 {
  position: absolute;
  top: 20%;
  left: 140px;
  z-index: -1;
}

.about-bg-5 {
  position: absolute;
  bottom: 10%;
  right: 40px;
  z-index: -1;
}

.about-bg-6 {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: -1;
}

/* /////////////////////////////////////////////////
                about css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                company css start
///////////////////////////////////////////////// */
.company {
  position: relative;
  overflow: visible;
}

.company-bg {
  position: absolute;
  left: 0;
  top: 1%;
  z-index: -1;
}

.company-bg-1 {
  position: absolute;
  left: 30%;
  top: 10%;
  z-index: -1;
}

.company-bg-2 {
  position: absolute;
  top: 30%;
  right: 40px;
  z-index: -1;
}

.company-bg-3 {
  position: absolute;
  bottom: 20%;
  left: 30px;
  z-index: -1;
}

.company-bg-4 {
  position: absolute;
  top: 20%;
  left: 40px;
  z-index: -1;
}


.company-bg-5 {
  position: absolute;
  bottom: 10%;
  right: 40px;
  z-index: -1;
}

.company-bg-6 {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: -1;
}

/* /////////////////////////////////////////////////
                company css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                Facts css start
///////////////////////////////////////////////// */
.facts {
  background: #673ab752;
}

.ts-facts-num {
  font-size: 60px;
  font-weight: 800;
}

.ts-facts-title {
  font-size: 20px;
  font-weight: 800;
}

/* /////////////////////////////////////////////////
                Facts css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                why choose us css start
///////////////////////////////////////////////// */
.why_choose_us {
  position: relative;
  overflow: visible;
}

.why_choose_us-bg {
  position: absolute;
  right: 0;
  bottom: 0%;
  z-index: -1;
}

.why_choose_us-bg-1 {
  position: absolute;
  left: 30%;
  top: 10%;
  z-index: -1;
}



.why_choose_us .why_choose_us-bg-2 {
  position: absolute;
  top: 30%;
  right: 40px;
  z-index: -1;
}


.why_choose_us .why_choose_us-bg-3 {
  position: absolute;
  bottom: 20%;
  left: 30px;
  z-index: -1;
}

.why_choose_us-bg-4 {
  position: absolute;
  top: 20%;
  left: 40px;
  z-index: -1;
}

.why_choose_us-bg-5 {
  position: absolute;
  bottom: 10%;
  right: 40px;
  z-index: -1;
}

.why_choose_us-bg-6 {
  position: absolute;
  top: 10%;
  right: 10%;
  z-index: -1;
}

.why_choose_us_card {
  position: relative;
}

.why_choose_us_card .face {
  width: 300px;
  height: 200px;
  transition: .4s;
}

.why_choose_us_card .face.face1 {
  position: relative;
  background: #333;
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  z-index: 1;
  transform: translateY(100px);
  background: linear-gradient(59deg, var(--brand4)0%, var(--brand2)95%);
}

.why_choose_us_card:hover .face.face1 {
  transform: translateY(0);
  background: linear-gradient(to bottom, #673ab7 0%, #a53c3b 100%);

}

.why_choose_us_card .face.face1 .content {
  transition: 0.5s;
  text-align: center;
}

.why_choose_us_card:hover .face.face1 .content {
  opacity: 1;
}

.why_choose_us_card .face.face1 .content i {
  font-size: 48px;
  color: white;
  display: inline-block;
}

.why_choose_us_card .face.face1 .content h3 {
  font-size: 16px;
  color: white;
  text-align: center;
}

.why_choose_us_card .face.face1 .content a {
  transition: .5s;
}

.why_choose_us_card .face.face2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: 0 20px 50px rgba(0, 0, 0, .8);
  transform: translateY(-100px);
  background: linear-gradient(59deg, var(--brand4)0%, var(--brand2)95%);
}

.why_choose_us_card:hover .face.face2 {
  transform: translateY(0);
}

.why_choose_us_card .face.face2 .content p,
a {
  font-size: 16px;
  margin: 0;
  padding: 0;
  color: #ffffff;
  line-height: 20px;
  font-family: var(--font1);
}

.why_choose_us_card .face.face2 .content a {
  text-decoration: none;
  color: #fff;
  box-sizing: border-box;
  outline: 1px solid #fff;
  padding: 10px;
  margin: 15px 0 0;
  display: inline-block;
  background: #333;
  font-weight: 800;
}

/* /////////////////////////////////////////////////
                why choose us css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                contact css start
///////////////////////////////////////////////// */
.contact .card {
  position: relative;
  max-width: 300px;
  height: auto;
  border-radius: 15px;
  margin: 0 auto;
  padding: 40px 20px;
  -webkit-box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  box-shadow: 0 10px 15px rgba(0, 0, 0, .1);
  -webkit-transition: .5s;
  transition: .5s;
  border: none;
  background: linear-gradient(to bottom, #673ab7 0%, #a53c3b 100%);
}

.contact_form .form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
  background-color: transparent;
  color: #fff;
}

.contact_form .form-control:focus {
  color: #fff;
  border-color: #450e8b;
  box-shadow: 0 8px 28px rgba(68, 14, 139, 0.5);
}

.contact_form .form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  color: #fff;
}

.contact_form .form-control {
  color: #fff;
}

.contact_form .form-floating>label {
  color: #fff;
}

.contact_form .form-control {
  background-color: transparent;
  border-color: #fff;
}

.contact-info {
  margin-bottom: 33px;
}

.contact-info h5 {
  font-size: 18px;
  color: #fff;
}

.contact-info p {
  font-size: 15px;
  color: #fff;
}

.contact-info a {
  font-size: 15px;
  color: #fff;
}

.contact-info a:hover {
  font-size: 15px;
  color: var(--brand2);
}

.form-control {
  height: 65px;
  width: 100%;
  background: #f7fafc;
}

.form-control:focus {
  border-color: #008dec;
  box-shadow: none;
}

textarea.form-control {
  height: 157px;
}

.contact-bg {
  background: linear-gradient(to bottom, #673ab7 0%, #a53c3b 100%);
}

.contact {
  position: relative;
}

.contact-bg-1 {
  position: absolute;
  left: 0;
  top: 10%;
  z-index: -1;
}

.contact-bg-2 {
  position: absolute;
  top: 20%;
  right: 10%;
  z-index: -1;
}

.contact-bg-3 {
  position: absolute;
  top: 10%;
  left: 40%;
  z-index: -1;
}

.contact-bg-4 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  z-index: -1;
}

.contact-bg-5 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  z-index: -1;
}

/* /////////////////////////////////////////////////
                contact css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                Preloader css start
///////////////////////////////////////////////// */
/* Preloader */
.ctn-preloader {
  align-items: center;
  cursor: none;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99999999;
}

.ctn-preloader .animation-preloader {
  position: absolute;
  z-index: 100;
}

/* Spinner cargando */
.ctn-preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid var(--brand2);
  border-top-color: #333;
  /* No se identa por orden alfabetico para que no lo sobre-escriba */
  height: 144px;
  margin: 0 auto 56px auto;
  width: 144px;
}

/* Texto cargando */
.ctn-preloader .animation-preloader .txt-loading {
  font: bold 80px var(--font1);
  text-align: center;
  user-select: none;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:before {
  animation: letters-loading 4s infinite;
  color: #ffffff;
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transform: rotateY(-90deg);
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading {
  color: rgba(255, 255, 255, 0.3);
  position: relative;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}

.ctn-preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}

.ctn-preloader .loader-section {
  background-color: #000000;
  height: 100%;
  position: fixed;
  top: 0;
  width: calc(50% + 1px);
}

.ctn-preloader .loader-section.section-left {
  left: 0;
}

.ctn-preloader .loader-section.section-right {
  right: 0;
}

/* Efecto de fade en la animación de cargando */
.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}

/* Efecto de cortina */
.loaded .loader-section.section-left {
  transform: translateX(-101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

.loaded .loader-section.section-right {
  transform: translateX(101%);
  transition: 0.7s 0.3s all cubic-bezier(0.1, 0.1, 0.1, 1.000);
}

/* Animación del preloader */
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}

/* Animación de las letras cargando del preloader */
@keyframes letters-loading {

  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }

  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}


/* /////////////////////////////////////////////////
                Preloader css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                Coming Soon css start
///////////////////////////////////////////////// */

.coming_soon {
  position: relative;
}

.coming_soon_details h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 40px;
  text-align: center;
  font-weight: 800;
  font-family: var(--font2);
}

.coming_soon_details h3 {
  color: var(--brand2);
  text-transform: uppercase;
  font-size: 70px;
  text-align: center;
  font-weight: 800;
  font-family: var(--font1);
}

.flipper {
  color: #333;
  display: block;
  font-size: 30px;
  line-height: 100%;
  padding: 0;
  margin: 0;
  height: 1.7em;
  font-family: var(--font1);
}

.flipper.flipper-invisible {
  font-size: 0px !important;
}

.flipper-group {
  position: relative;
  white-space: nowrap;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
}

.flipper-group label {
  position: absolute;
  color: #fff;
  font-size: 20%;
  top: 100%;
  line-height: 1em;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  text-align: center;
  padding-top: .5em;
}

.flipper-digit {
  white-space: nowrap;
  position: relative;
  padding: 0;
  margin: 0;
  display: block;
  float: left;
  height: 1.2em;
  overflow-y: hidden;
}

.flipper-digit span {
  font-size: 25%;
}

.flipper-delimiter {
  white-space: nowrap;
  display: block;
  float: left;
  padding: 0;
  margin: 0;
  color: #fff;
  min-width: .1em;
  white-space: nowrap;
  display: block;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  line-height: 1em;
}

.digit-face {
  display: block;
  visibility: hidden;
  position: relative;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  box-sizing: border-box;
  text-align: center;
}

.digit-next {
  display: block;
  position: relative;
  border-radius: 0.1em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  height: 1.2em;
  background: #fff;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  box-sizing: border-box;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.digit-top {
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  overflow: hidden;
  position: absolute;
  background: #fff;
  padding-top: 0.1em;
  padding-bottom: 0;
  padding-left: 0.1em;
  padding-right: 0.1em;
  border-top-left-radius: 0.1em;
  border-top-right-radius: 0.1em;
  box-sizing: border-box;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background 0s linear, -webkit-transform 0s linear;
  transition: transform 0s linear, background 0s linear;
  transition: transform 0s linear, background 0s linear, -webkit-transform 0s linear;
  -webkit-transform-origin: 0 0.6em 0 !important;
  transform-origin: 0 0.6em 0 !important;
  -webkit-transform-style: preserve-3d !important;
  transform-style: preserve-3d !important;
  z-index: 20;
}

.digit-top.r {
  transition: background 0.2s linear, -webkit-transform 0.2s linear;
  transition: transform 0.2s linear, background 0.2s linear;
  transition: transform 0.2s linear, background 0.2s linear, -webkit-transform 0.2s linear;
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  background: #cccccc;
}

.digit-top2 {
  visibility: hidden;
  position: absolute;
  height: 50%;
  left: 0;
  right: 0;
  background: #cccccc;
  transition: -webkit-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear;
  line-height: 0em !important;
  top: 50% !important;
  bottom: auto !important;
  padding-top: 0;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  border-bottom-left-radius: 0.1em;
  border-bottom-right-radius: 0.1em;
  overflow: hidden;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  transition: background 0s linear, -webkit-transform 0s linear;
  transition: transform 0s linear, background 0s linear;
  transition: transform 0s linear, background 0s linear, -webkit-transform 0s linear;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-style: preserve-3d !important;
  transform-style: preserve-3d !important;
  -webkit-transform-origin: 0 0 0 !important;
  transform-origin: 0 0 0 !important;
  z-index: 20;
}

.digit-top2.r {
  visibility: visible;
  transition: background 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, background 0.2s linear 0.2s;
  transition: transform 0.2s linear 0.2s, background 0.2s linear 0.2s, -webkit-transform 0.2s linear 0.2s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg);
  background: #fff;
}

.digit-bottom {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  pointer-events: none;
  position: absolute;
  overflow: hidden;
  background: #fff;
  height: 50%;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9;
  line-height: 0em;
  padding-top: 0;
  padding-bottom: 0.1em;
  padding-left: 0.1em;
  padding-right: 0.1em;
  border-bottom-left-radius: 0.1em;
  border-bottom-right-radius: 0.1em;
  box-sizing: border-box;
  text-align: center;
  transition: none;
}

.digit-bottom.r {
  transition: background 0.2s linear;
  background: #cccccc;
}

.flipper-digit:after {
  content: "";
  position: absolute;
  height: 2px;
  background: rgba(0, 0, 0, 0.5);
  top: 50%;
  display: block;
  z-index: 30;
  left: 0;
  right: 0;
}

.flipper-dark {
  color: #fff;
}

.flipper-dark .flipper-delimiter {
  color: #333;
}

.flipper-dark .digit-next {
  background: #333;
}

.flipper-dark .digit-top {
  background: #333;
}

.flipper-dark .digit-top.r {
  background: black;
}

.flipper-dark .digit-top2 {
  background: black;
}

.flipper-dark .digit-top2.r {
  background: #333;
}

.flipper-dark .digit-bottom {
  background: #333;
}

.flipper-dark-labels .flipper-group label {
  color: #333;
}

/* /////////////////////////////////////////////////
                Coming Soon css end
///////////////////////////////////////////////// */
/* /////////////////////////////////////////////////
                blog css start
///////////////////////////////////////////////// */
.blog_area a {
  text-decoration: none;
  transition: .4s;
  color: #fff;
}

.social-share ul li {
  display: inline-block;
  margin: 0 10px
}


.social-share ul li .section-tittle {
  display: flex
}

.social-share .section-tittle h3 {
  font-size: 20px;
  font-weight: 700;
}

.social-share .section-tittle {
  display: flex
}

.blog_item {
  margin-bottom: 50px;
  box-shadow: 0px 0px 8px 6px rgba(0, 0, 0, 0.2);
}

.blog_details {
  padding: 30px 30px 30px 30px;
  background: #673ab752;
}

.blog_details p {
  margin-bottom: 30px
}

.blog_details a {
  color: #ffc107;
}

.blog_details a:hover {
  color: var(--brand4);
}

.blog_details h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px
}


.blog-info-link li {
  float: left;
  font-size: 14px;
  color: #fff;
}

.blog-info-link li i {
  color: var(--brand4);
}

.blog-info-link li a {
  color: #fff;
}

.blog-info-link li i,
.blog-info-link li span {
  font-size: 13px;
  margin-right: 5px
}

.blog-info-link li::after {
  content: "|";
  padding-left: 10px;
  padding-right: 10px
}

.blog-info-link li:last-child::after {
  display: none
}

.blog-info-link::after {
  content: "";
  display: block;
  clear: both;
  display: table
}

.blog_item_img {
  position: relative
}

.blog_item_img .blog_item_date {
  position: absolute;
  bottom: -10px;
  left: 10px;
  display: block;
  background-color: var(--brand3);
  padding: 8px 15px;
  border-radius: 5px;
}

.blog_item_img .blog_item_date h3 {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.2
}

.blog_item_img .blog_item_date p {
  font-size: 18px;
  margin-bottom: 0;
  color: #fff
}

.blog_right_sidebar .single_sidebar_widget {
  background: #673ab752;
  padding: 30px;
  margin-bottom: 30px;
}

.blog_right_sidebar .single_sidebar_widget .btn_1 {
  margin-top: 0px;
  background: var(--brand2);
  padding: 10px 20px;
  border: none;
  margin-top: 10px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog_right_sidebar .donate_widget .donate {
  width: 100%;
}

.blog_right_sidebar .donate_widget .denomination {
  width: 32.93%;
}

.blog_right_sidebar .single_sidebar_widget .btn_1:hover {
  background: var(--brand);
}


.blog_right_sidebar .search_widget .form-control {
  height: 49px;
  border-color: #fff;
  font-size: 13px;
  color: #000;
  padding-left: 20px;
  border-radius: 0;
  border-right: 0;
}

.blog_right_sidebar .search_widget .form-control::placeholder {
  color: #999999
}

.blog_right_sidebar .search_widget .form-control:focus {
  border-color: #f0e9ff;
  outline: 0;
  box-shadow: none
}

.blog_right_sidebar .search_widget .input-group button {
  background: var(--brand2);
  border-left: 0;
  border: 1px solid var(--brand2);
  padding: 3.4px 15px;
  border-left: 0;
  cursor: pointer;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.blog_right_sidebar .search_widget .input-group button:hover {
  background: var(--brand);
}

.blog_right_sidebar .search_widget .input-group button i {
  color: #fff;
  padding: 12px;
}

.blog_right_sidebar .search_widget .input-group button span {
  font-size: 14px;
  color: #999999
}

.blog_right_sidebar .newsletter_widget .form-control {
  height: 50px;
  border-color: #f0e9ff;
  font-size: 13px;
  color: #999999;
  padding-left: 20px;
  border-radius: 0
}

.blog_right_sidebar .newsletter_widget .form-control::placeholder {
  color: #999999
}

.blog_right_sidebar .newsletter_widget .form-control:focus {
  border-color: #f0e9ff;
  outline: 0;
  box-shadow: none
}

.blog_right_sidebar .newsletter_widget .input-group button {
  background: #fff;
  border-left: 0;
  border: 1px solid #f0e9ff;
  padding: 4px 15px;
  border-left: 0
}

.blog_right_sidebar .newsletter_widget .input-group button i,
.blog_right_sidebar .newsletter_widget .input-group button span {
  font-size: 14px;
  color: #fff
}

.blog_right_sidebar .post_category_widget .cat-list li {
  transition: all 0.3s ease 0s;
  padding-bottom: 12px
}

.blog_right_sidebar .post_category_widget .cat-list li:last-child {
  border-bottom: 0
}

.blog_right_sidebar .post_category_widget .cat-list li a {
  font-size: 14px;
  line-height: 20px;
  color: #888888
}

.blog_right_sidebar .post_category_widget .cat-list li a p {
  margin-bottom: 0px;
  text-transform: capitalize;
}

.blog_right_sidebar .post_category_widget .cat-list li+li {
  padding-top: 15px
}

.cat-list a p {
  font-size: 15px;
}

.cat-list a:hover p {
  color: var(--brand4);
}

.blog_right_sidebar .popular_post_widget .post_item .media-body {
  justify-content: center;
  align-self: center;
  padding-left: 20px
}

.blog_right_sidebar .popular_post_widget .post_item .media-body h3 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 6px;
  transition: all 0.3s linear;
  color: #fff;
}

.post_item:hover h3 {
  color: var(--brand4) !important;
}


.blog_right_sidebar .popular_post_widget .post_item .media-body p {
  font-size: 14px;
  line-height: 21px;
  margin-bottom: 0px
}

.blog_right_sidebar .popular_post_widget .post_item+.post_item {
  margin-top: 20px
}

.blog_right_sidebar .tag_cloud_widget ul li {
  display: inline-block
}

.blog_right_sidebar .tag_cloud_widget ul li a {
  display: inline-block;
  border: 1px solid var(--brand2);
  background: var(--brand2);
  padding: 4px 20px;
  margin-bottom: 8px;
  margin-right: 0px;
  transition: all 0.3s ease 0s;
  color: #fff;
  font-size: 13px;
}

.blog_right_sidebar .tag_cloud_widget ul li a:hover {
  background: var(--brand);
  color: #fff !important;
  -webkit-text-fill-color: #fff;
  text-decoration: none;
  -webkit-transition: 0.5s;
  transition: 0.5s
}

.blog_right_sidebar .instagram_feeds .instagram_row {
  display: flex;
  margin-right: -6px;
  margin-left: -6px
}

.blog_right_sidebar .instagram_feeds .instagram_row li {
  width: 28.33%;
  float: left;
  /* padding-right: 6px; */
  /* padding-left: 6px; */
  margin-bottom: 15px;
  margin-left: 6px;
  margin-right: 6px;
}

.instagram_row li {
  position: relative;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.instagram_row li:hover .instagram_overlay {
  visibility: visible;
}

.instagram_overlay {
  position: absolute;
  left: 0;
  top: 0;
  background-color: #673ab752;
  width: 100%;
  height: 100%;
  visibility: hidden;
  display: flex;
  justify-content: center;
}

.instagram_overlay i {
  color: var(--brand4);
  font-weight: 800;
  font-size: 22px;
}

.blog_right_sidebar .br {
  width: 100%;
  height: 1px;
  background: #eee;
  margin: 30px 0px
}

.blog-pagination {
  margin-top: 80px
}

.blog-pagination .page-link {
  font-size: 14px;
  position: relative;
  display: block;
  padding: 0;
  text-align: center;
  margin-left: -1px;
  line-height: 45px;
  width: 45px;
  height: 45px;
  border-radius: 0 !important;
  color: #fff;
  border: 1px solid #f0e9ff;
  margin-right: 10px;
  background: #673ab752;
}

.blog-pagination .page-link:hover {
  background-color: var(--brand2);
  border-color: var(--brand2);
  color: #fff;
}

.blog-pagination .page-link i,
.blog-pagination .page-link span {
  font-size: 13px
}

.blog-pagination .page-item.active .page-link {
  background-color: var(--brand2);
  border-color: var(--brand2);
  color: #fff;
}

.blog-pagination .page-item:last-child .page-link {
  margin-right: 0
}

.Single_blog {
  background: var(--brand3);
}

.Single_blog h4 a {
  font-size: 20px;
}

.Single_blog a:hover {
  color: var(--brand4);
}

/* /////////////////////////////////////////////////
                blog css end
///////////////////////////////////////////////// */

/* /////////////////////////////////////////////////
                single blog area css start
///////////////////////////////////////////////// */
.single-post-area .blog_details {
  box-shadow: none;
  /* padding: 0 */
}

.single-post-area .social-links {
  padding-top: 10px
}

.single-post-area .blog_details ul {
  padding: 0px;
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.single-post-area .blog_details ul li a {
  transition: all linear .3s;
  -webkit-transition: all linear .3s;
  -moz-transition: all linear .3s;
  -ms-transition: all linear .3s;
  -o-transition: all linear .3s;
}

.single-post-area .social-links li {
  display: inline-block;
  margin-bottom: 10px
}

.single-post-area .social-links li a {
  color: #cccccc;
  padding: 7px;
  font-size: 14px;
  transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
}

/* .single-post-area .blog_details {
  padding-top: 26px
} */

.single-post-area .blog_details p {
  margin-bottom: 20px;
  font-size: 16px
}

.single-post-area .quote-wrapper {
  background: rgba(130, 139, 178, 0.1);
  padding: 15px;
  line-height: 1.733;
  color: #fff;
  font-style: italic;
  margin-top: 25px;
  margin-bottom: 25px
}



.single-post-area .quotes {
  background: #333;
  padding: 15px 15px 15px 20px;
  border-left: 2px solid var(--brand4);
}

.single-post-area .arrow {
  position: absolute
}

.single-post-area .arrow .lnr {
  font-size: 20px;
  font-weight: 600
}

.single-post-area .thumb .overlay-bg {
  background: rgba(0, 0, 0, 0.8)
}

.single-post-area .navigation-top {
  padding-top: 15px;
}

.single-post-area .navigation-top p {
  margin-bottom: 0
}

.single-post-area .navigation-top .like-info {
  font-size: 14px
}

.single-post-area .navigation-top .like-info i,
.single-post-area .navigation-top .like-info span {
  font-size: 16px;
  margin-right: 5px;
  color: var(--brand3);
}

.single-post-area .navigation-top .comment-count {
  font-size: 14px
}

.single-post-area .navigation-top .comment-count i,
.single-post-area .navigation-top .comment-count span {
  font-size: 16px;
  margin-right: 5px;
  color: var(--brand3);
}

.single-post-area .navigation-top .social-icons li {
  display: inline-block;
  margin-right: 15px
}

.single-post-area .navigation-top .social-icons li:last-child {
  margin: 0
}

.single-post-area .navigation-top .social-icons li i,
.single-post-area .navigation-top .social-icons li span {
  font-size: 14px;
  color: #999999
}

.single-post-area .blog-author {
  padding: 10px 30px;
  background: #333;
  margin-top: 30px;
}

.single-post-area .blog-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 30px
}


.single-post-area .blog-author a {
  display: inline-block
}

.single-post-area .blog-author a:hover {
  color: #ff656a
}

.single-post-area .blog-author p {
  margin-bottom: 0;
  font-size: 15px
}

.single-post-area .blog-author h4 {
  font-size: 25px;
  font-weight: 800;
  color: var(--brand2);
}

.single-post-area .navigation-area {
  padding-bottom: 30px;
  margin-top: 55px
}

.single-post-area .navigation-area p {
  margin-bottom: 0px
}

.single-post-area .navigation-area h4 {
  font-size: 18px;
  line-height: 25px;
  color: var(--primary);
}

.single-post-area .navigation-area .nav-left {
  text-align: left
}

.single-post-area .navigation-area .nav-left .thumb {
  margin-right: 20px;
  background: #000
}

.single-post-area .navigation-area .nav-left .thumb img {
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s
}

.single-post-area .navigation-area .nav-left .lnr {
  margin-left: 20px;
  opacity: 0;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s
}

.single-post-area .navigation-area .nav-left:hover .lnr {
  opacity: 1
}

.single-post-area .navigation-area .nav-left:hover .thumb img {
  opacity: .5
}


.single-post-area .navigation-area .nav-right {
  text-align: right
}

.single-post-area .navigation-area .nav-right .thumb {
  margin-left: 20px;
  background: #000
}

.single-post-area .navigation-area .nav-right .thumb img {
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s
}

.single-post-area .navigation-area .nav-right .lnr {
  margin-right: 20px;
  opacity: 0;
  -webkit-transition: all .3s ease-out 0s;
  -moz-transition: all .3s ease-out 0s;
  -ms-transition: all .3s ease-out 0s;
  -o-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s
}

.single-post-area .navigation-area .nav-right:hover .lnr {
  opacity: 1
}

.single-post-area .navigation-area .nav-right:hover .thumb img {
  opacity: .5
}

.comments-area {
  background: transparent;
  border-top: 1px solid #333;
  padding: 45px 0;
  margin-top: 50px
}

.comments-area h4 {
  margin-bottom: 35px;
  font-size: 18px
}

.comments-area h5 {
  font-size: 16px;
  margin-bottom: 0px
}

.comments-area .comment-list {
  padding-bottom: 48px
}

.comments-area .comment-list:last-child {
  padding-bottom: 0px
}

.comments-area .comment-list.left-padding {
  padding-left: 25px
}

.comments-area .thumb {
  margin-right: 20px
}

.comments-area .thumb img {
  width: 70px;
  border-radius: 50%
}

.single-comment h5 a {
  color: var(--brand4);
}

.comments-area .date {
  font-size: 14px;
  color: var(--brand3);
  margin-bottom: 0;
  margin-left: 20px;
}

.comments-area .comment {
  margin-bottom: 10px;
  color: #fff;
  font-size: 15px
}

.comments-area .btn-reply {
  background-color: transparent;
  color: var(--brand4);
  padding: 5px 18px;
  font-size: 14px;
  display: block;
  font-weight: 400
}

.load_more a {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font2);
  text-transform: capitalize;
  color: var(--brand4);
}

.contact_form .form-floating>.form-control-plaintext~label::after,
.form-floating>.form-control:focus~label::after,
.form-floating>.form-control:not(:placeholder-shown)~label::after,
.form-floating>.form-select~label::after {
  background-color: transparent;
  color: #fff;
}

.contact_form .form-control:focus {
  color: #fff;
  border-color: #450e8b;
  box-shadow: 0 8px 28px rgba(68, 14, 139, 0.5);
}

.contact_form .form-floating>.form-control-plaintext~label,
.form-floating>.form-control:focus~label,
.form-floating>.form-control:not(:placeholder-shown)~label,
.form-floating>.form-select~label {
  color: #fff;
}

.contact_form .form-control {
  color: #fff;
}

.contact_form .form-floating>label {
  color: #fff;
}

.contact_form .form-control {
  background-color: transparent;
  border-color: #450e8b;
}

/* /////////////////////////////////////////////////
          single blog area css end
///////////////////////////////////////////////// */

/* /////////////////////////////////////////////////
                app button css start
///////////////////////////////////////////////// */

.app-button li {
  margin: 12px 12px;
  z-index: 3;
  position: relative;
}

.app-button li a {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 63px;
  background: #333;
  border-radius: 50%;
  font-size: 30px;
  transition: .5s;
}

.app-button li a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #009C75;
  transition: .5s;
  transform: scale(.9);
  z-index: -1;
  visibility: hidden;
}

.app-button li a:hover::before {
  transform: scale(1.1);
  box-shadow: 0 0 15px #009C75;
  visibility: visible;
}

.app-button li a:hover {
  color: #009C75;
  box-shadow: 0 0 5px #009C75;
  text-shadow: 0 0 5px #009C75;
}

.tooltip {
  position: absolute;
  top: -20px;
  opacity: 0;
  background-color: #009C75;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-duration: 0.2s;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.tooltip::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  background-color: #009C75;
  background-size: 1000%;
  background-position: center;
  transform: rotate(45deg);
  bottom: -15%;
  transition-duration: 0.3s;
}

.app-button:hover .tooltip {
  top: -40px;
  opacity: 1;
  transition-duration: 0.3s;
}

/* /////////////////////////////////////////////////
								app button css end
///////////////////////////////////////////////// */