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

    Template Name: Stratify Consulting Firm HTML Template
    Author: ThemeArray
    Support: themearray@gmail.com
    Description: Consulting Firm related HTML Template
    Version: 1.0

-----------------------------------------------------------------------------------

/************ TABLE OF CONTENTS ***************

	-----------------
    01. THEME CSS
	-----------------
		1.1 Commmon
		1.2 Theme
		1.3 Typography
		1.4 Section-title
		1.5 animation

	-----------------
    02. utils CSS
	-----------------
	    2.1 Breakpoint
		2.2 Extends
		2.3 Colors
		2.4 Mixins
		2.5 Root

	-----------------
    03. COMPONENTS CSS
	-----------------
		3.1 Back to top
		3.2 page-title
		3.3 Button
		3.4 Offcanvas
		3.5 Prealoder

	-----------------
    04. HEADER CSS
	-----------------
		4.1 Header 1
		4.2 Header 2

    ---------------------------------
	05. MENU CSS
	---------------------------------
		5.1 Meanmenu
		5.2 Menu


	---------------------------------
	06. FOOTER CSS
	---------------------------------
		6.1 Footer 1


	---------------------------------
	07. HERO CSS
	---------------------------------
		7.1 Hero Style 01
		7.2 Hero Style 02

	---------------------------------
	08. PAGES CSS
	---------------------------------
		8.1 About css
		8.2 Blog css
		8.3 Case Studies css
		8.4 Portfolio css
		8.5 Contact css
		8.6 Faq css
		8.7 Service css
		8.8 Team css
		8.9 Testimonial css


/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap");
a,
.btn,
button,
span,
sub,
sup,
p,
input,
select,
textarea,
li,
img,
svg,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6, i[class^=icon-], i[class^=flaticon-] {
  -webkit-transition: all 0.3s 0s ease-out;
  -moz-transition: all 0.3s 0s ease-out;
  -ms-transition: all 0.3s 0s ease-out;
  -o-transition: all 0.3s 0s ease-out;
  transition: all 0.3s 0s ease-out;
}

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

.bg-theme-secondary {
  background-color: var(--bd-secondary);
}

:root {
  /**
  @font family declaration
  */
  --bd-ff-body: "Plus Jakarta Sans", sans-serif;
  --bd-ff-heading: "Plus Jakarta Sans", sans-serif;
  --bd-ff-fontawesome: "Font Awesome 6 Pro";
  --bd-ff-icomoon: "icomoon";
  /**
  @color declaration
  */
  --bd-white: #FFFFFF;
  --bd-black: #0D173F;
  --bd-placeholder: #828282;
  --bd-selection: #262626;
  --bd-gray: #828282;
  --bd-text-body: #4D505B;
  --bd-heading: #0D173F;
  --bd-primary: #3F4CFF;
  --bd-border-primary: #E0E0E0;
  /**
  @font weight declaration
  */
  --bd-fw-normal: normal;
  --bd-fw-thin: 100;
  --bd-fw-elight: 200;
  --bd-fw-light: 300;
  --bd-fw-regular: 400;
  --bd-fw-medium: 500;
  --bd-fw-sbold: 600;
  --bd-fw-bold: 700;
  --bd-fw-ebold: 800;
  --bd-fw-black: 900;
  /**
  @font size declaration
  */
  --bd-fs-body: 16px;
  --bd-fs-p: 16px;
  --bd-fs-h1: 64px;
  --bd-fs-h2: 48px;
  --bd-fs-h3: 40px;
  --bd-fs-h4: 32px;
  --bd-fs-h5: 24px;
  --bd-fs-h6: 20px;
  --bd-fs-b1: 14px;
  --bd-fs-b2: 16px;
  --bd-fs-b3: 18px;
}

/*----------------------------------------*/
/*  1.4 Section Title   css
/*----------------------------------------*/
.section-title {
  font-size: 26px;
  font-weight: 500;
}
@media only screen and (min-width: 576px) {
  .section-title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) {
  .section-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 992px) {
  .section-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 1400px) {
  .section-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1600px) {
  .section-title {
    font-size: 50px;
  }
}
.section-title span {
  color: var(--bd-primary);
}

.section-text p {
  font-size: 16px;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .section-text p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .section-text p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-text p {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  1.5 Animation css
/*----------------------------------------*/
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
}
.float-bob-x {
  -webkit-animation-name: float-bob-x;
  animation-name: float-bob-x;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.header_absolute {
  position: absolute;
}

ul {
  margin: 0px;
  padding: 0px;
}

li {
  list-style: none;
}

p.b1 {
  font-size: 24px;
  line-height: 34px;
}

p.b2 {
  font-size: 18px;
  line-height: 28px;
}

p.b3 {
  font-size: 16px;
  line-height: 26px;
}

a {
  text-decoration: none;
  transition: all ease 0.3s;
}

a:focus,
button:focus {
  text-decoration: none;
  outline: none;
}

a:hover {
  text-decoration: none;
}

a,
button {
  color: inherit;
  outline: none;
  border: none;
  background: transparent;
  transition: 0.3s;
}

img {
  max-width: 100%;
  object-fit: cover;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

hr:not([size]) {
  margin: 0;
  border-color: var(--bd-border-secondary);
  opacity: 1;
  border-width: 1px;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
textarea {
  outline: none;
  background-color: var(--bd-bg-1);
  height: 60px;
  width: 100%;
  font-size: 15px;
  color: rgba(124, 126, 130, 0.69);
  border: none;
  padding: 0 25px;
  color: var(--bd-black);
}
.bd-theme-light input[type=text],
.bd-theme-light input[type=email],
.bd-theme-light input[type=tel],
.bd-theme-light input[type=number],
.bd-theme-light input[type=password],
.bd-theme-light textarea {
  background-color: rgba(235, 235, 235, 0.9);
  color: rgba(124, 126, 130, 0.69);
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=number]:focus,
input[type=password]:focus,
textarea:focus {
  border-color: var(--bd-primary);
}

input:-webkit-autofill {
  background-color: transparent !important;
}

input:-moz-autofill {
  background-color: transparent !important;
}

input:autofill {
  background-color: transparent !important;
}

*::-moz-selection {
  background: var(--bd-primary);
  color: white;
  text-shadow: none;
}

::-moz-selection {
  background: var(--bd-primary);
  color: white;
  text-shadow: none;
}

::selection {
  background: var(--bd-primary);
  color: white;
  text-shadow: none;
}

*::-moz-placeholder {
  opacity: 1;
  font-size: 16px;
  color: var(--bd-text-body);
}

*::placeholder {
  opacity: 1;
  font-size: 16px;
  font-weight: 400;
  color: var(--bd-text-body);
}

strong {
  font-size: 18px;
  font-weight: 600;
  color: var(--bd-black);
  display: inline-block;
}

/*----------------------------------------
   Icomoon customize
-----------------------------------------*/
i[class^=icon-] {
  line-height: 1;
  top: 2px;
  position: relative;
}

.bd-sticky {
  position: sticky;
  top: 120px;
}

/*----------------------------------------
   Flaction customize
-----------------------------------------*/
i[class^=flaticon-] {
  line-height: 1;
  top: 2px;
  position: relative;
}

/*----------------------------------------
   Bootstrap customize
-----------------------------------------*/
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 30px;
}
@media (max-width: 575px) {
  .container,
  .container-fluid,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    --bs-gutter-x: 40px;
  }
}

@media (min-width: 1441px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1480px;
  }
}
.container-fluid {
  max-width: 1680px;
}

.row {
  --bs-gutter-x: 30px;
}
@media (max-width: 575px) {
  .row {
    --bs-gutter-x: 20px;
  }
}

.gap-40 {
  row-gap: 25px;
}

.g-15,
.gx-15 {
  --bs-gutter-x: 16px;
}

.g-0 {
  --bs-gutter-x: 0px;
  --bs-gutter-x: 0px;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 10px;
}

.g-25,
.gx-25 {
  --bs-gutter-x: 25px;
}

.g-30,
.gx-30 {
  --bs-gutter-x: 30px;
}

.g-30,
.gy-30 {
  --bs-gutter-y: 30px;
}

.g-25,
.gy-25 {
  --bs-gutter-y: 25px;
}

.g-20,
.gy-20 {
  --bs-gutter-y: 20px;
}

.gx-20 {
  --bs-gutter-x: 20px;
}

.gy-40 {
  --bs-gutter-y: 40px;
}

.g-45,
.gx-45 {
  --bs-gutter-x: 45px;
}

.g-40 {
  --bs-gutter-y: 40px;
  --bs-gutter-x: 40px;
}

.g-50,
.gx-50 {
  --bs-gutter-x: 30px;
}
@media only screen and (min-width: 992px) {
  .g-50,
  .gx-50 {
    --bs-gutter-x: 50px;
  }
}

.g-60,
.gx-60 {
  --bs-gutter-x: 30px;
}
@media only screen and (min-width: 1200px) {
  .g-60,
  .gx-60 {
    --bs-gutter-x: 60px;
  }
}

.g-50,
.gy-50 {
  --bs-gutter-y: 30px;
}
@media only screen and (min-width: 1200px) {
  .g-50,
  .gy-50 {
    --bs-gutter-y: 50px;
  }
}

.g-60,
.gy-60 {
  --bs-gutter-y: 60px;
}

.gy-80 {
  --bs-gutter-y: 80px;
}

/*----------------------------------------
   Mfp customize
-----------------------------------------*/
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1280px;
}
@media only screen and (min-width: 1400px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 1000px;
  }
}
@media only screen and (min-width: 1200px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 850px;
  }
}
@media only screen and (min-width: 992px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 820px;
  }
}
@media only screen and (min-width: 768px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 750px;
  }
}

