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

    Template Name: Bizora Business Corporate HTML Template
    Author: ThemeArray
    Support: themearray@gmail.com
    Description: Business Corporate 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.2 Back to top
		3.3 page-title
		3.4 Button
		3.5 Modal
		3.6 Offcanvas
		3.7 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 Portfolio css
		8.5 Service css
		8.6 Team css
		8.7 Testimonial css


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

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

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

:root {
  /**
  @font family declaration
  */
  --bd-ff-body: "Plus Jakarta Sans", sans-serif;
  --bd-ff-heading: "Plus Jakarta Sans", sans-serif;
  --bd-ff-fontawesome: "Font Awesome 6 Pro";
  --bd-ff-icomoon: "icomoon";
  /**
  @color declaration
  */
  --bd-white: #FFFFFF;
  --bd-black: #0D173F;
  --bd-placeholder: #828282;
  --bd-selection: #262626;
  --bd-gray: #828282;
  --bd-text-body: #4D505B;
  --bd-heading: #0D173F;
  --bd-primary: #007BFF;
  /**
  @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
/*----------------------------------------*/
.sub-title {
  font-weight: 600;
  display: inline-block;
  position: relative;
  color: var(--bd-black);
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 15px;
}
@media only screen and (min-width: 576px) {
  .sub-title {
    font-size: 16px;
  }
}
.sub-title::before, .sub-title::after {
  position: absolute;
  content: "";
  left: 0;
  top: 4px;
  height: 15px;
  width: 2px;
  background-color: var(--bd-primary);
  transform: rotate(15deg);
}
.sub-title::after {
  left: 7px;
}

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

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

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

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

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    transform: rotateZ(360deg);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
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;
}

.header_absolute {
  position: absolute;
}

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

