/*
@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 {
  background-image: url(../images/banner/banner-bg-1.jpg);
  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.jpg);
  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-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(../../assets/images/services/services-bg.jpg);
}
.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(../../assets/images/pricing/pricing-bg.png);
}
.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(../../assets/images/pricing/pricing-bg.png);
}

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

@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";
}/*# sourceMappingURL=bfic-main-style.css.map */