/*
@File: Bfic Template Styles

* This file contains the styling for the actual template, this
is the file you need to edit to change the look of the template.

This files table contents are outlined below>>>>>

******************************************* 
** - DEFAULT AREA STYLE - **

** - Default Btn Area Style
** - Read More Area Style
** - Section Title Area Style
** - Banner Area Style
** - Marquee Area Style
** - About Area Style
** - Counter Area Style
** - Services Area Style
** - Consultant Area Style
** - Feedback Area Style
** - Studies Area Style
** - Advisors Area Style
** - Partners Area Style
** - Blog Area Style
** - Images Hover Effect Area Style
** - Pricing Area Style
** - Contact Form Area Style
** - Page Banner Area Style
** - Faq Area Style
** - Error Area Style
** - Main Content Text Style
** - Career Area Style
** - Blog Details Area Style
** - Siidebar widgets Area Style
** - project Info Area Style
** - OTHERS STYLE AREA

*******************************************
/*

/*
Default Style
============================*/
:root {
  --bodyFontFamily: "Poppins", sans-serif;
  --bodyColor: #666666;
  --mainColor: #808CFF;
  --headingColor: #111111;
  --whiteColor: #ffffff;
  --blackColor: #000000;
  --fontSize: 16px;
  --transition: all ease .5s;
  --borderRadius: 4px;
  --boxShadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

body {
  font-size: var(--fontSize);
  font-family: var(--bodyFontFamily);
  color: var(--bodyColor);
}

a {
  transition: var(--transition);
  color: var(--bodyColor);
}
a:hover {
  color: var(--mainColor);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  color: var(--headingColor);
  font-weight: 600;
}

h1 {
  font-weight: 700;
}

h3 {
  font-weight: 500;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table-cell {
  vertical-align: middle;
}

p {
  margin-bottom: 15px;
  line-height: 1.7;
}
p:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.form-control {
  background-color: #F9FAFB;
  border: 1px solid #D9D9D9;
  height: 60px;
  color: var(--headingColor);
  font-size: 15px;
  padding: 10px 20px;
  width: 100%;
  transition: var(--transition);
  border-radius: 0;
}
.form-control::-moz-placeholder {
  color: #718A96;
  font-size: 14px;
}
.form-control::placeholder {
  color: #718A96;
  font-size: 14px;
}
.form-control:focus {
  color: var(--blackColor);
  background-color: transparent;
  box-shadow: unset;
  outline: 0;
  border: 1px solid var(--mainColor);
}
.form-control.form-select {
  cursor: pointer;
}

textarea.form-control {
  height: auto;
}

.ptb-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.ptb-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pt-100 {
  padding-top: 100px;
}

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

.pt-70 {
  padding-top: 70px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-50 {
  padding-bottom: 50px;
}

.mt-30 {
  margin-top: 30px;
}

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

.mb-35 {
  margin-bottom: 35px;
}

.mb-24 {
  margin-bottom: 24px;
}

.scroll-bar {
  margin-top: 0 !important;
  overflow: auto;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
.scroll-bar::-webkit-scrollbar {
  width: 6px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.scroll-bar::-webkit-scrollbar-track {
  background: #dbdbdb;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.scroll-bar::-webkit-scrollbar-thumb {
  background: #999999;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.scroll-bar::-webkit-scrollbar-thumb:hover {
  background: var(--mainColor);
}

/*
Bg-color Style*/
.bg-color-fcef96 {
  background-color: #fcef96;
}

.bg-color-10182c {
  background-color: #10182c;
}

.bg-color-ffffff {
  background-color: #ffffff;
}

.bg-color-808cff {
  background-color: var(--mainColor);
}

.bg-color-f4f0ed {
  background-color: #f4f0ed;
}

.bg-color-10182b {
  background-color: #10182b;
}

.bg-color-f4f3f2 {
  background-color: #f4f3f2;
}

/*
Default Btn Area Style*/
.default-btn {
  transition: var(--transition);
  color: var(--headingColor) !important;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  display: inline-flex;
  text-decoration: none;
  line-height: 20px;
  padding: 15px 25px;
  position: relative;
  z-index: 1;
}
.default-btn i {
  font-size: 18px;
  margin-left: 8px;
  left: -2px;
  position: relative;
}
.default-btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 40px;
  width: 50px;
  height: 50px;
  background-color: var(--mainColor);
  border-radius: 50px;
  z-index: -1;
  transition: var(--transition);
  opacity: 0.5;
}
.default-btn:hover {
  color: var(--whiteColor) !important;
}
.default-btn:hover:before {
  width: 100%;
  right: 0;
  left: auto;
  opacity: 1;
}
.default-btn.active {
  color: var(--whiteColor) !important;
}
.default-btn.active:before {
  width: 100%;
  right: 0;
  left: auto;
}
.default-btn.active:hover {
  color: var(--whiteColor) !important;
}
.default-btn.active:hover:before {
  width: 100%;
  right: 0;
  left: auto;
}
.default-btn.bg-fcef96 {
  color: var(--headingColor) !important;
}
.default-btn.bg-fcef96::before {
  background-color: #fcef96;
}
.default-btn.text-white {
  color: var(--whiteColor) !important;
}
.default-btn.btn-rounded-0 {
  background-color: var(--mainColor);
  color: var(--whiteColor) !important;
}
.default-btn.btn-rounded-0::before {
  display: none;
}
.default-btn.btn-rounded-0:hover {
  background-color: #FCEF96;
  color: var(--headingColor);
}
.default-btn.btn-rounded-0.active {
  background-color: #FCEF96;
  color: var(--headingColor) !important;
}
.default-btn.btn-rounded-0.active:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor) !important;
}

/*
Read More Btn Area Style*/
.read-more {
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  text-decoration: none;
  color: var(--mainColor);
}
.read-more img {
  margin-left: 15px;
}
.read-more:hover {
  color: var(--mainColor);
}
.read-more:hover i {
  color: var(--mainColor);
}
.read-more.active {
  color: var(--mainColor);
}
.read-more.active i {
  color: var(--mainColor);
}

/*
Section Title Area Style*/
.section-title {
  max-width: 860px;
  margin: 0 auto 35px;
  text-align: center;
  position: relative;
}
.section-title .top-title {
  background: rgba(128, 140, 255, 0.2);
  border-radius: 50px;
  padding: 3px 20px;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 5px;
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 16px;
  line-height: 60px;
}
.section-title h2 .oblig {
  margin-left: 45px;
  margin-right: 45px;
}
.section-title h2 a {
  color: var(--mainColor);
}
.section-title h2:last-child {
  margin-bottom: 0;
}
.section-title p {
  max-width: 600px;
  margin: auto;
}
.section-title p span {
  color: var(--mainColor);
}
.section-title.white-title h2 {
  color: var(--whiteColor);
}
.section-title.white-title p {
  color: var(--whiteColor);
}
.section-title.left-title {
  margin-left: 0;
  text-align: left;
}
.section-title.mw-580 {
  max-width: 580px;
}
.section-title.mw-600 {
  max-width: 600px;
}
.section-title.mw-650 {
  max-width: 650px;
}

/*
Shape Area Style*/
.shape {
  position: absolute;
  z-index: -1;
}
.shape.shape-1 {
  top: 105px;
  left: 0;
  right: 0;
}
.shape.shape-3 {
  top: 75px;
  left: 0;
}
.shape.shape-5 {
  top: -430px;
  left: 0;
}
.shape.shape-6 {
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  max-width: 520px;
  height: 600px;
}
.shape.shape-7 {
  bottom: 0;
  left: 0;
}
.shape.shape-8 {
  top: 20px;
  right: 0;
}
.shape.shape-9 {
  top: 105px;
  right: 0;
  left: 0;
}
.shape.shape-10 {
  top: -80px;
  right: 0;
}

/* Banner Area Style
==================================================*/
.banner-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.banner-area.bg-1 {
  padding-top: 210px;
}
.banner-area.bg-2 {
  padding-top: 220px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.banner-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}
.banner-area.bg-3 {
  padding-top: 205px;
  background-image: url(../images/banner/banner-bg-3.html);
  position: relative;
  z-index: 1;
}
.banner-area.bg-3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--headingColor);
  opacity: 0.9;
  z-index: -1;
}
.banner-area.bg-3 .container-fluid {
  max-width: 1780px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-content {
  max-width: 1135px;
  margin: auto;
}
.banner-content h2 {
  font-weight: 700;
  font-size: 100px;
  line-height: 140px;
  text-shadow: 0px 3px 50px rgba(53, 42, 57, 0.1);
  position: relative;
  z-index: 1;
  margin-bottom: 70px;
}
.banner-content .finance-info {
  bottom: 335px;
  left: -170px;
}
.banner-content .finance-info .info-1 {
  animation: rotation 30s infinite linear;
  cursor: move;
}
.banner-content .default-btn {
  background-color: unset;
}

.banner-img {
  margin-top: -412px;
  display: inline-block;
}
.banner-img .img-wrap .img2 {
  right: 0;
  margin: auto;
}

.grow-social-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.grow-social-wrap .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}
.grow-social-wrap .social-link {
  line-height: 1;
  margin-bottom: 45px;
}
.grow-social-wrap .social-link li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.grow-social-wrap .social-link li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 1px;
  height: 100%;
  background-color: var(--headingColor);
}
.grow-social-wrap .social-link li span {
  font-weight: 600;
  color: var(--headingColor);
}
.grow-social-wrap .social-link li a {
  color: var(--headingColor);
  text-decoration: none;
}
.grow-social-wrap .social-link li a:hover {
  color: var(--mainColor);
}
.grow-social-wrap .social-link li:first-child {
  margin-right: 0;
}
.grow-social-wrap .social-link li:first-child::before {
  display: none;
}
.grow-social-wrap .social-link li:last-child {
  margin-right: 0;
}
.grow-social-wrap .social-link li:last-child::before {
  display: none;
}
.grow-social-wrap .grow-img {
  max-width: 350px;
}

.banner-content-two {
  max-width: 910px;
}
.banner-content-two .top-title {
  background: rgba(128, 140, 255, 0.2);
  border-radius: 50px;
  padding: 3px 20px;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 5px;
}
.banner-content-two h2 {
  font-weight: 700;
  font-size: 90px;
  line-height: 120px;
  text-shadow: 0px 3px 50px rgba(53, 42, 57, 0.1);
  margin-bottom: 25px;
}
.banner-content-two p {
  margin-top: 30px;
  font-size: 18px;
}
.banner-content-two .ms-60 {
  margin-left: 60px;
}
.banner-content-two .social-link {
  line-height: 1;
  margin-top: 150px;
}
.banner-content-two .social-link li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.banner-content-two .social-link li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 1px;
  height: 100%;
  background-color: var(--headingColor);
}
.banner-content-two .social-link li span {
  font-weight: 600;
  color: var(--headingColor);
}
.banner-content-two .social-link li a {
  color: var(--headingColor);
  text-decoration: none;
}
.banner-content-two .social-link li a:hover {
  color: var(--mainColor);
}
.banner-content-two .social-link li:first-child {
  margin-right: 0;
}
.banner-content-two .social-link li:first-child::before {
  display: none;
}
.banner-content-two .social-link li:last-child {
  margin-right: 0;
}
.banner-content-two .social-link li:last-child::before {
  display: none;
}

.banner-content-three .info-icon-wrap {
  margin-bottom: 33px;
}
.banner-content-three .info-icon-wrap .info-3 {
  animation: rotation 30s infinite linear;
}
.banner-content-three h2 {
  font-size: 75px;
  line-height: 100px;
  margin-bottom: 11px;
  color: var(--whiteColor);
}
.banner-content-three p {
  color: var(--whiteColor);
  max-width: 695px;
  margin: auto;
  margin-bottom: 30px;
}
.banner-content-three .scroll {
  width: 50px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border: 1px solid var(--mainColor);
  display: inline-block;
  border-radius: 50px;
}
.banner-content-three .scroll .down {
  animation: mover 1s infinite alternate;
}
.banner-content-three .scroll:hover {
  background-color: var(--mainColor);
}
.banner-content-three .scroll:hover .down {
  filter: brightness(100);
}

