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

    Template Name: Incorza Modern Startup HTML Template
    Author: ThemeArray
    Support: themearray@gmail.com
    Description: Modern Startup 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 Contact css
		8.4 Counter css
		8.5 Provide css
		8.6 Service css
		8.7 Team css
		8.8 Testimonial css


/*----------------------------------------*/
/*  1.1 Theme Default
/*----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&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: "Instrument Sans", sans-serif;
  --bd-ff-heading: "Instrument Sans", sans-serif;
  --bd-ff-fontawesome: "Font Awesome 6 Pro";
  --bd-ff-icomoon: "icomoon";
  /**
  @color declaration
  */
  --bd-white: #FFFFFF;
  --bd-black: #000000;
  --bd-placeholder: #828282;
  --bd-selection: #262626;
  --bd-gray: #828282;
  --bd-text-body: #555555;
  --bd-heading: #0D173F;
  --bd-primary: #1F503B;
  --bd-secondary: #EDFC65;
  --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: 24px;
  font-weight: 500;
}
@media only screen and (min-width: 576px) {
  .section-title {
    font-size: 30px;
  }
}
@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);
  }
}
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;
}

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

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: 80px 0;
}
@media only screen and (min-width: 992px) {
  .section-space {
    padding: 100px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .section-space {
    padding: 140px 0;
  }
}

.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: 18px;
  font-weight: 400;
  color: var(--bd-black);
  line-height: 1.5;
  font-family: var(--bd-ff-body);
}

p {
  font-size: 16px;
  font-weight: 400;
  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: 400;
  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: var(--bd-primary) #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-white);
  background-color: var(--bd-primary);
  font-size: 16px;
}
.offcanvas-contact .share-link ul li a:hover {
  color: var(--bd-secondary);
}

/*----------------------------------------*/
/*  3.2 page-title css
/*----------------------------------------*/
.page-title-area {
  padding-top: 85px;
}
@media only screen and (min-width: 576px) {
  .page-title-area {
    padding-top: 100px;
  }
}

