/*
@File: Torado/Consulting Firm 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
** - Header Area Style
** - Nav Area Style
** - Banner Area Style
** - Futures Area Style
** - About Area Style
** - Services Area Style
** - Ready To Talk Area Style
** - Choose Us Area Style
** - Case Studies Area Style
** - Customer Area Style
** - Team Area Style
** - Partner Area Style
** - Blog Area Style
** - Footer Area Style
** - Copy Right Area Style

** - OTHER STYLE AREA - **

** - Preloader Area Style
** - Go Top Style
** - Video wave Style

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

/*
Default Style
============================*/
@import url("https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&display=swap");
:root {
  --body-font-family: "Josefin Sans", sans-serif;
  --body-color: #484177;
  --main-color: #FF8328;
  --optional-color: #2782F9;
  --heading-color: #0A0142;
  --white-color: #ffffff;
  --black-color: #000000;
  --font-size: 16px;
  --mobile-font-size: 15px;
  --transition: all ease .5s;
  --border-radius: 5px;
  --box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.05);
}

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

a {
  transition: var(--transition);
  color: var(--body-color);
}
a:hover {
  color: var(--main-color);
}

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

h1, h2 {
  font-family: "Spartan";
}

h2 {
  font-weight: 800;
  line-height: 55px;
}

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

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

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

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

.form-control {
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background-color: rgba(255, 255, 255, 0.04);
  font-size: 16px;
  padding: 10px 20px;
  width: 100%;
  transition: var(--transition);
  border-radius: 4px;
  color: var(--white-color) !important;
}
.form-control::-moz-placeholder {
  color: #D3D3D3;
}
.form-control::placeholder {
  color: #D3D3D3;
}
.form-control:focus {
  color: var(--black-color);
  box-shadow: unset;
  outline: 0;
  border: 1px solid var(--main-color);
  background: rgba(255, 255, 255, 0.04);
}

textarea.form-control {
  height: auto;
}

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

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

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

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

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

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

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

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

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

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

/*
Go Top Style*/
.go-top {
  position: fixed;
  cursor: pointer;
  right: 3%;
  top: 87%;
  background-color: var(--main-color);
  z-index: 4;
  width: 40px;
  text-align: center;
  height: 42px;
  line-height: 42px;
  transform: scale(0);
  visibility: hidden;
  transition: 0.9s;
  border-radius: var(--border-radius);
}
.go-top i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  color: var(--white-color);
  transition: 0.5s;
  font-size: 20px;
}
.go-top i:last-child {
  opacity: 0;
  visibility: hidden;
  top: 60%;
}
.go-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-color: var(--main-color);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  border-radius: var(--border-radius);
}
.go-top:hover {
  color: var(--white-color);
  background-color: var(--main-color);
}
.go-top:hover::before {
  opacity: 1;
  visibility: visible;
}
.go-top:hover i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:hover i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top:focus {
  color: var(--white-color);
}
.go-top:focus::before {
  opacity: 1;
  visibility: visible;
}
.go-top:focus i:first-child {
  opacity: 0;
  top: 0;
  visibility: hidden;
}
.go-top:focus i:last-child {
  opacity: 1;
  visibility: visible;
  top: 50%;
}
.go-top.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  right: 3%;
  top: 87%;
  transform: scale(1);
}