@keyframes mover {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
.banner-img-two {
  max-width: 575px;
  margin-left: auto;
}

.banner-img-left-right {
  position: relative;
}
.banner-img-left-right::before {
  content: "";
  position: absolute;
  top: -9px;
  left: -9px;
  width: 100%;
  height: 100%;
  background: rgba(128, 140, 255, 0.2);
}
.banner-img-left-right .signicher {
  position: absolute;
  left: 0;
  bottom: -56px;
}

/* Marquee Area Style
==================================================*/
.marquee-wrapper {
  overflow: hidden;
}
.marquee-wrapper .marquee {
  display: inline-block;
  white-space: nowrap;
  position: relative;
  transform: translate3d(0%, 0, 0);
  animation-name: marquee;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 57s;
}
.marquee-wrapper .marquee a {
  display: inline-block;
  white-space: nowrap;
  padding-right: 100px;
  text-decoration: none;
  color: var(--headingColor);
  font-weight: 700;
  font-size: 24px;
  position: relative;
  line-height: 36px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.marquee-wrapper .marquee a::before {
  content: "";
  position: absolute;
  top: 32px;
  transform: translateY(-50%);
  right: 42px;
  width: 1px;
  height: 36px;
  background-color: var(--headingColor);
  border-radius: 50px;
  transform: rotate(15deg);
}
.marquee-wrapper .marquee a:hover {
  color: var(--mainColor);
}
.marquee-wrapper .marquee a:last-child {
  padding-right: 0;
}
.marquee-wrapper .marquee a:last-child::before {
  display: none;
}
.marquee-wrapper.style-two .marquee a {
  color: var(--mainColor);
}
.marquee-wrapper.style-two .marquee a::before {
  background-color: var(--mainColor);
}
.marquee-wrapper.style-theee .marquee a {
  font-weight: 600;
  font-size: 40px;
  color: var(--mainColor);
  color: transparent;
  -webkit-text-stroke: 1px #ffffff;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding-top: 0;
  padding-bottom: 10px;
}
.marquee-wrapper.style-theee .marquee a::before {
  background-color: var(--whiteColor);
  top: 5px;
}
.marquee-wrapper.call .marquee a {
  font-weight: 600;
  font-size: 50px;
}
.marquee-wrapper.call .marquee a:hover {
  color: var(--mainColor);
}
.marquee-wrapper:hover .marquee {
  animation-play-state: paused !important;
}

@keyframes marquee {
  0% {
    transform: translate3d(0%, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}
/* About Area Style
==================================================*/
.about-content h2 {
  font-weight: 600;
  font-size: 40px;
  line-height: 60px;
  margin-bottom: 6px;
}
.about-content .about-list-wrap .about-list {
  margin-bottom: 25px;
  margin-left: 0;
}
.about-content .about-list-wrap .about-list li {
  margin-bottom: 20px;
}
.about-content .about-list-wrap .about-list li i {
  color: var(--mainColor);
  position: relative;
  top: 2px;
  font-weight: 600;
}
.about-content .about-list-wrap .about-list li:last-child {
  margin-bottom: 0;
}
.about-content .about-list-wrap .about-list li span {
  font-weight: 600;
  color: var(--headingColor);
  margin-left: 5px;
}
.about-content.ml-8 {
  margin-left: -8px;
}

.about-content-two .about-content-wrap {
  max-width: 425px;
  margin-left: auto;
  margin-bottom: 95px;
}
.about-content-two .about-content-wrap .about-list {
  margin-bottom: 25px;
}
.about-content-two .about-content-wrap .about-list li {
  margin-bottom: 20px;
}
.about-content-two .about-content-wrap .about-list li:last-child {
  margin-bottom: 0;
}
.about-content-two .about-content-wrap .about-list li span {
  font-weight: 600;
  color: var(--headingColor);
  margin-left: 10px;
}
.about-content-two .about-content-wrap .default-btn {
  margin-top: 30px;
}
.about-content-two .sign-about-list {
  margin-left: -245px;
  position: relative;
}
.about-content-two .sign-about-list .about-sing {
  background-color: #10182C;
  padding: 40px 50px;
  max-width: 425px;
}
.about-content-two .sign-about-list .about-sing h6 {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  color: var(--whiteColor);
  margin-bottom: 18px;
}
.about-content-two .sign-about-list .about-sing .daniel {
  color: #FCEF96;
  position: relative;
  padding-left: 65px;
}
.about-content-two .sign-about-list .about-sing .daniel::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 50px;
  height: 1px;
  background-color: #FCEF96;
}
.about-content-two .sign-about-list .about-list {
  margin-left: 27px;
}
.about-content-two .sign-about-list .about-list li {
  margin-bottom: 15px;
  font-weight: 600;
  font-size: 16px;
  color: var(--headingColor);
}
.about-content-two .sign-about-list .about-list li:last-child {
  margin-bottom: 0;
}
.about-content-two .sign-about-list .about-list li i {
  color: var(--mainColor);
  position: relative;
  top: 2px;
  margin-right: 4px;
}

.year-counts h2 {
  font-size: 64px;
  font-weight: 700;
  color: var(--mainColor);
}

/* Counter Area Style
==================================================*/
.counter-area .col-lg-3:last-child .single-counter::before {
  display: none;
}
.counter-area .custom-grid:last-child .single-counter::before {
  display: none;
}
.counter-area .custom-grid:last-child .single-counter.style-two::before {
  display: none !important;
}

.about-area-style-two .col-lg-3:last-child .single-counter::before {
  display: none;
}

.single-counter {
  margin-bottom: 30px;
  position: relative;
}
.single-counter::before {
  content: "";
  position: absolute;
  top: 0;
  right: -107px;
  width: 100%;
  height: 100%;
  border-right: dashed 1px #B6BEEB;
}
.single-counter h2 {
  font-size: 100px;
  line-height: 1;
  color: rgba(128, 140, 255, 0.1);
  -webkit-text-stroke: 1px var(--mainColor);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.single-counter h2 .target {
  margin-left: -22px;
}
.single-counter .title {
  margin-right: -65px;
  white-space: nowrap;
}
.single-counter.style-two::before {
  border-color: rgba(182, 190, 235, 0.5);
}
.single-counter.style-three h2 {
  color: var(--mainColor);
}
.single-counter.style-three .title {
  margin-left: -80px;
  margin-right: 0;
}

/* Services Area Style
==================================================*/
.services-tab .nav-tabs .nav-item {
  margin-bottom: 10px;
}
.services-tab .nav-tabs .nav-item .nav-link {
  border: none;
  background-color: #1E2636;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.services-tab .nav-tabs .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0;
  background-color: #FCEF96;
  z-index: -1;
  transition: var(--transition);
}
.services-tab .nav-tabs .nav-item .nav-link .icon1 {
  width: 100px;
  height: 100px;
  line-height: 115px;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--mainColor);
  font-size: 50px;
  transition: var(--transition);
}
.services-tab .nav-tabs .nav-item .nav-link h3 {
  color: var(--whiteColor);
  margin-bottom: 0;
  font-size: 24px;
  margin-left: 30px;
  transition: var(--transition);
}
.services-tab .nav-tabs .nav-item .nav-link .icon2 {
  width: 50px;
  height: 50px;
  line-height: 56px;
  text-align: center;
  border-radius: 100px;
  background-color: rgba(128, 140, 255, 0.5);
  color: var(--whiteColor);
  font-size: 18px;
  transition: var(--transition);
}
.services-tab .nav-tabs .nav-item .nav-link .icon2 i {
  position: relative;
  right: -27px;
  transition: var(--transition);
}
.services-tab .nav-tabs .nav-item .nav-link.active::before {
  bottom: auto;
  top: 0;
  height: 100%;
}
.services-tab .nav-tabs .nav-item .nav-link.active .icon1 {
  background: rgba(255, 255, 255, 0.3);
}
.services-tab .nav-tabs .nav-item .nav-link.active .icon2 {
  background-color: var(--mainColor);
}
.services-tab .nav-tabs .nav-item .nav-link.active .icon2 i {
  right: 0;
}
.services-tab .nav-tabs .nav-item .nav-link.active h3 {
  color: var(--headingColor);
}
.services-tab .nav-tabs .nav-item .nav-link:hover::before {
  bottom: auto;
  top: 0;
  height: 100%;
}
.services-tab .nav-tabs .nav-item .nav-link:hover .icon1 {
  background: rgba(255, 255, 255, 0.3);
}
.services-tab .nav-tabs .nav-item .nav-link:hover .icon2 i {
  right: 0;
}
.services-tab .nav-tabs .nav-item .nav-link:hover h3 {
  color: var(--headingColor);
}
.services-tab .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}
.services-tab.style-two .nav-tabs .nav-item .nav-link {
  background-color: #F4F3F2;
}
.services-tab.style-two .nav-tabs .nav-item .nav-link::before {
  background-color: var(--mainColor);
}
.services-tab.style-two .nav-tabs .nav-item .nav-link .icon1 {
  background-color: #FFFFFF;
}
.services-tab.style-two .nav-tabs .nav-item .nav-link h3 {
  color: var(--headingColor);
}
.services-tab.style-two .nav-tabs .nav-item .nav-link .icon2 {
  background-color: rgba(128, 140, 255, 0.5);
  color: var(--headingColor);
}
.services-tab.style-two .nav-tabs .nav-item .nav-link.active .icon1 {
  background: rgba(255, 255, 255, 0.1);
  color: var(--whiteColor);
}
.services-tab.style-two .nav-tabs .nav-item .nav-link.active h3 {
  color: var(--whiteColor);
}
.services-tab.style-two .nav-tabs .nav-item .nav-link.active .icon2 {
  background: #FCEF96;
}
.services-tab.style-two .nav-tabs .nav-item .nav-link:hover .icon1 {
  background: rgba(255, 255, 255, 0.1);
  color: var(--whiteColor);
}
.services-tab.style-two .nav-tabs .nav-item .nav-link:hover h3 {
  color: var(--whiteColor);
}
.services-tab.style-two .nav-tabs .nav-item .nav-link:hover .icon2 {
  background: #FCEF96;
}

.services-content-two .top-title {
  background: rgba(128, 140, 255, 0.2);
  border-radius: 50px;
  padding: 3px 20px;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 24px;
}
.services-content-two h2 {
  font-size: 40px;
  color: var(--whiteColor);
  line-height: 60px;
  max-width: 640px;
  margin-bottom: 0;
}

.services-content-wrap {
  margin-left: -370px;
}

.services-tab-two {
  background-color: #1E2637;
  padding: 40px 50px;
  margin-top: 35px;
  max-width: 535px;
}
.services-tab-two .nav-tabs .nav-item {
  margin-bottom: 46px;
}
.services-tab-two .nav-tabs .nav-item:last-child {
  margin-bottom: 0;
}
.services-tab-two .nav-tabs .nav-item .nav-link {
  color: var(--whiteColor);
  border: none;
  padding: 0;
}
.services-tab-two .nav-tabs .nav-item .nav-link h3 {
  color: var(--whiteColor);
  font-weight: 500;
  font-size: 24px;
  margin-bottom: 0;
}
.services-tab-two .nav-tabs .nav-item .nav-link.active {
  background-color: transparent;
  border: none;
}
.services-tab-two .nav-tabs .nav-item .nav-link.active h3 {
  color: var(--mainColor);
}
.services-tab-two .nav-tabs .nav-item .nav-link.active i {
  color: var(--mainColor);
}

.services-info-content h2 {
  font-size: 100px;
  line-height: 140px;
  color: rgba(252, 239, 150, 0.1);
  -webkit-text-stroke: 1px #FCEF96;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  margin-bottom: 0;
}
.services-info-content p {
  color: var(--whiteColor);
}
.services-info-content .ms-100 {
  margin-left: 100px;
}
.services-info-content .default-btn {
  margin-top: 25px;
}

.services-three-area {
  background-position: right center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
}
.services-three-area.bg-1 {
  background-image: url(../images/services/services-bg.html);
}
.services-three-area.bg-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #E8EEF9 44.39%, rgba(232, 238, 249, 0) 100%);
  z-index: -1;
}
.services-three-area .col-lg-3:nth-child(2) .single-services-three {
  margin-top: 30px;
}
.services-three-area .col-lg-3:nth-child(6) .single-services-three {
  margin-top: 30px;
}
.services-three-area .col-lg-3:nth-child(4) .single-services-three {
  margin-top: 30px;
}
.services-three-area .col-lg-3:nth-child(8) .single-services-three {
  margin-top: 30px;
}

.single-services-three {
  background-color: var(--whiteColor);
  padding: 30px;
  position: relative;
  transition: var(--transition);
  text-decoration: none;
}
.single-services-three .count {
  color: var(--mainColor);
  color: transparent;
  -webkit-text-stroke: 1px rgba(102, 102, 102, 0.2);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 40px;
  font-weight: 700;
  position: absolute;
  top: 30px;
  right: 30px;
  transition: var(--transition);
}
.single-services-three i {
  background: linear-gradient(180deg, rgba(128, 140, 255, 0.5) 0%, rgba(128, 140, 255, 0.1) 100%);
  width: 100px;
  height: 100px;
  line-height: 123px;
  text-align: center;
  border-radius: 50px;
  display: inline-block;
  color: var(--mainColor);
  font-size: 50px;
  margin-bottom: 22px;
}
.single-services-three h3 {
  font-size: 24px;
  margin-bottom: 0;
  transition: var(--transition);
}
.single-services-three:hover {
  background-color: var(--mainColor);
}
.single-services-three:hover .count {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
}
.single-services-three:hover i {
  background: linear-gradient(180deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 100%);
}
.single-services-three:hover h3 {
  color: var(--whiteColor);
}

.single-services-four {
  margin-bottom: 20px;
}
.single-services-four i {
  width: 100px;
  height: 100px;
  line-height: 123px;
  color: var(--whiteColor);
  background: var(--mainColor);
  border-radius: 100px;
  display: inline-block;
  text-align: center;
  font-size: 50px;
  bottom: 10px;
  right: 10px;
  position: absolute;
}
.single-services-four .services-content {
  padding: 20px 30px;
}
.single-services-four .services-content h3 {
  font-size: 24px;
}
.single-services-four .services-content h3 a {
  color: var(--headingColor);
  text-decoration: none;
}
.single-services-four:hover h3 a {
  color: var(--mainColor);
}

.services-sidebar .services-category {
  margin-bottom: 30px;
}
.services-sidebar .services-category ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.services-sidebar .services-category ul li {
  margin-bottom: 10px;
}
.services-sidebar .services-category ul li:last-child {
  margin-bottom: 0;
}
.services-sidebar .services-category ul li a {
  background: #F4F3F2;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: 500;
  font-size: 20px;
  color: var(--headingColor);
}
.services-sidebar .services-category ul li a i {
  position: relative;
  top: 3px;
}
.services-sidebar .services-category ul li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.services-sidebar .services-category ul li a.active {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.services-sidebar .contact-form-wrap {
  padding: 30px;
}
.services-sidebar .contact-form-wrap h2 {
  font-size: 24px;
  margin-bottom: 11px;
}
.services-sidebar .contact-form-wrap .contact-form .col-lg-6 {
  width: 100%;
}
.services-sidebar .contact-form-wrap .contact-form .form-group textarea {
  height: 110px;
}
.services-sidebar .contact-form-wrap .form-group {
  margin-bottom: 20px;
}
.services-sidebar .contact-form-wrap .form-group .form-control {
  border-color: rgba(255, 255, 255, 0.3);
}
.services-sidebar .contact-form-wrap .form-group .form-control:focus {
  border-color: var(--whiteColor);
}
.services-sidebar .contact-form-wrap .default-btn {
  background-color: #FCEF96;
  color: var(--headingColor) !important;
}
.services-sidebar .contact-form-wrap .default-btn:hover {
  background-color: var(--whiteColor);
}
.services-sidebar .contact-form-wrap .info-contact h3 {
  font-weight: 600px;
  font-size: 24px;
  margin-top: 40px;
  color: var(--whiteColor);
  margin-bottom: 15px;
}
.services-sidebar .contact-form-wrap .info-contact h4 {
  font-weight: 600;
  font-size: 20px;
  color: var(--whiteColor);
  margin-top: 25px;
}
.services-sidebar .contact-form-wrap .info-contact span {
  color: var(--whiteColor);
}
.services-sidebar .contact-form-wrap .info-contact a {
  color: var(--whiteColor);
  text-decoration: none;
}

/* Consultant Area Style
==================================================*/
.consultant-content .consultant-content-wrap {
  max-width: 795px;
  margin-left: auto;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-right: 145px;
}
.consultant-content .consultant-content-wrap .top-title {
  background: rgba(128, 140, 255, 0.2);
  border-radius: 50px;
  padding: 3px 20px;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 5px;
}
.consultant-content .consultant-content-wrap h2 {
  font-size: 40px;
  line-height: 60px;
}
.consultant-content .consultant-content-wrap.white-color h2 {
  color: var(--whiteColor);
  margin-bottom: 25px;
}
.consultant-content .consultant-content-wrap.white-color h2 i {
  color: #fcef96;
}
.consultant-content .consultant-content-wrap .awards-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.consultant-content .consultant-content-wrap .awards-list li span {
  font-weight: 500;
}
.consultant-content .consultant-content-wrap .awards-list li h3 {
  font-size: 24px;
  font-weight: 500;
}
.consultant-content .consultant-content-wrap .awards-list li i {
  font-size: 40px;
}
.consultant-content .consultant-content-wrap .awards-list li:last-child {
  margin-bottom: 0;
}
.consultant-content.style-two .consultant-progress {
  background-color: #10182B;
  margin-left: 0;
  max-width: 100%;
  padding: 47px 50px;
}
.consultant-content.style-two .consultant-progress .single-progressbar-item .title {
  color: var(--whiteColor);
}
.consultant-content.style-two .consultant-progress .single-progressbar-item .count {
  color: var(--whiteColor);
}
.consultant-content.style-two .consultant-content-wrap {
  padding: 0;
  margin-bottom: 40px;
  padding-right: 0;
  max-width: 575px;
  margin-left: 0;
}

.consultant-img-3 {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.consultant-img-3 .img-wrap {
  height: 100%;
}
.consultant-img-3 img {
  height: 100%;
}

.consultant-img-2 {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.consultant-img-2 .img-wrap {
  height: 100%;
}
.consultant-img-2 img {
  height: 100%;
}

.consultant-me-236 {
  margin-right: -236px;
}

.consultant-progress {
  max-width: 425px;
  margin-left: 112px;
  padding-top: 70px;
}

.single-progressbar-item {
  margin-bottom: 25px;
}
.single-progressbar-item:last-child {
  margin-bottom: 0;
}
.single-progressbar-item .title {
  display: block;
  margin-bottom: 10px;
  color: var(--headingColor);
}
.single-progressbar-item .progress {
  overflow: unset;
  position: relative;
  height: 3px;
}
.single-progressbar-item .progress .progress-bar {
  overflow: unset;
  position: relative;
  background-color: var(--mainColor);
}
.single-progressbar-item .progress .progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: 10px;
  background-color: var(--mainColor);
  border-radius: 50px;
}
.single-progressbar-item .progress .count {
  color: var(--headingColor);
  position: absolute;
  right: 0;
  top: -33px;
  font-size: 16px;
}

/* Feedback Area Style
==================================================*/
.single-feedback {
  background-color: #F4F0ED;
  padding: 30px;
  margin-bottom: 30px;
}
.single-feedback .quat {
  margin-bottom: 20px;
}
.single-feedback h3 {
  font-weight: 600;
  font-size: 16px;
}
.single-feedback.bg-color-ffffff {
  background-color: #ffffff;
}

.swiper-pagination1 {
  margin-top: 20px;
}
.swiper-pagination1.swiper-pagination-clickable {
  line-height: 1;
}
.swiper-pagination1.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid var(--mainColor);
  opacity: 1;
}
.swiper-pagination1.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

.swiper-pagination2 {
  margin-top: 20px;
}
.swiper-pagination2.swiper-pagination-clickable {
  line-height: 1;
}
.swiper-pagination2.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid var(--mainColor);
  opacity: 1;
}
.swiper-pagination2.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

.swiper-pagination3 {
  margin-top: 20px;
}
.swiper-pagination3.swiper-pagination-clickable {
  line-height: 1;
}
.swiper-pagination3.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: transparent;
  border: 1px solid var(--mainColor);
  opacity: 1;
}
.swiper-pagination3.swiper-pagination-clickable .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