.mfp-close {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.mfp-close:hover {
  color: var(--bd-white);
}
.mfp-close::after {
  position: absolute;
  content: "\f00d";
  height: 100%;
  width: 100%;
  font-family: var(--bd-ff-fontawesome);
  font-size: 31px;
  font-weight: 200;
  right: -20px;
  margin-top: -25px;
}
@media (max-width: 575px), only screen and (min-width: 576px), only screen and (min-width: 768px) {
  .mfp-close::after {
    right: 15px;
    margin-top: -30px;
  }
}

/*---------------------------------
    1.1 Common Classes
---------------------------------*/
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}
@media (max-width: 575px) {
  .mouse-cursor {
    display: none;
  }
}

.cursor-inner {
  width: 7px;
  height: 7px;
  z-index: 10000001;
  background-color: var(--bd-black);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  left: -3px;
}

.cursor-outer {
  margin-left: -16px;
  margin-top: -16px;
  width: 32px;
  height: 32px;
  border: 1.5px solid var(--bd-black);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.w-img img {
  width: 100%;
}

.m-img img {
  max-width: 100%;
}

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

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

.opacity-05 {
  opacity: 0.5;
}

.overflow-y-visible {
  overflow-x: hidden;
  overflow-y: visible;
}

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

.hr-1 {
  border-top: 1px solid rgb(232, 232, 232);
}

.x-clip {
  overflow-x: clip;
}

@media (max-width: 575px) {
  .o-xs {
    overflow-x: hidden;
  }
}

.color-white {
  color: var(--bd-white);
}

.valign {
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
}

/*----------------------------------------
    Body background 
-----------------------------------------*/
.bg-white {
  background: var(--bd-white);
}

.clr-white {
  color: var(--bd-white);
}

.section-space {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 992px) {
  .section-space {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-space {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

.section-space-top {
  padding-top: 80px;
}
@media only screen and (min-width: 992px) {
  .section-space-top {
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-space-top {
    padding-top: 140px;
  }
}

.section-space-bottom {
  padding-bottom: 70px;
}
@media only screen and (min-width: 992px) {
  .section-space-bottom {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .section-space-bottom {
    padding-bottom: 140px;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

/*--
    - Color
-----------------------------------------*/
.color-primary {
  color: var(--bd-primary);
}

.color-secondary {
  color: var(--bd-secondary);
}

/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

/*---------------------------------
    Typography css start 
---------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

body {
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-black);
  line-height: 1.5;
  font-family: var(--bd-ff-body);
}

p {
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-text-body);
  margin-bottom: 30px;
  line-height: 1.62;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bd-ff-heading);
  color: var(--bd-black);
  margin-top: 0px;
  line-height: 1.2;
  margin-bottom: 0;
  font-weight: var(--bd-fw-sbold);
  word-break: break-word;
}

h1 {
  font-size: var(--bd-fs-h1);
}

h2 {
  font-size: var(--bd-fs-h2);
}

h3 {
  font-size: var(--bd-fs-h3);
}

h4 {
  font-size: var(--bd-fs-h4);
}

h5 {
  font-size: var(--bd-fs-h5);
}
h5.small {
  font-size: 20px;
}

h6 {
  font-size: var(--bd-fs-h6);
}

/*----------------------------------------*/
/*  3.5 Offcanvas css
/*----------------------------------------*/
.offcanvas-info {
  background: var(--bd-white);
  height: 100%;
  position: fixed;
  padding: 30px 30px;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-color: #FF5562 #000000;
}
@media (max-width:480px) {
  .offcanvas-info {
    padding: 20px;
    width: 100%;
  }
}

.offcanvas-info.info_open {
  transform: translateX(0);
  opacity: 1;
}

.offcanvas_overlay {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  z-index: 555;
  opacity: 0.8;
  transition: width 0.5s linear;
  background-color: rgba(40, 40, 40, 0.8);
  backdrop-filter: blur(10px);
}

.offcanvas_overlay.overlayopen {
  width: 100%;
}

.offcanvas-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  align-items: center;
  border-bottom: 1px solid #E0E0E0;
}

.offcanvas-logo {
  width: 180px;
}
@media (max-width: 575px) {
  .offcanvas-logo {
    max-width: 130px;
  }
}

.offcanvas-icon button {
  font-size: 16px;
  color: var(--bd-white);
  height: 40px;
  width: 40px;
  background: var(--bd-primary);
  border-radius: 50%;
}
.offcanvas-icon button i {
  transition: 0.5s;
}
.offcanvas-icon button:hover i {
  transform: rotate(90deg);
}

.follow-link {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 500;
}
@media (max-width: 575px) {
  .follow-link {
    font-size: 18px;
  }
}

.offcanvas-contact .share-link ul {
  display: flex;
  gap: 10px;
}
.offcanvas-contact .share-link ul li a {
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bd-black);
  background-color: #F4F4FE;
  font-size: 16px;
}
.offcanvas-contact .share-link ul li a:hover {
  background-color: var(--bd-primary);
  color: var(--bd-white);
  border-color: var(--bd-primary);
}

/*----------------------------------------*/
/*  3.2 page-title css
/*----------------------------------------*/
.page-title-area {
  position: relative;
  padding-top: 130px;
  padding-bottom: 90px;
  z-index: 1;
  background: linear-gradient(280.03deg, #F1F4FD 2.79%, #EFEEFC 57.34%, #DED8FF 80.29%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 73% 100%, 50% 94%, 28% 100%, 0 100%);
}
@media only screen and (min-width: 576px) {
  .page-title-area {
    padding-top: 170px;
    padding-bottom: 170px;
  }
}
@media only screen and (min-width: 992px) {
  .page-title-area {
    padding-top: 230px;
    padding-bottom: 240px;
  }
}
.page-title-area .gradient-shape {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.page-title-content {
  max-width: 650px;
  text-align: center;
  margin: auto;
}
.page-title-content .page-title {
  font-size: 28px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) {
  .page-title-content .page-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .page-title-content .page-title {
    font-size: 40px;
    margin-bottom: 40px;
  }
}
.page-title-content p {
  font-size: 16px;
  color: #4D505B;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  .page-title-content p {
    font-size: 18px;
  }
}

.page-title-two {
  position: relative;
  padding-top: 130px;
  padding-bottom: 90px;
  z-index: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 73% 100%, 50% 94%, 28% 100%, 0 100%);
}
@media only screen and (min-width: 576px) {
  .page-title-two {
    padding-top: 170px;
    padding-bottom: 170px;
  }
}
@media only screen and (min-width: 992px) {
  .page-title-two {
    padding-top: 230px;
    padding-bottom: 240px;
  }
}
.page-title-two::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(360deg, rgba(22, 32, 174, 0.8) 0%, rgba(63, 76, 255, 0.5) 100%);
}
.page-title-two .page-title-content p {
  color: var(--bd-white);
}

/*----------------------------------------
   3.3  button css
-----------------------------------------*/
.theme-btn {
  padding: 10px 30px;
  border: 1px solid var(--bd-primary);
  border-radius: 24px;
  text-align: center;
  font-size: 16px;
  color: var(--bd-black);
  text-decoration: none;
  transition: all 0.35s;
  box-sizing: border-box;
}
.theme-btn:hover {
  box-shadow: inset 96px 0 0 0 var(--bd-primary), inset -96px 0 0 0 var(--bd-primary);
  border-color: var(--bd-primary);
  color: #fff;
}

.theme-btn.theme-btn-two {
  background-color: #18E2E2;
}
.theme-btn.theme-btn-two:hover {
  background-color: var(--bd-primary);
}

.theme-btn.theme-btn-three {
  background-color: #4AC1F7;
}
.theme-btn.theme-btn-three:hover {
  background-color: var(--bd-primary);
}

/*----------------------------------------*/
/*  3.1 Back to top css
/*----------------------------------------*/
.backtotop-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
  background: var(--bd-primary);
}
@media (max-width:480px) {
  .backtotop-wrap {
    bottom: 20px;
    right: 20px;
  }
}
.backtotop-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -moz-transform: translateY(0px);
  -ms-transform: translateY(0px);
  -o-transform: translateY(0px);
  transform: translateY(0px);
}
.backtotop-wrap::after {
  position: absolute;
  content: "\f062";
  text-align: center;
  font-family: var(--bd-ff-fontawesome);
  line-height: 45px;
  font-size: 16px;
  font-weight: 400;
  color: var(--bd-white);
  left: 0;
  top: 0;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}
.backtotop-wrap svg path {
  fill: none;
}
.backtotop-wrap svg.backtotop-circle path {
  stroke: #DDDDDD;
  stroke-width: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap {
  position: fixed;
  background-color: white;
  right: 50px;
  bottom: 50px;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  box-shadow: inset 0 0 0 2px white;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}
@media (max-width: 575px) {
  .progress-wrap {
    right: 30px;
    bottom: 30px;
  }
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-wrap::after {
  position: absolute;
  content: "\f176";
  font-family: var(--bd-ff-fontawesome);
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  color: var(--bd-primary);
  left: 0;
  top: 0;
  height: 45px;
  width: 45px;
  cursor: pointer;
  display: block;
  z-index: 1;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--bd-primary);
  stroke-width: 4;
  box-sizing: border-box;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

/*----------------------------------------*/
/*  3.7 Preloader css
/*----------------------------------------*/
.preloader {
  position: fixed;
  inset: 0px;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  background-color: var(--bd-white);
}

.loading {
  border: 1px solid transparent;
  border-color: transparent var(--bd-primary) transparent var(--bd-primary);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
  transition: all 0.5s ease-in-out;
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}

@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}

/*----------------------------------------
   3.6 Basic pagination
-----------------------------------------*/
.pagination-wrapper {
  margin-top: 40px;
}
@media only screen and (min-width: 768px) {
  .pagination-wrapper {
    margin-top: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .pagination-wrapper {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .pagination-wrapper {
    margin-top: 100px;
  }
}
.pagination-wrapper .pagination {
  justify-content: center;
  gap: 10px;
}
@media only screen and (min-width: 992px) {
  .pagination-wrapper .pagination {
    gap: 12px;
  }
}
.pagination-wrapper .pagination .page-link {
  padding: 0px;
  margin: 0px;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd-primary) !important;
  color: var(--bd-black);
  border: 0;
}
@media only screen and (min-width: 992px) {
  .pagination-wrapper .pagination .page-link {
    height: 50px;
    width: 50px;
  }
}
.pagination-wrapper .pagination .page-link:hover {
  background: var(--bd-primary);
  color: var(--bd-white);
}
.pagination-wrapper .pagination .page-link:focus {
  box-shadow: none;
}
.pagination-wrapper .pagination .active {
  background: var(--bd-primary);
  color: var(--bd-white);
}

/* HEADER CSS */
/*----------------------------------------*/
/*  4.1 Header Style 1
/*----------------------------------------*/
.header-left {
  display: flex;
  gap: 30px;
  align-items: center;
}

.header-contact {
  position: relative;
  display: flex;
  align-items: center;
  display: none;
  gap: 10px;
}
@media only screen and (min-width: 576px) {
  .header-contact {
    display: flex;
  }
}
@media only screen and (min-width: 992px) {
  .header-contact {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .header-contact {
    display: flex;
  }
}
.header-contact a {
  font-size: 17px;
}
.header-contact a:hover {
  color: var(--bd-primary);
}

.header-area {
  position: absolute;
  left: 0;
  top: 25px;
  width: 100%;
  z-index: 2;
}

.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  width: 160px;
}
@media only screen and (min-width: 1200px) {
  .logo img {
    width: 200px;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (min-width: 992px) {
  .header-right {
    gap: 30px;
  }
}

.header-menu-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .header-menu-wrapper {
    gap: 40px;
  }
}

.bars_icon {
  width: 35px;
  height: 20px;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -webkit-flex;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  cursor: pointer;
}
@media (max-width: 575px) {
  .bars_icon {
    width: 30px;
    flex: 0 0 auto;
  }
}
.bars_icon .line {
  width: 100%;
  height: 2px;
  background: var(--bd-primary);
  display: inline-block;
  transition: color 0.2s ease-out;
  border-radius: 35px;
  transition: 0.3s;
}
.bars_icon .line:nth-child(2) {
  margin-left: 15px;
}
.bars_icon .line:nth-child(3) {
  margin-left: 8px;
}
.bars_icon:hover .line {
  margin-left: 0;
}

.sticky {
  position: fixed !important;
  top: 0;
  z-index: 222;
  inset-inline-end: 0;
  inset-inline-start: 0;
  width: 100%;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  background: var(--bd-white);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  -moz-box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
  box-shadow: 0px 10px 20px 0px rgba(8, 0, 42, 0.08);
}

.header-area .sticky .main-header {
  padding: 12px 0px;
}
.header-area .sticky .main-header::before {
  display: none;
}

.main-header {
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .main-header {
    overflow: visible;
  }
}

.logo-black {
  display: none;
}

.sticky .logo-black {
  display: block;
}
.sticky .logo-white {
  display: none;
}

/*----------------------------------------*/
/*  4.2 Header Style 2
/*----------------------------------------*/
.header-style-two {
  top: 25px;
}
@media only screen and (min-width: 1200px) {
  .header-style-two {
    top: 70px;
  }
}
.header-style-two .main-menu ul li a {
  color: var(--bd-white);
}
.header-style-two .header-right .header-contact {
  color: var(--bd-white);
}
.header-style-two .header-right .header-contact a {
  position: relative;
}
.header-style-two .header-right .header-contact a:hover {
  color: inherit;
}
.header-style-two .header-right .header-contact a:hover::before {
  bottom: -1px;
  opacity: 1;
  visibility: visible;
}
.header-style-two .header-right .header-contact a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  height: 1px;
  width: 100%;
  background-color: var(--bd-white);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.header-style-two .sticky .main-menu ul li a {
  color: var(--bd-black);
}
.header-style-two .sticky .main-menu ul li a.active {
  color: var(--bd-primary);
}
.header-style-two .sticky .header-right .header-contact {
  color: var(--bd-black);
}
.header-style-two .sticky .header-right .header-contact a:hover {
  color: var(--bd-primary);
}
.header-style-two .sticky .header-right .header-contact .call-icon-white {
  display: none;
}
.header-style-two .sticky .header-right .header-contact .call-icon-primary {
  display: block;
}
.header-style-two .sticky .header-btn {
  border-color: var(--bd-primary);
  color: var(--bd-black);
}
.header-style-two .sticky .bars_icon .line {
  background-color: var(--bd-primary);
}
.header-style-two .bars_icon .line {
  background-color: var(--bd-white);
}

.call-icon-primary {
  display: none;
}

.header-btn {
  padding: 12px 42px;
  border: 1px solid var(--bd-white);
  border-radius: 5px;
  color: var(--bd-white);
  font-size: 17px;
}
.header-btn:hover {
  background-color: var(--bd-primary);
  border-color: var(--bd-primary);
}

.sticky .header-btn:hover {
  color: var(--bd-white);
}

.header-style-three .main-menu ul li a {
  color: var(--bd-white);
}
.header-style-three .header-right .header-contact {
  color: var(--bd-white);
}
.header-style-three .header-right .header-contact a {
  position: relative;
}
.header-style-three .header-right .header-contact a:hover {
  color: inherit;
}
.header-style-three .header-right .header-contact a:hover::before {
  bottom: -1px;
  opacity: 1;
  visibility: visible;
}
.header-style-three .header-right .header-contact a::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  height: 1px;
  width: 100%;
  background-color: var(--bd-white);
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.header-style-three .sticky .main-menu ul li a {
  color: var(--bd-black);
}
.header-style-three .sticky .main-menu ul li a.active {
  color: var(--bd-primary);
}
.header-style-three .sticky .header-right .header-contact {
  color: var(--bd-black);
}
.header-style-three .sticky .header-right .header-contact .call-icon-white {
  display: none;
}
.header-style-three .sticky .header-right .header-contact .call-icon-primary {
  display: block;
}
.header-style-three .sticky .bars_icon .line {
  background-color: var(--bd-primary);
}
.header-style-three .sticky .theme-btn {
  border-color: var(--bd-primary);
  color: var(--bd-primary);
}
.header-style-three .sticky .theme-btn:hover {
  color: var(--bd-white);
}
.header-style-three .sticky .header-right .header-contact a:hover {
  color: var(--bd-primary);
}
.header-style-three .sticky .header-right .header-contact a::before {
  display: none;
}
.header-style-three .bars_icon .line {
  background-color: var(--bd-white);
}
.header-style-three .theme-btn {
  border-color: var(--bd-white);
  color: var(--bd-white);
}
.header-style-three .theme-btn:hover {
  border-color: var(--bd-primary);
}

/* Hero CSS */
/*----------------------------------------*/
/*  7.1 Hero Style 1
/*----------------------------------------*/
.hero-area {
  position: relative;
  overflow: hidden;
  padding-top: 110px;
  padding-bottom: 80px;
  z-index: 1;
  background: linear-gradient(279.94deg, #F1F4FD 2.66%, #EFEEFC 57.28%, #DED8FF 80.26%);
}
@media only screen and (min-width: 576px) {
  .hero-area {
    padding-top: 170px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-area {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-area {
    padding-top: 230px;
    padding-bottom: 200px;
  }
}
.hero-area .hero-shape {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.hero-area .radius-shape {
  position: absolute;
  left: -200px;
  top: -180px;
  z-index: -1;
  animation: spinner 10s linear infinite;
}

.filter-bg-line {
  display: none;
}
@media only screen and (min-width: 1600px) {
  .filter-bg-line {
    display: block;
  }
}

.hero-bottom {
  display: flex;
  gap: 60px;
  flex-direction: column-reverse;
}
@media only screen and (min-width: 1200px) {
  .hero-bottom {
    flex-direction: inherit;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-bottom {
    padding-left: 120px;
  }
}
.hero-bottom .arrow-top {
  flex: 0 0 auto;
}

.hero-content {
  position: relative;
}
@media only screen and (min-width: 1600px) {
  .hero-content .hero-title {
    padding-right: 170px;
  }
}
.hero-content p {
  font-size: 20px;
  font-weight: 500;
  color: var(--bd-black);
}

.hero-title {
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 40px;
  font-weight: 500;
}
@media only screen and (min-width: 576px) {
  .hero-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-title {
    font-size: 80px;
  }
}
.hero-title .color-blue {
  color: var(--bd-primary);
}

.hero-thumb {
  display: flex;
  gap: 25px;
  justify-content: center;
}
.hero-thumb .hero-img-1 {
  border-radius: 225px 0 0 225px;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
  position: relative;
  margin-top: 110px;
}
.hero-thumb .hero-img-1::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(90deg, rgba(29, 39, 176, 0.7) 26.18%, rgba(29, 39, 176, 0.7) 100%);
}
.hero-thumb .hero-img-2 {
  border-radius: 0 225px 225px 0;
  overflow: hidden;
  width: fit-content;
  height: fit-content;
}

/*----------------------------------------*/
/*  7.2 Hero Style 2
/*----------------------------------------*/
@media only screen and (min-width: 1200px) {
  .hero-main-wrapper {
    padding-top: 30px;
  }
}

.hero-two-area {
  position: relative;
  z-index: 1;
  border-radius: 11px;
  padding-top: 130px;
  padding-bottom: 100px;
  overflow: hidden;
}
@media only screen and (min-width: 576px) {
  .hero-two-area {
    padding-top: 140px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-two-area {
    padding-top: 170px;
    padding-bottom: 120px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-two-area {
    margin: 0 30px;
  }
}
.hero-two-area::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(-125.82deg, rgba(63, 76, 255, 0.7) 18.5%, #171F98 50%);
}

.hero-two-content .hero-bottom {
  max-width: 580px;
}
.hero-two-content .bottom-content p {
  color: var(--bd-white);
  margin-bottom: 0;
}

.hero-two-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
}
@media only screen and (min-width: 768px) {
  .hero-two-thumb {
    max-width: 400px;
    margin: auto;
  }
}
@media only screen and (min-width: 992px) {
  .hero-two-thumb {
    max-width: 100%;
  }
}
.hero-two-thumb img {
  width: 100%;
}
.hero-two-thumb::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(63, 76, 255, 0.1) 0%, rgba(54, 67, 233, 0.3) 60.96%, rgba(52, 64, 227, 0.5) 81.08%, rgba(23, 31, 152, 0.9) 98.51%);
}

.skill-top .section-title {
  margin-bottom: 30px;
}

/*----------------------------------------*/
/*  5.2 Main menu css
/*----------------------------------------*/
.main-menu ul {
  display: flex;
  gap: 50px;
}
@media only screen and (min-width: 992px) {
  .main-menu ul {
    gap: 35px;
  }
}
@media only screen and (min-width: 1200px) {
  .main-menu ul {
    gap: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .main-menu ul {
    gap: 50px;
  }
}
.main-menu ul > li {
  position: relative;
  padding: 0px;
  margin: 0px;
}
.main-menu ul > li:hover a {
  color: var(--bd-primary);
}
.main-menu ul > li:hover a::before {
  width: 100%;
}
.main-menu ul > li:hover > .sub-menu {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  pointer-events: all;
}
.main-menu ul > li > .sub-menu {
  display: block;
  position: absolute;
  left: 0;
  min-width: 220px;
  padding: 15px 0px;
  background: white;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.176);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  transform: scaleY(0);
  transform-origin: top center;
  pointer-events: none;
  z-index: 22;
  border-radius: 12px;
}
.main-menu ul > li > .sub-menu > li {
  padding: 5px 20px 5px 20px;
}
.main-menu ul > li > .sub-menu > li:hover > a {
  padding-inline-start: 15px;
  color: var(--bd-primary);
}
.main-menu ul > li > .sub-menu > li:hover > a::before {
  width: 12px;
}
.main-menu ul > li > .sub-menu > li a {
  padding: 4px 0;
  transition: all 300ms linear 0s;
  white-space: nowrap;
  display: block;
  border: 0;
  color: var(--bd-black);
  position: relative;
}
.main-menu ul > li > .sub-menu > li a::before {
  position: absolute;
  content: "";
  left: 0px;
  right: auto;
  top: 50%;
  bottom: auto;
  width: 0;
  height: 1px;
  background-color: var(--bd-primary);
  transition: 0.4s;
}
.main-menu ul > li > .sub-menu > li a.current-menu-item {
  padding-inline-start: 15px;
  color: var(--bd-primary);
}
.main-menu ul > li > .sub-menu > li a.current-menu-item::before {
  width: 12px;
}
.main-menu ul > li > .sub-menu > li .sub-menu {
  left: 100%;
  top: 10px;
}
.main-menu ul > li > a {
  font-size: 17px;
  padding: 20px 0px;
  color: #282828;
  display: inline-block;
  padding-inline-start: 0px;
  text-transform: capitalize;
}
.main-menu ul > li > a:hover {
  color: var(--bd-primary);
}
.main-menu ul > li > a.active {
  color: var(--bd-primary);
}

.main-menu-two ul li:hover a {
  color: var(--bd-white);
}
.main-menu-two ul li a {
  position: relative;
}
.main-menu-two ul li a:hover {
  color: var(--bd-white);
}
.main-menu-two ul li a:hover::before {
  width: 100%;
}
.main-menu-two ul li a::before {
  content: "";
  position: absolute;
  bottom: 18px;
  left: 0;
  height: 2px;
  width: 0%;
  background: var(--bd-white);
  transition: 0.3s ease;
}
.main-menu-two ul li a.active {
  color: var(--bd-white);
}
.main-menu-two ul li a.active::before {
  width: 100%;
}

.sticky .main-menu-two ul > li:hover > a {
  color: var(--bd-primary);
}
.sticky .main-menu-two ul > li a:hover {
  color: var(--bd-primary);
}
.sticky .main-menu-two ul > li a::before {
  background-color: transparent;
}

/*----------------------------------------*/
/*  5.1 Meanmenu css
/*----------------------------------------*/
/* Mean menu customize */
.mean-container a.meanmenu-reveal {
  width: 22px;
  height: 22px;
  padding: 13px 13px 11px 13px;
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  color: var(--bd-black);
  text-decoration: none;
  font-size: 17px;
  text-indent: -9999em;
  line-height: 22px;
  font-size: 1px;
  font-weight: 700;
  display: none !important;
}
.mean-container a.meanmenu-reveal span {
  display: block;
  background: var(--bd-black);
  height: 3px;
  margin-top: 3px;
}
.mean-container .mean-push {
  float: left;
  width: 100%;
  padding: 0;
  margin: 0;
  clear: both;
}
.mean-container .mean-nav {
  background: none;
  margin-top: 0;
  float: left;
  width: 100%;
  margin-bottom: 30px;
}
.mean-container .mean-nav .wrapper {
  width: 100%;
  padding: 0;
  margin: 0;
}
.mean-container .mean-nav > ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}
.mean-container .mean-nav > ul > li:first-child > a {
  border-top: 0;
}
.mean-container .mean-nav > ul .mean-expand {
  position: relative;
}
.mean-container .mean-nav > ul .mean-expand:hover::before {
  color: var(--bd-primary) !important;
}
.mean-container .mean-nav > ul .mean-expand::before {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  content: "\f107";
  font-family: var(--bd-ff-fontawesome);
  color: var(--bd-black);
  transition: 0.35s;
}
.mean-container .mean-nav > ul .mean-expand.mean-clicked {
  color: var(--bd-primary);
}
.mean-container .mean-nav > ul .mean-expand.mean-clicked::before {
  transform: translateY(-50%) rotate(180deg);
  color: var(--bd-primary) !important;
}
.mean-container .mean-nav ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
}
.mean-container .mean-nav ul li {
  position: relative;
  float: left;
  width: 100%;
  border-top: 1px solid #E0E0E0;
}
.mean-container .mean-nav ul li:first-child {
  border-top: 0 !important;
}
.mean-container .mean-nav ul li.mean-last {
  border-bottom: none;
  margin-bottom: 0;
}
.mean-container .mean-nav ul li > a:hover {
  color: var(--bd-primary);
}
.mean-container .mean-nav ul li a, .mean-container .mean-nav ul li span {
  display: block;
  float: left;
  width: 90%;
  padding: 10px 5%;
  margin: 0;
  text-align: left;
  text-decoration: none;
  text-transform: capitalize;
  width: 100%;
  padding: 12px 0;
  color: var(--bd-black);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .mean-container .mean-nav ul li a, .mean-container .mean-nav ul li span {
    padding: 16px 0;
  }
}
.mean-container .mean-nav ul li li:first-child {
  border-top: 1px solid #E0E0E0 !important;
}
.mean-container .mean-nav ul li li a {
  width: 90%;
  padding: 10px 7%;
  text-shadow: none !important;
  visibility: visible;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: var(--bd-black);
}
.mean-container .mean-nav ul li li a:hover::before {
  background-color: var(--bd-primary);
}
.mean-container .mean-nav ul li li a::before {
  position: absolute;
  height: 1px;
  width: 10px;
  background-color: var(--bd-black);
  left: 7px;
  top: 50%;
  transform: translateY(-50%);
  content: "";
}
.mean-container .mean-nav ul li li li a {
  width: 80%;
  padding: 10px 12%;
}
.mean-container .mean-nav ul li li li li a {
  width: 70%;
  padding: 10px 17%;
}
.mean-container .mean-nav ul li li li li li a {
  width: 60%;
  padding: 10px 20%;
}
.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
  float: left;
  width: 100%;
  position: relative;
  padding: 4px 0;
  min-height: 42px;
  z-index: 999999;
}
@media (max-width: 575px) {
  .mean-container .mean-bar {
    width: 100%;
  }
}
.mean-container .mean-bar, .mean-container .mean-bar * {
  /* Fix for box sizing on Foundation Framework etc. */
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

/*----------------------------------------*/
/*  6.1 Footer Style 1
/*----------------------------------------*/
.footer-area {
  position: relative;
}
.footer-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: linear-gradient(103.02deg, #171F98 65.44%, #3F4CFF 94.22%);
}

@media only screen and (min-width: 992px) {
  .footer-widget {
    padding-left: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-widget {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 1400px) {
  .footer-widget {
    padding-left: 120px;
  }
}
.footer-widget .footer-logo {
  margin-bottom: 30px;
}
.footer-widget p {
  color: var(--bd-white);
}

.footer-widget-1 {
  padding-left: 0;
}
@media only screen and (min-width: 992px) {
  .footer-widget-1 {
    margin-right: -50px;
  }
}
.footer-widget-1 p {
  margin-bottom: 30px;
}

.widget-title {
  margin-bottom: 25px;
  color: var(--bd-white);
}

@media only screen and (min-width: 576px) {
  .footer-link ul li {
    font-size: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .footer-link ul li {
    font-size: 16px;
  }
}
.footer-link ul li:not(:last-child) {
  margin-bottom: 15px;
}
.footer-link ul li a {
  color: #DDDDDD;
  position: relative;
}
.footer-link ul li a:hover {
  color: var(--bd-white);
}
.footer-link ul li a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.footer-link ul li a::before {
  position: absolute;
  content: "";
  background-color: var(--bd-white);
  height: 1px;
  bottom: 0;
  left: auto;
  right: 0;
  transition: 0.3s;
  width: 0;
}

.footer-contact ul li {
  margin-bottom: 15px;
}
.footer-contact ul li a {
  color: var(--bd-white);
}
.footer-contact ul li a:hover {
  color: var(--bd-primary);
}
.footer-contact ul li a span {
  margin-right: 10px;
}

.footer-social ul {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social ul li a {
  color: var(--bd-white);
  height: 35px;
  width: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #DDDDDD;
}
.footer-social ul li a:hover {
  background-color: var(--bd-primary);
  border-color: var(--bd-primary);
}

.footer-top {
  margin-bottom: 60px;
}
@media only screen and (min-width: 576px) {
  .footer-top {
    margin-bottom: 100px;
  }
}

.footer-bottom {
  display: flex;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid #3a5686;
  flex-direction: column;
  gap: 15px;
}
@media only screen and (min-width: 992px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-right ul {
  display: flex;
  gap: 7px;
  align-items: center;
}
@media only screen and (min-width: 576px) {
  .footer-right ul {
    gap: 30px;
  }
}
.footer-right ul li a {
  color: var(--bd-white);
  position: relative;
  font-size: 14px;
}
@media only screen and (min-width: 576px) {
  .footer-right ul li a {
    font-size: 16px;
  }
}
.footer-right ul li a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.footer-right ul li a::before {
  position: absolute;
  content: "";
  background-color: var(--bd-white);
  height: 1px;
  bottom: 0;
  left: auto;
  right: 0;
  transition: 0.3s;
  width: 0;
}

.copyright-text p {
  color: var(--bd-white);
  margin-bottom: 0;
  font-size: 15px;
}
@media only screen and (min-width: 576px) {
  .copyright-text p {
    font-size: 16px;
  }
}
.copyright-text p a:hover {
  color: var(--bd-primary);
}

/*----------------------------------------*/
/*  8.1 About css
/*----------------------------------------*/
@media only screen and (min-width: 1400px) {
  .about-content {
    padding-right: 100px;
  }
}

.about-title-wrapper {
  max-width: 530px;
}

.arrow-btn {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #6D77FF;
  color: var(--bd-white);
  border-radius: 50%;
}
.arrow-btn:hover i {
  transform: rotate(0);
}
.arrow-btn i {
  transform: rotate(-45deg);
  transition: 0.3s;
}

.about-manage {
  background-color: var(--bd-primary);
  border-radius: 7px;
  padding: 25px;
  flex: 0 0 auto;
}
@media only screen and (min-width: 576px) {
  .about-manage {
    width: 375px;
  }
}

.about-single {
  display: grid;
  grid-template-columns: 50px 120px 1fr;
  gap: 20px;
  justify-items: end;
  padding-bottom: 25px;
  margin-bottom: 25px;
  border-bottom: 1px solid #6D77FF;
}
.about-single:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.about-single h6 {
  font-size: 18px;
  color: var(--bd-white);
}
.about-single .icon {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: var(--bd-white);
}
.about-single .icon img {
  width: 20px;
}

.about-counter-wrapper h3 {
  font-size: 30px;
  display: flex;
}
.about-counter-wrapper h3 span {
  font-size: 50px;
}
@media only screen and (min-width: 768px) {
  .about-counter-wrapper h3 span {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .about-counter-wrapper h3 span {
    font-size: 120px;
  }
}
.about-counter-wrapper p {
  font-size: 16px;
  color: #4D505B;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .about-counter-wrapper p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .about-counter-wrapper p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .about-counter-wrapper p {
    font-size: 20px;
  }
}

.about-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  .about-bottom {
    align-items: center;
  }
}
@media only screen and (min-width: 768px) {
  .about-bottom {
    flex-direction: row;
    gap: 0;
    align-items: start;
  }
}
@media only screen and (min-width: 992px) {
  .about-bottom {
    gap: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .about-bottom {
    gap: 0px;
  }
}

.about-thumb {
  overflow: hidden;
  border-radius: 10px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .about-thumb {
    margin-left: 30px;
  }
}
.about-thumb img {
  width: 100%;
}
.about-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 37.03%, rgba(22, 32, 174, 0.9) 83.47%);
}

.skill-area .container {
  border-bottom: 1px solid #D7DEE5;
}

.skill-top {
  max-width: 1200px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .skill-top {
    margin-bottom: 0;
  }
}
.skill-top .section-text {
  max-width: 850px;
}

@media only screen and (min-width: 992px) {
  .skill-left-item {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .skill-left-item {
    padding-right: 100px;
  }
}
.skill-left-item img {
  width: 100%;
}

.skill-left-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
  margin-bottom: 50px;
}
.skill-left-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(63, 76, 255, 0.1) 0%, rgba(22, 32, 174, 0.8) 100%);
}

@media only screen and (min-width: 768px) {
  .skill-right-item {
    max-width: 435px;
    margin: auto;
  }
}
@media only screen and (min-width: 992px) {
  .skill-right-item {
    margin: inherit;
  }
}
.skill-right-item .about-counter-wrapper {
  text-align: end;
  margin-bottom: 80px;
}
.skill-right-item .about-counter-wrapper h3 {
  justify-content: end;
}
.skill-right-item .about-counter-wrapper p {
  margin-bottom: 0;
}

.skill-progress {
  margin-bottom: 30px;
}
.skill-progress h6 {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--bd-primary);
}

.progress-item {
  margin-bottom: 20px;
}
.progress-item .title {
  display: block;
  margin-bottom: 10px;
}
.progress-item:last-child {
  margin-bottom: 0;
}

.progress--bar {
  position: relative;
  overflow: visible;
  background: transparent;
}

.progress-number {
  position: absolute;
  bottom: 15px;
  line-height: 1;
  color: var(--bd-black);
  transform: translateX(-100%);
  top: -25px;
  z-index: 5;
}

.progress-bg {
  height: 8px;
  background: #D9DBFF;
  overflow: hidden;
  border-radius: 15px;
}

.progress-fill {
  height: 100%;
  background: var(--bd-primary);
  width: 0%;
  border-radius: 15px;
}

.skill-thumb-two {
  position: relative;
  overflow: hidden;
  border-radius: 13px;
}
@media only screen and (min-width: 768px) {
  .skill-thumb-two {
    max-width: 435px;
  }
}
.skill-thumb-two img {
  width: 100%;
}
.skill-thumb-two .skill-thumb-content {
  background-color: var(--bd-primary);
  padding: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  border-radius: 13px;
}
@media only screen and (min-width: 576px) {
  .skill-thumb-two .skill-thumb-content {
    padding: 40px;
  }
}
.skill-thumb-two .skill-thumb-content h4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .skill-thumb-two .skill-thumb-content h4 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1200px) {
  .skill-thumb-two .skill-thumb-content h4 {
    font-size: 30px;
  }
}
.skill-thumb-two .skill-thumb-content h4 a {
  background-image: linear-gradient(var(--bd-white), var(--bd-white)), linear-gradient(var(--bd-white), var(--bd-white));
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.skill-thumb-two .skill-thumb-content h4 a:hover {
  background-size: 0 1px, 100% 1px;
  color: var(--bd-white);
}
.skill-thumb-two .skill-thumb-content span {
  font-size: 16px;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .skill-thumb-two .skill-thumb-content span {
    font-size: 20px;
  }
}

.expertise-area {
  position: relative;
  z-index: 1;
  min-height: 400px;
  background: center/cover no-repeat;
}
@media only screen and (min-width: 576px) {
  .expertise-area {
    min-height: 420px;
  }
}
@media only screen and (min-width: 768px) {
  .expertise-area {
    min-height: 430px;
  }
}
@media only screen and (min-width: 992px) {
  .expertise-area {
    min-height: 460px;
  }
}
@media only screen and (min-width: 1400px) {
  .expertise-area {
    min-height: 780px;
  }
}
@media only screen and (min-width: 1600px) {
  .expertise-area {
    min-height: 980px;
  }
}
.expertise-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(63, 76, 255, 0.5) 0%, rgba(22, 32, 174, 0.8) 83.47%);
}

.expertise-content .expertise-title {
  font-size: 25px;
  color: var(--bd-white);
  max-width: 410px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 576px) {
  .expertise-content .expertise-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .expertise-content .expertise-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 992px) {
  .expertise-content .expertise-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .expertise-content .expertise-title {
    font-size: 50px;
  }
}
.expertise-content .progress-bg {
  background-color: transparent;
}
.expertise-content .progress-bg .progress-fill {
  background-color: var(--bd-white);
}
.expertise-content .progress-item .title {
  color: var(--bd-white);
  font-size: 15px;
}
.expertise-content .progress-number {
  color: var(--bd-white);
}

.error-thumb {
  text-align: center;
}

/*----------------------------------------*/
/*  8.2 Blog css
/*----------------------------------------*/
.blog-top {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  margin-bottom: 60px;
  gap: 30px;
}
@media only screen and (min-width: 992px) {
  .blog-top {
    grid-template-columns: 430px 1fr;
    justify-items: end;
  }
}
.blog-top .section-text {
  max-width: 580px;
}

@media (max-width: 575px) {
  .blog-single {
    max-width: 380px;
    margin: auto;
  }
}
.blog-single:hover img {
  transform: scale(1.05);
}
.blog-single:hover .blog-category {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}

.post-author {
  font-size: 15px;
}
@media only screen and (min-width: 992px) {
  .post-author {
    font-size: 18px;
  }
}
.post-author span {
  margin-right: 5px;
}
.post-author a:hover {
  color: var(--bd-primary);
}

.post-date {
  font-size: 15px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .post-date {
    font-size: 16px;
  }
}

.blog-content {
  margin-top: -18px;
}
@media only screen and (min-width: 992px) {
  .blog-content {
    padding: 0 20px;
    margin-top: -25px;
  }
}
@media only screen and (min-width: 1200px) {
  .blog-content {
    padding: 0 40px;
  }
}
.blog-content .post-date {
  font-size: 15px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 992px) {
  .blog-content .post-date {
    font-size: 16px;
  }
}
.blog-content .blog-category {
  font-size: 14px;
  position: relative;
  z-index: 1;
  padding: 8px 20px;
  font-weight: 600;
  border-radius: 27px;
  background-color: #F3F8FF;
  display: inline-block;
  margin-bottom: 20px;
  transition: 0.3s;
  margin-left: 30px;
}
@media only screen and (min-width: 992px) {
  .blog-content .blog-category {
    padding: 10px 30px;
    font-size: 18px;
    margin-left: 0;
    margin-bottom: 30px;
  }
}

.blog-title {
  font-size: 18px;
  margin-bottom: 15px;
  line-height: 1.3;
}
@media only screen and (min-width: 992px) {
  .blog-title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .blog-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1400px) {
  .blog-title {
    font-size: 30px;
  }
}
.blog-title a:hover {
  color: var(--bd-primary);
}

.blog-thumb {
  overflow: hidden;
  border-radius: 24px;
}
.blog-thumb img {
  width: 100%;
}

/*----------------------------------------*/
/*  8.4 Contact css
/*----------------------------------------*/
.input-field label {
  font-size: 16px;
  color: var(--bd-black);
  margin-bottom: 15px;
  display: block;
}
.input-field input {
  height: 60px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  padding: 0 20px;
  font-size: 15px;
}
.input-field input:focus {
  border-color: var(--bd-primary);
}
.input-field input::placeholder {
  font-size: 15px;
  color: #929292;
}
.input-field input::-moz-placeholder {
  font-size: 15px;
  color: #929292;
}
.input-field textarea {
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  height: 150px;
  padding: 20px;
  font-size: 15px;
}
.input-field textarea:focus {
  border-color: var(--bd-primary);
}
.input-field textarea::placeholder {
  font-size: 15px;
  color: #929292;
}
.input-field textarea::-moz-placeholder {
  font-size: 15px;
  color: #929292;
}
.input-field .nice-select {
  width: 100%;
  height: 60px;
  font-size: 16px;
  line-height: 55px;
  border-color: #D9D9D9;
}
.input-field .nice-select:focus {
  border-color: var(--bd-primary);
}
.input-field .nice-select .list {
  width: 100%;
}

/*----------------------------------------*/
/*  8.6 Service css
/*----------------------------------------*/
.feature-service-area {
  position: relative;
}
.feature-service-area .feature-shape {
  position: absolute;
  right: 0;
  top: 90px;
  z-index: -1;
}

.feature-service-top {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #D7DEE5;
}
@media only screen and (min-width: 992px) {
  .feature-service-top {
    padding-bottom: 50px;
    margin-bottom: 50px;
  }
}

.feature-service-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: end;
  margin-bottom: 100px;
}
@media only screen and (min-width: 992px) {
  .feature-service-bottom {
    grid-template-columns: 1fr 540px;
  }
}

.navigation__wrapper {
  display: flex;
  gap: 10px;
  height: fit-content;
}
.navigation__wrapper button {
  padding: 12px 30px;
  border-radius: 28px;
  color: var(--bd-primary);
  border: 1px solid var(--bd-primary);
}
.navigation__wrapper button:hover {
  box-shadow: inset 5em 0 0 0 var(--bd-primary), inset -5em 0 0 0 var(--bd-primary);
  border-color: var(--bd-primary);
  color: #fff;
}

@media only screen and (min-width: 1600px) {
  .feature-service-slider-wrapper {
    margin-right: -480px;
  }
}

.feature-service-item {
  border: 1px solid #D7DEE5;
  border-radius: 9px;
  padding: 20px;
  background-color: var(--bd-white);
}
@media only screen and (min-width: 1200px) {
  .feature-service-item {
    padding: 50px;
  }
}
@media only screen and (min-width: 1400px) {
  .feature-service-item {
    padding: 30px 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .feature-service-item {
    padding: 50px;
  }
}
.feature-service-item p {
  font-size: 16px;
  padding-right: 20px;
}
@media only screen and (min-width: 992px) {
  .feature-service-item p {
    font-size: 18px;
  }
}

.feature-service-icon {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1600px) {
  .feature-service-icon {
    margin-bottom: 100px;
  }
}

.feature-service-title {
  font-size: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  .feature-service-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1400px) {
  .feature-service-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .feature-service-title {
    font-size: 24px;
    max-width: 220px;
    margin-bottom: 30px;
  }
}

.feature-service-btn a {
  font-size: 15px;
}
.feature-service-btn a:hover .icon1 {
  opacity: 0;
  visibility: hidden;
  margin-left: -14px;
}
.feature-service-btn a:hover .btn-text {
  padding-left: 0px;
  color: var(--bd-primary);
}
.feature-service-btn a:hover .icon2 {
  opacity: 1;
}
.feature-service-btn a .btn-text {
  padding: 0 5px;
}
.feature-service-btn a .icon {
  color: var(--bd-primary);
}
.feature-service-btn a .icon2 {
  opacity: 0;
}

.service-area {
  background: linear-gradient(99.26deg, #171F98 80.83%, #3F4CFF 98.85%);
  position: relative;
  z-index: 1;
}
.service-area .animate-shape {
  position: absolute;
  right: -50px;
  top: -50px;
  animation: spinner 15s linear infinite;
  z-index: -1;
  width: 180px;
}
@media only screen and (min-width: 576px) {
  .service-area .animate-shape {
    width: 200px;
  }
}
@media only screen and (min-width: 992px) {
  .service-area .animate-shape {
    width: 300px;
  }
}
@media only screen and (min-width: 1400px) {
  .service-area .animate-shape {
    width: inherit;
  }
}

.service-text p {
  font-size: 16px;
  color: var(--bd-white);
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .service-text p {
    font-size: 18px;
  }
}

.service-single-item {
  display: grid;
  grid-template-columns: 1fr;
  padding: 25px;
  border-radius: 19px;
  background-color: #0E168F;
  border: 1px solid #3840A8;
  align-items: center;
  gap: 20px;
}
@media only screen and (min-width: 992px) {
  .service-single-item {
    grid-template-columns: 1fr 500px;
    padding: 40px;
  }
}
.service-single-item:not(:last-child) {
  margin-bottom: 20px;
}
.service-single-item h4 {
  font-size: 24px;
}
@media only screen and (min-width: 992px) {
  .service-single-item h4 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-single-item h4 {
    font-size: 32px;
  }
}

.service-top {
  max-width: 730px;
  margin-bottom: 60px;
}

.capabilities-area .container {
  border-bottom: 1px solid #D7DEE5;
}

.capabilities-list {
  margin-top: 50px;
}
.capabilities-list li {
  position: relative;
  padding-left: 35px;
  font-size: 16px;
}
@media only screen and (min-width: 576px) {
  .capabilities-list li {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .capabilities-list li {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .capabilities-list li {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1200px) {
  .capabilities-list li {
    font-size: 20px;
  }
}
.capabilities-list li:not(:last-child) {
  margin-bottom: 25px;
}
.capabilities-list li::before {
  position: absolute;
  left: 0px;
  top: 3px;
  height: 25px;
  width: 25px;
  font-size: 12px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-primary);
  color: var(--bd-white);
  content: "\f061";
  font-family: var(--bd-ff-fontawesome);
  transform: rotate(-45deg);
}

.capabilities-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media only screen and (min-width: 992px) {
  .capabilities-thumb {
    margin-left: 30px;
  }
}
.capabilities-thumb img {
  width: 100%;
}
.capabilities-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(63, 76, 255, 0.1) 0%, rgba(22, 32, 174, 0.8) 83.47%);
}
.capabilities-thumb .thumb-content {
  font-size: 18px;
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  max-width: 480px;
  color: var(--bd-white);
  font-weight: 400;
  line-height: 1.4;
}
@media only screen and (min-width: 576px) {
  .capabilities-thumb .thumb-content {
    font-size: 22px;
    left: 50px;
    bottom: 25px;
  }
}
@media only screen and (min-width: 768px) {
  .capabilities-thumb .thumb-content {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) {
  .capabilities-thumb .thumb-content {
    font-size: 22px;
    left: 20px;
    bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .capabilities-thumb .thumb-content {
    font-size: 26px;
    left: 50px;
    bottom: 25px;
  }
}
.capabilities-thumb .thumb-content span {
  font-weight: 600;
}

.capabilities-service-single {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  .capabilities-service-single {
    flex-direction: row;
    gap: 0;
  }
}
@media only screen and (min-width: 992px) {
  .capabilities-service-single {
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
  }
}
@media only screen and (min-width: 1400px) {
  .capabilities-service-single {
    flex-direction: row;
    gap: 0;
    align-items: start;
    text-align: start;
  }
}

@media only screen and (min-width: 576px) {
  .capabilities-service-content {
    padding: 0 30px;
  }
}
@media only screen and (min-width: 992px) {
  .capabilities-service-content {
    padding: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .capabilities-service-content {
    padding: 0 30px;
  }
}
.capabilities-service-content h5 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .capabilities-service-content h5 {
    font-size: 22px;
  }
}
.capabilities-service-content p {
  font-size: 17px;
}

.capabilities-icon {
  height: 70px;
  width: 70px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-primary);
}
@media only screen and (min-width: 992px) {
  .capabilities-icon {
    height: 100px;
    width: 100px;
  }
}

.capabilities-tab {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D7DEE5;
}
@media only screen and (min-width: 768px) {
  .capabilities-tab {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .capabilities-tab {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .capabilities-tab {
    margin-bottom: 80px;
  }
}
.capabilities-tab .tab-btn-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 575px) {
  .capabilities-tab .tab-btn-wrapper {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.capabilities-tab .nav-item {
  text-align: center;
}
.capabilities-tab .nav-item .nav-link {
  font-size: 18px;
  color: var(--bd-black);
  width: 100%;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .capabilities-tab .nav-item .nav-link {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .capabilities-tab .nav-item .nav-link {
    font-size: 18px;
  }
}
.capabilities-tab .nav-item .nav-link::before {
  position: absolute;
  content: "";
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  width: 0;
  background-color: var(--bd-primary);
  transition: 0.35s;
}
@media(max-width: 575px) {
  .capabilities-tab .nav-item .nav-link::before {
    bottom: -10px;
  }
}
.capabilities-tab .nav-item .nav-link:hover::before {
  width: 100%;
}
.capabilities-tab .nav-item .nav-link.active::before {
  width: 100%;
}

.cta-area {
  padding: 20px;
  max-width: 1720px;
  margin: auto;
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: center/cover no-repeat;
  border-radius: 19px;
}
@media only screen and (min-width: 576px) {
  .cta-area {
    padding: 60px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .cta-area {
    padding: 80px 140px;
  }
}
.cta-area::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(22, 32, 174, 0.05) 0%, rgba(22, 32, 174, 0.9) 83.47%);
}

.cta-box {
  max-width: 530px;
  background-color: var(--bd-white);
  border-radius: 11px;
  padding: 30px 20px;
  margin: 0 0 0 auto;
}
@media only screen and (min-width: 576px) {
  .cta-box {
    padding: 60px 40px;
  }
}
@media only screen and (min-width: 992px) {
  .cta-box {
    margin: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .cta-box {
    margin: 0 0 0 auto;
  }
}
.cta-box .cta-input-field {
  margin-bottom: 15px;
}
.cta-box .cta-input-field:last-child {
  margin-bottom: 100px;
}
.cta-box .cta-input-field input {
  height: 60px;
  border: 1px solid #D9D9D9;
  border-radius: 11px;
}
.cta-box .cta-input-field input:focus {
  border-color: var(--bd-primary);
}
.cta-box .cta-input-field input::placeholder {
  color: #929292;
}
.cta-box .cta-input-field input::-moz-placeholder {
  color: #929292;
}
.cta-box .cta-input-field textarea {
  padding: 20px;
  height: 120px;
  border: 1px solid #D9D9D9;
  border-radius: 11px;
}
.cta-box .cta-input-field textarea:focus {
  border-color: var(--bd-primary);
}
.cta-box .cta-input-field textarea::placeholder {
  color: #929292;
}
.cta-box .cta-input-field textarea::-moz-placeholder {
  color: #929292;
}

.cta-title {
  font-size: 24px;
  font-weight: 500;
  max-width: 300px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .cta-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) {
  .cta-title {
    font-size: 30px;
  }
}

.cta-btn button {
  padding: 15px 30px;
  width: 100%;
  border-radius: 7px;
  background-color: var(--bd-primary);
  color: var(--bd-white);
  border: 1px solid transparent;
}
.cta-btn button:hover {
  background-color: var(--bd-white);
  border-color: var(--bd-primary);
  color: var(--bd-primary);
}

.service-thumb {
  position: relative;
}
.service-thumb .logo-shape {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 130px;
}
@media only screen and (min-width: 1200px) {
  .service-thumb .logo-shape {
    width: initial;
  }
}
.service-thumb .logo-shape img {
  animation: spinner 15s linear infinite;
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
  align-items: center;
  border-bottom: 1px solid #D7DEE5;
}
@media only screen and (min-width: 992px) {
  .service-list {
    grid-template-columns: 1fr 360px;
    gap: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .service-list {
    padding: 35px 40px;
  }
}
.service-list.mleave.currentHover h5 {
  color: var(--bd-black);
}
.service-list.mleave.currentHover .service-list-content p {
  color: #4D505B;
}
.service-list.currentHover h5 {
  color: var(--bd-white);
}
.service-list.currentHover .service-list-content p {
  color: var(--bd-white);
}
.service-list h5 {
  font-size: 22px;
}
@media only screen and (min-width: 768px) {
  .service-list h5 {
    font-size: 24px;
  }
}

.service-list-content p {
  margin-bottom: 0;
}

.service-widget .active-bg {
  top: 0px;
  left: 0px;
  right: 0px;
  position: absolute;
  z-index: 1;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: -1;
  background: linear-gradient(98.38deg, #171F98 6.42%, #3F4CFF 93.58%);
}

@media only screen and (min-width: 1200px) {
  .service-list-item {
    padding-left: 60px;
  }
}

.service-title-top {
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .service-title-top {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .service-title-top {
    max-width: 590px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-title-top {
    max-width: 620px;
  }
}

/*----------------------------------------*/
/*  8.8 Testiomonial css
/*----------------------------------------*/
.testimonial-area {
  background: linear-gradient(103.02deg, #171F98 65.44%, #3F4CFF 94.22%);
  max-width: 1720px;
  margin: auto;
  border-radius: 19px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.testimonial-area .animate-shape {
  position: absolute;
  bottom: -50px;
  right: -50px;
  animation: spinner 15s linear infinite;
  z-index: -1;
  width: 180px;
}
@media only screen and (min-width: 576px) {
  .testimonial-area .animate-shape {
    width: 200px;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-area .animate-shape {
    width: 300px;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-area .animate-shape {
    width: inherit;
  }
}

.testimonial_pagintion {
  margin-top: 40px;
}
.testimonial_pagintion .swiper-pagination {
  position: inherit;
  display: flex;
  gap: 12px;
  justify-content: center;
}
.testimonial_pagintion .swiper-pagination .swiper-pagination-bullet {
  height: 12px;
  width: 12px;
  border-radius: 50%;
  opacity: 1;
  background-color: #6D77FF;
  margin: 0;
}
.testimonial_pagintion .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bd-white);
}

.testimonial-item-box {
  background-color: var(--bd-white);
  border-radius: 15px;
  overflow: hidden;
  padding-bottom: 90px;
  position: relative;
  max-width: 380px;
  margin: auto;
}
@media only screen and (min-width: 576px) {
  .testimonial-item-box {
    padding-bottom: 60px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-item-box {
    padding-bottom: 90px;
  }
}
.testimonial-item-box .author-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 45px;
}
@media only screen and (min-width: 576px) {
  .testimonial-item-box .author-wrapper {
    gap: 10px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .testimonial-item-box .author-wrapper {
    gap: 20px;
    margin-bottom: 45px;
  }
}
.testimonial-item-box .author-wrapper .author-img {
  overflow: hidden;
  border-radius: 0 7px 400px 0;
}
@media only screen and (min-width: 576px) {
  .testimonial-item-box .author-wrapper .author-img {
    width: 90px;
  }
}
@media only screen and (min-width: 768px) {
  .testimonial-item-box .author-wrapper .author-img {
    width: initial;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-item-box .author-wrapper .author-img {
    width: 120px;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-item-box .author-wrapper .author-img {
    width: initial;
  }
}
.testimonial-item-box .content-bottom {
  padding: 0 15px;
}
@media only screen and (min-width: 768px) {
  .testimonial-item-box .content-bottom {
    padding: 0 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .testimonial-item-box .content-bottom {
    padding-left: 40px;
    padding-right: 70px;
  }
}
.testimonial-item-box .content-bottom h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) {
  .testimonial-item-box .content-bottom h5 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-item-box .content-bottom h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-item-box .content-bottom h5 {
    font-size: 22px;
  }
}
.testimonial-item-box .content-bottom p {
  margin-bottom: 0;
}
@media only screen and (min-width: 1200px) {
  .testimonial-item-box .content-bottom p {
    font-size: 18px;
  }
}
.testimonial-item-box .quote-gray {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
}
@media only screen and (min-width: 992px) {
  .testimonial-item-box .quote-gray {
    width: initial;
  }
}

@media only screen and (min-width: 576px) {
  .author-text h6 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .author-text h6 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 576px) {
  .author-text .designation {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .author-text .designation {
    font-size: 16px;
  }
}

.testimonial-two-wrapper {
  padding: 80px 0;
  border-radius: 19px;
  background: linear-gradient(103.02deg, #171F98 65.44%, #3F4CFF 94.22%);
  position: relative;
}
@media only screen and (min-width: 768px) {
  .testimonial-two-wrapper {
    padding: 110px 0;
  }
}
.testimonial-two-wrapper .testimonial-shape {
  position: absolute;
  right: -85px;
  bottom: 20px;
  animation: spinner 15s linear infinite;
}

.testimonial-two-content {
  text-align: center;
  max-width: 830px;
  margin: auto;
  padding: 15px;
}
.testimonial-two-content .quote-icon {
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) {
  .testimonial-two-content .quote-icon {
    margin-bottom: 50px;
  }
}

.testimonial-bottom .testimonial-author {
  color: var(--bd-white);
  margin-bottom: 5px;
  font-size: 20px;
}
@media only screen and (min-width: 576px) {
  .testimonial-bottom .testimonial-author {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.testimonial-bottom span {
  font-size: 16px;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .testimonial-bottom span {
    font-size: 18px;
  }
}

.testimonial-two-content p {
  font-size: 18px;
  color: var(--bd-white);
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) {
  .testimonial-two-content p {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) {
  .testimonial-two-content p {
    font-size: 28px;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-two-content p {
    font-size: 32px;
    margin-bottom: 50px;
  }
}

.testimonial-avatar {
  border-radius: 50%;
  height: 45px;
  width: 45px;
  overflow: hidden;
  transition: 0.35s;
}

.testimonial-nav-active {
  max-width: 235px;
  margin: auto;
}

.swiper-slide-thumb-active .testimonial-avatar {
  opacity: 1;
  height: 55px;
  width: 55px;
  border: 1px solid var(--bd-white);
}

.testimonial-nav-active {
  min-height: 55px;
}
.testimonial-nav-active .swiper-wrapper {
  align-items: center;
}

.testimonial-two-active {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .testimonial-two-active {
    margin-bottom: 80px;
  }
}

/*----------------------------------------*/
/*  8.7 Team css
/*----------------------------------------*/
@media only screen and (min-width: 1200px) {
  .team-member-wrapper {
    padding-left: 130px;
  }
}

.team-content h5 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 4px;
}
.team-content h5 a:hover {
  color: var(--bd-primary);
}
.team-content .designation {
  color: #4D505B;
}

.team-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 9px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .team-thumb {
    margin-bottom: 25px;
  }
}
.team-thumb:hover img {
  transform: scale(1.05);
}
.team-thumb::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 37.03%, rgba(22, 32, 174, 0.9) 83.47%);
}

@media (max-width: 575px) {
  .single-team {
    max-width: 380px;
    margin: auto;
  }
}

.team-style-two {
  background-color: #F4F4FE;
}

.single-team-two {
  width: 100%;
}
.single-team-two .team-thumb-two {
  transition: 0.3s;
  overflow: hidden;
  height: 400px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .single-team-two .team-thumb-two {
    height: 520px;
  }
}
.single-team-two .team-thumb-two .team-content {
  margin-top: 25px;
  opacity: 0;
  visibility: hidden;
}
.single-team-two .team-thumb-two img {
  width: 100%;
  object-fit: cover;
  object-position: top;
  transition: all 0.2s ease;
  height: 100%;
  border-radius: 13px;
}
.single-team-two:hover .team-thumb-two img {
  height: 300px;
}
@media only screen and (min-width: 768px) {
  .single-team-two:hover .team-thumb-two img {
    height: 435px;
  }
}
.single-team-two:hover .team-content {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------*/
/*  8.5 Faq css
/*----------------------------------------*/
.faq-area {
  position: relative;
}
.faq-area .faq-shape {
  position: absolute;
  left: 0;
  bottom: -250px;
  z-index: -1;
  width: 230px;
}
@media only screen and (min-width: 576px) {
  .faq-area .faq-shape {
    width: 300px;
  }
}
@media only screen and (min-width: 992px) {
  .faq-area .faq-shape {
    width: 360px;
  }
}
@media only screen and (min-width: 1200px) {
  .faq-area .faq-shape {
    width: 400px;
  }
}
@media only screen and (min-width: 1400px) {
  .faq-area .faq-shape {
    width: inherit;
  }
}

.faq-content {
  padding-right: 20px;
}

@media only screen and (min-width: 992px) {
  .faq-right {
    padding-left: 40px;
  }
}

.accordion_style .accordion {
  border: none;
}
.accordion_style .accordion .accordion-item {
  border: none;
  border-radius: 0;
  margin-bottom: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #D9D9D9;
  background-color: transparent;
}
@media only screen and (min-width: 576px) {
  .accordion_style .accordion .accordion-item {
    margin-bottom: 25px;
    padding-bottom: 30px;
  }
}
.accordion_style .accordion .accordion-item:last-child {
  margin-bottom: 0;
  border: 0;
}
.accordion_style .accordion .accordion-item .accordion-button {
  border-bottom: 0;
  border-radius: 0;
  font-size: 20px;
  color: var(--bd-black);
  padding: 0;
  font-weight: 500;
  flex-wrap: wrap;
  background-color: transparent;
}
@media only screen and (min-width: 768px) {
  .accordion_style .accordion .accordion-item .accordion-button {
    font-size: 24px;
  }
}
.accordion_style .accordion .accordion-item .accordion-button[aria-expanded=true], .accordion_style .accordion .accordion-item .accordion-button::after {
  color: var(--bd-black);
}
.accordion_style .accordion .accordion-item .accordion-button::after {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  height: 1.5px;
  width: 12px;
  content: "";
  background-color: var(--bd-black);
}
.accordion_style .accordion .accordion-item .accordion-button::before {
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.3s;
  height: 12px;
  width: 1.5px;
  content: "";
  background-color: var(--bd-black);
}
.accordion_style .accordion .accordion-item .accordion-button:focus {
  border: none;
  border-color: transparent;
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.accordion_style .accordion .accordion-item .accordion-button-style::before {
  background-color: transparent;
}
.accordion_style .accordion .accordion-item .accordion-button:not(.collapsed) {
  background-color: transparent;
  box-shadow: none;
}
.accordion_style .accordion .accordion-item .accordion-button:not(.collapsed)::before {
  transform: translateY(-50%) rotate(-90deg);
  z-index: 8;
}
.accordion_style .accordion .accordion-item .accordion-body {
  margin-top: 15px;
  padding: 0;
  max-width: 620px;
}
.accordion_style .accordion .accordion-item .accordion-body .description {
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .accordion_style .accordion .accordion-item .accordion-body .description {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  8.3 Case-Studies css
/*----------------------------------------*/
.case-area {
  background-color: #F4F4FE;
}

.title-top {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .title-top {
    grid-template-columns: 380px 1fr;
    justify-items: end;
    margin-bottom: 60px;
  }
}

.navigation__wrapper-2 {
  display: flex;
  gap: 10px;
  height: fit-content;
}
.navigation__wrapper-2 button {
  height: 55px;
  width: 55px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--bd-black);
  background-color: var(--bd-white);
}
.navigation__wrapper-2 button:hover {
  box-shadow: inset 5em 0 0 0 var(--bd-primary), inset -5em 0 0 0 var(--bd-primary);
  border-color: var(--bd-primary);
  color: #fff;
}

@media only screen and (min-width: 1400px) {
  .case-slider-wrapper {
    margin-right: -480px;
  }
}

.case-item {
  background-color: var(--bd-white);
  border-radius: 11px;
  padding: 15px;
}
@media (max-width: 575px) {
  .case-item {
    max-width: 380px;
    margin: auto;
  }
}
.case-item:hover .case-thumb img {
  transform: scale(1.05);
}
.case-item:hover .case-thumb::before {
  opacity: 0.8;
  visibility: visible;
}
.case-item:hover .case-thumb .arrow-btn {
  opacity: 1;
  visibility: visible;
}
.case-item .case-thumb {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.case-item .case-thumb::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #001225;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  transition: 0.3s;
}
.case-item .case-thumb img {
  width: 100%;
}
.case-item .case-thumb .arrow-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.case-item .case-content {
  padding: 20px;
  padding-top: 50px;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 576px) {
  .case-item .case-content {
    padding: 20px 0px;
    padding-top: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .case-item .case-content {
    padding: 40px;
    padding-top: 85px;
  }
}
.case-item .case-content .case-icon {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -30px;
  height: 60px;
  width: 60px;
  border-radius: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #F4F4FE;
}
@media only screen and (min-width: 992px) {
  .case-item .case-content .case-icon {
    top: -50px;
    height: 100px;
    width: 100px;
  }
}
.case-item .case-content .case-icon img {
  width: 25px;
}
@media only screen and (min-width: 992px) {
  .case-item .case-content .case-icon img {
    width: 35px;
  }
}
.case-item .arrow-btn {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #E8EFFF;
  color: var(--bd-primary);
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  border: 0;
}
.case-item .arrow-btn:hover i {
  transform: rotate(0);
}
.case-item .arrow-btn i {
  transform: rotate(-45deg);
  transition: 0.3s;
}

.case-title {
  font-size: 20px;
}
@media only screen and (min-width: 576px) {
  .case-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .case-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .case-title {
    font-size: 24px;
  }
}
.case-title a:hover {
  color: var(--bd-primary);
}

.case-item-two {
  background-color: #F4F4FE;
  transition: 0.3s;
}
.case-item-two:hover {
  background-color: var(--bd-primary);
}
.case-item-two:hover .case-title {
  color: var(--bd-white);
}
@media only screen and (min-width: 992px) {
  .case-item-two .case-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .case-item-two .case-title {
    font-size: 24px;
  }
}
.case-item-two .case-title a {
  background-image: linear-gradient(var(--bd-white), var(--bd-white)), linear-gradient(var(--bd-white), var(--bd-white));
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.case-item-two .case-title a:hover {
  background-size: 0 1px, 100% 1px;
  color: var(--bd-white);
}
.case-item-two .arrow-btn {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
@media only screen and (min-width: 992px) {
  .case-item-two .case-content {
    padding: 20px 0px;
    padding-top: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .case-item-two .case-content {
    padding: 40px;
    padding-top: 85px;
  }
}
.case-item-two .case-content .case-icon {
  background-color: var(--bd-white);
  top: -30px;
  height: 60px;
  width: 60px;
}
@media only screen and (min-width: 1200px) {
  .case-item-two .case-content .case-icon {
    top: -50px;
    height: 100px;
    width: 100px;
  }
}
.case-item-two .case-content .case-icon img {
  width: 25px;
}
@media only screen and (min-width: 1200px) {
  .case-item-two .case-content .case-icon img {
    width: 35px;
  }
}

/*# sourceMappingURL=main.css.map */