/* Preloader Area Style
============================================*/
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--main-color);
  z-index: 9999;
}
.preloader .pl-spark-1 {
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  margin: 0 auto 18px auto;
  position: relative;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.preloader .pl-spark-1:before, .preloader .pl-spark-1:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  animation-duration: 2s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  background: var(--white-color);
  display: block;
  transform-origin: 50% 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.preloader .pl-spark-1.pl-spark-2:before {
  animation-name: scaleA;
}
.preloader .pl-spark-1.pl-spark-2:after {
  animation-name: scaleB;
}
.preloader.preloader-deactivate {
  visibility: hidden;
}

@keyframes scaleA {
  from, 50%, to {
    transform: scale(1);
  }
  25%, 75% {
    transform: scale(-1);
  }
}
@keyframes scaleB {
  from, 50%, to {
    transform: rotate(90deg) scale(0);
  }
  12.5%, 62.5% {
    transform: rotate(90deg) scale(1);
  }
  37.5%, 87.5% {
    transform: rotate(90deg) scale(-1);
  }
}
/* Default btn Area Style
============================================*/
.default-btn {
  background-color: var(--main-color);
  border-radius: 5px;
  font-weight: 500;
  font-size: 18px;
  line-height: 10px;
  color: var(--white-color);
  padding: 21px 32px;
  display: inline-block;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.default-btn:hover {
  background-color: var(--optional-color);
  color: var(--white-color);
}
.default-btn:hover::before {
  opacity: 1;
}
.default-btn.active {
  background-color: var(--optional-color);
  color: var(--white-color);
}
.default-btn.active-btn {
  background-color: var(--optional-color);
  color: var(--white-color);
}
.default-btn.active-btn:hover {
  background-color: var(--main-color);
}

/* Read More btn Area Style
============================================*/
.read-more {
  font-weight: 600;
  font-size: 18px;
  line-height: 10px;
  color: var(--heading-color);
  text-decoration: unset;
}
.read-more img {
  margin-left: 12px;
}
.read-more:hover {
  letter-spacing: 0.5px;
}

/* Section Area Style
============================================*/
.section-title {
  max-width: 750px;
  margin: auto;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}
.section-title .top-title {
  color: var(--optional-color);
  font-weight: 500;
  font-size: 20px;
  border-bottom: 1px solid #2782F9;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 1;
}
.section-title h2 {
  font-size: 40px;
  margin-bottom: 15px;
  position: relative;
}
.section-title h2:last-child {
  margin-bottom: 0;
}
.section-title p {
  max-width: 600px;
  margin: auto;
}
.section-title.w-460 {
  max-width: 460px;
}
.section-title.w-500 {
  max-width: 500px;
}
.section-title.w-550 {
  max-width: 550px;
}
.section-title.left-title {
  text-align: left;
  margin-left: 0;
}
.section-title.left-title .default-btn {
  position: absolute;
  top: 0;
  right: 0;
}
.section-title.white-title h2 {
  color: var(--white-color);
}

/* navbar Area Style
============================================*/
.navbar {
  background-color: #060452;
  z-index: 2;
}
.navbar.is-sticky {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  animation: 0.5s ease-in-out 0s normal none 1 running fadeInDown;
  background-color: #060452;
  z-index: 999;
}
.navbar.is-sticky::before {
  display: none;
}
.navbar .container-fluid {
  max-width: 1780px;
  padding-left: 30px;
  padding-right: 30px;
}
.navbar .nav-item .nav-link {
  font-weight: 500;
  font-size: 18px;
  line-height: 10px;
  color: #D2D2D2;
  padding: 0 22px;
  padding: 34px 22px;
}
.navbar .nav-item .nav-link:hover {
  color: var(--main-color);
}
.navbar .nav-item .nav-link.active {
  color: var(--main-color);
}
.navbar .others-option {
  margin-left: 22px;
}
.navbar .others-option ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar .others-option ul li {
  margin-right: 22px;
}
.navbar .others-option ul li:last-child {
  margin-right: 0;
}
.navbar .others-option .default-btn {
  display: block;
  padding: 21px 29px;
  font-weight: 600;
}
.navbar .others-option .option-item {
  position: relative;
  top: 12px;
}
.navbar .others-option .option-item .search-overlay {
  display: none;
}
.navbar .others-option .option-item .search-overlay.search-popup {
  position: absolute;
  top: 100%;
  width: 300px;
  right: 0;
  background: var(--white-color);
  z-index: 2;
  padding: 20px;
  box-shadow: var(--box-shadow);
  margin-top: 18px;
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form {
  position: relative;
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input {
  display: block;
  width: 100%;
  height: 50px;
  line-height: initial;
  border: 1px solid #dddddd;
  color: var(--heading-color);
  outline: 0;
  transition: var(--transition);
  font-size: 15px;
  padding-top: 4px;
  padding-left: 15px;
  background: var(--white-color);
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form .search-input:focus {
  border-color: var(--main-color);
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button {
  position: absolute;
  right: 0;
  top: 0;
  height: 50px;
  background: var(--main-color);
  border: none;
  width: 50px;
  outline: 0;
  color: var(--white-color);
  transition: var(--transition);
  padding: 0;
}
.navbar .others-option .option-item .search-overlay.search-popup .search-form .search-button:hover {
  background-color: var(--heading-color);
}
.navbar .others-option .option-item .search-btn {
  cursor: pointer;
  transition: var(--transition);
  color: var(--heading-color);
  text-align: center;
  font-size: 21px;
  display: inline-block;
}
.navbar .others-option .option-item .search-btn:hover {
  color: var(--main-color);
}
.navbar .others-option .option-item .close-btn {
  cursor: pointer;
  transition: var(--transition);
  color: var(--heading-color);
  text-align: center;
  display: none;
  font-size: 21px;
}
.navbar .others-option .option-item .close-btn:hover {
  color: var(--main-color);
}
.navbar .others-option .option-item .close-btn.active {
  display: block;
  color: var(--main-color);
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }
  to {
    opacity: 1;
    transform: translateZ(0);
  }
}
/* Banner Area Style
============================================*/
.banner-area {
  background-color: #02004B;
  background-image: url(../../assets/images/consulting-firm/banner-bg.jpg);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: top center;
  position: relative;
  z-index: 1;
}
.banner-area::before {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  background-color: var(--white-color);
  z-index: -1;
}
.banner-area .container-fluid {
  max-width: 1780px;
  padding-left: 30px;
  padding-right: 30px;
}

.banner-content h1 {
  font-weight: 800;
  font-size: 80px;
  line-height: 100px;
  letter-spacing: -0.02em;
  margin-bottom: 0;
  color: var(--white-color);
}

.banner-quat {
  max-width: 627px;
  position: relative;
}
.banner-quat p {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  color: #D2D2D2;
  margin-bottom: 25px;
}
.banner-quat span {
  display: block;
  font-weight: 600;
  font-size: 19px;
  color: var(--white-color);
  position: relative;
  z-index: 1;
  padding-left: 40px;
  margin-bottom: 35px;
}
.banner-quat span::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 33px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.55);
}
.banner-quat .quat {
  position: absolute;
  right: 0;
  bottom: 80px;
}
.banner-quat .default-btn {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 5px;
  color: var(--main-color);
  display: inline-flex;
}
.banner-quat .default-btn:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}

.quat-slide.owl-carousel .owl-item img {
  width: auto;
}

.banner-img {
  max-width: 1320px;
  margin: auto;
  position: relative;
  z-index: 1;
}
.banner-img img {
  border-radius: 106px;
}
.banner-img .popular-services {
  background: rgba(1, 5, 94, 0.99);
  border: 11px solid #02004b;
  border-radius: 31px;
  padding: 37px 25px;
  padding-bottom: 10px;
  border-radius: 31px;
  max-width: 276px;
  position: absolute;
  top: 65px;
  left: -187px;
}
.banner-img .popular-services.style-two {
  left: auto;
  right: -180px;
  top: -92px;
  background-color: #02004B;
  padding: 0;
  padding-bottom: 8px;
}
.banner-img .popular-services.style-two ul {
  background-color: transparent;
}
.banner-img .popular-services.style-two ul li {
  background: #01055D;
  border-radius: 10px;
  padding: 17px 15px;
  margin-bottom: 12px;
}
.banner-img .popular-services.style-two ul li:last-child {
  margin-bottom: 0;
}
.banner-img .popular-services h3 {
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid rgba(225, 225, 225, 0.19);
  color: var(--white-color);
  padding-bottom: 10px;
  margin-bottom: 22px;
}
.banner-img .popular-services .popular-services-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  background: rgba(1, 5, 94, 0.99);
}
.banner-img .popular-services .popular-services-list li {
  margin-bottom: 20px;
}
.banner-img .popular-services .popular-services-list li span {
  background: rgba(214, 211, 210, 0.15);
  color: var(--white-color);
  width: 45px;
  height: 45px;
  line-height: 48px;
  text-align: center;
  display: inline-block;
  border-radius: 50px;
  font-weight: 600;
}
.banner-img .popular-services .popular-services-list li h4 {
  font-weight: 400;
  font-size: 16px;
  color: #D2D2D2;
  margin-bottom: 0;
}

@keyframes slideOutUp {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

@keyframes slideInUp {
  0% {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}

@keyframes slideInDown {
  0% {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translateZ(0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}

@keyframes slideOutDown {
  0% {
    transform: translateZ(0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}

/* Partner Area Style
============================================*/
.partner-slide.owl-carousel .owl-item img {
  width: auto;
  margin: auto;
}

.partner-item {
  cursor: pointer;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #EEEEEE;
  border-radius: 5px;
}
.partner-item img {
  opacity: 0.5;
  transition: var(--transition);
}
.partner-item:hover img {
  opacity: 1;
}

/* About Area Style
============================================*/
.about-yser {
  background: linear-gradient(to right, #B4D4FD, transparent);
  padding: 6px;
  padding-right: 0;
  border-radius: 30px;
}
.about-yser .bg-color {
  background-color: var(--white-color);
  text-align: center;
  border-radius: 25px;
  padding-top: 90px;
  padding-bottom: 90px;
}
.about-yser h1 {
  font-weight: 800;
  font-size: 400px;
  line-height: 435px;
  color: #000000;
  background: url(../../assets/images/consulting-firm/about-img.jpg) no-repeat;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: cover;
  background-position: center center;
  margin-bottom: -60px;
}
.about-yser h3 {
  font-size: 32px;
  margin-bottom: 0;
}

.about-content {
  max-width: 600px;
}
.about-content .top-title {
  color: var(--optional-color);
  font-weight: 500;
  font-size: 20px;
  border-bottom: 1px solid #2782F9;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 1;
}
.about-content h2 {
  font-size: 40px;
}
.about-content p {
  margin-bottom: 30px;
}

.single-about-progress {
  text-align: center;
  background: #F3F3F3;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 30px;
}
.single-about-progress .circle_percent {
  font-size: 105px;
  width: 1em;
  height: 1em;
  position: relative;
  background: #F3F3F3;
  border-radius: 50%;
  overflow: hidden;
  display: inline-block;
  margin-bottom: 5px;
}
.single-about-progress .circle_inner {
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  height: 1em;
  clip: rect(0 1em 1em 0.5em);
}
.single-about-progress .round_per {
  position: absolute;
  left: 0;
  top: 0;
  width: 1em;
  height: 1em;
  background: var(--main-color);
  clip: rect(0 1em 1em 0.5em);
  transform: rotate(180deg);
  transition: 1.05s;
}
.single-about-progress .percent_more .circle_inner {
  clip: rect(0 0.5em 1em 0em);
}
.single-about-progress .percent_more:after {
  position: absolute;
  left: 0.5em;
  top: 0em;
  right: 0;
  bottom: 0;
  background: var(--main-color);
  content: "";
}
.single-about-progress .circle_inbox {
  position: absolute;
  top: 4px;
  left: 4px;
  right: 4px;
  bottom: 4px;
  background: #FCF1EE;
  z-index: 3;
  border-radius: 50%;
}
.single-about-progress .percent_text {
  position: absolute;
  font-weight: 600;
  font-size: 24px;
  left: 50%;
  top: 50%;
  color: var(--heading-color);
  transform: translate(-50%, -50%);
  z-index: 3;
}
.single-about-progress h3 {
  font-weight: 600;
  font-size: 20px;
  max-width: 100px;
  margin: auto;
}

/* Services Area Style
============================================*/
.services-area {
  background: rgba(39, 130, 249, 0.04);
  position: relative;
  z-index: 1;
}
.services-area .services-shape {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 200px;
  right: 0;
  margin: auto;
  z-index: -1;
}

.services-content {
  max-width: 710px;
}
.services-content .top-title {
  color: var(--optional-color);
  font-weight: 500;
  font-size: 20px;
  border-bottom: 1px solid #2782F9;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 1;
}
.services-content h2 {
  font-size: 40px;
  max-width: 520px;
  margin-bottom: 30px;
}

.services-list .nav-pills {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  display: block;
}
.services-list .nav-pills .nav-item {
  margin-bottom: 20px;
}
.services-list .nav-pills .nav-item:last-child {
  margin-bottom: 0;
}
.services-list .nav-pills .nav-item .nav-link {
  padding: 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 24px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px rgba(39, 130, 249, 0.06);
  transition: var(--transition);
  color: var(--heading-color);
}
.services-list .nav-pills .nav-item .nav-link .count {
  width: 62px;
  height: 62px;
  line-height: 62px;
  display: inline-block;
  background: rgba(39, 130, 249, 0.15);
  text-align: center;
  border-radius: 50%;
  transition: var(--transition);
  color: var(--optional-color);
}
.services-list .nav-pills .nav-item .nav-link.active {
  background-color: var(--optional-color);
  color: var(--white-color);
}
.services-list .nav-pills .nav-item .nav-link.active .count {
  background-color: var(--white-color);
  color: var(--optional-color);
}

.single-services {
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px rgba(39, 130, 249, 0.09);
  border-radius: 10px;
  padding: 45px 40px;
}
.single-services .icon {
  background: rgba(254, 142, 61, 0.12);
  border-radius: 5px;
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
}
.single-services h3 {
  font-size: 24px;
  margin-bottom: 0;
  margin-left: 25px;
}
.single-services p {
  margin-top: 20px;
}
.single-services .read-more {
  color: #FF8328;
  text-decoration: underline;
  margin-top: 24px;
}

/* Counter Area Style
============================================*/
.counter-area {
  position: relative;
  z-index: 1;
}
.counter-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: rgba(39, 130, 249, 0.04);
  z-index: -1;
}

.counter-bg {
  background-image: url(../../assets/images/consulting-firm/counter-bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  border-radius: 10px;
  padding-left: 50px;
  padding-right: 50px;
  position: relative;
}
.counter-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: -10px;
  width: 10px;
  height: 100%;
  background-color: #F6FAFF;
  border-radius: 0 10px 10px 0;
  z-index: 2;
}

.single-counter {
  text-align: center;
  margin-bottom: 30px;
}
.single-counter h1 {
  font-size: 64px;
  font-family: var(--body-font-family);
  margin-bottom: 0;
  color: var(--main-color);
  margin-bottom: -10px;
}
.single-counter span {
  color: var(--white-color);
  font-weight: 500;
  font-size: 20px;
}

.contact-info {
  background-image: url(../../assets/images/consulting-firm/contact-info-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  position: relative;
  z-index: 1;
  border-radius: 0 10px 10px 0;
  padding: 50px;
}
.contact-info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(2, 0, 75, 0.88);
  border-radius: 0 10px 10px 0;
  z-index: -1;
}
.contact-info .icon {
  width: 56px;
  height: 56px;
  line-height: 56px;
  text-align: center;
  background-color: var(--optional-color);
  border-radius: 50px;
  margin-bottom: 20px;
}
.contact-info span {
  display: block;
  color: var(--white-color);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 5px;
}
.contact-info a {
  display: block;
  color: var(--white-color);
  margin-bottom: 3px;
  text-decoration: none;
}
.contact-info a:hover {
  color: var(--main-color);
}
.contact-info a:last-child {
  margin-bottom: 0;
}

/* Recent Area Style
============================================*/
.recent-work-area .section-title {
  margin-bottom: 15px !important;
}

.single-recent .recent-img {
  position: relative;
  overflow: hidden;
  color: var(--white-color);
}
.single-recent .recent-img img {
  border-radius: 10px;
}
.single-recent .recent-img .recent-content {
  background: rgba(2, 0, 75, 0.87);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  position: absolute;
  bottom: -100%;
  left: 0;
  right: 0;
  margin: 10px;
  transition: var(--transition);
}
.single-recent .recent-img .recent-content h3 {
  font-size: 20px;
  margin-bottom: 5px;
  color: var(--main-color);
}
.single-recent .recent-img .recent-content p {
  color: var(--white-color);
}
.single-recent:hover .recent-img .recent-content {
  bottom: 0;
}

.recent-slide.owl-carousel .owl-item img {
  display: inline-block;
  width: auto;
  margin: auto;
}
.recent-slide.owl-theme .owl-nav {
  margin-top: 0 !important;
}
.recent-slide.owl-theme .owl-nav .owl-prev, .recent-slide.owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(245, 142, 69, 0.12);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  border-radius: 50%;
  transition: var(--transition);
  margin: 0;
  position: absolute;
  top: 50%;
  left: -68px;
  transform: translateY(-50%);
}
.recent-slide.owl-theme .owl-nav .owl-prev img, .recent-slide.owl-theme .owl-nav .owl-next img {
  position: relative;
  top: 0;
  left: -1px;
  transition: var(--transition);
}
.recent-slide.owl-theme .owl-nav .owl-prev:hover, .recent-slide.owl-theme .owl-nav .owl-next:hover {
  background: var(--main-color);
}
.recent-slide.owl-theme .owl-nav .owl-prev:hover img, .recent-slide.owl-theme .owl-nav .owl-next:hover img {
  filter: brightness(100);
}
.recent-slide.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -68px;
}
.recent-slide.owl-theme .owl-nav .owl-next img {
  left: auto;
  right: -2px;
}

.nav-tabs {
  display: block;
  text-align: center;
  margin-bottom: 40px;
  border: none;
}
.nav-tabs .nav-item {
  display: inline-block;
  margin-right: 15px;
}
.nav-tabs .nav-item:last-child {
  margin: 0;
}
.nav-tabs .nav-item .nav-link {
  border: none;
  font-weight: 500;
  font-size: 20px;
  color: var(--heading-color);
  border: 1px solid rgba(187, 187, 187, 0.31);
  transition: var(--transition);
  border-radius: 5px;
}
.nav-tabs .nav-item .nav-link.active {
  background-color: var(--main-color);
  color: var(--white-color);
  border-color: var(--main-color);
}

/* Exclusive Consultant Area Style
============================================*/
.exclusive-consultant-area {
  background: #F6FAFF;
}

.exclusive-consultant-content {
  max-width: 600px;
}
.exclusive-consultant-content .top-title {
  color: var(--optional-color);
  font-weight: 500;
  font-size: 20px;
  border-bottom: 1px solid #2782F9;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 1;
}
.exclusive-consultant-content h2 {
  font-size: 40px;
  max-width: 550px;
  margin-bottom: 20px;
}

.skill-bar {
  margin-bottom: 20px;
}
.skill-bar .progress-title-holder {
  position: relative;
}
.skill-bar .progress-title {
  font-size: 18px;
  font-weight: 500;
}
.skill-bar .progress-number-wrapper {
  width: 100%;
  z-index: 10;
  font-size: 11px;
  line-height: 24px;
  height: 24px;
  letter-spacing: 0px;
  font-weight: 600;
  font-style: normal;
  text-transform: none;
  color: var(--white-color);
}
.skill-bar .progress-number-mark {
  margin-bottom: 4px;
  border-radius: 3px;
  color: var(--heading-color);
  padding: 0 8px;
  position: absolute;
  bottom: 0;
  transform: translateX(-50%);
  font-weight: 500;
  font-size: 18px;
}
.skill-bar .down-arrow {
  display: none;
}
.skill-bar .progress-content-outter {
  height: 14px;
  border: 1px solid var(--optional-color);
  border-radius: 10px;
}
.skill-bar .progress-content {
  height: 6px;
  background-color: var(--optional-color);
  width: 0%;
  border-radius: 10px;
  position: relative;
  top: 3px;
}

/* Pricing Area Style
============================================*/
.single-pricing {
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(85, 85, 85, 0.1);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 40px;
}
.single-pricing .pricing-header h3 {
  font-size: 24px;
  margin-bottom: 8px;
}
.single-pricing .pricing-header p {
  margin-bottom: 30px;
}
.single-pricing .pricing-header h2 {
  font-family: var(--body-font-family);
  font-size: 36px;
  font-weight: 700;
  padding: 15px 30px;
  background: rgba(39, 130, 249, 0.1);
  border-radius: 10px;
  text-align: center;
  margin-bottom: 0;
  color: var(--optional-color);
}
.single-pricing .pricing-header h2 sub {
  font-weight: 400;
  font-size: 16px;
  position: relative;
  top: -3px;
  left: 2px;
  color: #484177;
}
.single-pricing .price-list ul {
  padding-left: 0;
  margin-top: 40px;
  margin-bottom: 40px;
  list-style-type: none;
}
.single-pricing .price-list ul li {
  margin-bottom: 15px;
  position: relative;
  padding-left: 25px;
}
.single-pricing .price-list ul li:last-child {
  margin-bottom: 0;
}
.single-pricing .price-list ul li img {
  position: absolute;
  top: 6px;
  left: 0;
}
.single-pricing .price-list .default-btn {
  border-radius: 5px;
  padding: 19px 20px;
  transition: var(--transition);
  background: rgba(255, 131, 40, 0.12);
  color: var(--main-color);
  border: none;
}
.single-pricing .price-list .default-btn:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
.single-pricing .price-list .default-btn::before {
  border-radius: 5px;
}
.single-pricing.active .default-btn {
  background-color: var(--main-color);
  color: var(--white-color);
}

/* Testimonials Area Style
============================================*/
.testimonials-area {
  background-image: url(../images/consulting-firm/testimonials-bg.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.single-testimonials {
  background: #090754;
  border-radius: 10px;
  padding: 55px 40px;
  position: relative;
}
.single-testimonials .quat-icon {
  position: absolute;
  bottom: 0;
  right: 30px;
}
.single-testimonials .avatar {
  border-radius: 50px;
  max-width: 68px;
}
.single-testimonials ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style-type: none;
  position: absolute;
  top: 80px;
  right: 30px;
}
.single-testimonials ul li {
  display: inline-block;
}
.single-testimonials ul li i {
  color: #FFB321;
  font-size: 20px;
}
.single-testimonials h3 {
  font-size: 24px;
  margin-bottom: 5px;
  color: var(--white-color);
}
.single-testimonials span {
  color: #D2D2D2;
}
.single-testimonials p {
  margin-top: 22px;
  color: #D2D2D2;
}

.testimonials-slide.owl-theme .owl-nav {
  margin-top: 0 !important;
  position: absolute;
  top: -110px;
  right: -5px;
}
.testimonials-slide.owl-theme .owl-nav .owl-prev, .testimonials-slide.owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(255, 255, 255, 0.12);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 5px;
}
.testimonials-slide.owl-theme .owl-nav .owl-prev img, .testimonials-slide.owl-theme .owl-nav .owl-next img {
  position: relative;
  left: 0px;
  transition: var(--transition);
  top: -0.5px;
  filter: brightness(100);
}
.testimonials-slide.owl-theme .owl-nav .owl-prev:hover, .testimonials-slide.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--main-color);
}
.testimonials-slide.owl-theme .owl-nav .owl-prev:hover img, .testimonials-slide.owl-theme .owl-nav .owl-next:hover img {
  filter: brightness(100);
}
.testimonials-slide.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -66px;
}
.testimonials-slide.owl-theme .owl-nav .owl-next img {
  left: auto;
  right: 3px;
  top: -0.5px;
}
.testimonials-slide.owl-carousel .owl-item img {
  width: auto;
  display: inline-block;
}

/* Team Area Style
============================================*/
.team-area .section-title {
  margin-bottom: 28px;
}

.single-team {
  text-align: center;
  background-color: var(--white-color);
  box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
  border-radius: 10px;
  padding: 14px;
  margin: 12px;
  margin-bottom: 30px;
}
.single-team .team-img {
  position: relative;
  z-index: 1;
}
.single-team .team-img img {
  border-radius: 10px;
}
.single-team .team-img ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: var(--transition);
  background-color: var(--optional-color);
  padding: 14px 9px;
  border-radius: 0 50px 50px 0;
}
.single-team .team-img ul li {
  margin-right: 10px;
  display: inline-block;
}
.single-team .team-img ul li:last-child {
  margin-bottom: 0;
}
.single-team .team-img ul li a {
  width: 27px;
  height: 27px;
  line-height: 28px;
  text-align: center;
  background: var(--white-color);
  display: inline-block;
  color: var(--main-color);
  transition: var(--transition);
  border-radius: 50px;
  text-decoration: none;
  font-size: 16px;
}
.single-team .team-img ul li a:hover {
  background-color: var(--main-color);
  color: var(--white-color);
  transform: translateY(-2px);
}
.single-team .team-info {
  padding: 20px;
  padding-top: 30px;
}
.single-team .team-info h3 {
  font-size: 24px;
  margin-bottom: 0;
}
.single-team:hover .team-img ul {
  opacity: 1;
}

.team-slide.owl-theme .owl-nav {
  margin-top: 0 !important;
}
.team-slide.owl-theme .owl-nav .owl-prev, .team-slide.owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(245, 142, 69, 0.12);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -80px;
}
.team-slide.owl-theme .owl-nav .owl-prev img, .team-slide.owl-theme .owl-nav .owl-next img {
  position: relative;
  top: 1px;
  left: -1px;
  transition: var(--transition);
}
.team-slide.owl-theme .owl-nav .owl-prev:hover, .team-slide.owl-theme .owl-nav .owl-next:hover {
  background: var(--main-color);
}
.team-slide.owl-theme .owl-nav .owl-prev:hover img, .team-slide.owl-theme .owl-nav .owl-next:hover img {
  filter: brightness(100);
}
.team-slide.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -80px;
}
.team-slide.owl-theme .owl-nav .owl-next img {
  left: auto;
  right: -2px;
}
.team-slide.owl-carousel .owl-stage {
  margin: auto;
}