.feedback-area.bg-color-f4f3f2 .container-fluid {
  left: calc((100% - 1320px) / 2);
  position: relative;
}
.feedback-area.bg-color-f4f3f2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-color: #E8E9F3;
  z-index: -1;
}

/* Studies Area Style
============================================*/
.studies-tabs .nav-pills {
  max-width: 650px;
}
.studies-tabs .nav-pills .nav-link {
  position: relative;
  padding: 0;
  border-bottom: 1px dashed #B6BEEB;
  border-radius: 0;
  margin-bottom: 25px;
  padding-bottom: 20px;
}
.studies-tabs .nav-pills .nav-link .count-list {
  color: rgba(128, 140, 255, 0.1);
  -webkit-text-stroke: 1px var(--mainColor);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  font-size: 40px;
  font-weight: 700;
}
.studies-tabs .nav-pills .nav-link h3 {
  transition: var(--transition);
  color: var(--headingColor);
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 13px;
}
.studies-tabs .nav-pills .nav-link .studies-content-wrap {
  display: none;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
}
.studies-tabs .nav-pills .nav-link .studies-content-wrap .default-btn {
  float: right;
}
.studies-tabs .nav-pills .nav-link.active {
  background-color: transparent;
}
.studies-tabs .nav-pills .nav-link.active .studies-content-wrap {
  display: block;
  visibility: visible;
  opacity: 1;
  color: var(--bodyColor);
}
.studies-tabs .nav-pills .nav-link:last-child {
  border: none;
  padding: 0;
  margin: 0;
}

.case-info-details {
  max-width: 760px;
  background-color: var(--mainColor);
  padding: 48px 38px;
  position: absolute;
  bottom: -95px;
  right: 0;
}
.case-info-details h3 {
  margin-bottom: 15px;
  font-size: 40px;
}
.case-info-details h3 a {
  color: var(--whiteColor);
}
.case-info-details p {
  color: var(--whiteColor);
}
.case-info-details .default-btn {
  margin-top: 20px;
  background-color: #FCEF96;
  color: var(--headingColor) !important;
}
.case-info-details .default-btn:hover {
  background-color: var(--whiteColor);
}

.case-studies-style-two-area .section-title {
  margin-bottom: 0;
}
.case-studies-style-two-area .nav-tabs {
  margin-bottom: 30px;
  border: unset !important;
}
.case-studies-style-two-area .nav-tabs .nav-item {
  display: inline-block;
  margin-right: 25px;
}
.case-studies-style-two-area .nav-tabs .nav-item .nav-link {
  line-height: 0;
  padding: 0;
  border: unset;
}
.case-studies-style-two-area .nav-tabs .nav-item .nav-link h2 {
  font-size: 40px;
  line-height: 60px;
  transition: var(--transition);
  margin-bottom: 5px;
}
.case-studies-style-two-area .nav-tabs .nav-item .nav-link.active {
  border: unset !important;
  padding: 0;
  background-color: transparent !important;
}
.case-studies-style-two-area .nav-tabs .nav-item .nav-link.active h2 {
  color: var(--mainColor);
  text-decoration: underline;
}

.single-case-studies {
  margin-bottom: 30px;
}
.single-case-studies .single-case-content {
  margin-top: 20px;
}
.single-case-studies .single-case-content .tag {
  color: var(--mainColor);
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}
.single-case-studies .single-case-content h3 {
  font-size: 24px;
}
.single-case-studies .single-case-content h3 a {
  text-decoration: none;
  color: var(--headingColor);
}
.single-case-studies:hover h3 a {
  color: var(--mainColor);
}

/* Advisors Area Style
============================================*/
.advisors-area.bg-before {
  position: relative;
  z-index: 1;
}
.advisors-area.bg-before::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #E8E9F3;
}
.advisors-area .col-lg-3:nth-child(1) .single-advisors {
  margin-top: -50px;
}
.advisors-area .col-lg-3:nth-child(3) .single-advisors {
  margin-top: -50px;
}
.advisors-area .col-lg-3:nth-child(5) .single-advisors {
  margin-top: -50px;
}
.advisors-area .col-lg-3:nth-child(7) .single-advisors {
  margin-top: -50px;
}
.advisors-area .col-lg-3:nth-child(9) .single-advisors {
  margin-top: -50px;
}
.advisors-area .col-lg-3:nth-child(11) .single-advisors {
  margin-top: -50px;
}

.single-advisors {
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-advisors .advisors-content {
  margin-top: 20px;
}
.single-advisors .advisors-content h3 {
  font-weight: 600;
  font-size: 16px;
}
.single-advisors .bg-opacity::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0) 0%, rgba(17, 17, 17, 0.9) 100%);
}
.single-advisors .social-link {
  position: absolute;
  bottom: -50px;
  left: 30px;
  line-height: 1;
  transition: var(--transition);
}
.single-advisors .social-link li {
  display: inline-block;
  margin-right: 10px;
}
.single-advisors .social-link li:last-child {
  margin-right: 0;
}
.single-advisors .social-link li a {
  color: var(--whiteColor);
  text-decoration: none;
  font-size: 20px;
}
.single-advisors .social-link li a:hover {
  color: var(--mainColor);
}
.single-advisors:hover {
  transform: translateY(-5px);
}
.single-advisors:hover .social-link {
  bottom: 30px;
}

.dvisors-details-content h3 {
  font-weight: 600;
  font-size: 40px;
  margin-bottom: 10px;
}
.dvisors-details-content .advisor {
  display: block;
  margin-bottom: 30px;
}
.dvisors-details-content h4 {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 15px;
}
.dvisors-details-content .info {
  margin-top: 30px;
  padding-left: 0;
  margin-bottom: 20px;
  list-style: none;
}
.dvisors-details-content .info li {
  display: inline-block;
  margin-bottom: 18px;
  margin-right: 100px;
}
.dvisors-details-content .info li:last-child {
  margin-bottom: 0;
  margin-right: 0;
}
.dvisors-details-content .info li span {
  font-weight: 600;
  color: var(--headingColor);
}
.dvisors-details-content .info li a {
  text-decoration: none;
}
.dvisors-details-content .social-link {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.dvisors-details-content .social-link li {
  display: inline-block;
  margin-right: 20px;
}
.dvisors-details-content .social-link li:last-child {
  margin-right: 0;
}
.dvisors-details-content .social-link li span {
  font-weight: 600;
  color: var(--headingColor);
}
.dvisors-details-content .social-link li a {
  text-decoration: none;
  color: var(--headingColor);
}
.dvisors-details-content .social-link li a:hover {
  color: var(--mainColor);
}

/* Partners Area Style
============================================*/
.partners-slide .img-wrap .img2 {
  right: 0;
  margin: auto;
}

.partner-style2 .partners-area {
  background-color: #808cff;
}

/* Blog Area Style
============================================*/
.single-blog {
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-blog .blog-content {
  margin-top: 25px;
}
.single-blog .blog-content ul {
  margin-bottom: 8px;
}
.single-blog .blog-content ul li {
  margin-right: 12px;
}
.single-blog .blog-content ul li:last-child {
  margin-right: 0;
}
.single-blog .blog-content ul li a {
  color: var(--mainColor);
}
.single-blog .blog-content ul li .date {
  color: var(--bodyColor);
  transition: var(--transition);
}
.single-blog .blog-content ul li .date:hover {
  color: var(--mainColor);
}
.single-blog .blog-content h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.single-blog .blog-content h3 a {
  color: var(--headingColor);
}
.single-blog .blog-content h3 a:hover {
  color: var(--mainColor);
}
.single-blog .blog-content .read-btn {
  color: var(--blackColor);
  font-weight: 500;
  display: inline-block;
  margin-top: 18px;
  transition: var(--transition);
}
.single-blog .blog-content .read-btn i {
  position: relative;
  top: 3px;
  margin-left: 5px;
}
.single-blog .blog-content .read-btn:hover {
  color: var(--mainColor);
}
.single-blog.style2 {
  background-color: #f4f3f2;
}
.single-blog.style2.sticky {
  background-color: #d4d2cf;
}
.single-blog.style2 .blog-content {
  margin-top: 0;
  padding: 30px;
}
.single-blog.style2 .blog-content a {
  text-decoration: none;
}
.single-blog.style2 .blog-content h3 {
  margin-bottom: 0;
}
.single-blog:hover {
  transform: translateY(-5px);
}

.single-blog-two {
  background-color: #F4F3F2;
  padding: 50px;
  position: relative;
  z-index: 1;
  margin-bottom: 30px;
}
.single-blog-two::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 110px;
  height: 100%;
  background-color: var(--whiteColor);
  z-index: -1;
}
.single-blog-two a {
  text-decoration: none;
  display: block;
}
.single-blog-two .tag {
  color: var(--mainColor);
  margin-bottom: 10px;
}
.single-blog-two .admin {
  line-height: 1;
  margin-bottom: 10px;
}
.single-blog-two .admin li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.single-blog-two .admin li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  width: 1px;
  height: 100%;
  background-color: var(--bodyColor);
  transform: rotate(15deg);
}
.single-blog-two .admin li a {
  color: var(--bodyColor);
}
.single-blog-two .admin li:last-child {
  padding-right: 0;
}
.single-blog-two .admin li:last-child::before {
  display: none;
}
.single-blog-two h3 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 20px;
  font-weight: 600;
  padding-right: 80px;
}
.single-blog-two h3 a {
  color: var(--headingColor);
  text-decoration: none;
}
.single-blog-two .bg-808cff {
  background-color: var(--mainColor);
}
.single-blog-two .bg-10182b {
  background-color: #10182b;
}
.single-blog-two .p-30 {
  padding: 30px;
}
.single-blog-two p {
  color: var(--whiteColor);
}
.single-blog-two .me-50 {
  margin-right: -50px;
}
.single-blog-two .default-btn {
  background-color: #FCEF96;
  color: var(--headingColor) !important;
  float: right;
  margin-right: -20px;
  margin-top: -26px;
}
.single-blog-two .default-btn:hover {
  background-color: var(--whiteColor);
}
.single-blog-two:hover h3 a {
  color: var(--mainColor);
}

.blog-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.blog-area.bg-1 {
  background-image: url(../images/pricing/pricing-bg.html);
}
.blog-area .col-lg-4:nth-child(4) .single-blog {
  margin-top: -50px;
}
.blog-area .col-lg-4:nth-child(6) .single-blog {
  margin-top: -50px;
}