li {
  list-style: none;
}

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

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

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

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

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.g-40,
.gx-40 {
  --bs-gutter-x: 40px;
  --bs-gutter-x: 40px;
}
@media only screen and (min-width: 768px), only screen and (min-width: 576px), (max-width: 575px) {
  .g-40,
  .gx-40 {
    --bs-gutter-x: 30px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

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

.opacity-05 {
  opacity: 0.5;
}

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

.p-relative {
  position: relative;
}

.p-absolute {
  position: absolute;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

html {
  font-size: 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

.offcanvas_overlay.overlayopen {
  width: 100%;
}

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

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

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

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

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

/*----------------------------------------*/
/*  3.2 page-title css
/*----------------------------------------*/
.page-title-area {
  position: relative;
  padding-top: 130px;
  padding-bottom: 90px;
  z-index: 1;
  background-color: #F1F6FF;
}
@media only screen and (min-width: 576px) {
  .page-title-area {
    padding-top: 170px;
    padding-bottom: 140px;
  }
}
@media only screen and (min-width: 768px) {
  .page-title-area {
    padding-top: 200px;
  }
}
.page-title-area .page-title-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.about-page-title {
  padding-bottom: 140px;
}
@media only screen and (min-width: 576px) {
  .about-page-title {
    padding-top: 170px;
  }
}
@media only screen and (min-width: 992px) {
  .about-page-title {
    padding-top: 200px;
  }
}
@media only screen and (min-width: 1400px) {
  .about-page-title {
    padding-top: 240px;
  }
}
@media only screen and (min-width: 1600px) {
  .about-page-title {
    padding-top: 270px;
  }
}
@media only screen and (min-width: 768px) {
  .about-page-title .page-title-content {
    padding-bottom: 120px;
  }
}

.page-title-content {
  max-width: 630px;
  text-align: center;
  margin: auto;
}
.page-title-content span {
  display: inline-block;
  margin-bottom: 20px;
}
.page-title-content .page-title {
  font-size: 28px;
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) {
  .page-title-content .page-title {
    font-size: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .page-title-content .page-title {
    font-size: 40px;
    margin-bottom: 60px;
  }
}
@media only screen and (min-width: 992px) {
  .page-title-content .page-title {
    font-size: 50px;
  }
}
.page-title-content p {
  font-size: 16px;
  color: #4D505B;
  margin-bottom: 0;
}
@media only screen and (min-width: 576px) {
  .page-title-content p {
    font-size: 20px;
  }
}

.page-title-two {
  padding-top: 180px;
  padding-bottom: 120px;
  position: relative;
  background: center/cover no-repeat;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0% 100%);
  z-index: 1;
}
@media only screen and (min-width: 576px) {
  .page-title-two {
    padding-bottom: 130px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  }
}
@media only screen and (min-width: 768px) {
  .page-title-two {
    padding-bottom: 150px;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
  }
}
@media only screen and (min-width: 992px) {
  .page-title-two {
    padding-top: 260px;
    padding-bottom: 200px;
  }
}
@media only screen and (min-width: 1600px) {
  .page-title-two {
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  }
}
.page-title-two::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #001225;
  opacity: 0.85;
  z-index: -1;
}
.page-title-two .page-title-content span {
  color: var(--bd-white);
}
.page-title-two .page-title-content .page-title {
  color: var(--bd-white);
}
.page-title-two .page-title-content p {
  color: var(--bd-white);
}

.contact-page-title-bg {
  padding-top: 190px;
  padding-bottom: 90px;
  position: relative;
  z-index: 1;
  background: center/cover no-repeat;
}
@media only screen and (min-width: 768px) {
  .contact-page-title-bg {
    padding-top: 250px;
    padding-bottom: 140px;
  }
}
.contact-page-title-bg::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: #001225;
  opacity: 0.85;
  z-index: -1;
}
.contact-page-title-bg .page-title-content span {
  color: var(--bd-white);
}
.contact-page-title-bg .page-title-content .page-title {
  color: var(--bd-white);
}
.contact-page-title-bg .page-title-content p {
  color: var(--bd-white);
}

/*----------------------------------------
   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-white);
  border-radius: 24px;
  padding: 12px 25px;
  letter-spacing: 1px;
  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-primary);
  transition: 0.5s ease;
  top: -1em;
  left: -1em;
}
.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-primary);
  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;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.header-contact {
  padding-left: 30px;
  position: relative;
  display: flex;
  align-items: center;
  display: none;
  gap: 10px;
}
@media only screen and (min-width: 576px) {
  .header-contact {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .header-contact {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .header-contact {
    display: block;
  }
}
.header-contact::before {
  position: absolute;
  content: "";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 1px;
  background-color: #DBDBDB;
}
.header-contact a {
  font-size: 17px;
}
.header-contact a:hover {
  color: var(--bd-primary);
}

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

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

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

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

.main-header {
  padding: 10px 20px;
  background: var(--bd-white);
  border-radius: 0px 0px 10px 10px;
  position: relative;
  overflow: hidden;
}
@media only screen and (min-width: 576px) {
  .main-header {
    padding: 22px 40px;
  }
}
@media only screen and (min-width: 992px) {
  .main-header {
    overflow: visible;
  }
}
.main-header::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.45);
  bottom: -8px;
  left: 0;
  z-index: -1;
  border-radius: 0px 0px 10px 10px;
}

.header-style-three .main-menu {
  display: none;
}
@media only screen and (min-width: 992px) {
  .header-style-three .main-menu {
    display: block;
  }
}

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

/*----------------------------------------*/
/*  4.2 Header Style 2
/*----------------------------------------*/
.header-style-two {
  top: 30px;
}
.header-style-two .main-header {
  border: 1px solid #C7D7FB;
  border-radius: 13px;
  padding: 12px 30px;
}
.header-style-two .main-header::before {
  display: none;
}
.header-style-two .header-contact {
  display: none;
}
@media only screen and (min-width: 1600px) {
  .header-style-two .header-contact {
    display: block;
  }
}
.header-style-two .sticky {
  padding: 4px 0;
}
.header-style-two .sticky .main-header {
  border: 0;
}

.header-style-three {
  top: 30px;
}
.header-style-three .main-header {
  background-color: transparent;
  border: 1px solid #3E4956;
  border-radius: 13px;
  padding: 12px 30px;
}
.header-style-three .main-header::before {
  display: none;
}
.header-style-three .main-menu ul li a {
  color: var(--bd-white);
}
.header-style-three .header-contact {
  display: none;
}
@media only screen and (min-width: 1400px) {
  .header-style-three .header-contact {
    display: block;
  }
}
.header-style-three .header-contact a {
  color: var(--bd-white);
}
.header-style-three .sticky {
  padding: 4px 0;
}
.header-style-three .sticky .main-header {
  background-color: transparent;
  border: 1px solid #3E4956;
  border-radius: 13px;
  padding: 12px 30px;
}
.header-style-three .sticky .main-header::before {
  display: none;
}
.header-style-three .sticky .logo-white {
  display: none;
}
.header-style-three .sticky .logo-black {
  display: block;
}
.header-style-three .sticky .main-menu ul li a {
  color: var(--bd-black);
}
.header-style-three .sticky .header-contact {
  display: none;
}
@media only screen and (min-width: 1400px) {
  .header-style-three .sticky .header-contact {
    display: block;
  }
}
.header-style-three .sticky .header-contact a {
  color: var(--bd-black);
}

.logo-black {
  display: none;
}

/* Hero CSS */
/*----------------------------------------*/
/*  7.1 Hero Style 1
/*----------------------------------------*/
.hero-area {
  position: relative;
  padding-top: 110px;
  padding-bottom: 80px;
}
@media only screen and (min-width: 576px) {
  .hero-area {
    padding-top: 170px;
    padding-bottom: 80px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-area {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-area {
    padding-top: 230px;
    padding-bottom: 200px;
  }
}
.hero-area .gradient-shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.hero-area .bg-img {
  right: 0;
  top: 0;
  border-radius: 0px 0px 60px 0px;
  overflow: hidden;
  height: 400px;
  width: 100%;
  background: top/cover no-repeat;
}
@media only screen and (min-width: 768px) {
  .hero-area .bg-img {
    height: 600px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-area .bg-img {
    position: absolute;
    height: 100%;
    width: 47%;
  }
}
.hero-area .bg-img .bg-single {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60px;
  background-color: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(30px);
}
.hero-area .bg-img .bg-single:nth-child(2) {
  right: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(25px);
}
.hero-area .bg-img .bg-single:nth-child(3) {
  right: 120px;
  background-color: rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(25px);
}
.hero-area .bg-img .bg-single:nth-child(4) {
  right: 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: block;
  }
}

@media only screen and (min-width: 768px) {
  .hero-bottom {
    padding-left: 160px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-bottom {
    padding-left: 0px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-bottom {
    padding-left: 130px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-bottom {
    padding-left: 200px;
  }
}

.hero-content {
  position: relative;
}
.hero-content .hero-sub-title {
  font-size: 16px;
  position: relative;
  display: inline-block;
  padding-left: 70px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .hero-content .hero-sub-title {
    font-size: 20px;
    padding-left: 120px;
  }
}
.hero-content .hero-sub-title::before {
  position: absolute;
  content: "";
  background-color: var(--bd-primary);
  height: 1px;
  width: 50px;
  left: 0;
  top: 14px;
}
@media only screen and (min-width: 576px) {
  .hero-content .hero-sub-title::before {
    width: 90px;
    top: 17px;
  }
}
.hero-content p {
  font-size: 18px;
  color: #4D505B;
}
.hero-content .arrow-top {
  width: 100px;
  margin-top: 30px;
}
@media only screen and (min-width: 768px) {
  .hero-content .arrow-top {
    position: absolute;
    bottom: 0px;
    left: -30px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-content .arrow-top {
    display: none;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-content .arrow-top {
    display: block;
    bottom: -20px;
  }
}

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

/*----------------------------------------*/
/*  7.2 Hero Style 2
/*----------------------------------------*/
.hero-style-two {
  position: relative;
  padding-top: 150px;
  padding-bottom: 100px;
}
@media only screen and (min-width: 768px) {
  .hero-style-two {
    padding-top: 170px;
    padding-bottom: 150px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-style-two {
    padding-top: 200px;
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-style-two {
    padding-top: 170px;
    padding-bottom: 150px;
  }
}
.hero-style-two .hero-shape {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  z-index: -1;
}

.hero-title-wraaper {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .hero-title-wraaper {
    margin-bottom: 80px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-title-wraaper {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-title-wraaper {
    margin-bottom: 80px;
  }
}

.hero-two-content {
  position: relative;
}
.hero-two-content .hero-sub-title {
  font-size: 20px;
}
@media only screen and (min-width: 768px) {
  .hero-two-content .hero-bottom {
    padding-left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-two-content .hero-bottom {
    padding-left: 150px;
    padding-right: 100px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-two-content .hero-bottom {
    padding-left: 335px;
  }
}
.hero-two-content .arrow-bottom {
  position: absolute;
  bottom: 70px;
  left: 0;
  display: none;
}
@media only screen and (min-width: 1200px) {
  .hero-two-content .arrow-bottom {
    display: block;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-two-content .arrow-bottom {
    display: block;
    left: 180px;
  }
}

.hero-title-two {
  font-size: 35px;
}
@media only screen and (min-width: 576px) {
  .hero-title-two {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-title-two {
    font-size: 55px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-title-two {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-title-two {
    font-size: 55px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-title-two {
    font-size: 65px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-title-two {
    font-size: 80px;
  }
}
.hero-title-two span {
  color: var(--bd-primary);
}

@media only screen and (min-width: 1200px) {
  .hero-title-two.pl-220 {
    padding-left: 140px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-title-two.pl-220 {
    padding-left: 220px;
  }
}

.hero-thumb-two {
  display: grid;
  gap: 15px;
  align-items: center;
  position: relative;
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (min-width: 768px) {
  .hero-thumb-two {
    grid-template-columns: 270px 320px;
    gap: 25px;
    align-items: start;
    justify-content: center;
  }
}
@media only screen and (min-width: 992px) {
  .hero-thumb-two {
    justify-content: start;
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1600px) {
  .hero-thumb-two {
    margin-left: -80px;
    justify-content: start;
    grid-template-columns: 270px 320px;
  }
}
.hero-thumb-two::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 75px;
  height: 180px;
  width: 180px;
  border-radius: 50%;
  background-color: var(--bd-primary);
  display: none;
}
@media only screen and (min-width: 768px) {
  .hero-thumb-two::before {
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .hero-thumb-two::before {
    height: 90px;
    width: 90px;
  }
}
@media only screen and (min-width: 1200px) {
  .hero-thumb-two::before {
    display: block;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-thumb-two::before {
    height: 180px;
    width: 180px;
  }
}
.hero-thumb-two .single-img-one {
  overflow: hidden;
  height: fit-content;
  border-radius: 0 40px 0 50px;
}
@media only screen and (min-width: 576px) {
  .hero-thumb-two .single-img-one {
    border-radius: 0 68px 0 68px;
  }
}
@media only screen and (min-width: 768px) {
  .hero-thumb-two .single-img-one {
    border-radius: 0 68px 0 114px;
  }
}
@media only screen and (min-width: 992px) {
  .hero-thumb-two .single-img-one {
    border-radius: 0 40px 0 50px;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-thumb-two .single-img-one {
    border-radius: 0 68px 0 68px;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-thumb-two .single-img-one {
    border-radius: 0 68px 0 114px;
  }
}
.hero-thumb-two .single-img-two {
  overflow: hidden;
  border-radius: 40px 0 50px 0;
}
@media only screen and (min-width: 576px) {
  .hero-thumb-two .single-img-two {
    border-radius: 52px 0 52px 0;
  }
}
@media only screen and (min-width: 768px) {
  .hero-thumb-two .single-img-two {
    margin-top: 60px;
    border-radius: 52px 0 103px 0;
  }
}
@media only screen and (min-width: 992px) {
  .hero-thumb-two .single-img-two {
    border-radius: 40px 0 50px 0;
  }
}
@media only screen and (min-width: 1400px) {
  .hero-thumb-two .single-img-two {
    border-radius: 52px 0 52px 0;
  }
}
@media only screen and (min-width: 1600px) {
  .hero-thumb-two .single-img-two {
    border-radius: 52px 0 103px 0;
  }
}

/*----------------------------------------*/
/*  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 .sub-menu {
  left: 100%;
  top: 10px;
}
.main-menu ul > li > .sub-menu > li.current-menu-item > a {
  padding-inline-start: 15px;
  color: var(--bd-primary);
}
.main-menu ul > li > .sub-menu > li.current-menu-item > a::before {
  width: 12px;
}
.main-menu ul > li > a {
  font-size: 17px;
  padding: 20px 0px;
  color: #282828;
  display: inline-block;
  padding-inline-start: 0px;
  text-transform: capitalize;
}
.main-menu ul > li > a:hover {
  color: var(--bd-primary) !important;
}
.main-menu ul > li.current-menu-ancestor > a {
  color: var(--bd-primary) !important;
}

/*----------------------------------------*/
/*  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 {
  background: center/cover no-repeat;
}

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

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

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

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

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

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

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

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

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

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

/*----------------------------------------*/
/*  8.1 About css
/*----------------------------------------*/
.about-thumb {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 615px;
  gap: 15px;
  position: relative;
}
@media only screen and (min-width: 576px) {
  .about-thumb {
    gap: 35px;
  }
}
@media only screen and (min-width: 768px) {
  .about-thumb {
    margin: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .about-thumb {
    margin: inherit;
  }
}
.about-thumb .about-circle-box {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about-single-img {
  overflow: hidden;
  border-radius: 10px;
  height: fit-content;
}
@media only screen and (min-width: 576px) {
  .about-single-img:nth-child(2) {
    margin-top: 70px;
  }
}

.about-circle-box {
  height: 130px;
  width: 130px;
  background-color: var(--bd-primary);
  border-radius: 50%;
  text-align: center;
  border: 5px solid var(--bd-white);
  padding: 26px 0px;
}
@media only screen and (min-width: 576px) {
  .about-circle-box {
    height: 160px;
    width: 160px;
    border: 10px solid var(--bd-white);
  }
}
.about-circle-box h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--bd-white);
  margin-bottom: 2px;
}
@media only screen and (min-width: 576px) {
  .about-circle-box h2 {
    font-size: 40px;
  }
}
.about-circle-box p {
  font-size: 14px;
  color: var(--bd-white);
}

.about-tab-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media only screen and (min-width: 576px) {
  .about-tab-wrapper {
    grid-template-columns: 225px 1fr;
    gap: 30px;
  }
}
@media only screen and (min-width: 768px) {
  .about-tab-wrapper {
    gap: 60px;
  }
}
@media only screen and (min-width: 1200px) {
  .about-tab-wrapper {
    gap: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .about-tab-wrapper {
    gap: 60px;
  }
}

.about-tab .nav-item .nav-link {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #E4EBF5;
}
.about-tab .nav-item .nav-link .list {
  height: 45px;
  min-width: 45px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #EFF6FF;
  border-radius: 50%;
}
.about-tab .nav-item .nav-link .tab-icon {
  color: #EFF6FF;
}
.about-tab .nav-item .nav-link .tab-title {
  font-size: 14px;
  color: var(--bd-text-body);
}
.about-tab .nav-item .nav-link.active .list {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
.about-tab .nav-item .nav-link.active .tab-icon {
  color: var(--bd-primary);
}
.about-tab .nav-item .nav-link.active .tab-title {
  color: var(--bd-primary);
}

@media only screen and (min-width: 992px) {
  .about-tab-content {
    padding-right: 50px;
  }
}
.about-tab-content h5 {
  font-size: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 768px) {
  .about-tab-content h5 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .about-tab-content h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .about-tab-content h5 {
    font-size: 22px;
  }
}

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

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

.skill-content-left .section-title {
  margin-bottom: 30px;
}
@media only screen and (min-width: 576px) {
  .skill-content-left .section-title {
    margin-bottom: 40px;
  }
}

.skill-right {
  border: 1px solid #DBDBDB;
  display: flex;
  flex-wrap: wrap;
  max-width: 761px;
  margin: 0 0 0 auto;
  border-radius: 15px;
  gap: 30px;
}
@media (max-width: 575px) {
  .skill-right {
    max-width: 380px;
    margin: auto;
  }
}
@media only screen and (min-width: 576px) {
  .skill-right {
    border: 1px solid #DBDBDB;
    border-right: 0;
    border-bottom: 0;
    gap: 0;
  }
}

.skill-single {
  width: 380px;
  padding: 25px;
  border-bottom: 1px solid #DBDBDB;
}
@media (max-width: 575px) {
  .skill-single:last-child {
    border-bottom: 0;
  }
}
@media only screen and (min-width: 576px) {
  .skill-single {
    width: 254px;
    border-right: 1px solid #DBDBDB;
    border-bottom: 1px solid #DBDBDB;
  }
}
@media only screen and (min-width: 768px) {
  .skill-single {
    width: 344px;
  }
}
@media only screen and (min-width: 992px) {
  .skill-single {
    width: 264px;
  }
}
@media only screen and (min-width: 1200px) {
  .skill-single {
    width: 317px;
  }
}
@media only screen and (min-width: 1400px) {
  .skill-single {
    padding: 40px;
    width: 369px;
  }
}
@media only screen and (min-width: 1600px) {
  .skill-single {
    padding: 60px;
    width: 380px;
  }
}
@media only screen and (min-width: 576px) {
  .skill-single:nth-child(2) {
    border-radius: 0 15px 0 0;
  }
}
@media only screen and (min-width: 576px) {
  .skill-single:nth-child(3) {
    border-radius: 0 0 0 15px;
  }
}
@media only screen and (min-width: 576px) {
  .skill-single:last-child {
    border-radius: 0 0 15px 0;
  }
}
.skill-single .counter-number {
  font-size: 40px;
  color: var(--bd-primary);
  margin-bottom: 40px;
}
@media only screen and (min-width: 1400px) {
  .skill-single .counter-number {
    font-size: 70px;
    margin-bottom: 120px;
  }
}
.skill-single .counter-number .counter {
  color: var(--bd-black);
}
.skill-single .skill-title {
  font-size: 20px;
  margin-bottom: 25px;
}
@media only screen and (min-width: 1400px) {
  .skill-single .skill-title {
    font-size: 22px;
  }
}
.skill-single p {
  font-size: 18px;
  margin-bottom: 0;
}

.about-style-two {
  padding-bottom: 80px;
}
@media only screen and (min-width: 992px) {
  .about-style-two {
    padding-bottom: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .about-style-two {
    padding-bottom: 190px;
  }
}

.about-thumb-two {
  max-width: 420px;
  position: relative;
  margin: auto;
}
@media only screen and (min-width: 992px) {
  .about-thumb-two {
    margin: inherit;
  }
}
.about-thumb-two .img-thumb {
  overflow: hidden;
  border-radius: 9px;
}
.about-thumb-two .about-small-img {
  position: absolute;
  right: -12px;
  bottom: -20px;
  width: 130px;
}
@media only screen and (min-width: 768px) {
  .about-thumb-two .about-small-img {
    right: -80px;
    bottom: -50px;
    width: initial;
  }
}
@media only screen and (min-width: 992px) {
  .about-thumb-two .about-small-img {
    width: 180px;
  }
}
@media only screen and (min-width: 1600px) {
  .about-thumb-two .about-small-img {
    right: -80px;
    bottom: -50px;
    width: initial;
  }
}

.about-two-content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
@media only screen and (min-width: 1400px) {
  .about-two-content {
    grid-template-columns: 580px 1fr;
  }
}
@media only screen and (min-width: 1600px) {
  .about-two-content {
    grid-template-columns: 635px 1fr;
  }
}
.about-two-content .section-title-wrapper {
  max-width: 530px;
  margin-bottom: 50px;
}
@media only screen and (min-width: 992px) {
  .about-two-content .section-title-wrapper {
    margin-bottom: 150px;
  }
}
.about-two-content .section-title {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .about-two-content .about-text {
    padding-left: 20px;
  }
}

.skill-progress {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) {
  .skill-progress {
    padding-left: 80px;
  }
}
@media only screen and (min-width: 1600px) {
  .skill-progress {
    margin-bottom: 0;
    padding-left: 160px;
  }
}
.skill-progress h6 {
  margin-bottom: 10px;
  font-weight: 500;
  color: var(--bd-primary);
}

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

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

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

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

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

.counter-wrapper-two {
  height: 270px;
  width: 270px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: auto;
}
@media only screen and (min-width: 1400px) {
  .counter-wrapper-two {
    height: 250px;
    width: 250px;
    margin: inherit;
  }
}
@media only screen and (min-width: 1600px) {
  .counter-wrapper-two {
    height: 325px;
    width: 325px;
    margin: inherit;
  }
}
.counter-wrapper-two::before {
  position: absolute;
  content: "";
  height: 180%;
  width: 180%;
  border: 1px solid var(--bd-primary);
  top: 1px;
  left: -262px;
  z-index: -1;
  border-radius: 50%;
}
.counter-wrapper-two .about-two-btn {
  position: absolute;
  right: 60px;
  top: 28px;
}
@media only screen and (min-width: 992px) {
  .counter-wrapper-two .about-two-btn {
    right: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .counter-wrapper-two .about-two-btn {
    right: 3px;
  }
}
.counter-wrapper-two h3 {
  font-size: 38px;
  font-weight: 400;
  display: flex;
}
.counter-wrapper-two h3 span {
  font-size: 40px;
  font-weight: 600;
}
@media only screen and (min-width: 992px) {
  .counter-wrapper-two h3 span {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1600px) {
  .counter-wrapper-two h3 span {
    font-size: 80px;
  }
}

.about-two-btn a {
  height: 60px;
  width: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-primary);
  border-radius: 50%;
  color: var(--bd-white);
  font-size: 20px;
}
@media only screen and (min-width: 992px) {
  .about-two-btn a {
    height: 85px;
    width: 85px;
  }
}
.about-two-btn a i {
  transform: rotate(-45deg);
  transition: 0.3s;
}

.about-banner-img {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 19px;
  margin-top: -90px;
}
@media only screen and (min-width: 768px) {
  .about-banner-img {
    margin-top: -170px;
  }
}
.about-banner-img img {
  width: 100%;
}

.about-service-single {
  padding: 0 20px;
}
@media (max-width: 575px) {
  .about-service-single {
    max-width: 380px;
    margin: auto;
  }
}
@media only screen and (min-width: 992px) {
  .about-service-single {
    padding: 0px;
  }
}
@media only screen and (min-width: 1400px) {
  .about-service-single {
    padding: 0 20px;
  }
}
.about-service-single p {
  margin-bottom: 0;
}

.expertise-area {
  position: relative;
  z-index: 1;
  min-height: 400px;
  background: center/cover no-repeat;
}
@media only screen and (min-width: 576px) {
  .expertise-area {
    min-height: 420px;
  }
}
@media only screen and (min-width: 768px) {
  .expertise-area {
    min-height: 430px;
  }
}
@media only screen and (min-width: 992px) {
  .expertise-area {
    min-height: 460px;
  }
}
@media only screen and (min-width: 1400px) {
  .expertise-area {
    min-height: 780px;
  }
}
@media only screen and (min-width: 1600px) {
  .expertise-area {
    min-height: 980px;
  }
}
.expertise-area::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: linear-gradient(90deg, #001B38 15.36%, rgba(0, 27, 56, 0.7) 100%);
}

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

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

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

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

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

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

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

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

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

.blog-style-two {
  background-color: #F1F6FF;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.blog-style-two .radius-shape {
  position: absolute;
  left: -300px;
  top: -340px;
  z-index: -1;
  animation: spinner 10s linear infinite;
}

.blog-section-title {
  font-size: 30px;
}
@media only screen and (min-width: 768px) {
  .blog-section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .blog-section-title {
    writing-mode: vertical-lr;
    transform: scale(-1);
    font-size: 50px;
  }
}
@media only screen and (min-width: 1200px) {
  .blog-section-title {
    padding-left: 18px;
    font-size: 80px;
  }
}
@media only screen and (min-width: 1400px) {
  .blog-section-title {
    font-size: 90px;
  }
}
@media only screen and (min-width: 1600px) {
  .blog-section-title {
    font-size: 100px;
  }
}
.blog-section-title span {
  color: var(--bd-primary);
}

.blog-thumb-two {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 20px;
}
.blog-thumb-two:hover img {
  transform: scale(1.05);
}
.blog-thumb-two:hover .blog-category {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
.blog-thumb-two img {
  width: 100%;
}
.blog-thumb-two .blog-category {
  position: absolute;
  font-size: 15px;
  left: 20px;
  top: 20px;
  display: inline-block;
  padding: 8px 21px;
  border-radius: 19px;
  background-color: var(--bd-white);
  color: var(--bd-primary);
  transition: 0.3s;
}
@media only screen and (min-width: 576px) {
  .blog-thumb-two .blog-category {
    font-size: 14px;
    left: 10px;
    top: 10px;
    padding: 5px 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .blog-thumb-two .blog-category {
    font-size: 15px;
    left: 20px;
    top: 20px;
    padding: 8px 21px;
  }
}

.blog-post-title {
  font-weight: 500;
  margin-bottom: 15px;
  font-size: 20px;
}
@media only screen and (min-width: 576px) {
  .blog-post-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) {
  .blog-post-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .blog-post-title {
    font-size: 24px;
  }
}
.blog-post-title a {
  background-image: linear-gradient(var(--bd-primary), var(--bd-primary)), linear-gradient(var(--bd-primary), var(--bd-primary));
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.blog-post-title a:hover {
  background-size: 0 1px, 100% 1px;
  color: var(--bd-primary);
}

.blog-item-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 35px;
  column-gap: 60px;
}
@media only screen and (min-width: 576px) {
  .blog-item-wrapper {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .blog-item-wrapper {
    gap: 30px;
  }
}
@media only screen and (min-width: 1600px) {
  .blog-item-wrapper {
    grid-template-columns: 460px 460px;
    gap: 60px;
  }
}

@media only screen and (min-width: 992px) {
  .blog-grid-item:first-child {
    margin-top: 100px;
  }
}
.blog-grid-item .blog-single-post:not(:last-child) {
  margin-bottom: 35px;
}
@media only screen and (min-width: 768px) {
  .blog-grid-item .blog-single-post:not(:last-child) {
    margin-bottom: 60px;
  }
}

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

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

/*----------------------------------------*/
/*  8.5 Service css
/*----------------------------------------*/
.service-area {
  background-color: #E8EFFF;
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) {
  .service-area {
    padding-bottom: 140px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-area {
    padding-bottom: 210px;
  }
}

.service-top {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: end;
  align-items: center;
  margin-bottom: 60px;
  gap: 20px;
}
@media only screen and (min-width: 992px) {
  .service-top {
    grid-template-columns: 500px 1fr;
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-top {
    grid-template-columns: 620px 1fr;
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 1400px) {
  .service-top {
    grid-template-columns: 720px 1fr;
    margin-bottom: 100px;
  }
}
@media only screen and (min-width: 992px) {
  .service-top .section-text {
    max-width: 520px;
  }
}

.service-single {
  background-color: var(--bd-white);
  padding: 25px;
  border-radius: 9px;
  border: 1px solid var(--bd-primary);
  max-width: 380px;
  margin: auto;
}
@media only screen and (min-width: 576px) {
  .service-single {
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .service-single {
    padding: 60px 20px 20px 20px;
  }
}
@media only screen and (min-width: 992px) {
  .service-single {
    padding: 15px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-single {
    padding: 25px;
  }
}
@media only screen and (min-width: 1600px) {
  .service-single {
    padding: 60px 20px 20px 20px;
  }
}
.service-single p {
  margin-bottom: 40px;
}
@media only screen and (min-width: 1600px) {
  .service-single p {
    padding-bottom: 120px;
  }
}
.service-single .content {
  margin: 0 20px;
}
@media only screen and (min-width: 576px) {
  .service-single .content {
    margin: 0;
  }
}
@media only screen and (min-width: 768px) {
  .service-single .content {
    margin: 0 20px;
  }
}
@media only screen and (min-width: 992px) {
  .service-single .content {
    margin: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .service-single .content {
    margin: 0 20px;
  }
}
.service-single:hover .service-btn a {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
.service-single:hover .service-btn a span {
  color: var(--bd-white);
}

.service-list {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  color: var(--bd-white);
  background-color: var(--bd-primary);
  margin-bottom: 20px;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  .service-list {
    margin-bottom: 40px;
  }
}

.service-single-title {
  font-size: 18px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 576px) {
  .service-single-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .service-single-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .service-single-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-single-title {
    font-size: 22px;
  }
}

.service-btn a {
  display: inline-block;
  border-radius: 9px;
  padding: 14px 20px;
  background-color: #E2ECFF;
  width: 100%;
  text-align: center;
}
.service-btn a span {
  margin-right: 10px;
  color: var(--bd-primary);
  transition: 0.3s;
}

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

.text-slider-active .swiper-slide {
  width: auto;
}

.text-slider {
  background-color: var(--bd-primary);
  padding: 21px 0;
  margin-top: -40px;
}
@media only screen and (min-width: 576px) {
  .text-slider {
    padding: 15px 0;
  }
}
@media only screen and (min-width: 768px) {
  .text-slider {
    padding: 21px 0;
  }
}
@media only screen and (min-width: 1200px) {
  .text-slider {
    transform: rotate(-2.17deg);
  }
}

.brand-area {
  background-color: var(--bd-primary);
  padding: 80px 0;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .brand-area {
    padding: 90px 0;
  }
}
.brand-area::before {
  position: absolute;
  content: "";
  left: 10%;
  top: -1px;
  height: 30px;
  width: 36px;
  background-color: var(--bd-white);
  clip-path: polygon(100% 0, 9% 0, 73% 73%);
}

.brand-thumb {
  padding: 15px 40px;
  border: 1px solid #90BEEC;
  border-radius: 43px;
  text-align: center;
  margin-bottom: 1px;
}
@media only screen and (min-width: 768px) {
  .brand-thumb {
    padding: 25px 54px;
  }
}
@media only screen and (min-width: 1400px) {
  .brand-thumb {
    padding: 42px 54px;
  }
}

.brand-content h4 {
  font-size: 20px;
  font-weight: 500;
  color: var(--bd-white);
}
@media only screen and (min-width: 576px) {
  .brand-content h4 {
    font-size: 24px;
  }
}
@media only screen and (min-width: 992px) {
  .brand-content h4 {
    font-size: 22px;
  }
}
@media only screen and (min-width: 1200px) {
  .brand-content h4 {
    font-size: 24px;
  }
}
.brand-content h4 span {
  font-weight: 700;
}

@media only screen and (min-width: 1200px) {
  .brand-slider-wrapper {
    margin-right: -20px;
    margin-left: -15px;
  }
}

.brand-slider-active .swiper-wrapper, .text-slider-active .swiper-wrapper, .brand-two-slider-active .swiper-wrapper {
  transition-timing-function: linear;
}

.brand-two-content h5 {
  max-width: 235px;
  font-size: 20px;
}
@media only screen and (min-width: 576px) {
  .brand-two-content h5 {
    font-size: 24px;
  }
}

.service-style-two {
  background: linear-gradient(270deg, #0051A8 0%, #0051A8 48.55%, #0051A8 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.service-style-two .radius-shape {
  position: absolute;
  left: -300px;
  top: -190px;
  z-index: -1;
  animation: spinner 5s linear infinite;
}
.service-style-two .service-top .sub-title {
  color: var(--bd-white);
}
.service-style-two .service-top .sub-title::before, .service-style-two .service-top .sub-title::after {
  background-color: var(--bd-white);
}
.service-style-two .service-top .section-text p {
  color: var(--bd-white);
}

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

.service-single-item {
  background-color: var(--bd-white);
  padding: 30px;
  padding-top: 40px;
  border-radius: 19px;
  transition: 0.3s;
  max-width: 380px;
  margin: auto;
}
@media only screen and (min-width: 576px) {
  .service-single-item {
    padding: 20px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 768px) {
  .service-single-item {
    padding: 30px;
    padding-top: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .service-single-item {
    padding: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-single-item {
    padding: 30px;
    padding-top: 40px;
  }
}
.service-single-item.active {
  background-color: var(--bd-primary);
}
.service-single-item.active .service-two-title {
  color: var(--bd-white);
}
.service-single-item.active .arrow-btn a {
  background-color: var(--bd-white);
}
.service-single-item.active .service-list {
  background-color: var(--bd-white);
  color: var(--bd-primary);
}
.service-single-item .thumb img {
  clip-path: url("#kkkk");
}

.service-two-title {
  font-size: 18px;
  margin-bottom: 20px;
  max-width: 295px;
  line-height: 1.3;
  transition: 0.3s;
}
@media only screen and (min-width: 768px) {
  .service-two-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .service-two-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-two-title {
    font-size: 22px;
  }
}

.service-contact {
  position: relative;
  overflow: hidden;
}
.service-contact .radius-shape {
  position: absolute;
  right: -90px;
  top: -85px;
  width: 200px;
  animation: spinner 8s linear infinite;
  z-index: -1;
}
@media only screen and (min-width: 576px) {
  .service-contact .radius-shape {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  .service-contact .radius-shape {
    right: -100px;
    top: -100px;
    width: 240px;
    display: block;
  }
}
@media only screen and (min-width: 992px) {
  .service-contact .radius-shape {
    width: 300px;
  }
}
@media only screen and (min-width: 1200px) {
  .service-contact .radius-shape {
    right: -180px;
    top: -180px;
    width: 400px;
  }
}
@media only screen and (min-width: 1400px) {
  .service-contact .radius-shape {
    right: -310px;
    top: -250px;
    width: initial;
  }
}
.service-contact .bg-shape {
  position: absolute;
  left: -80px;
  top: 70px;
  display: none;
}
@media only screen and (min-width: 768px) {
  .service-contact .bg-shape {
    display: block;
  }
}

.service-contact-text {
  max-width: 500px;
  margin: auto;
  text-align: center;
}
.service-contact-text h3 {
  font-size: 24px;
  margin-bottom: 40px;
}
@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-primary);
}

.service-contact-btn .theme-btn .icon {
  margin-left: 8px;
}

/*----------------------------------------*/
/*  8.7 Testiomonial css
/*----------------------------------------*/
.testimonial-area {
  background-color: #F3F8FF;
}
.testimonial-area .section-title-wrapper {
  max-width: 450px;
  margin: auto;
  margin-bottom: 40px;
  text-align: center;
}
@media only screen and (min-width: 992px) {
  .testimonial-area .section-title-wrapper {
    margin-bottom: 100px;
    text-align: center;
  }
}

.testimonial-thumb {
  overflow: hidden;
  border-radius: 9px;
  max-width: 320px;
  margin: auto;
}

.testimonial-content {
  position: relative;
}
@media only screen and (min-width: 1600px) {
  .testimonial-content {
    padding-left: 70px;
  }
}
.testimonial-content .quote-icon {
  position: absolute;
  top: -20px;
  left: 0px;
  z-index: -1;
  width: 100px;
}
@media only screen and (min-width: 768px) {
  .testimonial-content .quote-icon {
    left: 45px;
  }
}
@media only screen and (min-width: 768px) {
  .testimonial-content .quote-icon {
    left: 0px;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-content .quote-icon {
    width: inherit;
    top: -50px;
  }
}
.testimonial-content p {
  font-size: 18px;
  color: var(--bd-black);
  position: relative;
  padding-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .testimonial-content p {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1200px) {
  .testimonial-content p {
    font-size: 25px;
  }
}
@media only screen and (min-width: 1600px) {
  .testimonial-content p {
    font-size: 28px;
  }
}
.testimonial-content p::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 1px;
  width: 150px;
  background-color: var(--bd-black);
}
.testimonial-content .author-name {
  font-size: 20px;
  margin-bottom: 5px;
}
.testimonial-content .designation {
  font-size: 16px;
  color: var(--bd-black);
}

.testiomonial-single-item {
  grid-template-columns: 1fr;
  display: grid;
  gap: 60px;
  align-items: center;
}
@media only screen and (min-width: 992px) {
  .testiomonial-single-item {
    grid-template-columns: 360px 1fr;
    gap: 30px;
  }
}
@media only screen and (min-width: 1400px) {
  .testiomonial-single-item {
    gap: 80px;
  }
}
@media only screen and (min-width: 1600px) {
  .testiomonial-single-item {
    grid-template-columns: 460px 1fr;
    gap: 130px;
  }
}
.testiomonial-single-item:first-child {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) {
  .testiomonial-single-item:first-child {
    margin-bottom: 0;
  }
}
@media only screen and (min-width: 768px) {
  .testiomonial-single-item:not(:last-child) {
    margin-bottom: 120px;
  }
}
@media only screen and (min-width: 992px) {
  .testiomonial-single-item:nth-child(2n+2) {
    grid-template-columns: 1fr 360px;
  }
}
@media only screen and (min-width: 1400px) {
  .testiomonial-single-item:nth-child(2n+2) {
    grid-template-columns: 1fr 460px;
  }
}

.testimonial-style-two {
  background-color: #F1F6FF;
}

.testimonial-top {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 992px) {
  .testimonial-top {
    grid-template-columns: 300px 1fr;
    justify-items: end;
    gap: 0;
  }
}
.testimonial-top .section-text {
  max-width: 500px;
}

.testimonial-two-thumb {
  position: relative;
  border-radius: 7px;
  overflow: hidden;
  height: 340px;
}
@media only screen and (min-width: 576px) {
  .testimonial-two-thumb {
    height: 540px;
  }
}
@media only screen and (min-width: 768px) {
  .testimonial-two-thumb {
    width: 380px;
    height: 400px;
    margin: auto;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-two-thumb {
    height: inherit;
    width: 100%;
    margin: 0;
  }
}
.testimonial-two-thumb img {
  width: 100%;
}
.testimonial-two-thumb .testimonial-bottom-text {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  display: flex;
  gap: 20px;
  align-items: center;
}
@media only screen and (min-width: 576px) {
  .testimonial-two-thumb .testimonial-bottom-text {
    gap: 40px;
  }
}
@media only screen and (min-width: 992px) {
  .testimonial-two-thumb .testimonial-bottom-text {
    gap: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-two-thumb .testimonial-bottom-text {
    gap: 40px;
  }
}
.testimonial-two-thumb .testimonial-bottom-text h5 {
  font-size: 18px;
  color: var(--bd-white);
  font-weight: 500;
}
@media only screen and (min-width: 576px) {
  .testimonial-two-thumb .testimonial-bottom-text h5 {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .testimonial-two-thumb .testimonial-bottom-text h5 {
    font-size: 22px;
  }
}
.testimonial-two-thumb::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(48, 148, 255, 0.75) 72.03%, #007BFF 97.75%);
  top: 0;
  left: 0;
}

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

.author-text h6 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 5px;
}
@media only screen and (min-width: 576px) {
  .author-text h6 {
    font-size: 16px;
  }
}
@media only screen and (min-width: 768px) {
  .author-text h6 {
    font-size: 18px;
  }
}
.author-text .designation {
  font-size: 15px;
  color: #4D505B;
}
@media only screen and (min-width: 576px) {
  .author-text .designation {
    font-size: 14px;
  }
}
@media only screen and (min-width: 768px) {
  .author-text .designation {
    font-size: 15px;
  }
}

.testimonial-style-three .testimonial-item-box {
  box-shadow: 10px 10px 25px 20px rgba(0, 0, 1, 0.0509803922);
}

/*----------------------------------------*/
/*  8.6 Team css
/*----------------------------------------*/
.team-area {
  background-color: #006BDE;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.team-area .team-bg-shape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.team-content .sub-title {
  color: var(--bd-white);
}
.team-content .sub-title::before, .team-content .sub-title::after {
  background-color: var(--bd-white);
}
.team-content p {
  color: var(--bd-white);
  font-size: 18px;
}
.team-content .section-title-wrapper {
  margin-bottom: 30px;
}
@media only screen and (min-width: 768px) {
  .team-content .section-title-wrapper {
    margin-bottom: 40px;
  }
}

@media (max-width: 575px) {
  .single-team {
    max-width: 380px;
    margin: auto;
  }
}
.single-team .team-img {
  overflow: hidden;
  position: relative;
  border-radius: 10px;
  margin-bottom: 25px;
}
.single-team .team-img .team-social-icon {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
}
.single-team .team-img .team-social-icon ul {
  justify-content: center;
}
.single-team:hover .team-img img {
  transform: scale(1.06);
}
.single-team:hover .team-social-icon ul li a {
  transform: translateX(0px);
  opacity: 1;
}

.team-img-content {
  text-align: center;
}
.team-img-content .team-author-name {
  font-size: 20px;
  color: var(--bd-white);
  margin-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .team-img-content .team-author-name {
    font-size: 24px;
  }
}
@media only screen and (min-width: 1600px) {
  .team-img-content .team-author-name {
    font-size: 28px;
  }
}
.team-img-content .team-author-name 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;
}
.team-img-content .team-author-name a:hover {
  background-size: 0 1px, 100% 1px;
}
.team-img-content .designation {
  font-size: 16px;
  color: var(--bd-white);
}
@media only screen and (min-width: 1200px) {
  .team-img-content .designation {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1600px) {
  .team-img-content .designation {
    font-size: 20px;
  }
}

.team-social-icon ul {
  display: flex;
  gap: 6px;
}
.team-social-icon ul li a {
  height: 40px;
  width: 40px;
  background-color: var(--bd-white);
  color: var(--bd-primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateX(20px);
  opacity: 0;
}
.team-social-icon ul li a:hover {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}
.team-social-icon ul li .facebook {
  transition: 0.2s;
}
.team-social-icon ul li .linkedin {
  transition: 0.4s;
}
.team-social-icon ul li .instagram {
  transition: 0.6s;
}
.team-social-icon ul li .whatsapp {
  transition: 0.8s;
}

@media only screen and (min-width: 992px) {
  .team-slider-wrapper {
    margin-right: -470px;
  }
}
@media only screen and (min-width: 1400px) {
  .team-slider-wrapper {
    margin-left: 70px;
  }
}

.navigation__wrapper {
  display: flex;
  gap: 50px;
  align-items: center;
}
.navigation__wrapper button {
  height: 45px;
  width: 45px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .navigation__wrapper button {
    height: 60px;
    width: 60px;
  }
}
.navigation__wrapper button::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  border-radius: 50%;
  border: 1px dashed var(--bd-white);
  animation-play-state: paused;
  animation: rotate 6s linear infinite;
  animation-play-state: running;
  -webkit-animation-play-state: paused;
}
.navigation__wrapper button:hover::before {
  animation: rotate 6s linear infinite;
  animation-play-state: running;
}
.navigation__wrapper button img {
  width: 100%;
  margin-top: -1px;
}
.navigation__wrapper .team_button_prev img {
  margin-left: 17px;
}
.navigation__wrapper .team_button_next img {
  margin-left: -32px;
}

.team-style-two .team-top {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  margin-bottom: 60px;
}
@media only screen and (min-width: 992px) {
  .team-style-two .team-top {
    grid-template-columns: 300px 1fr;
    justify-items: end;
    margin-bottom: 40px;
    gap: 0;
  }
}
.team-style-two .team-top .section-text {
  max-width: 500px;
}

.team-thumb {
  overflow: hidden;
  border-radius: 9px;
  background-color: #DBEFFD;
  margin-bottom: 15px;
  position: relative;
  transition: 0.3s;
}
@media only screen and (min-width: 1200px) {
  .team-thumb {
    margin-bottom: 20px;
  }
}
.team-thumb:hover {
  background-color: var(--bd-primary);
}
.team-thumb .member-name {
  font-size: 28px;
  font-weight: 700;
  position: absolute;
  right: 0;
  top: 0;
  color: var(--bd-white);
  writing-mode: vertical-lr;
  transform: scale(-1);
}
@media only screen and (min-width: 576px) {
  .team-thumb .member-name {
    font-size: 45px;
  }
}
@media only screen and (min-width: 768px) {
  .team-thumb .member-name {
    font-size: 55px;
  }
}
@media only screen and (min-width: 992px) {
  .team-thumb .member-name {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) {
  .team-thumb .member-name {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1600px) {
  .team-thumb .member-name {
    font-size: 65px;
  }
}

.single-team-member .team-designation {
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
@media only screen and (min-width: 1200px) {
  .single-team-member .team-designation {
    font-size: 20px;
  }
}

.team-bg {
  background-color: #F1F6FF;
}

/*----------------------------------------*/
/*  8.4 Portfolio css
/*----------------------------------------*/
.portfolio-area {
  background: linear-gradient(180deg, #F1F6FF 0%, #FFFFFF 100%);
}

.portfolio-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
@media only screen and (min-width: 576px) {
  .portfolio-top {
    flex-direction: row;
    align-items: center;
    margin-bottom: 60px;
  }
}
.portfolio-top .section-title-wrapper {
  max-width: 340px;
}

.navigation__wrapper-2 {
  display: flex;
  gap: 10px;
}
.navigation__wrapper-2 button {
  height: 55px;
  width: 55px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--bd-white);
}
.navigation__wrapper-2 button:hover {
  background-color: var(--bd-primary);
  color: var(--bd-white);
}

.portfolio-item {
  background-color: #E8EFFF;
  padding: 10px;
  border-radius: 18px;
  transition: 0.3s;
  max-width: 380px;
  margin: auto;
}
@media only screen and (min-width: 576px) {
  .portfolio-item {
    max-width: 100%;
  }
}
.portfolio-item:hover {
  background-color: var(--bd-primary);
}
.portfolio-item:hover .portfolio-title {
  color: var(--bd-white);
}
.portfolio-item:hover img {
  transform: scale(1.05);
}
.portfolio-item .thumb-content {
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (min-width: 576px) {
  .portfolio-item .thumb-content {
    padding: 15px;
    flex-direction: column;
    align-items: start;
    gap: 15px;
  }
}
@media only screen and (min-width: 768px) {
  .portfolio-item .thumb-content {
    padding: 20px;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
@media only screen and (min-width: 992px) {
  .portfolio-item .thumb-content {
    padding: 15px;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .portfolio-item .thumb-content {
    padding: 20px;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio-item .thumb-content {
    padding: 15px;
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .portfolio-item .thumb-content {
    padding: 20px;
  }
}

.portfolio-thumb {
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 15px;
}
@media only screen and (min-width: 992px) {
  .portfolio-thumb {
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 1600px) {
  .portfolio-thumb {
    margin-bottom: 70px;
  }
}
.portfolio-thumb img {
  width: 100%;
}

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

.portfolio-title {
  font-size: 22px;
  font-weight: 500;
}
@media only screen and (min-width: 576px) {
  .portfolio-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 768px) {
  .portfolio-title {
    font-size: 22px;
  }
}
@media only screen and (min-width: 992px) {
  .portfolio-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 1400px) {
  .portfolio-title {
    font-size: 22px;
  }
}
.portfolio-title a {
  background-image: linear-gradient(var(--bd-white), var(--bd-white)), linear-gradient(var(--bd-white), var(--bd-white));
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}
.portfolio-title a:hover {
  background-size: 0 1px, 100% 1px;
}

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