/* Process Area Style
============================================*/
.process-area {
  background-color: #F6FAFF;
}

.process-img {
  margin-right: 56px;
}

.process-content {
  margin-bottom: -20px;
}
.process-content .top-title {
  color: var(--optional-color);
  font-weight: 500;
  font-size: 20px;
  border-bottom: 1px solid #2782F9;
  margin-bottom: 15px;
  display: inline-block;
  line-height: 1;
}
.process-content h2 {
  font-size: 40px;
  margin-bottom: 10px;
}
.process-content p {
  margin-bottom: 20px;
}

.single-process {
  background: var(--white-color);
  box-shadow: 0px 0px 30px rgba(39, 130, 249, 0.07);
  border-radius: 10px;
  padding: 11px;
  margin-bottom: 20px;
}
.single-process .icon {
  background: rgba(39, 130, 249, 0.09);
  border-radius: 12px;
  width: 85px;
  height: 85px;
  line-height: 85px;
  text-align: center;
}
.single-process h3 {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
}

/* Blog Area Style
============================================*/
.single-blog {
  position: relative;
  margin-bottom: 30px;
}
.single-blog .blog-img {
  position: relative;
}
.single-blog .blog-img img {
  border-radius: 10px;
}
.single-blog .blog-img .date {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--main-color);
  border-radius: 6px;
  max-width: 80px;
  font-weight: 600;
  text-align: center;
  color: var(--white-color);
  padding: 11px;
}
.single-blog .blog-content {
  padding: 30px;
  background-color: var(--white-color);
  box-shadow: 0px 0px 30px rgba(85, 85, 85, 0.09);
  border-radius: 10px;
  margin-left: 25px;
  margin-right: 25px;
  margin-top: -60px;
  position: relative;
  transition: var(--transition);
}
.single-blog .blog-content .user {
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 15px;
}
.single-blog .blog-content .user li {
  display: inline-block;
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
}
.single-blog .blog-content .user li::before {
  content: "";
  position: absolute;
  top: 11px;
  right: -5px;
  width: 5px;
  height: 2px;
  background-color: var(--body-color);
  transition: var(--transition);
}
.single-blog .blog-content .user li:last-child::before {
  display: none;
}
.single-blog .blog-content .user li a {
  color: var(--body-color);
  text-decoration: none;
}
.single-blog .blog-content .user li a:hover {
  color: var(--main-color);
}
.single-blog .blog-content h3 {
  margin-bottom: 15px;
  font-size: 24px;
  margin-bottom: 0;
}
.single-blog .blog-content h3 a {
  color: var(--heading-color);
  text-decoration: none;
}
.single-blog:hover .blog-content {
  background-color: var(--optional-color);
}
.single-blog:hover .blog-content .user li a {
  color: #F5F3FF;
}
.single-blog:hover .blog-content .user li::before {
  background-color: #F5F3FF;
}
.single-blog:hover .blog-content h3 a {
  color: var(--white-color);
}