.single-latest-blog {
  background-color: #F4F3F2;
  padding: 40px;
  margin-bottom: 30px;
}
.single-latest-blog a {
  text-decoration: none;
  display: inline-block;
}
.single-latest-blog .tag {
  color: var(--mainColor);
  margin-bottom: 10px;
}
.single-latest-blog .admin {
  line-height: 1;
  margin-bottom: 10px;
}
.single-latest-blog .admin li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.single-latest-blog .admin li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -16px;
  width: 1px;
  height: 100%;
  background-color: var(--bodyColor);
  transform: rotate(15deg);
}
.single-latest-blog .admin li a {
  color: var(--bodyColor);
}
.single-latest-blog .admin li:last-child {
  padding-right: 0;
}
.single-latest-blog .admin li:last-child::before {
  display: none;
}
.single-latest-blog h3 {
  font-size: 24px;
  line-height: 36px;
  margin-bottom: 15px;
  font-weight: 600;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.single-latest-blog h3 a {
  color: var(--headingColor);
  text-decoration: none;
}
.single-latest-blog .default-btn {
  margin-top: 10px;
}

/* Images Hover Effect Area Style
============================================*/
.images-hover-effect .img-wrap {
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.images-hover-effect .img-wrap .img2 {
  position: absolute;
  top: 0;
  left: 0;
  transition: all ease 0.7s;
}
.images-hover-effect:hover .img2 {
  transform: translatex(-50%) scalex(2);
  opacity: 0;
  filter: blur(10px);
}

.partners-three img {
  opacity: 0.5;
  transition: var(--transition);
}
.partners-three:hover img {
  opacity: 1;
}

/* Pricing Area Style
============================================*/
.pricing-area {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.pricing-area.bg-1 {
  background-image: url(../images/pricing/pricing-bg.html);
}

.pricing-style2 .pricing-area .section-title {
  max-width: 860px;
  margin: 0 auto 35px;
  text-align: center;
  position: relative;
}
.pricing-style2 .pricing-area .section-title .top-title {
  background: rgba(128, 140, 255, 0.2) !important;
  border-radius: 50px;
  padding: 3px 20px !important;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 5px;
}

.single-pricing {
  background-color: #F4F3F2;
  padding: 26px;
  margin-bottom: 30px;
}
.single-pricing .pricing-name {
  position: relative;
}
.single-pricing .pricing-name h3 {
  font-size: 24px;
  font-weight: 600;
}
.single-pricing .pricing-name:before {
  content: "";
  position: absolute;
  top: 0;
  right: -51px;
  width: 1px;
  height: 100%;
  border-right: 1px dashed rgba(17, 17, 17, 0.2);
}
.single-pricing .price {
  max-width: 600px;
  margin-left: auto;
}
.single-pricing .price ul li {
  margin-bottom: 18px;
}
.single-pricing .price ul li:last-child {
  margin-bottom: 0;
}
.single-pricing .price ul li span {
  font-weight: 600;
  color: var(--headingColor);
}
.single-pricing:nth-child(3) {
  background-color: #10182B;
}
.single-pricing:nth-child(3) .pricing-name h3 {
  color: var(--whiteColor);
}
.single-pricing:nth-child(3) .pricing-name::before {
  border-color: rgba(252, 239, 150, 0.5);
}
.single-pricing:nth-child(3) .price ul li {
  color: var(--whiteColor);
}
.single-pricing:nth-child(3) .price ul li span {
  color: var(--whiteColor);
}
.single-pricing:nth-child(3) .default-btn {
  background-color: #FCEF96;
  color: var(--headingColor) !important;
}
.single-pricing:nth-child(3) .default-btn:hover {
  background-color: var(--whiteColor);
}

.home-two-pricing .section-title .top-title {
  background: rgba(128, 140, 255, 0.2) !important;
  border-radius: 50px;
  padding: 3px 20px !important;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 5px;
}

/* Contact Form Area Style
============================================*/
.contact-form-wrap {
  max-width: 650px;
  margin-left: 135px;
}
.contact-form-wrap .top-title {
  border-radius: 50px;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 5px;
}
.contact-form-wrap h2 {
  font-size: 40px;
  color: var(--whiteColor);
  margin-bottom: 30px;
}
.contact-form-wrap .form-group {
  margin-bottom: 30px;
}
.contact-form-wrap .form-group .form-control {
  border: none;
  border-bottom: 1px solid var(--whiteColor);
  background-color: transparent;
  color: var(--whiteColor);
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.contact-form-wrap .form-group .form-control::-moz-placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact-form-wrap .form-group .form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.contact-form-wrap .form-group textarea {
  height: 160px;
}
.contact-form-wrap.black-color h2 {
  color: var(--headingColor);
}
.contact-form-wrap.black-color .form-group {
  margin-bottom: 30px;
}
.contact-form-wrap.black-color .form-group .form-control {
  border: none;
  border-bottom: 1px solid rgba(102, 102, 102, 0.6);
  background-color: transparent;
  color: var(--headingColor);
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.contact-form-wrap.black-color .form-group .form-control::-moz-placeholder {
  color: rgba(102, 102, 102, 0.3);
}
.contact-form-wrap.black-color .form-group .form-control::placeholder {
  color: rgba(102, 102, 102, 0.3);
}
.contact-form-wrap.black-color .form-group .form-control:focus {
  border-color: var(--mainColor);
}
.contact-form-wrap.bg-color-f4f3f2 {
  padding: 100px;
}

.contact-us-info ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.contact-us-info ul li {
  margin-bottom: 35px;
}
.contact-us-info ul li:last-child {
  margin-bottom: 0;
}
.contact-us-info ul li img {
  margin-bottom: 10px;
}
.contact-us-info ul li h3 {
  font-weight: 500;
  font-size: 24px;
}
.contact-us-info ul li a {
  display: block;
  text-decoration: none;
}

.iframe {
  width: 100%;
  height: 600px;
  display: block;
}

/* Page Banner Area Style
============================================*/
.page-banner-area {
  padding-top: 230px;
  padding-bottom: 160px;
  background: linear-gradient(107.56deg, #B6BEEB 0%, #EBDFE3 27.88%, #E1E1D7 70.31%, #CFD3EE 100%);
}

.page-banner-content {
  text-align: center;
}
.page-banner-content h1, .page-banner-content h2, .page-banner-content h3, .page-banner-content h4, .page-banner-content h5, .page-banner-content h6 {
  font-size: 64px;
  margin-bottom: 11px;
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.page-banner-content ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.page-banner-content ul li {
  display: inline-block;
  margin-right: 33px;
  position: relative;
  color: var(--headingColor);
}
.page-banner-content ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -24px;
  width: 10px;
  height: 2px;
  background-color: var(--headingColor);
}
.page-banner-content ul li:last-child {
  margin-right: 0;
}
.page-banner-content ul li:last-child::before {
  display: none;
}
.page-banner-content ul li a {
  text-decoration: none;
  font-weight: 600;
  color: var(--headingColor);
}
.page-banner-content ul li a:hover {
  color: var(--mainColor);
}
.page-banner-content ul li.active {
  color: var(--mainColor);
}

/* Faq Area Style
============================================*/
.faq-content .accordion {
  border: none;
}
.faq-content .accordion .accordion-item {
  margin-bottom: 15px;
  border-radius: 0;
  border: none;
}
.faq-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-content .accordion .accordion-item .accordion-button {
  border: 1px solid #CFD3EE;
  background: rgba(128, 140, 255, 0.1);
  font-weight: 500;
  color: var(--headingColor);
  padding: 20px 15px;
}
.faq-content .accordion .accordion-item .accordion-button:focus {
  box-shadow: none;
}
.faq-content .accordion .accordion-item .accordion-button:not(.collapsed) {
  border-color: var(--mainColor);
}
.faq-content .accordion .accordion-item:first-of-type .accordion-button {
  border-radius: 0;
}
.faq-content .accordion .accordion-item:last-of-type .accordion-button.collapsed {
  border-radius: 0;
}
.faq-content .accordion .accordion-item .accordion-body {
  padding: 20px 0;
}

.faq-tabs {
  text-align: center;
  margin-bottom: 50px;
}
.faq-tabs .nav-item {
  display: inline-block;
  margin-right: 5px;
}
.faq-tabs .nav-item:last-child {
  margin-right: 0;
}
.faq-tabs .nav-item .nav-link {
  border: 1px solid var(--mainColor);
  padding: 15px 25px;
  border-radius: 0;
  color: var(--headingColor);
}
.faq-tabs .nav-item .nav-link.active {
  background-color: var(--whiteColor);
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/* Error Area Style
============================================*/
.error-content h1 {
  font-size: 400px;
  line-height: 1;
  margin-top: -40px;
  color: var(--mainColor);
}
.error-content h1 span {
  color: rgba(252, 239, 150, 0.5);
  -webkit-text-stroke: 1px var(--mainColor);
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.error-content h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.error-content p {
  margin-bottom: 30px;
}

/* 
Main Content Text Style
=====================================================*/
.main-content-text h1, .main-content-text h2, .main-content-text h3, .main-content-text h4, .main-content-text h5, .main-content-text h6 {
  margin-bottom: 15px;
}
.main-content-text h1 {
  font-size: 30px;
}
.main-content-text h2 {
  font-size: 26px;
}
.main-content-text h3 {
  font-size: 22px;
}
.main-content-text h4 {
  font-size: 22px;
}
.main-content-text h5 {
  font-size: 20px;
}
.main-content-text h6 {
  font-size: 18px;
}
.main-content-text .gap-20 {
  margin-bottom: 30px;
}
.main-content-text p {
  color: #687693;
}
.main-content-text ul {
  padding: 0;
  list-style-type: none;
  margin-bottom: 0;
}
.main-content-text ul li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 35px;
}
.main-content-text ul li:last-child {
  margin-bottom: 0;
}
.main-content-text ul li i {
  position: absolute;
  top: -6px;
  left: 0;
  color: ar(--mainColor);
  font-size: 25px;
}
.main-content-text ol {
  padding-left: 18px;
  color: var(--bodyColor);
}
.main-content-text ol li {
  margin-bottom: 20px;
  color: var(--bodyColor);
}
.main-content-text ol li::marker {
  color: ar(--mainColor);
}
.main-content-text ol li:last-child {
  margin-bottom: 0;
}
.main-content-text a {
  color: var(--mainColor);
}
.main-content-text a:hover {
  text-decoration: underline;
}
.main-content-text .content-gap-mb-20 {
  margin-bottom: 20px;
}
.main-content-text .content-gap-mb-30 {
  margin-bottom: 30px;
}
.main-content-text .update {
  display: block;
  margin-bottom: 30px;
}

/* Career Area Style
============================================*/
.single-career-item {
  background-color: #F4F3F2;
  padding: 26px;
  margin-bottom: 30px;
  transition: var(--transition);
}
.single-career-item .career-name {
  position: relative;
}
.single-career-item .career-name h3 {
  font-size: 24px;
}
.single-career-item .career-name h3 a {
  color: var(--headingColor);
}
.single-career-item .career-name h3 a:hover {
  color: var(--mainColor);
}
.single-career-item .career-name:before {
  content: "";
  position: absolute;
  top: 0;
  right: -51px;
  width: 1px;
  height: 100%;
  border-right: 1px dashed rgba(17, 17, 17, 0.2);
}
.single-career-item .price {
  max-width: 600px;
  margin-left: auto;
}
.single-career-item .price ul li {
  margin-bottom: 18px;
  transition: var(--transition);
}
.single-career-item .price ul li:last-child {
  margin-bottom: 0;
}
.single-career-item .price ul li span {
  font-weight: 600;
  color: var(--headingColor);
}
.single-career-item:hover {
  background-color: #10182B;
}
.single-career-item:hover .career-name h3 {
  color: var(--whiteColor);
}
.single-career-item:hover .career-name h3 a {
  color: var(--whiteColor);
}
.single-career-item:hover .career-name::before {
  border-color: rgba(252, 239, 150, 0.5);
}
.single-career-item:hover .price ul li {
  color: var(--whiteColor);
}
.single-career-item:hover .price ul li span {
  color: var(--whiteColor);
}
.single-career-item:hover .default-btn {
  background-color: #FCEF96;
  color: var(--headingColor);
}
.single-career-item:hover .default-btn:hover {
  background-color: var(--whiteColor);
  color: var(--blackColor) !important;
}

.career-sidebar {
  padding: 30px;
  background-color: var(--mainColor);
}
.career-sidebar h3 {
  font-weight: 600;
  font-size: 24px;
  color: var(--whiteColor);
  margin-bottom: 15px;
}
.career-sidebar ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.career-sidebar ul li {
  margin-bottom: 20px;
}
.career-sidebar ul li:last-child {
  margin-bottom: 0;
}
.career-sidebar ul li h4 {
  font-weight: 600;
  font-size: 18px;
  color: var(--whiteColor);
}
.career-sidebar ul li span {
  color: var(--whiteColor);
}
.career-sidebar ul li a {
  color: var(--whiteColor);
}
.career-sidebar ul li a:hover {
  color: #FCEF96;
}

/*
Blog Details Area Style
======================================================*/
.blog-details-content .blog-details-img {
  margin-bottom: 25px;
}
.blog-details-content .info-link {
  padding-left: 0;
  margin-bottom: 10px;
  list-style: none;
}
.blog-details-content .info-link li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.blog-details-content .info-link li::before {
  content: "/";
  position: absolute;
  top: 0;
  right: -22px;
}
.blog-details-content .info-link li:last-child {
  margin-right: 0;
}
.blog-details-content .info-link li:last-child::before {
  display: none;
}
.blog-details-content .info-link li a {
  text-decoration: none;
}
.blog-details-content .info-link li a.tag {
  color: var(--mainColor);
}
.blog-details-content blockquote {
  padding: 30px;
  background: rgba(128, 140, 255, 0.1);
}
.blog-details-content blockquote p {
  margin-bottom: 20px;
}
.blog-details-content blockquote cite {
  font-weight: 600;
  font-size: 16px;
  color: var(--headingColor);
}
.blog-details-content .tag-social {
  border-top: 1px solid rgba(102, 102, 102, 0.3);
  border-bottom: 1px solid rgba(102, 102, 102, 0.3);
  padding-top: 15px;
  padding-bottom: 15px;
  clear: both;
  margin-top: 30px;
}
.blog-details-content .tag-social .tag-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.blog-details-content .tag-social .tag-list li {
  display: inline-block;
  margin-right: 8px;
}
.blog-details-content .tag-social .tag-list li:last-child {
  margin-right: 0;
}
.blog-details-content .tag-social .tag-list li:last-child a::before {
  display: none;
}
.blog-details-content .tag-social .tag-list li span {
  color: var(--headingColor);
  font-weight: 500;
}
.blog-details-content .tag-social .tag-list li a {
  display: inline-block;
  text-decoration: none;
  position: relative;
}
.blog-details-content .tag-social .tag-list li a::before {
  position: absolute;
  content: ",";
  right: -4px;
}
.blog-details-content .tag-social .tag-list li a:hover {
  color: var(--mainColor);
}
.blog-details-content .tag-social .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.blog-details-content .tag-social .social-list li {
  display: inline-block;
  margin-right: 10px;
}
.blog-details-content .tag-social .social-list li span {
  color: var(--headingColor);
  font-weight: 500;
}
.blog-details-content .tag-social .social-list li a {
  text-decoration: none;
  display: inline-block;
}
.blog-details-content .tag-social .social-list li a:hover {
  color: var(--mainColor);
}
.blog-details-content .tag-social .social-list li:last-child {
  margin-right: 0;
}
.blog-details-content h1 {
  font-size: 46px;
}
.blog-details-content h2 {
  font-size: 36px;
}
.blog-details-content .comments-wrap {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.blog-details-content .comments-wrap li {
  margin-bottom: 50px;
}
.blog-details-content .comments-wrap li:last-child {
  margin-bottom: 0;
}
.blog-details-content .comments-wrap li h4 {
  font-size: 22px;
}
.blog-details-content .comments-wrap li .date {
  display: block;
  margin-bottom: 15px;
}
.blog-details-content .comments-wrap li .read-more {
  color: var(--headingColor);
}
.blog-details-content .leave-form p {
  margin-bottom: 30px;
}
.blog-details-content .leave-form .form-group {
  margin-bottom: 25px;
}
.blog-details-content .leave-form .form-group .form-control {
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.5);
  color: var(--headingColor);
}
.blog-details-content .leave-form .form-group .form-control::-moz-placeholder {
  color: rgba(17, 17, 17, 0.5);
}
.blog-details-content .leave-form .form-group .form-control::placeholder {
  color: rgba(17, 17, 17, 0.5);
}
.blog-details-content .leave-form .form-group .form-control:focus {
  border-color: #000000;
}
.blog-details-content .leave-form .form-group:last-child {
  margin-bottom: 0;
}
.blog-details-content .leave-form .form-group .form-check .form-check-input {
  border-radius: 0;
}
.blog-details-content .mt-30 {
  margin-top: 30px;
}
.blog-details-content .mb-30 {
  margin-bottom: 30px;
}
.blog-details-content .mt-50 {
  margin-top: 50px;
}
.blog-details-content .mb-50 {
  margin-bottom: 50px;
}

/*
Siidebar widgets Area Style
======================================================*/
.sidebar-widgets .single-sidebar-widgets {
  margin-bottom: 50px;
  background-color: #F4F3F2;
  padding: 30px;
}
.sidebar-widgets .single-sidebar-widgets:last-child {
  margin-bottom: 0;
}
.sidebar-widgets .single-sidebar-widgets h3 {
  font-size: 24px;
  position: relative;
  margin-bottom: 20px;
  display: inline-block;
  font-weight: 600;
}
.sidebar-widgets .single-sidebar-widgets .form-group {
  margin-bottom: 25px;
}
.sidebar-widgets .single-sidebar-widgets iframe {
  width: 100%;
  height: 424px;
}
.sidebar-widgets .search-form {
  position: relative;
}
.sidebar-widgets .search-form .form-control {
  background-color: var(--whiteColor);
  border-color: var(--whiteColor);
}
.sidebar-widgets .search-form .form-control:focus {
  border-color: var(--mainColor);
}
.sidebar-widgets .search-form .src-btn {
  border: none;
  background-color: var(--mainColor);
  width: 59px;
  height: 59px;
  text-align: center;
  font-size: 18px;
  color: var(--whiteColor);
  position: absolute;
  top: 0;
  right: 0;
}
.sidebar-widgets .widget_categories {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.sidebar-widgets .widget_categories li {
  margin-bottom: 18px;
  border-radius: unset !important;
  border-bottom: 1px solid rgba(102, 102, 102, 0.2);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.sidebar-widgets .widget_categories li a {
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  color: var(--headingColor) !important;
  position: relative;
  width: 100%;
  display: block;
}
.sidebar-widgets .widget_categories li a span {
  transition: var(--transition);
}
.sidebar-widgets .widget_categories li a:hover {
  color: var(--mainColor) !important;
}
.sidebar-widgets .widget_categories li a:hover span {
  color: var(--mainColor) !important;
}
.sidebar-widgets .widget_categories li a::before {
  position: absolute;
  content: "\f103";
  font-family: flaticon_mycollection !important;
  right: 0;
}
.sidebar-widgets .widget_categories li:last-child {
  margin-bottom: 0;
}
.sidebar-widgets .single-latest-causes h3 {
  font-size: 22px;
  margin-bottom: 20px;
  padding-bottom: 0;
}
.sidebar-widgets .single-latest-causes h3::before {
  display: none;
}
.sidebar-widgets .recent-post {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
}
.sidebar-widgets .recent-post li {
  margin-bottom: 20px;
}
.sidebar-widgets .recent-post li:last-child {
  margin-bottom: 0;
}
.sidebar-widgets .recent-post li a {
  text-decoration: none;
}
.sidebar-widgets .recent-post li a img {
  width: 112px;
}
.sidebar-widgets .recent-post li a .date {
  display: block;
  margin-bottom: 10px;
  color: var(--mainColor);
}
.sidebar-widgets .recent-post li a h4 {
  font-weight: 500;
  font-size: 20px;
  transition: var(--transition);
}
.sidebar-widgets .recent-post li a:hover h4 {
  color: var(--mainColor);
}
.sidebar-widgets .tags-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-bottom: -10px;
  margin-right: -10px;
}
.sidebar-widgets .tags-list li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
.sidebar-widgets .tags-list li a {
  text-decoration: none;
  background-color: var(--whiteColor);
  padding: 8px 10px;
  display: inline-block;
  font-size: 14px;
}
.sidebar-widgets .tags-list li a:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}

/*
project Info Area Style
======================================================*/
.project-info {
  background-color: #F4F3F2;
  padding: 30px;
}
.project-info .single-info {
  margin-bottom: 20px;
}
.project-info .single-info span {
  color: var(--headingColor);
  font-weight: 600;
}
.project-info ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.project-info ul li {
  display: inline-block;
  margin-right: 20px;
  padding-left: 0;
  margin-bottom: 0;
}
.project-info ul li i {
  position: unset;
  color: var(--headingColor);
  transition: var(--transition);
}
.project-info ul li:last-child {
  margin-right: 0;
}
.project-info ul li span {
  color: var(--headingColor);
  font-weight: 600;
  display: inline-block;
  margin: 0;
  position: relative;
  top: -7px;
}
.project-info ul li a {
  text-decoration: none !important;
}
.project-info ul li a:hover i {
  color: var(--mainColor);
}

/*
My Account Area CSS
=====================================================*/
.my-account-form {
  max-width: 600px;
  margin: auto;
}
.my-account-form .form-group {
  margin-bottom: 25px;
}
.my-account-form .form-group .form-check .form-check-input {
  border-radius: 0;
  border-color: var(--bodyColor);
}
.my-account-form .form-group .form-check .form-check-input:focus {
  box-shadow: none;
  border-color: var(--mainColor);
}
.my-account-form .form-group .form-check .form-check-input:checked {
  background-color: var(--mainColor);
}

/*====================================================
OTHERS STYLE AREA
=====================================================*/
@keyframes rotation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(359deg);
  }
}
@keyframes moveBounce {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(20px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes off-on {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes key1 {
  0% {
    transform: translateY(0px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/* Preloader Area Style
============================================*/
.preloader {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 9999;
  background-color: var(--whiteColor);
}
.preloader .loader {
  transform: translate(-50%, -50%);
  position: absolute;
  left: 50%;
  top: 50%;
}
.preloader .loader .loader {
  position: relative;
  overflow: hidden;
  display: block;
  height: 150px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}
.preloader .loader .loader div {
  height: 100%;
}
.preloader .loader .loader, .preloader .loader .loader div {
  padding: 8px;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: rotate linear 3.5s infinite;
  border-top-color: var(--mainColor);
  border-border-bottom: var(--mainColor);
}
.preloader .loader .waviy {
  margin-top: 20px;
  position: relative;
  text-align: center;
  -webkit-box-reflect: below -47px linear-gradient(transparent, rgba(0, 0, 0, 0.2));
  font-size: 60px;
  font-weight: 700;
}
.preloader .loader .waviy span {
  position: relative;
  color: var(--headingColor);
  animation-delay: 0.1s;
  display: inline-block;
  animation: waviy 1s infinite;
}
.preloader .loader .waviy span:nth-child(2) {
  animation-delay: 0.2s;
}
.preloader .loader .waviy span:nth-child(3) {
  animation-delay: 0.3s;
}
.preloader .loader .waviy span:nth-child(4) {
  animation-delay: 0.4s;
}
.preloader .loader .waviy span:nth-child(5) {
  animation-delay: 0.5s;
}
.preloader .loader .waviy span:nth-child(6) {
  animation-delay: 0.6s;
}
.preloader .loader .waviy span:nth-child(7) {
  animation-delay: 0.7s;
}
.preloader .lds-ripple {
  position: absolute;
  width: 80px;
  height: 80px;
  animation: spin-six 2.5s infinite cubic-bezier(0.17, 0.72, 0.55, 1.66);
  left: 50%;
  top: 50%;
  transform: translate(-40px, -50px);
}
.preloader .preloader-container {
  width: 80px;
  height: 80px;
}
.preloader .petal {
  position: absolute;
  width: 30%;
  height: 50%;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 50%;
  z-index: 2;
}
.preloader .petal::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  transform-origin: bottom center;
  border-radius: 50%;
  background: var(--mainColor);
  z-index: 2;
  animation: opacity-nine 0.8s infinite linear;
  opacity: 1;
  border-left: 1px solid #ffffff;
}
.preloader .petal:nth-of-type(6) {
  transform: translate(-50%, 0%) rotate(225deg);
}
.preloader .petal:nth-of-type(6)::before {
  background-color: transparent;
  animation-delay: 0.5s;
}
.preloader .petal:nth-of-type(7) {
  transform: translate(-50%, 0%) rotate(270deg);
}
.preloader .petal:nth-of-type(7)::before {
  background-color: transparent;
  animation-delay: 0.6s;
}
.preloader .petal:nth-of-type(8) {
  transform: translate(-50%, 0%) rotate(315deg);
}
.preloader .petal:nth-of-type(8)::before {
  background-color: transparent;
  animation-delay: 0.7s;
}
.preloader .petal:nth-of-type(1) {
  transform: translate(-50%, 0%);
}
.preloader .petal:nth-of-type(1)::before {
  animation-delay: 0s;
}
.preloader .petal:nth-of-type(2) {
  transform: translate(-50%, 0%) rotate(45deg);
}
.preloader .petal:nth-of-type(2)::before {
  animation-delay: 0.1s;
}
.preloader .petal:nth-of-type(3) {
  transform: translate(-50%, 0%) rotate(90deg);
}
.preloader .petal:nth-of-type(3)::before {
  animation-delay: 0.2s;
}
.preloader .petal:nth-of-type(4) {
  transform: translate(-50%, 0%) rotate(135deg);
}
.preloader .petal:nth-of-type(4)::before {
  animation-delay: 0.3s;
}
.preloader .petal:nth-of-type(5) {
  transform: translate(-50%, 0%) rotate(180deg);
}
.preloader .petal:nth-of-type(5)::before {
  animation-delay: 0.4s;
}
.preloader .petal-1 {
  position: absolute;
  width: 30%;
  height: 50%;
  bottom: 50%;
  left: 50%;
  transform-origin: bottom center;
  border-radius: 50%;
  z-index: -1;
}
.preloader .petal-1::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  bottom: 0%;
  left: 0%;
  transform-origin: bottom center;
  border-radius: 50%;
  background: var(--mainColor);
  z-index: 2;
  animation: opacity-nine 0.8s infinite linear;
  opacity: 1;
}
.preloader .petal-1:nth-of-type(9) {
  transform: translate(-50%, 0%) rotate(225deg);
}
.preloader .petal-1:nth-of-type(9)::before {
  animation-delay: 0.5s;
}
.preloader .petal-1:nth-of-type(10) {
  transform: translate(-50%, 0%) rotate(270deg);
}
.preloader .petal-1:nth-of-type(10)::before {
  animation-delay: 0.6s;
}
.preloader .petal-1:nth-of-type(11) {
  transform: translate(-50%, 0%) rotate(315deg);
}
.preloader .petal-1:nth-of-type(11)::before {
  animation-delay: 0.7s;
}
.preloader .ball {
  position: absolute;
  width: 28%;
  height: 28%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: var(--mainColor);
  z-index: 3;
}
.preloader.preloader-deactivate {
  visibility: hidden;
}
.preloader.preloader-img img {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
}

.woocommerce .loader::before {
  display: none;
}

@keyframes opacity-nine {
  0% {
    opacity: 1;
  }
  95% {
    opacity: 0.2;
  }
  100% {
    opacity: 0.2;
  }
}
@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes waviy {
  0%, 40%, 100% {
    transform: translateY(0);
  }
  20% {
    transform: translateY(-20px);
  }
}
/* Max width 767px */
@media only screen and (max-width: 767px) {
  #preloader .preloader .waviy {
    font-size: 40px;
  }
}
/*
Video wave Style*/
.video-btn {
  display: inline-block;
  width: 88px;
  height: 88px;
  line-height: 88px;
  text-align: center;
  border-radius: 0;
  color: var(--mainColor);
  position: relative;
  z-index: 1;
  background-color: var(--whiteColor);
  border-radius: 50%;
  transition: var(--transition);
}
.video-btn i {
  font-size: 30px;
  color: var(--mainColor);
  position: absolute;
  top: 0;
  left: 5px;
  justify-content: center;
  align-items: center;
  display: flex;
  width: 100%;
  height: 100%;
  transition: var(--transition);
}
.video-btn::after, .video-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  bottom: 0;
  left: 0;
  border-radius: 0;
  border-radius: 50%;
  transition: var(--transition);
  animation: ripple 1.6s ease-out infinite;
  background-color: var(--whiteColor);
}
.video-btn span {
  position: absolute;
  top: 0;
  right: -105px;
  width: 100px;
  font-size: 15px;
}
.video-btn:hover {
  background-color: var(--mainColor);
}
.video-btn:hover i {
  color: var(--whiteColor);
}
.video-btn:hover::before, .video-btn:hover::after {
  background-color: var(--mainColor);
}

@keyframes ripple {
  0%, 35% {
    transform: scale(0);
    opacity: 1;
  }
  50% {
    transform: scale(1.5);
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: scale(2);
  }
}
/*
Video wave Style*/
.video-modal iframe {
  width: 100%;
  height: 600px;
}
.video-modal .modal-dialog {
  max-width: 860px !important;
}
.video-modal .btn-close {
  position: absolute;
  top: -30px;
  right: -30px;
  opacity: 1;
  background-color: #bbbbbb;
  border-radius: 0;
  width: 30px;
  height: 30px;
  line-height: 40px;
  transition: var(--transition);
}
.video-modal .btn-close:focus {
  box-shadow: none;
}
.video-modal .btn-close:hover {
  background-color: #ff0000;
  filter: brightness(100);
}
.video-modal .modal-body {
  padding: 0 6px;
  padding-top: 6px;
}

/*
Page-navigation Area Style*/
.pagination-area {
  margin-top: 20px;
}
.pagination-area .page-numbers {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-left: 3px;
  margin-right: 3px;
  font-weight: 600;
  font-size: 18px;
  color: var(--headingColor);
  text-decoration: none;
  transition: var(--transition);
  border-radius: 0;
  border: 1px solid #D9D9D9;
}
.pagination-area .page-numbers i {
  font-size: 22px;
  font-weight: normal;
  color: var(--headingColor);
  transition: var(--transition);
}
.pagination-area .page-numbers:hover {
  color: var(--headingColor);
  background-color: var(--whiteColor);
  box-shadow: var(--boxShadow);
}
.pagination-area .page-numbers:hover i {
  color: var(--whiteColor);
}
.pagination-area .page-numbers.next {
  top: 5px;
}
.pagination-area .page-numbers.next:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.pagination-area .page-numbers.prev {
  top: 5px;
}
.pagination-area .page-numbers.prev:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.pagination-area .page-numbers:hover {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
  box-shadow: var(--boxShadow);
}
.pagination-area .page-numbers.current {
  color: var(--whiteColor);
  border-color: var(--mainColor);
  background-color: var(--mainColor);
}

/* Dark Mode Style */
.dark-mode-btn {
  position: fixed;
  bottom: 25px;
  right: 12px;
  z-index: 1;
  width: 70px;
}
.dark-mode-btn .dark-version {
  text-align: center;
  float: right;
  z-index: 2;
  position: relative;
}
.dark-mode-btn .dark-version .switch {
  width: 49px;
  height: 49px;
  position: relative;
  border-radius: 50%;
  margin-bottom: -19px;
}
.dark-mode-btn .dark-version .switch input {
  width: 0;
  height: 0;
  opacity: 0;
  display: block;
}
.dark-mode-btn .dark-version .slider {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
  position: absolute;
  color: var(--whiteColor);
  background-color: #2e2e2e;
  transition: var(--transition);
}
.dark-mode-btn .dark-version .slider:before {
  left: 0;
  top: 50%;
  right: 0;
  content: "\f1bf";
  position: absolute;
  transform: translateY(-50%);
  transition: var(--transition);
  font-size: 22px;
  font-family: remixicon !important;
}
.dark-mode-btn .dark-version .slider.round {
  border-radius: 50%;
}
.dark-mode-btn .dark-version .slider.round:before {
  border-radius: 50%;
}
.dark-mode-btn .dark-version input:checked + .slider {
  background-color: #efefef;
}
.dark-mode-btn .dark-version input:checked + .slider:before {
  color: var(--headingColor);
  content: "\ef72";
}

/* ===================================================================== Start Demo Four Area Style =============
===========================================================================================*/
/* Start Demo Four Area Style 
==================================================*/
.section-warp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-warp .content {
  max-width: 600px;
}
.section-warp .content .title {
  color: var(--mainColor);
  line-height: normal;
  display: inline-flex;
  padding: 3px 20px;
  gap: 10px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: rgba(128, 140, 255, 0.2);
}
.section-warp .content h2 {
  color: var(--headingColor);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.5;
}

.navbar.style-four {
  position: relative;
  z-index: 999;
}
.navbar.style-four.sticky {
  background-color: var(--blackColor);
  position: fixed;
}
.navbar.style-four.bfic-hide-adminbar {
  top: 0;
}
.navbar.style-four.bfic-hide-adminbar.sticky {
  top: 30px;
}
.navbar.style-four .navbar-nav .nav-item .nav-link {
  color: var(--whiteColor);
}
.navbar.style-four .navbar-nav .nav-item .nav-link.active {
  color: var(--whiteColor);
}
.navbar.style-four .navbar-nav .nav-item .nav-link.active::before {
  left: 5px;
}
.navbar.style-four .navbar-nav .nav-item:hover .nav-link {
  color: var(--whiteColor);
}
.navbar.style-four .others-options ul li .search-icon i {
  color: var(--whiteColor);
  font-size: 20px;
}
.navbar.style-four .others-options ul li .call-us .free {
  color: rgba(255, 255, 255, 0.61);
}
.navbar.style-four .others-options ul li .call-us .call {
  color: var(--whiteColor);
}
.navbar.style-four .others-options ul li .call-us .call:hover {
  color: var(--mainColor);
}
.navbar.style-four .others-options ul li .default-btn {
  padding: 16px 40px;
}
.navbar.style-four .navbar-toggler .burger-menu span {
  background: var(--whiteColor);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar.style-four .navbar-nav.style-two .nav-item {
    margin-left: 8px !important;
    margin-right: 8px !important;
  }
}
.demo-four-banner-area {
  padding-top: 202px;
  padding-bottom: 100px;
  position: relative;
  margin-top: -105px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}
.demo-four-banner-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  height: 100%;
  width: 100%;
  background: radial-gradient(102.4% 47.72% at 68.8% 36.55%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
}
.demo-four-banner-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.four-banner-content {
  max-width: 950px;
  padding-bottom: 125px;
}
.four-banner-content h1 {
  color: var(--whiteColor);
  font-size: 100px;
  font-weight: 700;
  letter-spacing: -4px;
  margin-bottom: 30px;
}

.four-banner-service {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.four-banner-service .four-banner-service-card a {
  display: block;
  transition: var(--transition);
  text-decoration: none;
}
.four-banner-service .four-banner-service-card img {
  margin-bottom: 20px;
}
.four-banner-service .four-banner-service-card h3 {
  color: var(--whiteColor);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.36px;
  margin-bottom: 0;
}
.four-banner-service .four-banner-service-card h3 strong {
  color: #FCEF96;
  margin-right: 5px;
  font-weight: 500;
}
.four-banner-service .four-banner-service-card h3:hover {
  color: var(--mainColor);
}

.demo-four-about-area {
  overflow: hidden;
}
.demo-four-about-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.demo-four-consultant-content .demo-four-consultant-content-wrap {
  max-width: 795px;
  padding-top: 70px;
  padding-bottom: 70px;
  padding-left: 145px;
}
.demo-four-consultant-content .demo-four-consultant-content-wrap .top-title {
  background: rgba(128, 140, 255, 0.2);
  border-radius: 50px;
  padding: 3px 20px;
  color: var(--mainColor);
  display: inline-block;
  margin-bottom: 5px;
}
.demo-four-consultant-content .demo-four-consultant-content-wrap h3 {
  font-size: 40px;
  line-height: 60px;
}
.demo-four-consultant-content .demo-four-consultant-content-wrap.white-color h2 {
  color: var(--whiteColor);
  margin-bottom: 25px;
}
.demo-four-consultant-content .demo-four-consultant-content-wrap .demo-four-awards-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.demo-four-consultant-content .demo-four-consultant-content-wrap .demo-four-awards-list li span {
  font-weight: 500;
}
.demo-four-consultant-content .demo-four-consultant-content-wrap .demo-four-awards-list li h3 {
  font-size: 24px;
  font-weight: 500;
}
.demo-four-consultant-content .demo-four-consultant-content-wrap .demo-four-awards-list li i {
  font-size: 40px;
}
.demo-four-consultant-content .demo-four-consultant-content-wrap .demo-four-awards-list li:last-child {
  margin-bottom: 0;
}
.demo-four-consultant-content.style-two .consultant-progress {
  background-color: #10182B;
  margin-left: 0;
  max-width: 100%;
  padding: 47px 50px;
}
.demo-four-consultant-content.style-two .consultant-progress .single-progressbar-item .title {
  color: var(--whiteColor);
}
.demo-four-consultant-content.style-two .consultant-progress .single-progressbar-item .count {
  color: var(--whiteColor);
}
.demo-four-consultant-content.style-two .demo-four-consultant-content-wrap {
  padding: 0;
  margin-bottom: 40px;
  padding-right: 0;
  max-width: 575px;
  margin-left: 0;
}

.demo-four-consultant-progress {
  max-width: 425px;
  margin-right: 112px;
  margin-left: auto;
  padding-top: 70px;
}

.demo-four-single-progressbar-item {
  margin-bottom: 25px;
}
.demo-four-single-progressbar-item:last-child {
  margin-bottom: 0;
}
.demo-four-single-progressbar-item .title {
  display: block;
  margin-bottom: 10px;
  color: var(--headingColor);
}
.demo-four-single-progressbar-item .progress {
  overflow: unset;
  position: relative;
  height: 3px;
}
.demo-four-single-progressbar-item .progress .progress-bar {
  overflow: unset;
  position: relative;
  background-color: var(--mainColor);
}
.demo-four-single-progressbar-item .progress .progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: 10px;
  background-color: var(--mainColor);
  border-radius: 50px;
}
.demo-four-single-progressbar-item .progress .count {
  color: var(--headingColor);
  position: absolute;
  top: -33px;
  font-size: 16px;
}

.demo-four-service-provide-area {
  overflow: hidden;
}

.demo-four-service-provide-content {
  max-width: 425px;
}
.demo-four-service-provide-content .title {
  color: var(--mainColor);
  line-height: normal;
  display: inline-flex;
  padding: 3px 20px;
  gap: 10px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: rgba(128, 140, 255, 0.2);
}
.demo-four-service-provide-content h3 {
  color: var(--headingColor);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 0;
}

.demo-four-service-provide-widget .df-sp-card {
  position: relative;
  z-index: 1;
}
.demo-four-service-provide-widget .df-sp-card .icon1 {
  font-size: 50px;
  color: var(--mainColor);
  margin-bottom: 30px;
}
.demo-four-service-provide-widget .df-sp-card h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
  transition: var(--transition);
}
.demo-four-service-provide-widget .df-sp-card h3:hover {
  color: var(--mainColor);
}
.demo-four-service-provide-widget .df-sp-card a {
  text-decoration: none;
}
.demo-four-service-provide-widget .df-sp-card p {
  margin-bottom: 30px;
}
.demo-four-service-provide-widget .df-sp-card .service-btn {
  padding: 0;
  position: relative;
  font-weight: 500;
  color: var(--mainColor);
}
.demo-four-service-provide-widget .df-sp-card .service-btn::before {
  content: "";
  position: absolute;
  top: -9px;
  right: 62px;
  width: 39px;
  height: 39px;
  background-color: transparent;
  border-radius: 50px;
  z-index: -1;
  border: solid 1px #808CFF;
  transition: var(--transition);
  opacity: 0.5;
}
.demo-four-service-provide-widget .df-sp-card .service-btn i {
  position: relative;
  right: 73px;
  transition: var(--transition);
  top: 2px;
  color: #BABFF9;
}
.demo-four-service-provide-widget .df-sp-card .service-btn span {
  opacity: 0;
  transition: var(--transition);
}
.demo-four-service-provide-widget .df-sp-card:hover .service-btn::before {
  right: -24px;
  background-color: var(--mainColor);
}
.demo-four-service-provide-widget .df-sp-card:hover .service-btn i {
  right: -12px;
  color: var(--whiteColor);
}
.demo-four-service-provide-widget .df-sp-card:hover .service-btn span {
  opacity: 1;
}

.demo-four-video-area {
  position: relative;
  z-index: 1;
}
.demo-four-video-area::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  z-index: -1;
  background-color: var(--whiteColor);
}

.demo-four-inner-video {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  text-align: center;
  padding-top: 233px;
  padding-bottom: 233px;
}

.demo-four-video-btn {
  width: 112px;
  height: 112px;
  line-height: 112px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  border-radius: 50%;
  font-size: 35px;
  color: var(--whiteColor);
  border: 1.5px solid var(--whiteColor);
}
.demo-four-video-btn:hover {
  background-color: var(--mainColor);
  border-color: var(--mainColor);
  color: var(--whiteColor);
}

.four-choose-content .title {
  color: var(--mainColor);
  line-height: normal;
  display: inline-flex;
  padding: 3px 20px;
  gap: 10px;
  margin-bottom: 20px;
  border-radius: 50px;
  background: rgba(128, 140, 255, 0.2);
}
.four-choose-content h3 {
  color: var(--headingColor);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
}
.four-choose-content p {
  margin-bottom: 30px;
  padding-right: 70px;
}

.demo-four-accordion {
  padding-left: 60px;
}
.demo-four-accordion .accordion-item {
  border: none;
  border-radius: 0;
  padding-bottom: 30px;
}
.demo-four-accordion .accordion-item:last-child {
  padding-bottom: 0;
}
.demo-four-accordion .accordion-item .accordion-button {
  color: var(--headingColor);
  font-size: 20px;
  font-weight: 500;
  border: none;
  padding: 0 0 20px 0;
  border-radius: 0;
  border-bottom: solid 1px rgba(0, 0, 0, 0.13);
  box-shadow: unset;
}
.demo-four-accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
}
.demo-four-accordion .accordion-item .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}
.demo-four-accordion .accordion-item .accordion-button::after {
  background-size: 14px;
  background-position: center center;
  background-image: url(https://themes.hibotheme.com/bfic/wp-content/themes/bfic/assets/images/accordion.svg);
}
.demo-four-accordion .accordion-item .accordion-body {
  padding: 20px 0 30px 0;
  line-height: 1.8;
  border-bottom: solid 1px rgba(0, 0, 0, 0.13);
}

.single-counter.style-four .title {
  margin-right: 0;
  display: block;
  margin-bottom: 10px;
}
.single-counter.style-four h1 {
  color: transparent;
  transition: var(--transition);
  -webkit-text-stroke: 1px var(--headingColor);
  font-size: 100px;
}
.single-counter.style-four h1 .target {
  position: relative;
  left: -15px;
}
.single-counter.style-four::before {
  display: none;
}
.single-counter.style-four:hover h1 {
  color: var(--headingColor);
}

.single-advisors.style-four .advisors-content p {
  color: var(--mainColor);
}

.five-inner-testimonial-widget {
  position: relative;
  padding-left: 105px;
  padding-right: 105px;
}
.five-inner-testimonial-widget .five-testimonial-image {
  margin-right: -35px;
}
.five-inner-testimonial-widget .swiper-btn .swiper-button-next:after,
.five-inner-testimonial-widget .swiper-btn .swiper-button-prev:after {
  display: none;
}
.five-inner-testimonial-widget .swiper-btn .swiper-button-next::before,
.five-inner-testimonial-widget .swiper-btn .swiper-button-prev::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}
.five-inner-testimonial-widget .swiper-btn .swiper-button-prev::before {
  background-image: url(https://themes.hibotheme.com/bfic/wp-content/themes/bfic/assets/images/next.svg);
}
.five-inner-testimonial-widget .swiper-btn .swiper-button-next::before {
  background-image: url(https://themes.hibotheme.com/bfic/wp-content/themes/bfic/assets/images/preview.svg);
}
.five-inner-testimonial-widget .four-testimonial-slider {
  margin-left: 88px;
}

.four-testimonial-widget p {
  color: var(--headingColor);
  font-size: 32px;
  line-height: 1.6;
  letter-spacing: -0.96px;
  margin-bottom: 50px;
}
.four-testimonial-widget .details {
  padding-left: 20px;
  position: relative;
  padding-top: 10px;
  padding-bottom: 5px;
}
.four-testimonial-widget .details::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(0, 0, 0, 0.22);
}
.four-testimonial-widget .details h5 {
  color: var(--headingColor);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}
.four-testimonial-widget .details span {
  display: block;
  color: #666;
  font-size: 16px;
}

.demo-four-blog-item {
  margin-bottom: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 62px 75px;
  position: relative;
  z-index: 1;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.demo-four-blog-item:last-child {
  margin-bottom: 0;
}
.demo-four-blog-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-image: url(https://themes.hibotheme.com/bfic/wp-content/themes/bfic/assets/images/color.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.demo-four-blog-item .content {
  max-width: 585px;
}
.demo-four-blog-item .content h3 {
  font-size: 24px;
  line-height: 1.4;
  transition: var(--transition);
  margin-bottom: 0;
}
.demo-four-blog-item .content h3 a {
  color: var(--whiteColor);
}
.demo-four-blog-item .content h3 a:hover {
  color: var(--mainColor);
}
.demo-four-blog-item .content ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 15px;
}
.demo-four-blog-item .content ul li {
  display: inline-block;
  padding-right: 20px;
  color: var(--whiteColor);
}
.demo-four-blog-item .content ul li:last-child {
  padding-right: 0;
}
.demo-four-blog-item .content ul li a {
  color: #808CFF;
}
.demo-four-blog-item a {
  text-decoration: none;
}

/* End Demo Four Area Style 
==================================================*/
/* ==================Start Demo Five Area Style ============================
==================================================*/
.navbar.style-five {
  position: relative;
  z-index: 999;
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.navbar.style-five.sticky {
  background-color: var(--blackColor) !important;
  position: fixed;
}
.navbar.style-five.bfic-hide-adminbar {
  top: 0;
}
.navbar.style-five.bfic-hide-adminbar.sticky {
  top: 30px;
}
.navbar.style-five .navbar-nav .nav-item {
  margin-left: 10px;
  margin-right: 10px;
}
.navbar.style-five .navbar-nav .nav-item .nav-link {
  color: var(--whiteColor) !important;
}
.navbar.style-five .navbar-nav .nav-item .nav-link.active {
  color: var(--whiteColor);
}
.navbar.style-five .navbar-nav .nav-item .nav-link.active::before {
  left: 5px;
}
.navbar.style-five .navbar-nav .nav-item:hover .nav-link {
  color: var(--whiteColor);
}
.navbar.style-five .others-options ul {
  display: flex;
  align-items: center;
}
.navbar.style-five .others-options ul li .search-icon i {
  color: var(--whiteColor);
  font-size: 20px;
}
.navbar.style-five .others-options ul li .call-us .free {
  color: var(--whiteColor);
}
.navbar.style-five .others-options ul li .call-us .call {
  color: var(--whiteColor);
}
.navbar.style-five .others-options ul li .call-us .call:hover {
  color: var(--mainColor);
}
.navbar.style-five .others-options ul li .default-btn {
  padding: 15.5px 40px;
  border-radius: 5px;
}
.navbar.style-five .navbar-toggler .burger-menu span {
  background: var(--whiteColor);
}

.banner-five-area {
  margin-top: -110px;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 420px;
  padding-bottom: 50px;
}
.banner-five-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-five-content {
  max-width: 1135px;
}
.banner-five-content .text-inner {
  border-radius: 15px;
  border: 1px solid var(--whiteColor);
  background-color: rgba(17, 17, 17, 0.4);
  margin-bottom: 30px;
  padding: 35px 50px;
  position: relative;
}
.banner-five-content .text-inner .wrap-circle {
  position: absolute;
  right: -100px;
  bottom: -100px;
}
.banner-five-content h1 {
  font-size: 100px;
  color: var(--whiteColor);
  text-shadow: 0px 3px 50px rgba(53, 42, 57, 0.1);
  margin-bottom: 0;
  font-weight: 600;
}
.banner-five-content p {
  font-size: 23.5px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.banner-five-content .banner-btn {
  margin-top: 30px;
}
.banner-five-content .banner-btn .default-btn {
  color: var(--whiteColor) !important;
  padding: 15px 25px 15px 0;
}
.banner-five-content .banner-btn .default-btn:hover {
  padding: 15px 25px 15px 25px;
  background-color: unset;
}

.banner-five-social-link {
  text-align: end;
  line-height: 1;
  margin-top: 150px;
}
.banner-five-social-link li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
}
.banner-five-social-link li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  width: 1px;
  height: 100%;
  background-color: var(--headingColor);
}
.banner-five-social-link li span {
  font-weight: 600;
  color: var(--headingColor);
}
.banner-five-social-link li a {
  color: var(--headingColor);
  text-decoration: none;
}
.banner-five-social-link li a:hover {
  color: var(--mainColor);
}
.banner-five-social-link li:first-child {
  margin-right: 0;
}
.banner-five-social-link li:first-child::before {
  display: none;
}
.banner-five-social-link li:last-child {
  margin-right: 0;
}
.banner-five-social-link li:last-child::before {
  display: none;
}

.about-five-image {
  position: relative;
  padding-bottom: 50px;
}
.about-five-image img {
  border-radius: 15px;
}
.about-five-image .quote {
  border-radius: 10px;
  background-color: #D5AEC8;
  padding: 30px 40px;
  max-width: 430px;
  position: absolute;
  right: -85px;
  bottom: 0;
}
.about-five-image .quote p {
  font-size: 23.5px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #755670;
  line-height: 1.5;
}

.about-five-content {
  padding-left: 100px;
}
.about-five-content h2 {
  font-size: 40px;
  position: relative;
  z-index: 1;
  line-height: 1.5;
  margin-left: -335px;
  margin-bottom: 15px;
}
.about-five-content .extra-color {
  font-size: 23.5px;
  color: #C79EB9;
  font-weight: 600;
  margin-bottom: 25px;
  line-height: 1.5;
}
.about-five-content p {
  margin-bottom: 0;
}
.about-five-content .about-btn {
  margin-top: 30px;
}
.about-five-content .about-btn .default-btn {
  padding: 15px 25px 15px 0;
  background-color: unset;
}
.about-five-content .about-btn .default-btn:hover {
  padding: 15px 25px 15px 25px;
}

.single-counter.style-five-color h1 {
  font-size: 95px;
  color: rgba(213, 174, 200, 0.2);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #B99AB4;
}
.single-counter.style-five-color h1 .target {
  position: relative;
  left: -15px;
}
.single-counter.style-five-color .title {
  margin-right: 0;
}

.services-five-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.services-five-area .container-fluid {
  padding-lr: 0;
  padding-right: 0;
}
.services-five-area .section-warp .content {
  max-width: 565px;
}
.services-five-area .section-warp .content h2 {
  color: var(--whiteColor);
  margin-bottom: 0;
}
.services-five-area .section-warp .section-button .default-btn {
  color: var(--whiteColor) !important;
  background-color: unset;
}
.services-five-area .section-warp .section-button .default-btn::before {
  background-color: #FCEF96;
}
.services-five-area .section-warp .section-button .default-btn:hover {
  color: var(--blackColor);
}
.services-five-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  width: 100%;
  height: 400px;
  z-index: -1;
}

.services-five-card {
  padding: 0 35px 100px;
  position: relative;
}
.services-five-card .icon {
  margin-bottom: 90px;
  text-align: end;
}
.services-five-card .icon i {
  font-size: 75px;
  color: var(--mainColor);
  line-height: 1;
}
.services-five-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}
.services-five-card h3 a {
  color: var(--whiteColor);
  text-decoration: none;
}
.services-five-card p {
  color: #B6BEEB;
  margin-bottom: 0;
}
.services-five-card .services-btn {
  margin-top: 30px;
}
.services-five-card .services-btn .default-btn {
  padding: 15px 25px 15px 0;
  color: var(--whiteColor) !important;
  background-color: unset;
}
.services-five-card .services-btn .default-btn:hover {
  padding: 15px 25px 15px 25px;
}
.services-five-card::before {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  width: 1px;
  height: 820px;
  opacity: 0.5;
  background-color: rgba(128, 140, 255, 0.4);
}

.col-lg-3:nth-child(4) .services-five-card::before {
  display: none;
}

.video-five-inner {
  position: relative;
  margin-left: calc((100% - 1300px) / 2);
}
.video-five-inner img {
  border-radius: 20px 0px 0px 20px !important;
}
.video-five-inner .video-five-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-left: 100px;
  padding-bottom: 85px;
}
.video-five-inner .video-five-content .five-video-btn {
  width: 150px;
  height: 150px;
  line-height: 150px;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  transition: var(--transition);
  text-align: center;
  border-radius: 50%;
  font-size: 75px;
  color: var(--mainColor);
  background-color: var(--whiteColor);
}
.video-five-inner .video-five-content .five-video-btn:hover {
  background-color: var(--mainColor);
  color: var(--whiteColor);
}
.video-five-inner .video-five-content .content {
  margin-top: 120px;
}
.video-five-inner .video-five-content .content h2 {
  font-size: 40px;
  color: #C79EB9;
  text-shadow: 0px 3px 50px rgba(53, 42, 57, 0.1);
  margin-bottom: 0;
  max-width: 760px;
  line-height: 1.5;
}

.choose-five-image {
  padding-right: 50px;
}
.choose-five-image img {
  border-radius: 20px !important;
}

.choose-five-content h2 {
  font-size: 40px;
  margin-bottom: 15px;
  line-height: 1.5;
}
.choose-five-content h2 span {
  color: #C79EB9;
}
.choose-five-content p {
  margin-bottom: 0;
}
.choose-five-content .bottom-inner {
  position: relative;
  z-index: 1;
  margin-top: 30px;
  margin-left: -335px;
}
.choose-five-content .bottom-inner .inner-progress {
  border-radius: 10px;
  background-color: #D5AEC8;
  padding: 50px;
}
.choose-five-content .bottom-inner .inner-progress .progressbar-item {
  margin-bottom: 20px;
}
.choose-five-content .bottom-inner .inner-progress .progressbar-item:last-child {
  margin-bottom: 0;
}
.choose-five-content .bottom-inner .inner-progress .progressbar-item .title {
  display: block;
  margin-bottom: 10px;
  color: var(--headingColor);
}
.choose-five-content .bottom-inner .inner-progress .progressbar-item .progress {
  overflow: unset;
  position: relative;
  height: 3px;
  background-color: #A788A2;
}
.choose-five-content .bottom-inner .inner-progress .progressbar-item .progress .progress-bar {
  overflow: unset;
  position: relative;
  background-color: #FCEF96;
}
.choose-five-content .bottom-inner .inner-progress .progressbar-item .progress .progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #FCEF96;
  border-radius: 50px;
}
.choose-five-content .bottom-inner .inner-progress .progressbar-item .progress .count {
  color: var(--headingColor);
  position: absolute;
  right: 0;
  top: -33px;
  font-size: 16px;
}
.choose-five-content .bottom-inner .inner-image img {
  border-radius: 0;
}