.page-title-wrapper {
  position: relative;
  padding: 80px 40px 100px;
  z-index: 1;
  background-color: #F3F3F3;
  margin: 0 20px;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (min-width: 576px) {
  .page-title-wrapper {
    padding: 100px 40px 120px;
  }
}
@media only screen and (min-width: 768px) {
  .page-title-wrapper {
    padding: 100px 50px 140px;
  }
}
@media only screen and (min-width: 992px) {
  .page-title-wrapper {
    padding: 100px 50px 270px;
  }
}
.page-title-wrapper::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  background: linear-gradient(13.28deg, #EDFC65 -0.04%, rgba(255, 255, 255, 0) 27.29%);
}

.page-title {
  font-size: 30px;
  margin-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  .page-title {
    font-size: 35px;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .page-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .page-title {
    font-size: 50px;
  }
}

.breadcrumb {
  gap: 25px;
}

.breadcrumb-item {
  font-size: 16px;
  font-weight: 400;
  position: relative;
  color: var(--bd-text-body);
}
@media only screen and (min-width: 576px) {
  .breadcrumb-item {
    font-size: 17px;
  }
}
.breadcrumb-item::before {
  display: none;
}
.breadcrumb-item:first-child::after {
  display: none;
}
.breadcrumb-item::after {
  position: absolute;
  content: "\f105";
  font-family: var(--bd-ff-fontawesome);
  left: -14px;
  top: 1px;
}
.breadcrumb-item a:hover {
  color: var(--bd-black);
}
.breadcrumb-item::before {
  color: var(--bd-white) !important;
}

.breadcrumb-item.active {
  color: var(--bd-black);
}

/*----------------------------------------
   3.3  button css
-----------------------------------------*/
.theme-btn {
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-black);
  color: var(--bd-primary);
  border-radius: 24px;
  padding: 12px 25px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.theme-btn span {
  position: relative;
  z-index: 1;
}
.theme-btn::before {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  background-color: var(--bd-secondary);
  transition: 0.5s ease;
  top: -16px;
  left: -16px;
}
.theme-btn::after {
  content: "";
  display: block;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  position: absolute;
  border-radius: 50%;
  z-index: -1;
  background-color: var(--bd-secondary);
  transition: 0.5s ease;
  left: calc(100% + 1em);
  top: calc(100% + 1em);
}
.theme-btn:hover {
  color: var(--bd-white);
}
.theme-btn:hover::before {
  height: 10px;
  width: 10px;
}
.theme-btn:hover::after {
  height: 10px;
  width: 10px;
}

.primary-btn {
  background-color: var(--bd-secondary);
  color: var(--bd-primary);
  border-color: green;
  padding: 12px 40px;
  border-radius: 60px;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  position: relative;
  z-index: 5;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--bd-fw-medium);
}
.primary-btn:hover {
  color: var(--bd-white);
  background-color: var(--bd-primary);
}
.primary-btn:hover .arrow-right {
  left: 25px;
}
.primary-btn:hover .bd-primary-btn-text {
  transform: translateX(12px);
}
.primary-btn:hover .bd-primary-btn-circle {
  width: 220px;
  height: 220px;
  opacity: 1;
  z-index: -1;
}
.primary-btn:hover .arrow-left {
  right: -25%;
}
.primary-btn .arrow-right {
  left: -25%;
  position: absolute;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.primary-btn .bd-primary-btn-text {
  position: relative;
  z-index: 1;
  transform: translateX(-12px);
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.primary-btn .bd-primary-btn-circle {
  background-color: var(--bd-primary);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.primary-btn .arrow-left {
  right: 26px;
  position: absolute;
  z-index: 9;
  transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/*----------------------------------------*/
/*  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: 9px;
  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;
  background-color: var(--bd-white);
}
@media only screen and (min-width: 992px) {
  .pagination-wrapper .pagination .page-link {
    height: 50px;
    width: 50px;
  }
}
.pagination-wrapper .pagination .page-link:focus {
  box-shadow: none;
}
.pagination-wrapper .pagination .page-link:hover {
  background: var(--bd-primary);
  color: var(--bd-secondary);
}
.pagination-wrapper .pagination .active {
  background: var(--bd-primary);
  color: var(--bd-secondary);
}

/* 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: 20px;
  width: 100%;
  z-index: 2;
}
@media only screen and (min-width: 768px) {
  .header-area {
    top: 25px;
  }
}
@media only screen and (min-width: 992px) {
  .header-area {
    top: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .header-area {
    top: 25px;
  }
}

.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-left {
  display: flex;
  gap: 80px;
  align-items: center;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media only screen and (min-width: 992px) {
  .header-right {
    gap: 30px;
  }
}
.header-right .theme-btn {
  background-color: var(--bd-secondary);
  color: var(--bd-white);
}
.header-right .theme-btn:hover {
  color: var(--bd-primary);
}
.header-right .theme-btn::before, .header-right .theme-btn::after {
  background-color: var(--bd-primary);
}

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

/* Hero CSS */
/*----------------------------------------*/
/*  7.1 Hero Style 1
/*----------------------------------------*/
.hero-area {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 20px;
  padding-top: 85px;
  gap: 15px;
}
@media only screen and (min-width: 992px) {
  .hero-area {
    grid-template-columns: 500px 1fr;
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-area {
    grid-template-columns: 580px 1fr;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-area {
    grid-template-columns: 845px 1fr;
  }
}

.hero-left {
  background-color: #1F503B;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .hero-left {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-left {
    gap: 100px;
    padding: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-left {
    padding: 50px 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-left {
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-left {
    gap: 430px;
  }
}
.hero-left::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  bottom: 0;
  z-index: -1;
  background: linear-gradient(360deg, rgba(237, 252, 101, 0.5) 0%, rgba(255, 255, 255, 0) 40%);
}
.hero-left .bg-single {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(30px);
  z-index: -1;
}
.hero-left .bg-single:nth-child(2) {
  left: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(25px);
}
.hero-left .bg-single:nth-child(3) {
  left: 120px;
  background-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(25px);
}
.hero-left .bg-single:nth-child(4) {
  left: 180px;
  background-color: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(13px);
}

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

.hero-right {
  background: center/cover no-repeat;
  overflow: hidden;
  border-radius: 20px;
  position: relative;
}
.hero-right .hero-count {
  position: absolute;
  left: 15px;
  bottom: 15px;
}
@media only screen and (min-width: 1600px) {
  .hero-right .hero-count {
    left: 60px;
    top: 310px;
    bottom: inherit;
  }
}

.hero-content {
  max-width: 505px;
}
.hero-content p {
  font-size: 16px;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .hero-content p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-content p {
    font-size: 20px;
  }
}

.hero-title {
  font-size: 28px;
}
@media only screen and (min-width: 576px) {
  .hero-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-title {
    font-size: 50px;
  }
}

.hero-img {
  text-align: end;
}

.hero-count {
  max-width: 200px;
  padding: 15px;
  border-radius: 7px;
  background-color: var(--bd-white);
  box-shadow: 0px 10px 20px 20px rgba(0, 0, 0, 0.0509803922);
}
@media only screen and (min-width: 576px) {
  .hero-count {
    max-width: 290px;
    padding: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-count {
    max-width: 200px;
    padding: 15px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-count {
    max-width: 200px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-count {
    max-width: 290px;
    padding: 50px;
  }
}
.hero-count h3 {
  font-size: 50px;
  font-weight: 600;
  display: flex;
  text-shadow: 1px 0 0 var(--bd-primary), 0 1px 0 var(--bd-primary), -1px 0 0 var(--bd-primary), 0 -1px 0 var(--bd-primary);
  color: var(--bd-white);
}
.hero-count h3 span {
  font-size: 50px;
  text-shadow: 1px 0 0 var(--bd-primary), 0 1px 0 var(--bd-primary), -1px 0 0 blackvar(--bd-primary), 0 -1px 0 var(--bd-primary);
  color: var(--bd-white);
}
@media only screen and (min-width: 768px) {
  .hero-count h3 span {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-count h3 span {
    font-size: 90px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-count h3 span {
    font-size: 120px;
  }
}
.hero-count p {
  font-size: 16px;
  color: var(--bd-primary);
  margin-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .hero-count p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-count p {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-count p {
    font-size: 20px;
  }
}

/*----------------------------------------*/
/*  7.2 Hero Style 2
/*----------------------------------------*/
.hero-style-two {
  margin: 0 20px;
  padding-top: 85px;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .hero-style-two {
    grid-template-columns: 500px 1fr;
    gap: 0;
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-style-two {
    grid-template-columns: 600px 1fr;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-style-two {
    grid-template-columns: 800px 1fr;
    gap: 0;
    padding-top: 100px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-style-two {
    grid-template-columns: 1000px 1fr;
    gap: 0;
    padding-top: 100px;
  }
}
.hero-style-two::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: linear-gradient(49.28deg, #EDFC65 0.96%, rgba(255, 255, 255, 0) 25.78%);
}

.hero-two-left {
  padding: 30px;
  background-color: #F3F3F3;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .hero-two-left {
    padding: 50px;
    padding-right: 140px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-two-left {
    padding: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-two-left {
    padding: 50px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-two-left {
    padding: 50px;
    padding-right: 140px;
  }
}
.hero-two-left::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  right: -100px;
  top: 0;
  background-color: #F3F3F3;
  z-index: -1;
}
.hero-two-left .hero-title {
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) {
  .hero-two-left .hero-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-two-left .hero-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-two-left .hero-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-two-left .hero-title {
    font-size: 46px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-two-left .hero-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-two-left .hero-title {
    font-size: 70px;
  }
}

.hero-bottom {
  display: flex;
  gap: 60px;
  flex-direction: column-reverse;
  margin-bottom: 60px;
}
@media only screen and (min-width: 1200px) {
  .hero-bottom {
    flex-direction: inherit;
    max-width: 530px;
    margin-bottom: 170px;
  }
}
.hero-bottom .arrow-top {
  flex: 0 0 auto;
}
.hero-bottom p {
  font-size: 16px;
  color: var(--bd-black);
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  .hero-bottom p {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-bottom p {
    font-size: 20px;
  }
}

@media only screen and (min-width: 1600px) {
  .bottom-main-wrapper {
    padding-left: 60px;
  }
}

.hero-brand-wrapper {
  margin-bottom: 30px;
  max-width: 250px;
  margin: auto;
}
@media only screen and (min-width: 576px) {
  .hero-brand-wrapper {
    max-width: 445px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-brand-wrapper {
    max-width: 600px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-brand-wrapper {
    max-width: 100%;
  }
}
.hero-brand-wrapper p {
  font-size: 18px;
  font-weight: 500;
  color: var(--bd-black);
}

.hero-two-right {
  background: center/cover no-repeat;
  overflow: hidden;
  border-radius: 20px;
  padding: 40px 20px;
}
@media only screen and (min-width: 768px) {
  .hero-two-right {
    padding: 70px 0;
  }
}
@media only screen and (min-width: 992px) {
  .hero-two-right {
    padding: 40px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-two-right {
    padding: 70px 0;
  }
}

.cta-box {
  max-width: 530px;
  background-color: var(--bd-white);
  border-radius: 11px;
  padding: 30px 20px;
  margin: auto;
}
@media only screen and (min-width: 576px) {
  .cta-box {
    padding: 50px 40px;
  }
}
.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;
}
@media (max-width: 575px) {
  .cta-box .cta-input-field input {
    height: 50px;
  }
}
.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: 400;
  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-secondary);
  color: var(--bd-primary);
  border: 1px solid transparent;
}
@media (max-width: 575px) {
  .cta-btn button {
    padding: 12px 30px;
  }
}
.cta-btn button:hover {
  background-color: var(--bd-white);
  border-color: var(--bd-primary);
  color: var(--bd-primary);
}

/*----------------------------------------*/
/*  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: #000000;
  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);
}

/*----------------------------------------*/
/*  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;
  background: linear-gradient(180.42deg, #1F503B 52.05%, #EDFC65 136.2%);
  overflow: hidden;
  border-radius: 20px;
}
@media only screen and (min-width: 576px) {
  .footer-area {
    margin: 0 20px;
  }
}

@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-secondary);
}
.footer-contact ul li a span {
  margin-right: 10px;
}

.social-icon ul {
  display: flex;
  gap: 10px;
  align-items: center;
}
.social-icon 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;
}
.social-icon 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 rgba(255, 255, 255, 0.1490196078);
  flex-direction: column;
  gap: 15px;
}
@media only screen and (min-width: 992px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .footer-bottom {
    margin-bottom: 80px;
  }
}

.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 {
  position: relative;
}
.copyright-text p a:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.copyright-text p a::before {
  position: absolute;
  content: "";
  background-color: var(--bd-white);
  height: 1px;
  bottom: 0;
  left: auto;
  right: 0;
  transition: 0.3s;
  width: 0;
}

/*----------------------------------------*/
/*  8.1 About css
/*----------------------------------------*/
.about-thumb {
  overflow: hidden;
  border-radius: 11px;
}
.about-thumb img {
  width: 100%;
}

.about-content p {
  font-size: 18px;
}

@media only screen and (min-width: 992px) {
  .about-left {
    text-align: center;
  }
}

.about-wrapper .about-thumb {
  margin-bottom: 40px;
}

.about-right .section-title {
  margin-bottom: 60px;
}

.about-style-two {
  max-width: 1720px;
  margin: auto;
  border-radius: 20px;
  background: linear-gradient(101.88deg, #1F503B 71.66%, #EDFC65 98.3%);
}

@media only screen and (min-width: 1400px) {
  .about-two-content {
    padding-right: 100px;
  }
}
.about-two-content p {
  color: var(--bd-white);
}

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

.arrow-btn {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd-primary);
  color: var(--bd-primary);
  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-white);
  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 var(--bd-primary);
}
.about-single:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: 0;
}
.about-single h6 {
  font-size: 18px;
  color: var(--bd-primary);
}
.about-single .icon {
  height: 50px;
  width: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  background-color: var(--bd-primary);
}
.about-single .icon img {
  width: 20px;
}

.about-two-thumb {
  overflow: hidden;
  border-radius: 11px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .about-two-thumb {
    max-width: 480px;
    margin: auto;
  }
}
@media only screen and (min-width: 992px) {
  .about-two-thumb {
    margin-left: 50px;
  }
}
.about-two-thumb::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 37.03%, #1F503B 100%);
}

.feature-work-area {
  max-width: 1720px;
  margin: auto;
}

.feature-work-top {
  margin-bottom: 30px;
}
@media only screen and (min-width: 1400px) {
  .feature-work-top {
    margin-bottom: 80px;
  }
}

.work-title {
  font-size: 50px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .work-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 992px) {
  .work-title {
    font-size: 110px;
  }
}
@media only screen and (min-width: 1200px) {
  .work-title {
    font-size: 120px;
  }
}
@media only screen and (min-width: 1400px) {
  .work-title {
    font-size: 285px;
  }
}

.feature-work-thumb {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin: 0 20px;
}
@media only screen and (min-width: 576px) {
  .feature-work-thumb {
    gap: 40px 20px;
  }
}
@media only screen and (min-width: 768px) {
  .feature-work-thumb {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .feature-work-thumb {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media only screen and (min-width: 1600px) {
  .feature-work-thumb {
    margin: 0;
  }
}

.work-thumb {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .work-thumb {
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .work-thumb {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .work-thumb {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 576px) {
  .feature-work-single {
    max-width: 480px;
    margin: auto;
  }
}
@media only screen and (min-width: 768px) {
  .feature-work-single {
    max-width: 100%;
    margin: auto;
  }
}
.feature-work-single:hover .work-thumb img {
  transform: scale(1.05);
}

.category-wrapper {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) {
  .category-wrapper {
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .category-wrapper {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .category-wrapper {
    margin-bottom: 20px;
  }
}
.category-wrapper .category {
  padding: 4px 15px;
  background-color: #F0F0F0;
  border-radius: 17px;
  font-size: 12px;
}
@media only screen and (min-width: 576px) {
  .category-wrapper .category {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .category-wrapper .category {
    font-size: 12px;
  }
}
@media only screen and (min-width: 992px) {
  .category-wrapper .category {
    font-size: 14px;
  }
}
@media only screen and (min-width: 1200px) {
  .category-wrapper .category {
    font-size: 12px;
  }
}
@media only screen and (min-width: 1400px) {
  .category-wrapper .category {
    font-size: 14px;
  }
}
.category-wrapper .category:hover {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}

.work-content h5 {
  font-size: 20px;
}
@media only screen and (min-width: 576px) {
  .work-content h5 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 768px) {
  .work-content h5 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .work-content h5 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1200px) {
  .work-content h5 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1400px) {
  .work-content h5 {
    font-size: 24px;
  }
}
.work-content h5 a:hover {
  color: var(--bd-primary);
}

/*----------------------------------------*/
/*  8.2 Blog css
/*----------------------------------------*/
.blog-top-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  .blog-top-content {
    align-items: start;
  }
}
@media only screen and (min-width: 768px) {
  .blog-top-content {
    flex-direction: row;
    margin-bottom: 80px;
  }
}
.blog-top-content .section-title {
  max-width: 280px;
}

.blog-item {
  background-color: var(--bd-primary);
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  z-index: 1;
}
.blog-item .blog-content {
  position: absolute;
  left: 15px;
  right: 15px;
  bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .blog-item .blog-content {
    left: 25px;
    right: 25px;
    bottom: 25px;
  }
}
.blog-item .shape-top {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.blog-item .shape-bottom {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.blog-item .blog-thumb {
  text-align: center;
}
.blog-item .shape-img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.blog-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bd-white);
  padding: 15px;
  border-radius: 11px;
}
@media only screen and (min-width: 576px) {
  .blog-content {
    padding: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .blog-content {
    padding: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .blog-content {
    padding: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .blog-content {
    padding: 30px;
  }
}
.blog-content .post-title {
  max-width: 420px;
  font-size: 18px;
}
@media only screen and (min-width: 576px) {
  .blog-content .post-title {
    font-size: 20px;
  }
}
.blog-content .post-title a:hover {
  color: var(--bd-primary);
}

.post-btn a {
  font-size: 24px;
}
.post-btn a:hover i {
  transform: rotate(0);
}
.post-btn a i {
  transform: rotate(-45deg);
  transition: 0.3s;
}

@media only screen and (min-width: 1200px) {
  .blog-right-wrapper {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .blog-right-wrapper {
    padding-right: 60px;
  }
}
.blog-right-wrapper .post-details-btn {
  margin-bottom: 60px;
}

.details-thumb {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  background-color: var(--bd-primary);
  z-index: 1;
  text-align: center;
}
.details-thumb .blog-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
}

.post-share ul {
  display: flex;
  gap: 15px;
}
.post-share ul li a {
  color: var(--bd-primary);
  font-size: 20px;
}

.single-post-tag .tagcloud a {
  background-color: inherit;
}
.single-post-tag .tagcloud a:hover {
  background-color: var(--bd-primary);
  color: var(--bd-white);
  border-color: var(--bd-primary);
}

.sidebar-widget .tagcloud {
  padding: 20px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 576px) {
  .sidebar-widget .tagcloud {
    padding: 30px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .sidebar-widget .tagcloud {
    padding: 20px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .sidebar-widget .tagcloud {
    padding: 30px;
    padding-bottom: 100px;
  }
}

.tagcloud {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.tagcloud a {
  font-size: 16px;
  color: var(--bd-primary);
  display: inline-block;
  padding: 7px 26px;
  background-color: var(--bd-white);
  border: 1px solid #CCDDDC;
  border-radius: 30px;
}
.tagcloud a:hover {
  border-color: var(--bd-primary);
  background-color: var(--bd-primary);
  color: var(--bd-white);
}

.single-post-tag {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid #CCDDDC;
  padding: 0 20px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) {
  .single-post-tag {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    padding: 0 35px;
    padding-bottom: 40px;
  }
}

.blog-comment-wrapper {
  padding: 40px 0;
  border: 1px solid #CCDDDC;
  border-radius: 21px;
}

.comment-thumb {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  overflow: hidden;
  flex: 0 0 auto;
}

.comment-single-inner {
  display: flex;
  gap: 25px;
  padding: 0 35px;
  margin-bottom: 60px;
  border-bottom: 1px solid #D7DEE5;
}
.comment-single-inner:first-child {
  margin-top: 60px;
}
@media (max-width: 575px) {
  .comment-single-inner {
    margin-bottom: 30px;
    gap: 20px;
    flex-direction: column;
    padding: 0 20px;
  }
}
.comment-single-inner.children {
  margin-bottom: 0;
}

.avata-details h6 {
  font-size: 20px;
  font-weight: 500;
  color: var(--bd-primary);
  margin-bottom: 3px;
}
.avata-details span {
  font-size: 16px;
  font-weight: 400;
  color: var(--bd-black);
}
.avata-details .comment-meta {
  margin-left: 10px;
}

.avata-content-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.reply-btn.collapsed {
  color: var(--bd-primary);
}

.reply-btn {
  color: var(--bd-primary);
  display: flex;
  gap: 5px;
  align-items: center;
}

.reply-box {
  margin-bottom: 40px;
}
.reply-box textarea {
  height: 120px;
  padding: 15px 20px;
  border-radius: 17px;
  background-color: #F3F3F3;
  resize: none;
}
.reply-box textarea:focus {
  border-color: var(--bd-primary);
}
.reply-box textarea::placeholder, .reply-box textarea::-moz-placeholder {
  color: var(--bd-text-body);
}
.reply-box .comment_post-btn {
  padding: 5px 17px;
  border-radius: 23px;
  margin-top: 10px;
  border: 1px solid #D7DEE5;
  color: var(--bd-primary);
}
@media (max-width: 575px) {
  .reply-box .comment_post-btn {
    font-size: 16px;
  }
}
.reply-box .comment_post-btn:hover {
  background-color: var(--bd-primary);
  border-color: var(--bd-primary);
  color: var(--bd-white);
}

.comment-avata-content p {
  font-size: 16px;
  color: var(--bd-black);
  margin-bottom: 40px;
}

.comment-title {
  font-size: 24px;
  font-weight: 500;
  color: var(--bd-primary);
  margin-bottom: 20px;
}

.comment-box {
  padding: 20px;
  border-radius: 17px;
  background-color: #F3F3F3;
}
@media only screen and (min-width: 576px) {
  .comment-box {
    padding: 40px;
  }
}

.comment-single-field {
  margin-bottom: 20px;
}
.comment-single-field input {
  height: 55px;
  border-radius: 17px;
  background-color: var(--bd-white);
  color: var(--bd-black);
}
.comment-single-field input::placeholder {
  font-size: 17px;
  color: var(--bd-black);
}
.comment-single-field input:-moz-placeholder {
  font-size: 17px;
  color: var(--bd-black);
}
.comment-single-field textarea {
  padding: 25px;
  height: 160px;
  border-radius: 17px;
  background-color: var(--bd-white);
  color: var(--bd-black);
}
.comment-single-field textarea::placeholder {
  font-size: 17px;
  color: var(--bd-black);
}
.comment-single-field textarea:-moz-placeholder {
  font-size: 17px;
  color: var(--bd-black);
}

.comment-wrapper {
  padding: 40px 20px;
}
@media only screen and (min-width: 576px) {
  .comment-wrapper {
    padding: 55px 30px;
  }
}

.comment-btn-two {
  width: 100%;
  padding: 13px 20px;
  border-radius: 27px;
  background-color: var(--bd-primary);
  color: var(--bd-secondary);
  border: 1px solid transparent;
}
@media (max-width: 575px) {
  .comment-btn-two {
    font-size: 16px;
  }
}
.comment-btn-two:hover {
  background-color: var(--bd-white);
  border-color: var(--bd-primary);
  color: var(--bd-primary);
}
.comment-btn-two span {
  margin-left: 10px;
}

.sidebar-serch {
  position: relative;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) {
  .sidebar-serch {
    margin-bottom: 40px;
  }
}
.sidebar-serch button {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--bd-black);
}
.sidebar-serch input {
  border-radius: 20px;
  height: 60px;
  color: var(--bd-black);
  padding: 0 30px;
  padding-right: 60px;
  background-color: #F3F3F3;
}
@media only screen and (min-width: 1200px) {
  .sidebar-serch input {
    height: 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .sidebar-serch input {
    height: 90px;
  }
}
.sidebar-serch input::placeholder {
  font-size: 17px;
  color: var(--bd-black);
}
.sidebar-serch input:-moz-placeholder {
  font-size: 17px;
  color: var(--bd-black);
}

.sidebar-author {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 50px;
}
.sidebar-author .author-thumb {
  height: 45px;
  width: 45px;
  border-radius: 50%;
  margin-bottom: 0;
  outline: 1px solid var(--bd-white);
}
.sidebar-author .author-thumb img {
  width: 100%;
  height: 100%;
}
.sidebar-author .name {
  font-size: 20px;
  color: var(--bd-white);
}
.sidebar-author .designation {
  color: #9BF3CD !important;
}

.author-thumb-wrapper {
  padding: 30px;
  background: linear-gradient(135deg, #1F503B 50%, #EDFC65 100%);
  border-radius: 20px;
}
.author-thumb-wrapper .social-icon {
  margin-bottom: 10px;
}

.author-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px;
}
@media only screen and (min-width: 576px) {
  .author-contact {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
}
@media only screen and (min-width: 1200px) {
  .author-contact {
    padding: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .author-contact {
    padding: 30px;
  }
}
.author-contact a {
  font-size: 16px;
  font-weight: 400;
}
.author-contact a:hover {
  color: var(--bd-primary);
}
.author-contact a span {
  color: var(--bd-primary);
  margin-right: 7px;
}

.categories-list {
  padding: 20px;
}
@media only screen and (min-width: 576px) {
  .categories-list {
    padding: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .categories-list {
    padding: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .categories-list {
    padding: 30px;
  }
}
.categories-list li {
  margin-bottom: 15px;
}
.categories-list li a {
  color: var(--bd-black);
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: var(--bd-white);
  border-radius: 7px;
}
.categories-list li a:hover {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
.categories-list li a:hover span {
  color: var(--bd-white);
}
.categories-list li a span {
  color: var(--bd-primary);
}

.recent-post-wrapper {
  padding: 20px;
}
@media only screen and (min-width: 576px) {
  .recent-post-wrapper {
    padding: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .recent-post-wrapper {
    padding: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .recent-post-wrapper {
    padding: 30px;
  }
}

.recent-single-inner {
  display: flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #E3E3E3;
}
@media only screen and (min-width: 576px) {
  .recent-single-inner {
    gap: 20px;
  }
}
@media only screen and (min-width: 992px) {
  .recent-single-inner {
    gap: 10px;
  }
}
@media only screen and (min-width: 1400px) {
  .recent-single-inner {
    gap: 20px;
  }
}
.recent-single-inner:last-child {
  border: 0;
}
.recent-single-inner .recent-thumb {
  border-radius: 7px;
  overflow: hidden;
  flex: 0 0 auto;
}

.recent-post-content h6 {
  font-size: 16px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .recent-post-content h6 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 992px) {
  .recent-post-content h6 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .recent-post-content h6 {
    font-size: 18px;
  }
}
.recent-post-content h6 a:hover {
  color: var(--bd-primary);
}

.recent-post-date {
  font-size: 14px;
  color: var(--bd-black);
}
.recent-post-date span {
  color: var(--bd-text-body);
  margin-right: 7px;
}

/*----------------------------------------*/
/*  8.3 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%;
}

.contact-service-top {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 60px;
  gap: 30px;
}
@media only screen and (min-width: 576px) {
  .contact-service-top {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .contact-service-top {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-bottom: 100px;
  }
}

.service-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}
.service-inner .service-icon {
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
@media only screen and (min-width: 768px) {
  .service-inner .service-icon {
    height: 60px;
    min-width: 60px;
  }
}
.service-inner .service-content h5 {
  margin-bottom: 5px;
  font-weight: 500;
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  .service-inner .service-content h5 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .service-inner .service-content h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .service-inner .service-content h5 {
    font-size: 24px;
  }
}
.service-inner .service-content a {
  color: #4D505B;
}
.service-inner .service-content a:hover {
  color: var(--bd-primary);
}
@media only screen and (min-width: 768px) {
  .service-inner .service-content a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-inner .service-content a {
    font-size: 16px;
  }
}
@media only screen and (min-width: 1400px) {
  .service-inner .service-content a {
    font-size: 18px;
  }
}

.comment-post-remember {
  padding-top: 10px;
}
.comment-post-remember input[type=checkbox] {
  display: none;
}
.comment-post-remember input[type=checkbox]:checked ~ label::before {
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  z-index: 5;
  border: 0;
  background-color: transparent;
}
.comment-post-remember input[type=checkbox]:checked ~ label::after {
  background-color: var(--bd-primary);
  border-color: var(--bd-primary) !important;
}
.comment-post-remember input[type=checkbox] ~ label {
  position: relative;
  font-size: 15px;
  color: #4D505B;
  padding-left: 25px;
}
.comment-post-remember input[type=checkbox] ~ label a {
  text-decoration: underline;
}
.comment-post-remember input[type=checkbox] ~ label::after, .comment-post-remember input[type=checkbox] ~ label::before {
  position: absolute;
  content: "";
  font-family: "Font Awesome 6 Pro";
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  border: 1px solid #D9D9D9;
  border-radius: 6px;
  transition: 0.2s;
}
.comment-post-remember input[type=checkbox] ~ label::before {
  width: 12px;
  height: 12px;
  color: #fff;
  left: 5px;
  top: 3px;
  font-size: 12px;
  right: 3px;
  bottom: 3px;
  content: "\f00c";
  font-family: "Font Awesome 6 Pro";
  transform: scale(0);
}
.comment-post-remember input[type=checkbox] ~ label:hover {
  cursor: pointer;
}

.comment-bottom {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 30px;
}
@media only screen and (min-width: 576px) {
  .comment-bottom {
    flex-direction: row;
  }
}

.contact-map {
  margin: 0 20px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 80px;
}
@media only screen and (min-width: 992px) {
  .contact-map {
    margin: 0 20px;
    margin-bottom: 100px;
  }
}
.contact-map iframe {
  width: 100%;
  height: 320px;
  position: relative;
  top: 7px;
  margin-top: -7px;
}
@media only screen and (min-width: 768px) {
  .contact-map iframe {
    height: 420px;
  }
}
@media only screen and (min-width: 992px) {
  .contact-map iframe {
    height: 520px;
  }
}
@media only screen and (min-width: 1400px) {
  .contact-map iframe {
    height: 620px;
  }
}

/*----------------------------------------*/
/*  8.4 Counter css
/*----------------------------------------*/
.counter-area {
  background: #1F503B;
  position: relative;
  z-index: 1;
  max-width: 1720px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
}
.counter-area .shape-top {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.counter-area .shape-bottom {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.counter-area .counter-left-content .section-title {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .counter-area .counter-left-content .section-title {
    margin-bottom: 150px;
  }
}
.counter-area .counter-left-content .section-text p {
  color: var(--bd-white);
  margin-bottom: 30px;
}
.counter-area .counter-left-content .primary-btn:hover .arrow-right {
  color: var(--bd-primary);
}
.counter-area .counter-left-content .primary-btn:hover .bd-primary-btn-text {
  color: var(--bd-primary);
}
.counter-area .counter-left-content .primary-btn:hover .bd-primary-btn-circle {
  background-color: var(--bd-white);
}

.counter-number {
  font-size: 40px;
  font-weight: 500;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .counter-number {
    font-size: 50px;
    text-align: end;
  }
}
@media only screen and (min-width: 768px) {
  .counter-number {
    font-size: 80px;
  }
}
@media only screen and (min-width: 1600px) {
  .counter-number {
    font-size: 120px;
  }
}

.counter-inner {
  padding: 25px 0;
}

.counter-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .counter-wrapper {
    margin-left: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .counter-wrapper {
    margin-left: 120px;
  }
}
.counter-wrapper::before, .counter-wrapper::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.07) 10%, rgba(255, 255, 255, 0.6) 47.12%, rgba(255, 255, 255, 0.07) 90%);
  z-index: 1;
}
.counter-wrapper::after {
  width: 100%;
  height: 1px;
  left: 0;
  transform: translateY(-50%) rotate(90deg);
  background: linear-gradient(270deg, rgba(255, 255, 255, 0.07) 10%, rgba(255, 255, 255, 0.6) 47.12%, rgba(255, 255, 255, 0.07) 90%);
}

.counter-inner p {
  font-size: 18px;
  color: var(--bd-white);
  max-width: 100px;
}
.counter-inner p span {
  transform: rotate(-45deg);
  display: inline-block;
}

/*----------------------------------------*/
/*  8.7 Project Details css
/*----------------------------------------*/
.project-area {
  background-color: var(--bd-primary);
  margin: 0 20px;
  border-radius: 0 0 20px 20px;
  position: relative;
  z-index: 1;
}
.project-area .border-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: -1;
}

.project-title {
  font-size: 30px;
  font-weight: 500;
  color: var(--bd-white);
  max-width: 530px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 576px) {
  .project-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 576px) {
  .project-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1200px) {
  .project-title {
    font-size: 60px;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 1400px) {
  .project-title {
    font-size: 80px;
  }
}
.project-title span {
  font-weight: 700;
}

.project-btn {
  text-align: end;
}
.project-btn a {
  font-size: 20px;
  color: var(--bd-white);
}
.project-btn a:hover i {
  transform: rotate(0);
}
.project-btn a i {
  transform: rotate(-45deg);
  transition: 0.3s;
}

.project-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 992px) {
  .project-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}

.project-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid #0D261B;
  padding: 15px;
}
@media only screen and (min-width: 576px) {
  .project-content {
    padding: 30px;
  }
}
@media only screen and (min-width: 992px) {
  .project-content {
    padding: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .project-content {
    padding: 30px;
  }
}
.project-content h5 {
  max-width: 170px;
  font-size: 16px;
}
@media only screen and (min-width: 576px) {
  .project-content h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .project-content h5 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .project-content h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .project-content h5 {
    font-size: 24px;
  }
}
.project-content h5 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;
}
.project-content h5 a:hover {
  background-size: 0 1px, 100% 1px;
}

.view-btn {
  text-align: center;
  margin-top: 50px;
}
@media only screen and (min-width: 1200px) {
  .view-btn {
    margin-top: 100px;
  }
}
.view-btn .primary-btn:hover .arrow-right {
  color: var(--bd-primary);
}
.view-btn .primary-btn:hover .bd-primary-btn-text {
  color: var(--bd-primary);
}
.view-btn .primary-btn:hover .bd-primary-btn-circle {
  background-color: var(--bd-white);
}

.project-thumb img {
  width: 100%;
}

.project-page {
  border-radius: 20px;
  margin: 80px 20px;
  overflow: hidden;
}
@media only screen and (min-width: 992px) {
  .project-page {
    margin: 100px 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .project-page {
    margin: 140px 20px;
  }
}
.project-page .border-shape {
  position: absolute;
  left: 0;
  top: -250px;
  width: 100%;
  z-index: -1;
}

@media only screen and (min-width: 1200px) {
  .project-details-left {
    padding-right: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .project-details-left {
    padding-right: 60px;
  }
}

.details-list {
  margin-bottom: 40px;
}
@media only screen and (min-width: 992px) {
  .details-list {
    margin-bottom: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .details-list {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1400px) {
  .details-list {
    margin-bottom: 100px;
  }
}
.details-list li {
  color: var(--bd-text-body);
  position: relative;
  padding-left: 25px;
  font-weight: 400;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .details-list li {
    font-size: 18px;
  }
}
.details-list li:not(:last-child) {
  margin-bottom: 15px;
}
.details-list li::before {
  position: absolute;
  left: 0px;
  top: 4px;
  height: 16px;
  width: 16px;
  font-size: 10px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-primary);
  color: var(--bd-white);
  content: "\f00c";
  font-family: var(--bd-ff-fontawesome);
}

.details-thumb {
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 40px;
}

.details-title {
  font-size: 24px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 576px) {
  .details-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .details-title {
    font-size: 35px;
    margin-bottom: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .details-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1400px) {
  .details-title {
    font-size: 48px;
  }
}

.details-single-thumb {
  border-radius: 20px;
  overflow: hidden;
}

.details-thumb-wrapper {
  margin-bottom: 50px;
}
@media only screen and (min-width: 1200px) {
  .details-thumb-wrapper {
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 1400px) {
  .details-thumb-wrapper {
    margin-bottom: 100px;
  }
}

.post-details-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
  border-top: 1px solid #D7DEE5;
  border-bottom: 1px solid #D7DEE5;
}
.post-details-btn .btn-arrow {
  font-size: 16px;
  font-weight: 400;
  color: var(--bd-text-body);
}
@media only screen and (min-width: 576px) {
  .post-details-btn .btn-arrow {
    font-size: 20px;
  }
}
.post-details-btn .btn-arrow a {
  display: flex;
  gap: 10px;
}
.post-details-btn .btn-arrow:hover {
  color: var(--bd-primary);
}
.post-details-btn .btn-arrow:hover span {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
.post-details-btn .btn-arrow span {
  display: inline-flex;
  height: 30px;
  text-align: center;
  width: 30px;
  border-radius: 50%;
  margin-right: 5px;
  background-color: #D9D9D9;
  color: var(--bd-primary);
  justify-content: center;
  align-items: center;
}
@media only screen and (min-width: 576px) {
  .post-details-btn .btn-arrow span {
    margin-right: 10px;
  }
}
.post-details-btn .btn-arrow span i {
  font-size: 16px;
}

.sidebar-widget {
  background-color: #F3F3F3;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 25px;
}
@media only screen and (min-width: 992px) {
  .sidebar-widget {
    margin-bottom: 40px;
  }
}

.sidebar-widget-title {
  font-size: 22px;
  padding: 20px 30px;
  color: var(--bd-white);
  background: linear-gradient(135deg, #1F503B 50%, #EDFC65 100%);
}
@media only screen and (min-width: 768px) {
  .sidebar-widget-title {
    font-size: 28px;
    padding: 26px 30px;
  }
}
@media only screen and (min-width: 992px) {
  .sidebar-widget-title {
    font-size: 22px;
    padding: 20px 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .sidebar-widget-title {
    font-size: 32px;
    padding: 26px 30px;
  }
}

.project-information {
  padding: 20px 30px 40px 30px;
}
.project-information li {
  font-weight: 400;
  color: #121212;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #D7DEE5;
}
.project-information li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: 0;
}
.project-information li span {
  color: var(--bd-text-body);
  margin-left: 10px;
}

.sidebar-banner {
  padding: 30px;
  padding-top: 80px;
  border-radius: 20px;
}
@media only screen and (min-width: 768px) {
  .sidebar-banner {
    padding: 55px;
    padding-top: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .sidebar-banner {
    padding: 30px;
    padding-top: 80px;
  }
}
@media only screen and (min-width: 1400px) {
  .sidebar-banner {
    padding: 55px;
    padding-top: 100px;
  }
}

.banner-content {
  text-align: center;
  backdrop-filter: blur(30px);
  background-color: rgba(255, 255, 255, 0.1);
  padding: 90px 30px 70px;
  border-radius: 11px;
}
@media only screen and (min-width: 768px) {
  .banner-content {
    padding: 120px 35px 70px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-content {
    padding: 90px 30px 70px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-content {
    padding: 120px 35px 70px;
  }
}
.banner-content p {
  color: var(--bd-white);
  font-size: 16px;
  margin-bottom: 40px;
}
.banner-content .banner-icon {
  position: absolute;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (min-width: 768px) {
  .banner-content .banner-icon {
    top: -55px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-content .banner-icon {
    top: -45px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-content .banner-icon {
    top: -55px;
  }
}

.sidebar-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .sidebar-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .sidebar-title {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1600px) {
  .sidebar-title {
    font-size: 26px;
  }
}

.banner-icon {
  height: 90px;
  width: 90px;
  border-radius: 50%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  background-color: var(--bd-secondary);
}
@media only screen and (min-width: 576px) {
  .banner-icon {
    height: 110px;
    width: 110px;
  }
}
@media only screen and (min-width: 992px) {
  .banner-icon {
    height: 90px;
    width: 90px;
  }
}
@media only screen and (min-width: 1400px) {
  .banner-icon {
    height: 110px;
    width: 110px;
  }
}

/*----------------------------------------*/
/*  8.6 Service css
/*----------------------------------------*/
.service-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) {
  .service-top {
    grid-template-columns: 425px 1fr;
    align-items: center;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-top {
    justify-items: end;
  }
}
.service-top .section-text {
  max-width: 495px;
}

.single-title {
  font-size: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .single-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) {
  .single-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) {
  .single-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .single-title {
    font-size: 26px;
  }
}
.single-title a:hover {
  color: var(--bd-primary);
}

.single-service {
  border-right: 1px solid #EBEBEB;
  padding-right: 20px;
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
}
@media (max-width: 575px) {
  .single-service {
    max-width: 380px;
    margin: auto;
    border: 0;
  }
}
@media only screen and (min-width: 768px) {
  .single-service {
    padding-right: 40px;
    text-align: start;
  }
}
@media only screen and (min-width: 992px) {
  .single-service {
    padding-right: 20px;
    text-align: start;
  }
}
@media only screen and (min-width: 1400px) {
  .single-service {
    padding-right: 40px;
    text-align: start;
  }
}
.single-service:hover {
  border-color: var(--bd-primary);
}
.single-service:hover .service-btn a span {
  opacity: 1;
  visibility: visible;
  margin-left: 0;
}
.single-service:hover .service-icon img {
  transform: rotateY(180deg);
}
@media only screen and (min-width: 992px) {
  .single-service:last-child {
    border: 0;
  }
}

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

.service-btn a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.service-btn a:hover {
  color: var(--bd-primary);
}
.service-btn a span {
  visibility: hidden;
  opacity: 0;
  transition: 0.3s;
  margin-left: -85px;
}

.service-item-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (min-width: 576px) {
  .service-item-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 992px) {
  .service-item-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .service-item-wrapper {
    gap: 60px;
  }
}

.text-slider-active .swiper-wrapper, .brand-slider-active .swiper-wrapper, .hero-brand-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.text-slider-active .swiper-slide, .brand-slider-active .swiper-slide, .hero-brand-slider .swiper-slide {
  width: auto;
}

.text-slider-item {
  display: flex;
  align-items: center;
}
.text-slider-item .title {
  color: var(--bd-white);
  font-size: 24px;
  font-weight: 500;
}
@media only screen and (min-width: 1200px) {
  .text-slider-item .title {
    font-size: 28px;
  }
}
@media only screen and (min-width: 1400px) {
  .text-slider-item .title {
    font-size: 36px;
  }
}
.text-slider-item .icon {
  margin: 0 20px;
  animation: spinner 15s linear infinite;
}

.text-slider {
  padding: 8px 0;
  background: linear-gradient(90deg, #1F503B 0%, #EDFC65 0%, #1F503B 30%, #1F503B 80%, #EDFC65 100%);
}
@media only screen and (min-width: 1400px) {
  .text-slider {
    padding: 25px;
  }
}

.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: 50px;
}
@media only screen and (min-width: 992px) {
  .feature-service-bottom {
    grid-template-columns: 1fr 540px;
    margin-bottom: 80px;
  }
}

.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 {
  background-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);
}
.feature-service-item:hover .feature-service-icon img {
  transform: rotateY(180deg);
}
@media (max-width: 575px) {
  .feature-service-item {
    max-width: 380px;
    margin: auto;
  }
}
@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;
}
@media only screen and (min-width: 1200px) {
  .feature-service-item p {
    padding-right: 20px;
    font-size: 18px;
  }
}
@media only screen and (min-width: 1400px) {
  .feature-service-item p {
    padding-right: 0px;
    font-size: 16px;
  }
}
@media only screen and (min-width: 1600px) {
  .feature-service-item p {
    padding-right: 20px;
    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: 190px;
    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-contact {
  background-color: var(--bd-primary);
  border-radius: 20px;
  max-width: 1720px;
  margin: auto;
  margin-bottom: 80px;
  position: relative;
}
@media only screen and (min-width: 992px) {
  .service-contact {
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-contact {
    margin-bottom: 140px;
  }
}
.service-contact .contact-shape {
  position: absolute;
  left: 0;
  top: 0;
  width: 120px;
}
@media only screen and (min-width: 768px) {
  .service-contact .contact-shape {
    width: 200px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-contact .contact-shape {
    width: initial;
  }
}
.service-contact .contact-shape-two {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 120px;
}
@media only screen and (min-width: 768px) {
  .service-contact .contact-shape-two {
    width: 200px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-contact .contact-shape-two {
    width: initial;
  }
}

.service-contact-text {
  max-width: 500px;
  margin: auto;
  text-align: center;
}
.service-contact-text h3 {
  font-size: 24px;
  margin-bottom: 40px;
  font-weight: 500;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .service-contact-text h3 {
    font-size: 28px;
  }
}
@media only screen and (min-width: 768px) {
  .service-contact-text h3 {
    font-size: 36px;
  }
}
.service-contact-text h3 span {
  font-style: italic;
  color: var(--bd-secondary);
}

.service-contact-btn .primary-btn:hover .arrow-right {
  color: var(--bd-primary);
}
.service-contact-btn .primary-btn:hover .bd-primary-btn-text {
  color: var(--bd-primary);
}
.service-contact-btn .primary-btn:hover .bd-primary-btn-circle {
  background-color: var(--bd-white);
}

/*----------------------------------------*/
/*  8.8 Testiomonial css
/*----------------------------------------*/
.quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 120px;
  width: 120px;
  flex: 0 0 auto;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.12);
}

.testimonial-area {
  position: relative;
  z-index: 1;
  margin: 0 20px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: center/cover no-repeat;
}
.testimonial-area::before {
  position: absolute;
  content: "";
  z-index: -1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(89.47deg, rgba(31, 80, 59, 0.6) 66.19%, rgba(237, 252, 101, 0.4) 99.55%);
}

.testimonial-wrapper {
  display: flex;
  gap: 30px;
  margin-bottom: 100px;
  flex-direction: column;
  align-items: center;
}
@media only screen and (min-width: 768px) {
  .testimonial-wrapper {
    flex-direction: row;
    gap: 50px;
    align-items: start;
    margin-bottom: 150px;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-wrapper {
    gap: 100px;
    margin-bottom: 300px;
  }
}

.testimonial-top {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3019607843);
}
@media only screen and (min-width: 576px) {
  .testimonial-top {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.testimonial-top .author-name {
  font-size: 24px;
  font-weight: 500;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .testimonial-top .author-name {
    font-size: 26px;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-top .author-name {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-top .author-name {
    font-size: 40px;
  }
}
.testimonial-top .designation {
  font-size: 18px;
  color: var(--bd-white);
}
@media only screen and (min-width: 1200px) {
  .testimonial-top .designation {
    font-size: 22px;
  }
}

.testimonial-content {
  max-width: 625px;
}
.testimonial-content p {
  font-size: 18px;
  font-style: italic;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .testimonial-content p {
    font-size: 22px;
  }
}

.ratting-wrapper {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ratting-wrapper span {
  color: var(--bd-white);
  display: inline-block;
  padding: 3px 9px;
  border-radius: 4px;
  background-color: var(--bd-black);
  height: fit-content;
}
.ratting-wrapper .ratting-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--bd-white);
}
@media only screen and (min-width: 992px) {
  .ratting-wrapper .ratting-text {
    font-size: 28px;
  }
}

@media only screen and (min-width: 768px) {
  .brand-slider-wrapper {
    padding-left: 170px;
  }
}
@media only screen and (min-width: 1200px) {
  .brand-slider-wrapper {
    padding-left: 220px;
  }
}

.testimonial-style-two {
  background-color: #151515;
  position: relative;
  z-index: 1;
  max-width: 1720px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
}
.testimonial-style-two::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(-125.94deg, rgba(31, 80, 59, 0) 82.16%, #EDFC65 115.18%);
  z-index: -1;
}

.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: #272727;
  margin: 0;
}
.testimonial_pagintion .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bd-secondary);
}

.testimonial-single-inner {
  position: relative;
  z-index: 1;
  background-color: #272727;
  padding: 40px 25px;
  border-radius: 15px;
}
@media only screen and (min-width: 576px) {
  .testimonial-single-inner {
    padding: 55px 70px 40px 40px;
  }
}
@media only screen and (min-width: 768px) {
  .testimonial-single-inner {
    padding: 40px 25px;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-single-inner {
    padding: 55px 70px 40px 40px;
  }
}
.testimonial-single-inner p {
  color: #A2A2A2;
}
.testimonial-single-inner .quote-gray {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

.author-thumb {
  margin-bottom: 20px;
  position: relative;
}
.author-thumb > img {
  height: 80px;
  width: 80px;
  border-radius: 50%;
}
.author-thumb .quote-small-icon {
  position: absolute;
  left: -14px;
  top: -14px;
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #151515;
  outline: 1px solid var(--bd-white);
}

.testimonial-title {
  font-size: 20px;
  color: var(--bd-white);
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .testimonial-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-title {
    font-size: 22px;
  }
}

.author-wrapper {
  display: flex;
  gap: 20px;
  align-items: center;
}

.author-details h6 {
  font-size: 18px;
  color: var(--bd-white);
}
.author-details .designation {
  font-size: 15px;
  color: #A2A2A2;
}

.author-ratting-wrapper {
  display: flex;
  gap: 5px;
  align-items: center;
}
.author-ratting-wrapper .ratting-icon {
  color: var(--bd-white);
  font-size: 14px;
}
.author-ratting-wrapper span {
  font-size: 14px;
  color: #A2A2A2;
  font-weight: 500;
}

/*----------------------------------------*/
/*  8.7 Team css
/*----------------------------------------*/
.team-area .section-title {
  margin-bottom: 20px;
}

.top-content {
  max-width: 415px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (min-width: 1200px) {
  .top-content {
    margin-bottom: 80px;
  }
}

.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: 11px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .team-thumb {
    margin-bottom: 25px;
  }
}
.team-thumb img {
  width: 100%;
}
.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(237, 252, 101, 0.1) 59.62%, #1F503B 100%);
}

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

.team-details-area .container {
  max-width: 1280px;
}

.team-details-wrapper {
  background-color: #F3F3F3;
  padding: 20px;
  border-radius: 20px;
}

.team-details-thumb {
  overflow: hidden;
  border-radius: 20px;
  position: relative;
  margin-bottom: 25px;
}
.team-details-thumb img {
  width: 100%;
}
.team-details-thumb::before {
  position: absolute;
  content: "";
  z-index: 1;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(237, 252, 101, 0.05) 60%, #1F503B 100%);
}

.thumb-content {
  text-align: center;
}
.thumb-content .designation {
  font-size: 16px;
  color: var(--bd-text-body);
  font-style: italic;
  margin-bottom: 10px;
}
.thumb-content h5 {
  font-size: 24px;
  font-weight: 500;
}
.thumb-content .social-icon {
  margin-top: 40px;
  margin-bottom: 30px;
}
.thumb-content .social-icon ul li a {
  background-color: transparent;
  border-color: #B7B7B7;
  color: var(--bd-primary);
}
.thumb-content .social-icon ul li a:hover {
  background-color: var(--bd-primary);
  border-color: var(--bd-primary);
  color: var(--bd-white);
}

@media only screen and (min-width: 992px) {
  .team-details-content {
    padding-left: 30px;
  }
}
@media only screen and (min-width: 1200px) {
  .team-details-content {
    padding-left: 60px;
  }
}
@media only screen and (min-width: 1400px) {
  .team-details-content {
    padding-left: 90px;
  }
}

.team-heading {
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .team-heading {
    margin-bottom: 30px;
  }
}
.team-heading .team-single-title {
  font-size: 28px;
  font-weight: 500;
}
@media only screen and (min-width: 768px) {
  .team-heading .team-single-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 992px) {
  .team-heading .team-single-title {
    font-size: 50px;
  }
}
.team-heading .designation {
  font-size: 20px;
  font-style: italic;
  margin-bottom: 5px;
}

.work-list {
  margin-bottom: 60px;
}
.work-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .work-list li {
    font-size: 18px;
  }
}
.work-list li:last-child {
  margin-bottom: 0;
}
.work-list li::before {
  position: absolute;
  left: 0px;
  top: 0px;
  color: var(--bd-primary);
  content: "\f00c";
  font-family: var(--bd-ff-fontawesome);
}

.skill-wrapper {
  margin-bottom: 60px;
}
.skill-wrapper h6 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}

.progress-item {
  margin-bottom: 20px;
}
.progress-item .title {
  font-size: 16px;
  display: block;
  margin-bottom: 7px;
}
.progress-item:last-child {
  margin-bottom: 0;
}

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

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

.progress-bg {
  height: 12px;
  padding: 2px 3px;
  background: var(--bd-primary);
  overflow: hidden;
  border-radius: 15px;
}

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

.team-info ul {
  column-count: 2;
  gap: 10px;
  counter-reset: table-content;
}
.team-info ul li {
  margin-bottom: 10px;
}
.team-info ul li a {
  color: var(--bd-text-body);
}
.team-info ul li a:hover {
  color: var(--bd-primary);
}
.team-info ul li a:hover .arrow-first {
  transform: rotate(-45deg) translate(40px);
}
.team-info ul li a:hover .arrow-second {
  transform: rotate(-45deg) translate(0px);
  color: var(--bd-primary);
}
.team-info ul li a span {
  position: relative;
  overflow: hidden;
  display: inline-flex;
}
.team-info ul li a span i {
  transform: rotate(-45deg);
  transition: 0.3s;
}
.team-info ul li a span i.arrow-second {
  position: absolute;
  transform: rotate(-45deg) translate(-40px);
  left: 0;
}

.team-info-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 25px;
}
@media only screen and (min-width: 768px) {
  .team-info-title {
    font-size: 24px;
  }
}

/*----------------------------------------*/
/*  8.5 Provide css
/*----------------------------------------*/
.provide-top {
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 50px;
  gap: 20px;
}
@media only screen and (min-width: 992px) {
  .provide-top {
    grid-template-columns: 600px 1fr;
    align-items: center;
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 1200px) {
  .provide-top {
    justify-items: end;
  }
}
.provide-top .section-text {
  max-width: 390px;
}
@media only screen and (min-width: 992px) {
  .provide-top .section-text {
    text-align: end;
  }
}

.provide-thumb-wrapper {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
  justify-content: start;
  flex-direction: column;
}
@media only screen and (min-width: 576px) {
  .provide-thumb-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media only screen and (min-width: 1200px) {
  .provide-thumb-wrapper {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: start;
  }
}

.provide-single {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  flex: 0 0 auto;
  width: 100%;
  height: fit-content;
}
@media only screen and (min-width: 576px) {
  .provide-single {
    width: 240px;
  }
}
@media only screen and (min-width: 768px) {
  .provide-single {
    width: 320px;
  }
}
@media only screen and (min-width: 992px) {
  .provide-single {
    width: 380px;
  }
}
@media only screen and (min-width: 1200px) {
  .provide-single:nth-child(2n+2) {
    margin-top: 80px;
  }
}
.provide-single:hover::before {
  height: 100%;
}
.provide-single:hover .provide-content {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
.provide-single::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) -0.53%, rgba(31, 80, 59, 0.9) 76.75%, #EDFC65 108.85%);
  transition: 0.3s;
}
.provide-single .provide-content {
  position: absolute;
  left: 30px;
  bottom: 0px;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}

.provide-content span {
  display: inline-block;
  font-size: 15px;
  position: relative;
  padding-left: 40px;
  color: var(--bd-white);
  margin-bottom: 10px;
}
.provide-content span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  height: 1px;
  width: 30px;
  background-color: var(--bd-white);
}

.provide-title {
  color: var(--bd-white);
  font-weight: 500;
  font-size: 22px;
}
@media only screen and (min-width: 576px) {
  .provide-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .provide-title {
    font-size: 24px;
  }
}

.business-area .section-title {
  max-width: 600px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) {
  .business-area .section-title {
    margin-bottom: 80px;
  }
}

.business-single-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-top: 1px solid #D7DEE5;
  flex-direction: column;
  gap: 20px;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .business-single-item {
    padding: 20px 15px;
    flex-direction: row;
    text-align: start;
  }
}
@media only screen and (min-width: 1200px) {
  .business-single-item {
    padding: 40px;
    flex-direction: row;
    text-align: start;
  }
}
.business-single-item:last-child {
  border-bottom: 1px solid #D7DEE5;
}
.business-single-item:hover .business-icon img {
  transform: rotateY(180deg);
}

.business-icon {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .business-icon {
    width: calc(23% - 65px);
  }
}

.business-title {
  width: 100%;
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .business-title {
    width: calc(35% - 65px);
  }
}
@media only screen and (min-width: 1200px) {
  .business-title {
    width: calc(45% - 65px);
    font-size: 32px;
  }
}
.business-title a:hover {
  color: var(--bd-primary);
}

.business-text {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .business-text {
    width: calc(55% - 65px);
  }
}
@media only screen and (min-width: 1200px) {
  .business-text {
    width: calc(45% - 65px);
  }
}
@media only screen and (min-width: 1400px) {
  .business-text {
    width: calc(33% - 65px);
  }
}
.business-text p {
  margin-bottom: 15px;
}
@media only screen and (min-width: 576px) {
  .business-text p {
    max-width: 230px;
    margin: auto;
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 992px) {
  .business-text p {
    max-width: 100%;
  }
}
.business-text ul {
  display: flex;
  gap: 15px;
  justify-content: center;
}
@media only screen and (min-width: 768px) {
  .business-text ul {
    justify-content: start;
  }
}
.business-text ul li {
  list-style: disc;
  margin-left: 17px;
}

.business-thumb {
  position: relative;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 20px;
}
.business-thumb::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(92.65deg, rgba(31, 80, 59, 0.2) 1.9%, rgba(237, 252, 101, 0.7) 97.42%);
}

.expert-area {
  max-width: 1750px;
  margin: 0 20px;
}
@media only screen and (min-width: 1600px) {
  .expert-area {
    margin: auto;
  }
}
.expert-area .section-title {
  max-width: 600px;
  margin: auto;
  text-align: center;
  margin-bottom: 50px;
}
@media only screen and (min-width: 1200px) {
  .expert-area .section-title {
    margin-bottom: 80px;
  }
}

.expert-main-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media only screen and (min-width: 576px) {
  .expert-main-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 25px;
  }
}
@media only screen and (min-width: 992px) {
  .expert-main-wrapper {
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
  }
}

@media (max-width: 575px) {
  .expert-single-item {
    max-width: 380px;
    margin: auto;
  }
}
.expert-single-item:hover .expert-thumb img {
  transform: scale(1.05);
}
.expert-single-item:hover .expert-arrow-btn {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
.expert-single-item:hover .expert-arrow-btn i {
  transform: rotate(0);
}

.expert-thumb {
  position: relative;
  margin-bottom: 20px;
  overflow: hidden;
}
.expert-thumb .expert-arrow-btn {
  font-size: 25px;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 80px;
  width: 80px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .expert-thumb .expert-arrow-btn {
    height: 60px;
    width: 60px;
  }
}
@media only screen and (min-width: 768px) {
  .expert-thumb .expert-arrow-btn {
    height: 80px;
    width: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .expert-thumb .expert-arrow-btn {
    height: 60px;
    width: 60px;
  }
}
@media only screen and (min-width: 1600px) {
  .expert-thumb .expert-arrow-btn {
    height: 80px;
    width: 80px;
  }
}
.expert-thumb .expert-arrow-btn i {
  transform: rotate(-45deg);
  transition: 0.3s;
}

.expert-content span {
  display: inline-block;
  font-size: 15px;
  position: relative;
  padding-left: 40px;
  color: var(--bd-text-body);
  margin-bottom: 10px;
}
.expert-content span::before {
  position: absolute;
  content: "";
  left: 0;
  top: 10px;
  height: 1px;
  width: 30px;
  background-color: var(--bd-text-body);
}
@media only screen and (min-width: 576px) {
  .expert-content h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .expert-content h5 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .expert-content h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .expert-content h5 {
    font-size: 24px;
  }
}
.expert-content h5 a:hover {
  color: var(--bd-primary);
}

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