.blog-slide.owl-theme .owl-nav {
  margin-top: 0 !important;
  position: absolute;
  top: -110px;
  right: -5px;
}
.blog-slide.owl-theme .owl-nav .owl-prev, .blog-slide.owl-theme .owl-nav .owl-next {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: rgba(245, 142, 69, 0.1);
  transform: matrix(-1, 0, 0, 1, 0, 0);
  border-radius: 50%;
  transition: var(--transition);
  margin: 0 5px;
}
.blog-slide.owl-theme .owl-nav .owl-prev img, .blog-slide.owl-theme .owl-nav .owl-next img {
  position: relative;
  left: 0px;
  transition: var(--transition);
  top: -0.5px;
}
.blog-slide.owl-theme .owl-nav .owl-prev:hover, .blog-slide.owl-theme .owl-nav .owl-next:hover {
  background-color: var(--main-color);
}
.blog-slide.owl-theme .owl-nav .owl-prev:hover img, .blog-slide.owl-theme .owl-nav .owl-next:hover img {
  filter: brightness(100);
}
.blog-slide.owl-theme .owl-nav .owl-next {
  left: auto;
  right: -66px;
}
.blog-slide.owl-theme .owl-nav .owl-next img {
  left: auto;
  right: 3px;
  top: -0.5px;
}