.award-five-area {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.award-five-area .container-fluid {
  padding-left: calc((100% - 1300px) / 2);
  padding-right: 0;
}
.award-five-area::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--whiteColor);
  width: 100%;
  height: 230px;
  z-index: -1;
}
.award-five-area.bg-color-55625C {
  background-color: #55625C;
}
.award-five-area.bg-color-55625C .award-five-inner-content .awards-list li {
  border-bottom: 1px solid #46534D;
}
.award-five-area.bg-color-55625C .award-five-inner-content .awards-list li i {
  color: var(--whiteColor);
}

.award-five-inner-content {
  padding-top: 100px;
  padding-right: 130px;
}
.award-five-inner-content h2 {
  font-size: 40px;
  margin-bottom: 30px;
  color: var(--whiteColor);
  font-weight: 600;
}
.award-five-inner-content .awards-list li {
  border-bottom: 1px solid #262F55;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.award-five-inner-content .awards-list li span {
  color: #FCEF96;
  font-weight: 500;
}
.award-five-inner-content .awards-list li h3 {
  font-size: 23.5px;
  margin-bottom: 0;
}
.award-five-inner-content .awards-list li i {
  font-size: 40px;
  color: var(--mainColor);
  line-height: 1;
}
.award-five-inner-content .awards-list li:last-child {
  margin-bottom: 0;
}
.award-five-inner-content .bottom-content {
  margin-top: 150px;
}
.award-five-inner-content .bottom-content h2 {
  font-size: 40px;
  margin-bottom: 0;
  font-weight: 600;
  line-height: 1.5;
  color: var(--blackColor);
}
.award-five-inner-content .bottom-content h2 span {
  color: #B99AB4;
}

.award-five-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  border-radius: 0px 0px 0px 20px;
}

.case-studies-five-area .nav-tabs {
  margin-bottom: 30px;
  border: unset !important;
}
.case-studies-five-area .nav-tabs .nav-item {
  display: inline-block;
  margin-right: 35px;
}
.case-studies-five-area .nav-tabs .nav-item .nav-link {
  line-height: 0;
  padding: 0;
  border: unset;
}
.case-studies-five-area .nav-tabs .nav-item .nav-link h2 {
  font-size: 40px;
  line-height: 60px;
  transition: var(--transition);
  margin-bottom: 5px;
}
.case-studies-five-area .nav-tabs .nav-item .nav-link.active {
  border: unset !important;
  padding: 0;
  background-color: transparent !important;
}
.case-studies-five-area .nav-tabs .nav-item .nav-link.active h2 {
  color: var(--mainColor);
  text-decoration: underline;
}

.case-studies-five-image {
  margin-bottom: 15px;
}
.case-studies-five-image img {
  border-radius: 20px !important;
}

.case-studies-five-info {
  max-width: 760px;
  background-color: #D5AEC8;
  padding: 50px;
  position: absolute;
  bottom: -110px;
  right: 0;
  border-radius: 20px;
}
.case-studies-five-info h3 {
  margin-bottom: 15px;
  font-size: 40px;
}
.case-studies-five-info h3 a {
  color: var(--whiteColor);
}
.case-studies-five-info p {
  color: var(--blackColor);
  margin-bottom: 25px;
}
.case-studies-five-info .default-btn {
  padding: 15px 25px 15px 0;
  background-color: unset;
}
.case-studies-five-info .default-btn:hover {
  padding: 15px 25px 15px 25px;
}