/* footer Area Style
============================================*/
.footer-area {
  background-color: #02004B;
  background-image: url(../images/consulting-firm/footer-bg-shape.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
}

.single-footer {
  margin-bottom: 30px;
}
.single-footer .footer-logo {
  margin-bottom: 15px;
}
.single-footer p {
  margin-bottom: 25px;
  color: #D3D3D3;
}
.single-footer h3 {
  font-size: 24px;
  margin-bottom: 26px;
  color: var(--white-color);
}
.single-footer .social-link {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.single-footer .social-link li {
  display: inline-block;
  margin-right: 10px;
}
.single-footer .social-link li:last-child {
  margin-right: 0;
}
.single-footer .social-link li a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  display: inline-block;
  background: rgba(242, 236, 253, 0.1);
  color: var(--main-color);
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
}
.single-footer .social-link li a:hover {
  background-color: var(--main-color);
  color: var(--white-color);
}
.single-footer .import-link {
  padding-left: 0;
  list-style: none;
}
.single-footer .import-link li {
  margin-bottom: 15px;
}
.single-footer .import-link li:last-child {
  margin-bottom: 0;
}
.single-footer .import-link li a {
  color: #D3D3D3;
  text-decoration: none;
  position: relative;
}
.single-footer .import-link li a:hover {
  color: var(--main-color);
}
.single-footer .info-link {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.single-footer .info-link li {
  margin-bottom: 20px;
  color: #D3D3D3;
}
.single-footer .info-link li a {
  color: #D3D3D3;
  text-decoration: none;
}
.single-footer .info-link li a:hover {
  color: var(--main-color);
}
.single-footer .info-link li:last-child {
  margin-bottom: 0;
}
.single-footer .info-link li .icon {
  background: #110F56;
  width: 41px;
  height: 41px;
  line-height: 41px;
  text-align: center;
  border-radius: 50px;
  transition: var(--transition);
}
.single-footer .info-link li .icon .f-call-icon {
  position: relative;
  top: -1px;
}
.single-footer .info-link li .icon .f-mail-icon {
  position: relative;
  top: -3px;
}
.single-footer .info-link li .icon .f-location-icon {
  position: relative;
  left: 1px;
}
.single-footer .info-link li h4 {
  font-weight: 500;
  font-size: 18px;
  color: var(--white-color);
  margin-bottom: 4px;
}
.single-footer .info-link li .info {
  margin-left: 8px;
}
.single-footer .info-link li:hover .icon {
  background: rgba(255, 255, 255, 0.06);
}
.single-footer.ml-30 {
  margin-left: 30px;
}
.single-footer.mr-100 {
  margin-right: 100px;
}

.copy-right-content {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
}
.copy-right-content p {
  color: #D3D3D3;
}
.copy-right-content p span {
  color: var(--main-color);
  font-weight: 700;
  font-size: 18px;
}
.copy-right-content p a {
  color: var(--main-color);
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
}

.newsletter-wrap {
  background: #060451;
  padding: 80px 60px;
}

.newsletter-content {
  margin-right: 100px;
}
.newsletter-content h2 {
  font-size: 36px;
  color: var(--white-color);
  margin-bottom: 0;
  font-weight: 700;
}
.newsletter-content p {
  color: #D2D2D2;
}

.newsletter-form {
  position: relative;
}
.newsletter-form .form-control {
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 5px;
  color: var(--white-color) !important;
}
.newsletter-form .form-control::-moz-placeholder {
  color: #AFAFAF;
}
.newsletter-form .form-control::placeholder {
  color: #AFAFAF;
}
.newsletter-form .default-btn {
  position: absolute;
  top: 4px;
  right: 4px;
  padding: 21px 32px;
  border: none;
  transition: var(--transition);
}

.validation-danger {
  color: #ff0000;
  font-size: 15px;
}

/* Demos Area Style
============================================*/
.all-demos-area .modal {
  --bs-modal-width: 1320px;
  text-align: center;
  background-color: var(--heading-color);
}
.all-demos-area .modal .btn-close {
  position: absolute;
  top: 30px;
  right: 30px;
}
.all-demos-area .modal-header h1 {
  font-size: 35px;
}
.all-demos-area .single-demos {
  margin-bottom: 50px;
  text-decoration: none;
}
.all-demos-area .single-demos img {
  border-radius: 10px 10px 0 0;
  box-shadow: var(--box-shadow);
}
.all-demos-area .single-demos h3 {
  font-size: 25px;
  padding: 30px;
  background-color: var(--white-color);
  box-shadow: var(--box-shadow);
  border-radius: 0 0 10px 10px;
  transition: var(--transition);
}
.all-demos-area .single-demos:hover h3 {
  background-color: var(--main-color);
  color: var(--white-color);
}
.all-demos-area .modal-body {
  padding: 30px;
  padding-bottom: 0;
}
.all-demos-area .btn-close {
  background-image: url(../../assets/images/others/close.png);
  opacity: 1;
}

.demo-btn {
  position: fixed;
  top: calc(50% - 55px);
  left: 0;
  border-radius: 0 5px 5px 0;
  padding: 10px 15px;
  border: none;
}
.demo-btn span {
  writing-mode: vertical-rl;
}
.demo-btn::before {
  border-radius: 0 5px 5px 0;
}

/* Responsive Area Style
============================================*/
/* Max width 767px */
@media only screen and (max-width: 767px) {
  :root {
    --font-size: 15px;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .pt-70 {
    padding-top: 20px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  body {
    font-size: var(--font-size);
  }
  .default-btn {
    padding: 18px 20px;
    font-size: 15px;
  }
  .read-more {
    font-size: 15px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .section-title .top-title {
    font-size: 15px;
  }
  .section-title h2 {
    font-size: 25px;
    line-height: 42px;
  }
  .shape {
    display: none;
  }
  /* Navbar Content */
  .navbar .container-fluid {
    max-width: 540px;
    padding-left: 12px;
    padding-right: 12px;
    position: relative;
  }
  .navbar .nav-item .nav-link {
    font-size: 16px;
    text-align: center;
  }
  .navbar .others-option {
    position: absolute;
    top: 0;
    right: 0;
  }
  .navbar .others-option ul li:last-child {
    display: none;
  }
  .navbar .others-option .option-item {
    top: 18px;
    right: 50px;
  }
  .navbar .others-option .option-item .search-overlay.search-popup {
    right: -63px;
  }
  .demo-btn {
    padding: 18px 10px;
  }
  /* Banner Area */
  .banner-area {
    padding-top: 140px;
    padding-bottom: 0;
  }
  .banner-area .container-fluid {
    max-width: 540px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner-content {
    margin-bottom: 30px;
  }
  .banner-content h1 {
    line-height: normal;
    font-size: 25px;
  }
  .banner-img {
    text-align: center;
  }
  .banner-img img {
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .banner-img .popular-services {
    position: unset;
    background-color: #01055e;
    margin: auto;
    max-width: 100%;
  }
  .banner-img .popular-services.style-two {
    margin-top: 30px;
  }
  .banner-img .popular-services .popular-services-list {
    text-align: left;
  }
  .banner-quat p {
    font-size: 17px;
  }
  /* About Area */
  .about-us-area {
    padding-bottom: 20px;
  }
  .about-yser {
    margin-bottom: 30px;
  }
  .about-yser .bg-color {
    padding: 20px;
  }
  .about-yser h1 {
    font-size: 115px;
    line-height: normal;
    margin-bottom: 30px;
    margin-bottom: -12px;
  }
  .about-yser h3 {
    font-size: 20px;
  }
  .about-content {
    max-width: 100%;
  }
  .about-content .top-title {
    font-size: 15px;
  }
  .about-content h2 {
    font-size: 25px;
    line-height: 36px;
  }
  .single-about-progress h3 {
    max-width: 100%;
    font-size: 18px;
  }
  /* Services Area */
  .services-content .top-title {
    font-size: 15px;
  }
  .services-content h2 {
    font-size: 25px;
    line-height: 36px;
  }
  .single-services {
    padding: 20px;
  }
  .single-services h3 {
    font-size: 22px;
  }
  .services-list {
    margin-top: 30px;
  }
  .services-list .nav-pills .nav-item .nav-link {
    font-size: 18px;
    padding: 10px;
  }
  .services-area .services-shape {
    display: none;
  }
  /* Counter Content */
  .single-counter h1 {
    font-size: 50px;
  }
  .single-counter span {
    font-size: 18px;
  }
  .counter-area .pe-0 {
    padding-right: 12px !important;
  }
  .counter-area .ps-0 {
    padding-left: 12px !important;
  }
  .counter-bg {
    padding: 30px;
    padding-bottom: 0;
    margin-bottom: 30px;
  }
  .counter-bg .pe-0 {
    padding-right: 12px !important;
  }
  .counter-bg .ps-0 {
    padding-left: 12px !important;
  }
  .contact-info {
    border-radius: 10px;
  }
  .contact-info::before {
    border-radius: 10px;
  }
  .nav-tabs .nav-item {
    margin-bottom: 10px;
  }
  .nav-tabs .nav-item:last-child {
    margin-bottom: 0;
  }
  .nav-tabs .nav-item .nav-link {
    font-size: 15px;
  }
  .recent-slide.owl-theme .owl-nav {
    margin-top: 30px !important;
  }
  .recent-slide.owl-theme .owl-nav .owl-prev, .recent-slide.owl-theme .owl-nav .owl-next {
    position: unset;
    margin: 0 5px;
    transform: unset;
  }
  .single-recent .recent-img .recent-content {
    bottom: 0;
  }
  /* Exclusive Content */
  .exclusive-consultant-content {
    max-width: 100%;
  }
  .exclusive-consultant-content .top-title {
    font-size: 15px;
  }
  .exclusive-consultant-content h2 {
    font-size: 25px;
    line-height: 36px;
  }
  .exclusive-consultant-img {
    margin-top: 30px;
    text-align: center;
  }
  /* Pricing Content */
  .single-pricing {
    padding: 20px;
  }
  .single-pricing .pricing-header h2 {
    padding: 20px;
    font-size: 25px;
  }
  .single-pricing .pricing-header p {
    margin-bottom: 20px;
  }
  .single-pricing .pricing-header h3 {
    font-size: 22px;
  }
  .single-pricing .price-list ul {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  /* Testimonials Content */
  .testimonials-slide.owl-theme .owl-nav {
    position: unset;
    margin-top: 30px !important;
  }
  .single-testimonials {
    padding: 20px;
  }
  .single-testimonials h3 {
    font-size: 20px;
  }
  .single-testimonials ul {
    position: unset;
    margin-bottom: 10px;
  }
  /* Team Content */
  .single-team .team-info {
    padding: 10px;
    padding-top: 20px;
  }
  .single-team .team-info h3 {
    font-size: 20px;
  }
  .team-area .section-title {
    margin-bottom: 10px;
  }
  .team-slide.owl-theme .owl-nav {
    margin-bottom: 30px !important;
    margin-top: -10px !important;
  }
  .team-slide.owl-theme .owl-nav .owl-prev, .team-slide.owl-theme .owl-nav .owl-next {
    position: unset;
    margin: 0 5px;
    transform: unset;
  }
  /* Process Content */
  .process-img {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .process-content .top-title {
    font-size: 15px;
  }
  .process-content h2 {
    font-size: 25px;
    line-height: 36px;
  }
  /* Blog Content */
  .single-blog .blog-content {
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }
  .single-blog .blog-content h3 {
    font-size: 20px;
  }
  .blog-slide.owl-theme .owl-nav {
    position: unset;
    margin-bottom: 30px !important;
  }
  /* Newsletter Content */
  .newsletter-wrap {
    padding: 20px;
    background: #070558;
  }
  .newsletter-content {
    margin-right: 0;
  }
  .newsletter-content h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .newsletter-content p {
    margin-bottom: 20px;
  }
  /* Footer Content */
  .single-footer.mr-100 {
    margin-right: 0;
  }
  .single-footer.ml-30 {
    margin-left: 0;
  }
  .single-footer h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  /* All Demos Content */
  .all-demos-area .modal-header h1 {
    font-size: 25px;
    text-align: left;
  }
  .all-demos-area .single-demos h3 {
    padding: 20px;
    font-size: 20px;
  }
  .all-demos-area .modal-body {
    padding: 20px;
  }
  .all-demos-area .modal .btn-close {
    background-color: #000;
    top: 33px;
    right: 15px;
    z-index: 99;
  }
  .navbar .others-option .option-item .search-overlay.search-popup {
    right: -220px !important;
  }
}
/* Min width 768px to Max width 991px */
@media only screen and (min-width: 768px) and (max-width: 991px) {
  :root {
    --font-size: 15px;
  }
  .ptb-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .pt-100 {
    padding-top: 50px;
  }
  .pb-100 {
    padding-bottom: 50px;
  }
  .pt-70 {
    padding-top: 20px;
  }
  .pb-70 {
    padding-bottom: 20px;
  }
  body {
    font-size: var(--font-size);
  }
  .default-btn {
    padding: 18px 20px;
    font-size: 15px;
  }
  .read-more {
    font-size: 15px;
  }
  .section-title {
    margin-bottom: 30px;
  }
  .section-title .top-title {
    font-size: 15px;
  }
  .section-title h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .shape {
    display: none;
  }
  /* Navbar Content */
  .navbar .navbar-brand {
    margin-right: 5px;
  }
  .navbar .container-fluid {
    max-width: 720px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .navbar .navbar-nav {
    margin-bottom: 0 !important;
  }
  .navbar .nav-item .nav-link {
    padding: 15px 11px !important;
    font-size: 16px !important;
  }
  .navbar .others-option {
    margin-left: 10px !important;
  }
  .navbar .others-option ul li {
    margin-right: 0;
  }
  .navbar .others-option ul li .default-btn {
    padding: 12px 8px;
    font-size: 13px;
  }
  .navbar .others-option ul li:last-child {
    display: none;
  }
  .navbar .others-option .option-item {
    top: 0;
  }
  .demo-btn {
    padding: 18px 10px;
  }
  /* Banner Area */
  .banner-area {
    padding-top: 140px;
    padding-bottom: 0;
  }
  .banner-area .container-fluid {
    max-width: 720px;
    padding-left: 12px;
    padding-right: 12px;
  }
  .banner-content {
    margin-bottom: 30px;
  }
  .banner-content h1 {
    line-height: normal;
    font-size: 35px;
  }
  .banner-img {
    text-align: center;
  }
  .banner-img img {
    border-radius: 5px;
    margin-bottom: 30px;
  }
  .banner-img .popular-services {
    position: unset;
    background-color: #01055e;
    margin: auto;
    max-width: 100%;
  }
  .banner-img .popular-services.style-two {
    margin-top: 30px;
  }
  .banner-img .popular-services .popular-services-list {
    text-align: left;
  }
  .banner-quat p {
    font-size: 17px;
  }
  /* About Area */
  .about-us-area {
    padding-bottom: 20px;
  }
  .about-yser {
    margin-bottom: 30px;
  }
  .about-yser .bg-color {
    padding: 20px;
  }
  .about-yser h1 {
    font-size: 115px;
    line-height: normal;
    margin-bottom: 30px;
    margin-bottom: -12px;
  }
  .about-yser h3 {
    font-size: 20px;
  }
  .about-content {
    max-width: 100%;
  }
  .about-content .top-title {
    font-size: 15px;
  }
  .about-content h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .single-about-progress h3 {
    max-width: 100%;
    font-size: 18px;
  }
  /* Services Area */
  .services-content .top-title {
    font-size: 15px;
  }
  .services-content h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .single-services {
    padding: 20px;
  }
  .single-services h3 {
    font-size: 22px;
  }
  .services-list {
    margin-top: 30px;
  }
  .services-list .nav-pills .nav-item .nav-link {
    font-size: 18px;
    padding: 10px;
  }
  /* Counter Area */
  .single-counter h1 {
    font-size: 50px;
  }
  .single-counter span {
    font-size: 18px;
  }
  .counter-area .pe-0 {
    padding-right: 12px !important;
  }
  .counter-area .ps-0 {
    padding-left: 12px !important;
  }
  .counter-bg {
    padding: 30px;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .counter-bg .pe-0 {
    padding-right: 12px !important;
  }
  .counter-bg .ps-0 {
    padding-left: 12px !important;
  }
  .contact-info {
    border-radius: 10px;
    padding: 40px;
  }
  .contact-info::before {
    border-radius: 10px;
  }
  /* Services Area */
  .nav-tabs .nav-item {
    margin-bottom: 10px;
  }
  .nav-tabs .nav-item:last-child {
    margin-bottom: 0;
  }
  .nav-tabs .nav-item .nav-link {
    font-size: 15px;
  }
  .recent-slide.owl-theme .owl-nav {
    margin-top: 30px !important;
  }
  .recent-slide.owl-theme .owl-nav .owl-prev, .recent-slide.owl-theme .owl-nav .owl-next {
    position: unset;
    margin: 0 5px;
    transform: unset;
  }
  .single-recent .recent-img .recent-content {
    bottom: 0;
  }
  /* Exclusive Area */
  .exclusive-consultant-content {
    max-width: 100%;
  }
  .exclusive-consultant-content .top-title {
    font-size: 15px;
  }
  .exclusive-consultant-content h2 {
    font-size: 30px;
    line-height: 42px;
  }
  .exclusive-consultant-img {
    margin-top: 30px;
    text-align: center;
  }
  /* Pricing Area */
  .single-pricing {
    padding: 20px;
  }
  .single-pricing .pricing-header h2 {
    padding: 20px;
    font-size: 30px;
  }
  .single-pricing .pricing-header p {
    margin-bottom: 20px;
  }
  .single-pricing .pricing-header h3 {
    font-size: 22px;
  }
  .single-pricing .price-list ul {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  /* Testimonials Area */
  .testimonials-slide.owl-theme .owl-nav {
    position: unset;
    margin-top: 30px !important;
  }
  .single-testimonials {
    padding: 20px;
  }
  .single-testimonials h3 {
    font-size: 20px;
  }
  .single-testimonials ul {
    position: unset;
    margin-bottom: 10px;
  }
  /* Services Area */
  .services-area .services-shape {
    display: none;
  }
  .single-team .team-info {
    padding: 10px;
    padding-top: 20px;
  }
  .single-team .team-info h3 {
    font-size: 20px;
  }
  .team-area .section-title {
    margin-bottom: 10px;
  }
  .team-slide.owl-theme .owl-nav {
    margin-bottom: 30px !important;
    margin-top: -10px !important;
  }
  .team-slide.owl-theme .owl-nav .owl-prev, .team-slide.owl-theme .owl-nav .owl-next {
    position: unset;
    margin: 0 5px;
    transform: unset;
  }
  /* Process Area */
  .process-img {
    margin-right: 0;
    margin-bottom: 30px;
  }
  .process-content .top-title {
    font-size: 15px;
  }
  .process-content h2 {
    font-size: 30px;
    line-height: 42px;
  }
  /* Blog Area */
  .single-blog .blog-content {
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }
  .single-blog .blog-content h3 {
    font-size: 20px;
  }
  .blog-slide.owl-theme .owl-nav {
    position: unset;
    margin-bottom: 30px !important;
  }
  /* Newsletter Area */
  .newsletter-wrap {
    padding: 20px;
    background: #070558;
  }
  .newsletter-content {
    margin-right: 0;
  }
  .newsletter-content h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 15px;
  }
  .newsletter-content p {
    margin-bottom: 20px;
  }
  /* Footer Area */
  .single-footer.mr-100 {
    margin-right: 0;
  }
  .single-footer.ml-30 {
    margin-left: 0;
  }
  .single-footer h3 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  /* All Demos Content */
  .all-demos-area .modal-header h1 {
    font-size: 25px;
    text-align: left;
  }
  .all-demos-area .single-demos h3 {
    padding: 20px;
    font-size: 20px;
  }
  .all-demos-area .modal-body {
    padding: 20px;
  }
  .all-demos-area .modal .btn-close {
    background-color: #000;
    top: 33px;
    right: 15px;
    z-index: 99;
  }
}
/* Min width 992px to Max width 1199px */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  /* Navbar Area */
  .navbar .nav-item .nav-link {
    font-size: 16px;
    padding: 34px 13px;
  }
  .navbar .others-option .default-btn {
    font-size: 15px;
    padding: 15px 10px;
  }
  /* Banner Area */
  .banner-content h1 {
    font-size: 60px;
    line-height: 65px;
  }
  .banner-img .popular-services {
    left: 30px;
  }
  .banner-img .popular-services.style-two {
    left: auto;
    right: 30px;
    top: -40px;
  }
  /* About Area */
  .about-yser h1 {
    font-size: 310px;
  }
  /* Counter Area */
  .counter-bg {
    padding-left: 30px;
    padding-right: 30px;
  }
  .single-counter span {
    font-size: 17px;
  }
  .contact-info {
    padding: 30px;
  }
  /* Pricing Area */
  .single-pricing {
    padding: 20px;
  }
  .single-pricing .pricing-header h2 {
    font-size: 30px;
  }
  /* Testimonials Area */
  .single-testimonials {
    padding: 30px;
  }
  /* Team Area */
  .single-team .team-info h3 {
    font-size: 22px;
  }
  /* Process Area */
  .process-img {
    margin-right: 1px;
  }
  .single-process .icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
  .single-process .icon img {
    max-width: 50px;
  }
  .single-process h3 {
    font-size: 15px;
  }
  /* Recent Area */
  .recent-slide.owl-theme .owl-nav .owl-next {
    right: 0;
  }
  .recent-slide.owl-theme .owl-nav .owl-prev {
    left: 0;
  }
  /* Team Area */
  .team-slide.owl-theme .owl-nav .owl-next {
    right: 0;
  }
  .team-slide.owl-theme .owl-nav .owl-prev {
    left: 0;
  }
  /* Blog Area */
  .single-blog .blog-img .date {
    font-size: 14px;
  }
  .single-blog .blog-content {
    margin-left: 0;
    margin-right: 0;
    padding: 20px;
  }
  .single-blog .blog-content h3 {
    font-size: 20px;
  }
  .newsletter-wrap {
    padding: 30px;
  }
  .single-footer.mr-100 {
    margin-right: 0;
  }
}
/* Min width 1200px to Max width 1399px */
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  /* Banner Area */
  .banner-content h1 {
    font-size: 75px;
    line-height: 90px;
  }
  .banner-img .popular-services {
    left: 30px;
  }
  .banner-img .popular-services.style-two {
    left: auto;
    right: 30px;
    top: -40px;
  }
  /* Recent Area */
  .recent-slide.owl-theme .owl-nav .owl-next {
    right: 0;
  }
  .recent-slide.owl-theme .owl-nav .owl-prev {
    left: 0;
  }
  /* Team Area */
  .team-slide.owl-theme .owl-nav .owl-next {
    right: 0;
  }
  .team-slide.owl-theme .owl-nav .owl-prev {
    left: 0;
  }
}
/* Min width 1400px to Max width 1700px */
@media only screen and (min-width: 1400px) and (max-width: 1700px) {
  .banner-img .popular-services {
    left: -50px;
  }
  .banner-img .popular-services.style-two {
    left: auto;
    right: -50px;
    top: -40px;
  }
  /* Recent Area */
  .recent-slide.owl-theme .owl-nav .owl-next {
    right: -35px;
  }
  .recent-slide.owl-theme .owl-nav .owl-prev {
    left: -35px;
  }
  /* Team Area */
  .team-slide.owl-theme .owl-nav .owl-next {
    right: -35px;
  }
  .team-slide.owl-theme .owl-nav .owl-prev {
    left: -35px;
  }
}
/* Min width 1400px to Max width 1700px */
@media only screen and (min-width: 1440px) and (max-width: 1500px) {
  /* Recent Area */
  .recent-slide.owl-theme .owl-nav .owl-prev {
    left: -60px;
  }
  .recent-slide.owl-theme .owl-nav .owl-next {
    right: -60px;
  }
  /* Team Area */
  .team-slide.owl-theme .owl-nav .owl-prev {
    left: -60px;
  }
  .team-slide.owl-theme .owl-nav .owl-next {
    right: -60px;
  }
}
/* Only Mobil Menu Max width 991px */
@media only screen and (max-width: 991px) {
  .navbar {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
  }
  .navbar::before {
    display: none;
  }
  .navbar .container-fluid {
    padding-left: 12px;
    padding-right: 12px;
  }
  .navbar .nav-item .nav-link {
    padding: 15px 0;
  }
  .navbar .others-option {
    margin-left: 0;
  }
  .navbar .others-option .default-btn {
    width: auto;
    display: inline-block;
  }
  .navbar-toggler {
    line-height: 1;
    padding: 0;
    border-radius: 0;
  }
  .navbar-toggler.menu-icon {
    width: 40px;
    padding: 4px 0;
    cursor: pointer;
    position: relative;
    box-shadow: none;
    border: none;
  }
  .navbar-toggler.menu-icon span {
    width: 100%;
    height: 4px;
    display: block;
    background-color: var(--main-color);
    margin: 6px 0;
    transition: 0.5s;
  }
  .navbar-toggler.menu-icon.active span {
    position: absolute;
    width: calc(100% - 16px);
    top: calc(50% - 8px);
  }
  .navbar-toggler.menu-icon.active span:nth-child(1) {
    transform: rotate(45deg);
  }
  .navbar-toggler.menu-icon.active span:nth-child(3) {
    transform: rotate(-45deg);
  }
  .navbar-toggler.menu-icon.active span:nth-child(2) {
    transform: rotate(-45deg);
    display: none;
  }
}/*# sourceMappingURL=consulting-firm.css.map */