.feedback-area.bg-color-f4f3f2.feedback-five-style {
  background-color: #F7EFF4;
}
.feedback-area.bg-color-f4f3f2.feedback-five-style::before {
  border-radius: 0px 20px 20px 0px;
  background-color: #10182B;
}
.feedback-area.bg-color-f4f3f2.feedback-five-style .section-title h2 {
  color: var(--whiteColor);
}
.feedback-area.bg-color-f4f3f2.feedback-five-style .single-feedback.bg-color-ffffff {
  border-radius: 20px;
}

.team-five-area {
  background-color: #F7EFF4;
}

.team-five-card {
  margin-bottom: 30px;
  position: relative;
}
.team-five-card .team-image a img {
  border-radius: 15px;
}
.team-five-card .team-content {
  border-radius: 0px 5px 5px 0px;
  background-color: rgba(17, 17, 17, 0.4);
  position: absolute;
  left: 0;
  bottom: 30px;
  padding: 30px;
}
.team-five-card .team-content h3 {
  font-size: 17px;
  color: var(--whiteColor);
  margin-bottom: 0;
}
.team-five-card .team-content p {
  display: block;
  color: #FCEF96;
  margin-top: 12px;
  font-size: 15px;
}

.blog-five-area {
  overflow: hidden;
}

.blog-five-items .item {
  border-bottom: 1px solid rgba(128, 140, 255, 0.4);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.blog-five-items .item .image {
  padding-right: 80px;
}
.blog-five-items .item .image a img {
  border-radius: 20px;
}
.blog-five-items .item .content .date {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  background-color: #FCEF96;
  color: var(--blackColor);
  font-size: 14px;
  margin-bottom: 15px;
}
.blog-five-items .item .content .link-btn {
  display: block;
  color: var(--mainColor);
  text-decoration: none;
  margin-bottom: 10px;
}
.blog-five-items .item .content .link-btn:hover {
  text-decoration: underline;
}
.blog-five-items .item .content h3 {
  font-size: 23.5px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: 600;
}
.blog-five-items .item .content h3 a {
  color: var(--blackColor);
  text-decoration: unset;
}
.blog-five-items .item .content h3 a:hover {
  color: var(--mainColor);
}
.blog-five-items .item .content .default-btn {
  padding: 15px 25px 15px 0;
}
.blog-five-items .item .content .default-btn:hover {
  padding: 15px 25px 15px 25px;
}
.blog-five-items .item:last-child {
  border-bottom: navajowhite;
  padding-bottom: 0;
  margin-bottom: 0;
}

.partners-area.bg-color-f4f0ed.partners-five-style {
  background-color: #D5AEC8;
}

/* End Demo Five Area Style 
==================================================*/
/* ========================= Start Demo Six Area Style ==========================
==================================================*/
.navbar.style-six .navbar-nav .nav-item {
  margin-left: 10px;
  margin-right: 10px;
}
.navbar.style-six.bfic-hide-adminbar {
  top: 0;
}
.navbar.style-six.bfic-hide-adminbar.sticky {
  top: 30px;
}
.navbar.style-six .others-options ul {
  display: flex;
  align-items: center;
}
.navbar.style-six .others-options ul li .default-btn {
  padding: 15.5px 40px;
  border-radius: 5px;
}

.banner-six-area {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  padding-top: 370px;
  padding-bottom: 100px;
}
.banner-six-area .container-fluid {
  max-width: 1680px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-six-content {
  max-width: 1135px;
}
.banner-six-content h1 {
  font-size: 97px;
  font-weight: 600;
  margin-bottom: 0;
  color: var(--whiteColor);
}
.banner-six-content .banner-btn {
  margin-top: 30px;
}
.banner-six-content .banner-btn .default-btn {
  color: var(--whiteColor) !important;
  padding: 15px 25px 15px 0;
  background-color: unset;
}
.banner-six-content .banner-btn .default-btn:hover {
  padding: 15px 25px 15px 25px;
}

.marquee-area.marquee-six {
  border-bottom: 1px solid #EBEBEB;
}

.about-six-area {
  overflow: hidden;
}

.about-six-content {
  position: relative;
}
.about-six-content .sub {
  display: inline-block;
  padding: 3.5px 20px;
  border-radius: 50px;
  background: rgba(128, 140, 255, 0.2);
  margin-bottom: 15px;
  color: var(--mainColor);
}
.about-six-content h3 {
  font-weight: 600;
  font-size: 23.5px;
  line-height: 1.5;
  margin-bottom: 0;
  text-shadow: 0px 3px 50px rgba(53, 42, 57, 0.1);
}
.about-six-content .about-btn {
  margin-top: 30px;
}
.about-six-content .about-btn .default-btn {
  padding: 15px 25px 15px 0;
  background-color: unset;
}
.about-six-content .about-btn .default-btn:hover {
  padding: 15px 25px 15px 25px;
}
.about-six-content .wrap-circle {
  position: absolute;
  right: 0;
  bottom: -145px;
}

.about-six-image {
  padding-left: 50px;
}

.feature-six-card {
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.feature-six-card .icon {
  margin-bottom: 40px;
  padding: 45px 0 0 30px;
}
.feature-six-card h3 {
  font-size: 23.5px;
  margin-bottom: 15px;
}
.feature-six-card p {
  margin-bottom: 0;
  padding-bottom: 35px;
}
.feature-six-card::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  background-image: url(../images/line1.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 424px;
  height: 120px;
  z-index: -1;
}
.feature-six-card::after {
  position: absolute;
  content: "";
  right: 0;
  bottom: 0;
  background-image: url(../images/line2.png);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 113px;
  height: 40px;
  z-index: -1;
}

.choose-six-area {
  overflow: hidden;
}
.choose-six-area .container-fluid {
  padding-left: 0;
  padding-right: 0;
}

.choose-six-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  z-index: 1;
  margin-right: 85px;
}
.choose-six-image .choose-counter {
  position: absolute;
  right: -85px;
  top: 50%;
  transform: translateY(-50%);
}
.choose-six-image .choose-counter .counter-box {
  background-color: #5A6B73;
  text-align: center;
  padding: 25px;
}
.choose-six-image .choose-counter .counter-box h2 {
  margin-bottom: 0;
  font-size: 100px;
  font-weight: 700;
  color: var(--whiteColor);
  line-height: 1;
}
.choose-six-image .choose-counter .counter-box h2 .target {
  margin-left: -22px;
}
.choose-six-image .choose-counter .counter-box .title {
  display: block;
  color: #FCEF96;
  margin-top: 5px;
}
.choose-six-image .choose-counter .counter-box.different-wrap {
  background-color: #745B5A;
  margin-top: 25px;
}

.choose-six-content {
  max-width: 610px;
  padding-top: 30px;
  padding-left: 100px;
  padding-bottom: 30px;
}
.choose-six-content .sub {
  display: inline-block;
  padding: 3.5px 20px;
  border-radius: 50px;
  background: rgba(128, 140, 255, 0.2);
  margin-bottom: 15px;
  color: var(--mainColor);
}
.choose-six-content h2 {
  font-size: 40px;
  line-height: 1.5;
  margin-bottom: 15px;
}
.choose-six-content p {
  margin-bottom: 25px;
}
.choose-six-content .inner-progress {
  background-color: #55625C;
  padding: 50px;
}
.choose-six-content .inner-progress .progressbar-item {
  margin-bottom: 25px;
}
.choose-six-content .inner-progress .progressbar-item:last-child {
  margin-bottom: 0;
}
.choose-six-content .inner-progress .progressbar-item .title {
  display: block;
  margin-bottom: 10px;
  color: var(--whiteColor);
}
.choose-six-content .inner-progress .progressbar-item .progress {
  overflow: unset;
  position: relative;
  height: 3px;
  background-color: #46534D;
}
.choose-six-content .inner-progress .progressbar-item .progress .progress-bar {
  overflow: unset;
  position: relative;
  background-color: #FCEF96;
}
.choose-six-content .inner-progress .progressbar-item .progress .progress-bar::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 10px;
  height: 10px;
  background-color: #FCEF96;
  border-radius: 50px;
}
.choose-six-content .inner-progress .progressbar-item .progress .count {
  color: #FCEF96;
  position: absolute;
  right: 0;
  top: -33px;
  font-size: 16px;
}

.services-six-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
  position: relative;
}
.services-six-image .link-btn {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.services-six-content {
  padding-top: 70px;
  padding-left: 100px;
  padding-bottom: 70px;
}
.services-six-content.wrap-right {
  padding-top: 70px;
  padding-left: 0;
  padding-right: 100px;
  padding-bottom: 70px;
}
.services-six-content h3 {
  font-size: 23.5px;
  margin-bottom: 15px;
  line-height: 1.2;
}
.services-six-content h3 a {
  text-decoration: unset;
  color: var(--mainColor);
}
.services-six-content p {
  margin-bottom: 35px;
}
.services-six-content .default-btn {
  padding: 15px 25px 15px 0;
  background-color: unset;
}
.services-six-content .default-btn:hover {
  padding: 15px 25px 15px 25px;
}

.case-study-six-area {
  overflow: hidden;
  background-color: #F4F0ED;
}
.case-study-six-area .container-fluid {
  padding-left: 0;
  padding-right: calc((100% - 1300px) / 2);
}

.case-study-six-image {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  position: relative;
  z-index: 1;
}
.case-study-six-image .case-study-counter {
  display: flex;
  position: absolute;
  left: 20px;
  bottom: 20px;
  margin-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}
.case-study-six-image .case-study-counter li {
  list-style-type: none;
  margin-right: 20px;
}
.case-study-six-image .case-study-counter li:last-child {
  margin-right: 0;
}
.case-study-six-image .case-study-counter .counter-box {
  border: 0.5px solid var(--whiteColor);
  background: radial-gradient(238.07% 141.32% at 0% 0.15%, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
  -webkit-backdrop-filter: blur(21px);
          backdrop-filter: blur(21px);
  text-align: center;
  padding: 25px 35px;
}
.case-study-six-image .case-study-counter .counter-box h2 {
  margin-bottom: 0;
  font-size: 100px;
  font-weight: 700;
  color: var(--whiteColor);
  line-height: 1;
}
.case-study-six-image .case-study-counter .counter-box h2 .target {
  margin-left: -22px;
}
.case-study-six-image .case-study-counter .counter-box .title {
  display: block;
  color: var(--whiteColor);
  margin-top: 5px;
}

.case-study-six-content {
  padding-top: 100px;
  padding-left: 110px;
  padding-bottom: 100px;
}
.case-study-six-content .top {
  font-size: 40px;
  margin-bottom: 30px;
  line-height: 1.5;
}
.case-study-six-content .accordion .accordion-item {
  background-color: transparent;
  border: none;
  margin-bottom: 40px;
}
.case-study-six-content .accordion .accordion-item .accordion-button {
  background-color: transparent;
  border: none;
  padding: 0;
  display: block;
  box-shadow: unset;
  outline: 0;
}
.case-study-six-content .accordion .accordion-item .accordion-button h1 {
  color: var(--mainColor);
  font-size: 40px;
  font-weight: 600;
  margin-bottom: 7px;
  opacity: 0.3;
}
.case-study-six-content .accordion .accordion-item .accordion-button h3 {
  margin-bottom: 0;
  font-size: 23.5px;
  font-weight: 700;
}
.case-study-six-content .accordion .accordion-item .accordion-button::after {
  display: none;
}
.case-study-six-content .accordion .accordion-item .accordion-body {
  padding: 0;
  margin-top: 20px;
}
.case-study-six-content .accordion .accordion-item .accordion-body p {
  margin-bottom: 22px;
}
.case-study-six-content .accordion .accordion-item .accordion-body .default-btn {
  background-color: unset;
}
.case-study-six-content .accordion .accordion-item:last-child {
  margin-bottom: 0;
}

.testimonial-six-inner {
  padding: 0 110px;
  position: relative;
}
.testimonial-six-inner .testimonial-button-prev {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--mainColor);
  color: var(--blackColor);
  font-size: 17px;
  border-radius: 50px;
  transition: var(--transition);
  text-align: start;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.testimonial-six-inner .testimonial-button-prev i {
  font-size: 20px;
  position: relative;
  left: -15px;
  transition: var(--transition);
}
.testimonial-six-inner .testimonial-button-prev:hover {
  text-align: center;
}
.testimonial-six-inner .testimonial-button-prev:hover i {
  left: 0;
}
.testimonial-six-inner .testimonial-button-next {
  display: inline-block;
  height: 50px;
  width: 50px;
  line-height: 50px;
  background-color: var(--mainColor);
  color: var(--blackColor);
  font-size: 17px;
  border-radius: 50px;
  transition: var(--transition);
  text-align: end;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.testimonial-six-inner .testimonial-button-next i {
  font-size: 20px;
  position: relative;
  right: -15px;
  transition: var(--transition);
}
.testimonial-six-inner .testimonial-button-next:hover {
  text-align: center;
}
.testimonial-six-inner .testimonial-button-next:hover i {
  right: 0;
}

.testimonial-six-item {
  text-align: center;
}
.testimonial-six-item .quote {
  margin-bottom: 20px;
}
.testimonial-six-item p {
  color: var(--blackColor);
  font-weight: 600;
  font-size: 23.5px;
  margin-bottom: 0;
  line-height: 1.7;
  max-width: 1095px;
  margin: auto;
}
.testimonial-six-item .info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.testimonial-six-item .info .title {
  text-align: start;
  margin-left: 20px;
}
.testimonial-six-item .info .title h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 0;
}
.testimonial-six-item .info .title span {
  display: block;
  margin-top: 10px;
}

.team-six-area {
  background-color: #F4F0ED;
}

.team-six-card {
  margin-bottom: 30px;
}
.team-six-card .team-image {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team-six-card .team-image .social-link {
  position: absolute;
  bottom: 0;
  left: -100%;
  line-height: 1;
  transition: var(--transition);
  background-color: var(--whiteColor);
  padding: 15px 25px;
  opacity: 0;
  border-radius: 0 20px 0 0;
}
.team-six-card .team-image .social-link li {
  display: inline-block;
  margin-right: 10px;
}
.team-six-card .team-image .social-link li:last-child {
  margin-right: 0;
}
.team-six-card .team-image .social-link li a {
  color: var(--mainColor);
  text-decoration: none;
  font-size: 20px;
}
.team-six-card .team-image .social-link li a:hover {
  color: var(--blackColor);
}
.team-six-card .team-content {
  margin-top: 27px;
}
.team-six-card .team-content h3 {
  margin-bottom: 0;
  font-size: 20px;
  font-weight: 600;
}
.team-six-card .team-content p {
  display: block;
  margin-top: 10px;
  font-size: 15px;
}
.team-six-card:hover .team-image .social-link {
  opacity: 1;
  left: 0;
}

.blog-six-card {
  background-color: #5A6B73;
  padding: 45px;
  margin-bottom: 25px;
}
.blog-six-card a {
  text-decoration: none;
}
.blog-six-card .link-btn {
  display: block;
  color: #FCEF96;
  margin-bottom: 17px;
}
.blog-six-card .admin {
  line-height: 1;
  margin-bottom: 15px;
}
.blog-six-card .admin li {
  display: inline-block;
  margin-right: 30px;
  position: relative;
  color: var(--whiteColor);
}
.blog-six-card .admin li::before {
  content: "";
  position: absolute;
  top: 0;
  right: -17px;
  width: 1px;
  height: 100%;
  background-color: var(--whiteColor);
  transform: rotate(15deg);
}
.blog-six-card .admin li a {
  color: var(--whiteColor);
}
.blog-six-card .admin li:last-child {
  padding-right: 0;
}
.blog-six-card .admin li:last-child::before {
  display: none;
}
.blog-six-card h3 {
  font-size: 22.5px;
  line-height: 1.5;
  margin-bottom: 12px;
  font-weight: 600;
}
.blog-six-card h3 a {
  color: var(--whiteColor);
  text-decoration: none;
}
.blog-six-card p {
  color: var(--whiteColor);
  margin-bottom: 20px;
}
.blog-six-card .default-btn {
  padding: 15px 25px 15px 0;
  color: var(--whiteColor) !important;
  background-color: unset;
}
.blog-six-card .default-btn:hover {
  padding: 15px 25px 15px 25px;
}

.col-xl-4:nth-child(2) .blog-six-card {
  background-color: #745B5A;
}
.col-xl-4:nth-child(3) .blog-six-card {
  background-color: #55625C;
}

.partners-area.bg-color-f4f0ed.partners-six-style {
  background-color: var(--mainColor);
}

.blog-five-area .default-btn {
  background-color: unset;
}

.transparent {
  background-color: transparent;
}

/* End Demo Six Area Style 
==================================================*//*# sourceMappingURL=bfic-main-style.css.map */