@charset "UTF-8";

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

  01. THEME DEFAULT CSS
  02. HEADER CSS
  03. MEAN MENU CSS
	04. SLIDER CSS
	05: ABOUT CSS
	06: SERVICES CSS
	07. FEATURE CSS
	08. COUNTER CSS 
	09. CONTACT CSS 
	10. TESTIMONIAL CSS 
	11. BRAND CSS 
	12. TEAM CSS
	13. PRICE CSS 
	14. products CSS
	15. news CSS
	16. FOOTER CSS 



**********************************************/
/*----------------------------------------*/
/*  01. THEME DEFAULT CSS START
/*----------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Sans:wght@300;400;500;600;700;800&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Cantarell:wght@400;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Merriweather+Sans:wght@300;400;500;600;700;800&family=Mulish:wght@200&display=swap');


:root {
  /**
  @font family declaration
  */
  --bd-ff-body: 'Mulish', sans-serif;
  --bd-ff-heading: 'Merriweather Sans', sans-serif;
  --bd-ff-p: 'Mulish', sans-serif;
  --bd-ff-fontawesome: "Font Awesome 6 Pro";
  /* font-family: ; */
  /**
  @color declaration
  */
  --bd-common-white: #ffffff;
  --bd-common-black: #000;
  --bd-common-blue: #0071B7;
  --bd-common-red: #f76a66;
  --bd-common-red-dark: #da2128;
  --bd-heading-primary: #000;
  --bd-grey-1: #f5f8fb;
  --bd-grey-2: #e2ebf4;
  --bd-text-body: #444444;
  --bd-text-1: #000;
  --bd-theme-primary: #0071B7;
  --bd-border-1: #888888;
  --bd-border-2: #b7c3cf;
  /**
  @font weight declaration
  */
  --bd-fw-normal: normal;
  --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-fz-body: 16px;
  --bd-fz-p: 16px;
  --bd-fz-h1: 40px;
  --bd-fz-h2: 36px;
  --bd-fz-h3: 24px;
  --bd-fz-h4: 20px;
  --bd-fz-h5: 16px;
  --bd-fz-h6: 14px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/*---------------------------------
	typography css start 
---------------------------------*/
body {
  font-family: var(--bd-ff-body);
  font-size: var(--bd-fz-body);
  font-weight: normal;
  color: var(--bd-text-1);
  line-height: 26px;
}

a {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: var(--bd-ff-heading); */
  font-family: inherit;
  color: var(--bd-heading-primary);
  margin-top: 0px;
  font-weight: 700;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

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

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

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

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

h5 {
  font-size: var(--bd-fz-h5);
}

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

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

p {
  font-family: var(--bd-ff-p);
  font-size: var(--bd-fz-p);
  font-weight: var(--bd-fw-normal);
  /* color: var(--bd-text-body); */
  color: var(--bd-text-1);
  margin-bottom: 15px;
  line-height: 26px;
}

a,
button,
p,
input,
select,
textarea,
li,
.transition-3,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

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

a:focus,
a:hover {
  color: inherit;
  text-decoration: none;
}

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

input {
  outline: none;
}

input[type=color] {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: none;
  border: 0;
  cursor: pointer;
  height: 100%;
  width: 100%;
  padding: 0;
  border-radius: 50%;
}

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

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

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

*::-moz-placeholder {
  color: var(--bd-common-black);
  font-size: var(--bd-fz-body);
  opacity: 1;
}

*::placeholder {
  color: var(--bd-common-black);
  font-size: var(--bd-fz-body);
  opacity: 1;
}

/*---------------------------------
    common classes css start 
---------------------------------*/
.w-img img {
  width: 100%;
}

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

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

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

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

/*----------------------------------------
    Body Overlay 
-----------------------------------------*/
.body-overlay {
  background-color: var(--bd-common-black);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.body-overlay:hover {
  cursor: crosshair;
}

.body-overlay.opened {
  opacity: 0.5;
  visibility: visible;
}

/*----------------------------------------
    Progress Wrap
-----------------------------------------*/
@media (max-width: 575px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

.bd-basic-pagination ul li {
  display: inline-block;
}

.bd-basic-pagination ul li:not(:last-child) {
  margin-right: 10px;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-basic-pagination ul li:not(:last-child) {
    margin-right: 5px;
  }
}

.bd-basic-pagination ul li a,
.bd-basic-pagination ul li span {
  display: inline-block;
  width: 52px;
  height: 52px;
  line-height: 50px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #d1dbe5;
  font-size: 18px;
  font-weight: 600;
}

.bd-basic-pagination ul li a:hover,
.bd-basic-pagination ul li a.current,
.bd-basic-pagination ul li span:hover,
.bd-basic-pagination ul li span.current {
  background: var(--bd-grey-2);
  border-color: transparent;
}

.border {
  border-style: solid;
  border-width: 1px;
  border-color: #d1dbe5;
  background-color: rgba(255, 255, 255, 0);
  position: absolute;
  left: 903px;
  top: 1747px;
  width: 52px;
  height: 52px;
  z-index: 63;
}

.nice-select::after {
  border: none;
  background-color: transparent;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: 0;
  right: 0;
  content: "\f107";
  font-family: var(--bd-ff-fontawesome);
  transform-origin: center;
  color: var(--bd-common-black);
  font-weight: 500;
  height: auto;
  width: auto;
}

.nice-select.open::after {
  -webkit-transform: translateY(-50%) rotate(-180deg);
  -moz-transform: translateY(-50%) rotate(-180deg);
  -ms-transform: translateY(-50%) rotate(-180deg);
  -o-transform: translateY(-50%) rotate(-180deg);
  transform: translateY(-50%) rotate(-180deg);
}


/* dropcap */
.bd-dropcap {
  display: inline-block;
  font-size: 50px;
  font-weight: 700;
  height: 70px;
  width: 70px;
  line-height: 70px;
  text-align: center;
  color: var(--bd-common-black);
  background-color: var(--bd-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.06);
  margin-right: 20px;
}

/*--
    - Spacing
-----------------------------------------*/
/*----------------------------------------*/
/*  ALL CSS START
/*----------------------------------------*/
/* theme btn */
.bd-btn {
  display: inline-block;
  font-size: 14px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--bd-common-red-dark);
  text-align: center;
  padding: 12px 65px 12px 35px;
  text-transform: uppercase;
  position: relative;
  border: 1px solid var(--bd-common-red-dark);
  z-index: 1;
  overflow: hidden;
}


.bd-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  display: inline-block;
  background-color: var(--bd-common-red-dark);
  z-index: -1;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

.bd-btn span {
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
  padding: 12px 15px;
  border-left: 1px solid var(--bd-common-red-dark);
  display: inline-block;
}

.bd-slider__btn .bd-btn span {
  border-left: 1px solid var(--bd-common-black);
}

.bd-slider__content .bd-slider__btn .bd-btn {
  border: 1px solid var(--bd-common-black);
  color: var(--bd-common-black);
}

.bd-slider__content .bd-slider__btn .bd-btn:hover {
  color: var(--bd-common-white);
}

@media (max-width:767px) {
  .bd-btn span {
    padding: 9px 15px;
  }
}

@media (max-width:510px) {
  .bd-btn span {
    padding: 7px 15px;
  }
}

.bd-btn span::after {
  width: 0;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}

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

.bd-btn:hover::after {
  width: 100%;
}

.bd-btn:hover span {
  color: var(--bd-common-red-dark);
  background-color: var(--bd-common-white);
  transition-delay: 0.5s;
  transition-duration: 0.7s;
}

.about-p {
  font-size: var(--bd-fz-h5);
}

/* pulse btn */
.pulse-btn {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  background-color: var(--bd-common-white);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--bd-common-black);
  animation: pulse 2s infinite;
}

.pulse-btn:hover {
  background-color: var(--bd-common-black);
  color: var(--bd-common-black);
}

.pulse-btn i {
  padding-left: 2px;
}

/* hambur btn */
.hamburger-btn {
  width: 30px;
  height: 30px;
  position: relative;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  -o-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  cursor: pointer;
  background: transparent;
  border: 0;
  outline: 0;
}

.hamburger-btn span {
  display: inline-block;
  width: 100%;
  background: var(--bd-common-black);
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  opacity: 1;
  left: 0;
  z-index: 1;
}

.hamburger-btn span:nth-child(1) {
  top: 0;
}

.hamburger-btn span:nth-child(2) {
  top: 10px;
}

.hamburger-btn span:nth-child(3) {
  top: 20px;
}

/* link btn style 1 */
.link-btn {
  position: relative;
  display: inline-block;
  font-size: 18px;
  color: var(--bd-text-3);
  background: transparent;
  border: 1px solid var(--bd-border-2);
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 48px;
  padding-right: 25px;
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  overflow: hidden;
}

.link-btn i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}

.link-btn i:last-child {
  left: 0%;
  visibility: hidden;
  opacity: 0;
}

.link-btn:hover {
  color: var(--bd-common-white);
  background-color: var(--bd-theme-1);
  border-color: var(--bd-theme-1);
}

.link-btn:hover i {
  left: 100%;
  visibility: hidden;
  opacity: 0;
}

.link-btn:hover i:last-child {
  left: 50%;
  visibility: visible;
  opacity: 1;
}

/* link btn style 2 */
.move {
  margin-top: 20px;
}

.link-btn-2 {
  position: relative;
  font-size: 14px;
  color: var(--bd-theme-primary);
  font-weight: 600;
  padding-right: 21px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.link-btn-2 i {
  font-size: 14px;
  position: absolute;
  top: 12px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}

.link-btn-2 i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}

.link-btn-2 i:last-child {
  right: 0;
}

.link-btn-2:hover {
  color: var(--bd-common-black);
}

.link-btn-2:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.link-btn-2:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}

.link-btn-2.link-prev {
  padding-right: 0;
  padding-left: 21px;
}

.link-btn-2.link-prev i:first-child {
  left: 10%;
  right: auto;
}

.link-btn-2.link-prev i:last-child {
  left: 0;
  right: auto;
}

.link-btn-2.link-prev:hover i:first-child {
  left: 0%;
  right: auto;
}

.link-btn-2.link-prev:hover i:last-child {
  left: -10%;
  right: auto;
}

.link-btn-3 {
  position: relative;
  font-size: 14px;
  color: var(--bd-theme-primary);
  font-weight: 600;
  padding-bottom: 5px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.link-btn-3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  display: inline-block;
  background-color: var(--bd-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.link-btn-3:hover {
  color: var(--bd-theme-primary);
}

.link-btn-3:hover::after {
  width: 30%;
}

.bd-border-btn {
  position: relative;
  font-size: 14px;
  color: var(--bd-common-white);
  font-weight: 500;
  padding-left: 40px;
  padding-right: 60px;
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 3px;
  border: 2px solid var(--bd-common-white);
  height: 60px;
  line-height: 60px;
}

@media(max-width: 991px) {
  .bd-border-btn {
    padding-left: 30px;
  }
}

@media (max-width:767px) {
  .bd-border-btn {
    font-size: 12px;
    padding-right: 50px;
    letter-spacing: 1px;
    height: 50px;
    line-height: 50px;
    margin-top: 15px;
  }
}

.bd-border-btn i {
  font-size: 14px;
  position: absolute;
  top: 50%;
  padding-right: 30px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
}

@media (max-width:767px) {
  .bd-border-btn i {
    position: absolute;
    top: 55%;
  }
}

@media(max-width: 425px) {
  .bd-border-btn {
    font-size: 10px;
    padding-right: 30px;
    line-height: 37px;
    height: 40px;
  }

  .bd-border-btn i {
    font-size: 14px;
    position: absolute;
    top: 50%;
    padding-right: 10px;
  }
}

.bd-border-btn i:first-child {
  right: 10%;
  visibility: hidden;
  opacity: 0;
}

.bd-border-btn i:last-child {
  right: 0;
}

.bd-border-btn:hover {
  background-color: var(--bd-common-white);
  color: var(--bd-common-black);
  border-color: transparent;
}

.bd-border-btn:hover i:first-child {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.bd-border-btn:hover i:last-child {
  right: -10%;
  visibility: hidden;
  opacity: 0;
}

.bd-border-btn.link-prev {
  padding-right: 0;
  padding-left: 21px;
}

.bd-border-btn.link-prev i:first-child {
  left: 10%;
  right: auto;
}

.bd-border-btn.link-prev i:last-child {
  left: 0;
  right: auto;
}

.bd-border-btn.link-prev:hover i:first-child {
  left: 0%;
  right: auto;
}

.bd-border-btn.link-prev:hover i:last-child {
  left: -10%;
  right: auto;
}

/* pulse effect animation */
@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

@-webkit-keyframes scale {
  0% {
    width: 5px;
  }

  50% {
    width: 30px;
  }

  100% {
    width: 5px;
  }
}

@keyframes scale {
  0% {
    width: 5px;
  }

  50% {
    width: 30px;
  }

  100% {
    width: 5px;
  }
}

@-webkit-keyframes zoom {
  0% {
    scale: 0.5;
  }

  50% {
    scale: 1;
  }

  100% {
    scale: 0.5;
  }
}

@keyframes zoom {
  0% {
    scale: 0.5;
  }

  50% {
    scale: 0.8;
  }

  100% {
    scale: 0.5;
  }
}

/*----------------------------------------*/
/*  PRELOADER CSS START
/*----------------------------------------*/
.bd-preloader {
  background-color: var(--bd-common-white);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.bd-preloader__center {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.bd-preloader img,
.bd-preloader svg {
  width: 150px;
  animation: zoom 1s infinite;
}

/*--
    - Background color
-----------------------------------------*/
.grey-bg {
  background: var(--bd-grey-1);
}

.grey-bg-2 {
  background: var(--bd-grey-2);
}

.white-bg {
  background: var(--bd-common-white);
}

.black-bg {
  background: var(--bd-common-black);
}

.theme-bg {
  width: 100%;
  position: relative;
}

.theme-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../img/background/about-bg.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center center;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

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

.theme-bg-3 {
  background-color: #1542bf;
}

.theme-bg-4 {
  background-color: #15d0ac;
}

.theme-bg-5 {
  background-color: #2e3c4010;
}

.theme-bg-6 {
  background-color: #8c17bd;
}

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


/*----------------------------------------*/
/*  OFFCANVAS CSS START
/*----------------------------------------*/
.offcanvas__area {
  position: fixed;
  right: -490px;
  top: 0;
  width: 450px;
  height: 100%;
  min-height: 768px;
  background: var(--bd-common-white) none repeat scroll 0 0;
  -webkit-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -ms-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -o-box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -moz-transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 0.3s cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition-duration: 1s;
  z-index: 9999;
  -ms-overflow-style: none;
  /* for Internet Explorer, Edge */
  scrollbar-width: none;
  /* for Firefox */
  overflow-y: scroll;
}

.offcanvas__area::-webkit-scrollbar {
  display: none;
  /* for Chrome, Safari, and Opera */
}

.offcanvas__area.offcanvas-opened {
  right: 0px;
}

@media (max-width: 575px) {
  .offcanvas__area {
    width: 290px;
  }
}

.offcanvas__wrapper {
  position: relative;
  padding: 45px;
  background-color: var(--bd-common-white);
  overflow: auto;
  width: 100%;
  height: 100%;
}

@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}

.offcanvas__close-btn {
  display: inline-block;
  font-size: 16px;
  height: 40px;
  width: 40px;
  line-height: 36px;
  background: var(--bd-common-black);
  color: #fff;
}

.offcanvas__close-btn:hover {
  background: var(--bd-theme-primary);
}

.offcanvas__top {
  padding-bottom: 10px;
  border-bottom: 1px solid #D5D5D5;
}

.offcanvas__color {
  margin-bottom: 40px;
}

.offcanvas__color h5 {
  font-size: 22px;
  margin-bottom: 15px;
}

.offcanvas__color input {
  display: none;
}

.offcanvas__color label {
  width: 100%;
  height: 60px;
  background-color: var(--bd-theme-primary);
}

.offcanvas__color label:hover {
  cursor: pointer;
}

.offcanvas__search {
  position: relative;
}

.offcanvas__search input {
  width: 100%;
  height: 40px;
  line-height: 40px;
  padding-right: 20px;
  background: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #D5D5D5;
  font-size: 14px;
  color: var(--bd-common-black);
}

.offcanvas__search input::placeholder {
  color: var(--bd-text-1);
}

.offcanvas__search input:focus {
  border-color: var(--bd-theme-primary);
}

.offcanvas__search button {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--bd-text-1);
}

.offcanvas__text p {
  margin-bottom: 25px;
}

.offcanvas__contact h4 {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--bd-common-black);
}

.offcanvas__contact ul li {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas__contact ul li:not(:last-child) {
  margin-bottom: 20px;
}

.offcanvas__contact ul li i {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas__contact ul li:hover i {
  background: var(--bd-theme-primary);
  color: var(--bd-common-white);
  border-color: var(--bd-theme-primary);
}

.offcanvas__contact ul li:hover a {
  color: var(--bd-theme-primary);
}

.offcanvas__contact-icon i {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border: 1px solid var(--bd-border-1);
}

.offcanvas__contact-text a {
  font-size: 18px;
  color: var(--bd-text-1);
}

.offcanvas__contact-text a:hover {
  color: var(--bd-theme-primary);
}

.offcanvas__map iframe {
  width: 100%;
  height: 200px;
  border: none;
}

.offcanvas__social ul li {
  display: inline-block;
}

.offcanvas__social ul li:not(:last-child) {
  margin-right: 5px;
}

.offcanvas__social ul li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: var(--bd-grey-1);
  color: var(--bd-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.offcanvas__social ul li a:hover {
  background: var(--bd-theme-primary);
  color: var(--bd-common-white);
}

.offcanvas__notification-icon a {
  font-size: 14px;
  color: var(--bd-common-black);
  position: relative;
}

.offcanvas__notification-icon a .notification-count {
  position: absolute;
  top: -4px;
  right: -13px;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 22px;
  font-size: 12px;
  font-weight: 600;
  background-color: var(--bd-theme-primary);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
  color: var(--bd-common-white);
  text-align: center;
}

.offcanvas__notification-text p {
  margin-bottom: 0;
  font-weight: 500;
  color: var(--bd-common-black);
  font-size: 14px;
}

.offcanvas__notification-text p .notification-number {
  color: var(--bd-theme-primary);
}

.offcanvas__notification-text p a {
  color: var(--bd-theme-primary);
}

.offcanvas__btn a {
  margin-bottom: 20px;
}

/*----------------------------------------*/
/*  BREADCRUMB CSS START
/*----------------------------------------*/
.breadcrumb__section {
  padding-top: 216px;
  padding-bottom: 100px;
  background-size: cover;
  background-repeat: no-repeat;
}

.breadcrumb__title {
  font-size: 48px;
  margin-bottom: 0px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.breadcrumb__list {
  background: #000000ad;
  padding: 1px 4px;
  display: inline-block;
}

.breadcrumb__list span {
  font-size: 16px;
  color: var(--bd-common-white);
  font-weight: 600;
  padding-right: 3px;
  margin-right: 3px;
  text-transform: capitalize;
}

.breadcrumb__list span a:hover {
  color: var(--bd-theme-primary);
}

@media screen and (max-width:991px) {
  .breadcrumb__section {
    padding-top: 100px;
    background-size: contain;
  }

  .breadcrumb__title {
    font-size: 34px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width:576px) {

  .breadcrumb__title {
    font-size: 28px;
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
}

/*----------------------------------------*/
/*  NAV TAB CSS START
/*----------------------------------------*/
.bd-tab .nav-tabs {
  padding: 0;
  margin: 0;
  border: 0;
}

.bd-tab .nav-tabs .nav-link {
  padding: 0;
  margin: 0;
  border: 0;
}

/*----------------------------------------*/
/*  SECTION TITLE CSS START
/*----------------------------------------*/
.bd-section__subtitle {
  font-size: 20px;
  font-weight: var(--bd-fw-bold);
  color: #231F5A;
  display: inline-block;
  font-weight: 600;
  text-transform: capitalize;
  letter-spacing: 0.5px;
}

.bd-section__title {
  font-size: 39px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 48px;
  color: var(--bd-common-red-dark);
  /* font-family:var(--bd-ff-heading); */

}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-section__title {
    letter-spacing: 2px;
  }

  .bd-section__title br {
    display: none;
  }
}

.bd-section__title.bd-title-border {
  position: relative;
}

.bd-section__title.bd-title-border::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 30px;
  height: 3px;
  display: inline-block;
  /* background-color: var(--bd-common-red); */
  background-color: var(--bd-common-red-dark);
  animation: scale infinite 3s;
}

.bd-testimonial__area .bd-section__title.bd-title-border::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 30px;
  height: 3px;
  display: inline-block;
  /* background-color: var(--bd-common-red); */
  background-color: #ffffff;
  animation: scale infinite 3s;
}




@media screen and (max-width:991px) {
  .bd-section__title {
    font-size: 34px;
    line-height: 36px;
  }
}

@media screen and (max-width:768px) {
  .bd-section__title {
    font-size: 28px;
    line-height: 32px;
    margin-bottom: 40px;
  }

  .bd-section__subtitle {
    margin-bottom: 5px;
  }
}


@media(max-width:425px) {
  .bd-section__title {
    font-size: 26px;
    line-height: 32px;
    margin-bottom: 20px;
  }

  .bd-section__subtitle {
    margin-bottom: 0px;
    font-size: 16px;
  }

  p {
    font-size: 14px !important;
  }
}

/*----------------------------------------*/
/*  02. HEADER CSS START
/*----------------------------------------*/
.bd-header-top {
  background: var(--bd-common-white);
  border-bottom: 1px solid #ddd;
}

.header-info {
  display: inline-block;
  height: 45px;
  line-height: 45px;
}

.header-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.header-info ul li {
  margin-right: 35px;
  color: var(--bd-common-black);
  font-size: 16px;
  display: flex;
  align-items: center;
}

.header-info ul li:last-child {
  margin-right: 0;
}

.header-info ul li i {
  font-size: 18px;
  margin-right: 10px;
  color: #000;
}

.header-info ul li a {
  color: #000;
}

.header-info ul li a:hover {
  color: var(--bd-common-blue);
}

.header-icon {
  text-align: right;
  line-height: 45px;
}

.header-icon ul li {
  display: inline-block;
}

.header-icon ul li a {
  margin-left: 15px;
  color: var(--bd-common-black);
}

.header-icon ul li a i {
  font-size: 18px;
  color: var(--bd-common-black);
}

.header-icon ul li a i:hover {
  color: var(--bd-common-blue);
}


.bd-header__transparent {
  width: 100%;
  z-index: 99;
  /* position: absolute; */
  display: inline-block;
  background: var(--bd-common-white);
  box-shadow: 0px 16px 32px 0px rgba(0, 0, 0, 0.02);
}

@media screen and (max-width:1200px) {
  .bd-header__transparent {
    padding: 15px 0;
  }

  .bd-header__main.header-sticky {
    padding: 15px 0;
  }
}

.bd-header__hamburger {
  margin-top: 3px;
  display: none;
}

.bd-header__main.header-sticky {
  position: fixed !important;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 9999;
  -webkit-animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 300ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0 10px 15px rgba(25, 25, 25, 0.1);
  background: var(--bd-grey-2);
}

.bd-header__main.header-sticky .main-menu ul li a {
  color: var(--bd-common-black);
}

.bd-header__main.header-sticky ul li a:hover {
  color: #0071B7;
}

@media screen and (max-width:991px) {
  .header-info ul {
    justify-content: center;
  }

  .header-icon {
    text-align: center;
  }
}

@media screen and (max-width:480px) {
  .bd-header-top {
    padding: 10px 0;
  }

  .header-info ul {
    display: inline-block;
  }

  .header-info {
    text-align: center;
  }

  .header-info ul li {
    justify-content: center;
    margin-right: 0;
  }

  .header-info ul li a {
    line-height: 30px;
  }

  .header-icon ul {
    line-height: 0;
  }

  .header-icon ul li {
    line-height: 0;
    margin-top: 10px;
  }
}

/* logo */
.logo img {
  max-width: 200px;
}

/* main menu css */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu {
    margin-left: 30px;
  }
}

.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-left: 35px;
}

.main-menu ul li:first-child {
  margin-left: 0;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin-right: 15px;
  }
}

.main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  padding: 36px 0;
  font-weight: 500;
  font-family: var(--bd-ff-heading);
  text-transform: capitalize;
  letter-spacing: 1px;
  position: relative;
  color: var(--bd-common-black);
}

.main-menu ul li a::before {
  content: "";
  position: absolute;
  bottom: 27px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  display: inline-block;
  background-color: var(--bd-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.main-menu ul li.has-dropdown>a {
  position: relative;
}

.main-menu ul li.has-dropdown>a::after {
  content: "\f107";
  -webkit-transform: translateY(1px);
  -moz-transform: translateY(1px);
  -ms-transform: translateY(1px);
  -o-transform: translateY(1px);
  transform: translateY(1px);
  font-size: 14px;
  font-family: var(--bd-ff-fontawesome);
  font-weight: 500;
  margin-left: 5px;
  display: inline-block;
}

.main-menu ul li .submenu {
  position: absolute;
  top: 120%;
  left: 0;
  width: 300px;
  background: var(--bd-common-white);
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  visibility: hidden;
  opacity: 0;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -moz-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -ms-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -o-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
}

.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}

.main-menu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.main-menu ul li .submenu li.has-dropdown>a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  -o-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.main-menu ul li .submenu li a {
  padding: 10px 25px;
  font-size: 14px;
  position: relative;
  z-index: 1;
  color: var(--bd-common-black);
  width: 100%;
}

.main-menu ul li .submenu li a::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: var(--bd-theme-primary);
  z-index: -1;
}

.main-menu ul li .submenu li:hover>a::before {
  left: 50%;
  width: 100%;
}

.main-menu ul li .submenu li .submenu {
  left: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}

.main-menu ul li .submenu li:hover>a {
  color: var(--bd-common-white);
}

.main-menu ul li .submenu li:hover>a::after {
  color: var(--bd-common-white);
}


.main-menu ul li .submenu li:hover>.submenu {
  left: 100%;
  visibility: visible;
  opacity: 1;
}

.main-menu ul li.active>a {
  color: #0071B7;
}

/* .main-menu ul li:hover>a::after {
  color: var(--bd-theme-primary);
}

.main-menu ul li.active>a::before {
  width: 100%;
} */

.main-menu ul li:hover>.submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}

/*----------------------------------------*/
/*  03. MEAN MENU CSS START
/*----------------------------------------*/
/* mean menu customize */
.mean-container a.meanmenu-reveal {
  display: none;
}

.mean-container .mean-nav {
  background: none;
  margin-top: 0;
}

.mean-container .mean-bar {
  padding: 0;
  min-height: auto;
  background: none;
}

.mean-container .mean-nav>ul {
  padding: 0;
  margin: 0;
  width: 100%;
  list-style-type: none;
  display: block !important;
}

.mean-container a.meanmenu-reveal {
  display: none !important;
}

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--bd-common-black);
  border-top: 1px solid #ebebeb;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.mean-container .mean-nav ul li a:hover {
  color: var(--bd-theme-primary);
}

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
  line-height: 14px;
  border: 1px solid #ebebeb !important;
  height: 30px;
  width: 30px;
  line-height: 30px;
  color: var(--bd-common-black);
  line-height: 30px;
  top: 0;
  font-weight: 400;
}

.mean-container .mean-nav ul li a.mean-expand:hover {
  background: var(--bd-theme-primary);
  color: var(--bd-common-white);
  border-color: var(--bd-theme-primary);
}

.mean-container .mean-nav ul li>a>i {
  display: none;
}

.mean-container .mean-nav ul li>a.mean-expand i {
  display: inline-block;
}

.mean-container .mean-nav>ul>li:first-child>a {
  border-top: 0;
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  color: var(--bd-common-white);
  background-color: var(--bd-theme-primary);
}

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  color: var(--bd-common-white);
}


/** video banner css **/

video {
  min-width: 100%;
  min-height: 100vh;
  z-index: 1;
}

.overlay {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  /* background-image: linear-gradient(45deg, rgba(0, 0, 0, .3) 50%, rgba(0, 0, 0, .7) 50%); */
  /* background-size: 3px 3px; */
  background: #333;
  opacity: 0.3;
  z-index: 22;
}


/*----------------------------------------*/
/* 04. SLIDER CSS
/*----------------------------------------*/

.bd-slider__section {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bd-slider__item {
  background-size: cover;
  background-repeat: no-repeat;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
}

.bd-slider__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  z-index: 999;
  transform: translate(-50%, -50%);
}

.bd-slider__overlay {
  position: relative;
  z-index: 1;
}

.bd-slider__overlay::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: auto;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(0%, 0%);
  -moz-transform: translate(0%, 0%);
  -ms-transform: translate(0%, 0%);
  -o-transform: translate(0%, 0%);
  transform: translate(0%, 0%);
  background-color: var(--bd-common-black);
  background-color: var(--bd-common-black);
  opacity: 0;
  z-index: -1;
}

.bd-slider__subtitle {
  font-size: 26px;
  font-weight: 200;
  color: var(--bd-common-black);
  display: inline-block;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1.2;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-slider__subtitle {
    letter-spacing: 1px;
    font-size: 22px;
  }
}

.bd-slider__title {
  font-size: 42px;
  /* color: var(--bd-common-white); */
  color: var(--bd-common-red-dark);
  font-family: var(--bd-ff-heading);
  text-transform: uppercase;
  line-height: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 100;
  margin-bottom: 15px;
}


@media screen and (max-width:1400px) {
  .swiper-slide img {
    width: 100%;
    height: 46vh;
  }
}

@media screen and (max-width:1200px) {

  .bd-slider__title {
    font-size: 40px;
    line-height: 48px;
  }

  .bd-slider__subtitle {
    font-size: 20px;
    line-height: 1;
  }
}

@media screen and (max-width: 991px) {
  .bd-slider__title {
    font-size: 36px;
    line-height: 42px;
  }

  .bd-slider__title br {
    display: none;
  }

  .bd-slider__subtitle {
    font-size: 18px;
  }

  .swiper-container {
    height: inherit;
  }

  video {
    display: none;
  }

  .overlay {
    display: none;
  }

  .bd-header__transparent {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .bd-slider__title {
    font-size: 34px;
    line-height: 40px;
  }

  .bd-slider__title br {
    display: none;
  }

  .bd-btn {
    padding: 8px 45px 8px 12px;
    letter-spacing: 1px;
    font-weight: 400;
  }
}

@media screen and (max-width: 510px) {

  .bd-btn {
    padding: 8px 45px 8px 12px;
    letter-spacing: 1px;
    font-weight: 400;
  }
}

@media screen and (max-width: 510px) {
  .bd-slider__title {
    font-size: 32px !important;
    line-height: 38px !important;
  }

  .bd-slider__subtitle {
    font-size: 18px;
    margin-top: 0 !important;
    margin-bottom: 15px !important;
  }

  .bd-btn {
    padding: 6px 42px 6px 10px;
    letter-spacing: 1px;
    font-weight: 400;
  }
}



.bd-slider__content p {
  margin-bottom: 45px;
  color: var(--bd-common-white);
}

@media (max-width:425px) {
  .bd-slider__content p {
    margin-bottom: 10px;
    font-size: 14px;
  }

  .rcname {
    font-size: 24px;
  }

  .cname {
    font-size: 24px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px),
(max-width: 575px) {
  .bd-slider__pagination {
    display: none;
  }
}

.bd-slider__pagination button {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.bd-slider__pagination button.slider-button-next {
  left: auto;
  right: 0;
}

.bd-slider__dot {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 9;
  text-align: center;
}

.bd-slider__dot .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background-color: var(--bd-common-white);
  margin: 0 8px;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
}

/*----------------------------------------*/
/*  05: ABOUT CSS
/*----------------------------------------*/
.bd-about-2__section {
  background-color: #F7F8F9;
  width: 100%;
}

.bd-about-2__img {
  width: 100%;
  display: inline-block;
}

.bd-about-2__img img {
  width: 100%;
  border-radius: 12px;
}

@media (max-width:1199px) {
  .bd-about-2__img .first {
    height: 350px;
  }

  .bd-about-2__img .ant {
    height: 160px;
  }

  .bd-about-2__text {
    margin-top: 30px;
  }
}

.aboutm-img {
  display: inline-block;
  width: 100%;
}

.aboutm-img img {
  width: 100%;
  border-radius: 15px;
  /* transform: scale(1);
  transition: all ease 0.8s; */
}

/* .aboutm-img img:hover {
  transform: scale(1.1);
} */

@media (max-width: 767px) {
  .bd-about__img {
    margin-right: 0;
    margin-top: 30px;
  }

  .bd-about-2__text {
    margin-top: 0px;
  }

  .bd-about-2__text .bd-section__title {
    margin-bottom: 10px;
  }

  .bd-about__text .bd-section__title {
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .bd-about__img {
    margin-right: 0;
  }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-about-2__text {
    margin-left: 0;
  }
}

/*----------------------------------------*/
/*  06: SERVICES CSS
/*----------------------------------------*/

.benefit-bg {
  background-color: #fff;
  padding: 30px 30px;
  margin-bottom: 50px;
  border-radius: 12px;

}

.bd-services-2__area {
  position: relative;
  width: 100%;
  background-color: var(--bd-grey-2);
  z-index: 1;
}

.bd-services-2__area::before {
  content: "";
  opacity: 0.05;
  background: url("../img/background/bg-wt.png");
  background-position: center center;
  background-repeat: repeat;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bd-services__item {
  padding: 10px;
}


.bd-services__title {
  font-size: 24px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 500;
  margin-bottom: 10px;
}

.bd-services__title a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.bd-services__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.bd-services__content p {
  margin-bottom: 30px;
}

.bd-services-2__item {
  position: relative;
  background-color: #fff;
  text-align: left;
}

/* .bd-services-2__item::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 3px;
  width: 0;
  display: inline-block;
  background-color: var(--bd-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
} */

.bd-services-2__item:hover::before {
  right: auto;
  width: 100%;
  left: 0;
}

.bd-services-2__icon {
  width: 100%;
  display: inline-block;
}

.bd-services-2__icon img {
  width: 64px;
  height: 64px;
  display: inline-block;
  transition: all 0.4s;
}

.bd-services-2__nth {
  width: 60px;
  height: 60px;
  background-color: var(--bd-grey-1);
  border-radius: 50%;
  display: inline-block;
  margin: 8px 0px 30px 0px;
  transition: all 0.4s;
  background-image: url("../img/services/PCB\ Assemblies.jpg");
  background-size: 100% 100%;
}

.pcb-Assemblies {
  height: 60px;
  width: 60px;
  border-radius: 50px;

}

.bd-services-2__title {
  font-size: 28px;
  text-transform: capitalize;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: left;
  margin-bottom: 0px;
}

.bd-services-2__title a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.bd-services-2__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

.bd-services-2__content p {
  margin: 10px 0px 0px;
  font-weight: 400;
  font-size: 16px;
}

.bd-section__inner-list ul li {
  list-style: none;
  position: relative;
  padding-left: 25px;
}

.bd-section__inner-list ul li span {
  position: absolute;
  top: 1px;
  left: 0;
  color: var(--bd-theme-primary);
}

.bd-section__inner-title {
  margin-bottom: 25px;
}

.content-size {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bd-services-2__section .bd-services-2__item {
  width: 100%;
  display: inline-block;
}

.benefit-bg .boxp-img {
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.benefit-bg .boxp-img img {
  width: 100%;
  border-radius: 15px;
  transform: scale(1);
  transition: all ease 0.8s;
}

.benefit-bg .boxp-img img:hover {
  transform: scale(1.1);
}

@media screen and (max-width:1200px) {

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

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

@media screen and (max-width:992px) {
  .pl-200 {
    padding-left: 15px;
  }

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

  .bd-services-2__title {
    font-size: 24px;
  }
}


@media screen and (max-width:480px) {
  .bd-services-2__item {
    padding: 25px;
  }

  .bd-services-2__title a {
    font-size: 26px;
  }

  .bd-services-2__content p {
    margin: 20px 0px 0px;
  }
}

@media screen and (max-width:440px) {
  .bd-services-2__content p {
    margin: 15px 0px 0px;
  }

  .bd-services-2__item {
    padding: 20px;
  }
}




/*----------------------------------------*/
/* ABOUT PAGE CSS */
/*----------------------------------------*/

/* counter css */

.bd-counter__border .bd-services-2__item {
  height: 400px;
  padding: 30px;
}

.bd-counter__border .mission {
  height: auto;
}

.mission b {
  font-size: 18px;
  color: var(--bd-theme-primary);
}

.bd-section__title-wrapper p {
  margin-bottom: 30px;
}


.about-block-three {
  margin-bottom: 10px;
}

.about-block-three .title {
  color: var(--bd-common-red-dark);
}

.about-block-three .inner {
  position: relative;
  padding: 22px 40px;
  padding-left: 125px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (max-width: 575.98px) {
  .about-block-three .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.about-block-three .inner:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.06);
}

.about-block-three .inner:hover .icon {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.about-block-three .icon {
  position: absolute;
  left: 25px;
  top: 35px;
  border-radius: 5px;
  line-height: 1em;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

@media (max-width: 575.98px) {
  .about-block-three .icon {
    position: relative;
    left: 0;
    top: 0;
    display: inline-block;
    margin-bottom: 10px;
  }
}

.about-block-three .title {
  margin-bottom: 5px;
}

.about-block-three .text {
  margin-bottom: 0px;
}

/* about coure values css */
.bd-about__section {
  background-color: var(--bd-grey-1);
}

.bd-counter__border .bd-feature__item {
  height: 275px;
  /* background-color: var(--bd-grey-2); */
  background-color: #f0f0f0;
  padding: 30px 20px;
}

.bd-counter__border .bd-feature__item p {
  margin-top: 15px;
}

.bd-counter__border .bd-feature__title {
  color: #231F5A;
}

.bd-counter__border .bd-feature__title {
  font-weight: 600;
}

.bd-counter__border .bd-feature__icon span {
  border: 1px solid #231F5A;
  text-align: center;
  height: 50px;
  width: 50px;
  line-height: 42px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}

.bd-counter__border .bd-feature__item:hover {
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.06);
  box-shadow: 0px 0px 15px 5px rgba(0, 0, 0, 0.06);
}

.bd-counter__border .bd-feature__item:hover span {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

/* contain area css */
.bd-services-2__section {
  background-image: linear-gradient(90deg, #e2ebf4, #f5f8fb);
}

.bd-service-2__section .bd-services-2__item {
  height: 370px;
  padding: 30px;
  background: #fff;
}

.bd-services-2__item .bd-services-2__content {
  margin: 0px;
}

.bd-services-2__item .bd-services-2__title {
  /* color: var(--bd-theme-primary); */
  color: var(--bd-common-red-dark);
  margin-top: 10px;
}

.other {
  flex-wrap: wrap;
}

.group .bd-services-2__content {
  width: 70%;
}

/* about page media quiry */

@media(max-width:1399px) {
  .bd-counter__border .bd-feature__item {
    height: 280px;
  }
}

@media(max-width:1199px) {
  .bd-counter__border .bd-feature__item {
    height: 250px;
  }

  .bd-team-3__section .bd-services-2__item {
    height: 385px;
    padding: 25px;
  }
}

@media(max-width:991px) {
  .bd-about__img img {
    display: none;
  }

  .bd-team-3__section .bd-services-2__item {
    height: auto;
  }

  .bd-services-2__icon {
    width: 100%;
  }

  .bd-services-2__item .bd-services-2__content {
    width: 100%;
  }
}

@media (max-width:767px) {
  .bd-counter__border .bd-feature__item {
    height: auto;
  }

  .bd-team-3__section .bd-services-2__item {
    height: auto;
  }
}

@media (max-width:480px) {
  .bd-services-2__item .bd-services-2__title {
    font-size: 26px;
  }

  .bd-services-2__title a {
    font-size: 22px;
  }

  .bd-services-2__icon img {
    height: 64px;
    width: 64px;
  }
}

@media (max-width:425px) {
  .bd-services-2__item .bd-services-2__title {
    font-size: 22px;
  }

  .bd-services-2__content p {
    font-weight: 400;
    line-height: 24px;
  }
}

@media (max-width:480px) {
  .bd-services-2__item .bd-services-2__title {
    font-size: 20px;
  }

}

/*----------------------------------------*/
/*  07. FEATURE CSS
/*----------------------------------------*/
/* .bd-feature__section {
  background-color: var(--bd-grey-1);
  width: 100%;
  position: relative;
  z-index: 1;
}
 */

.why {
  background: url(../img/background/why2.jpg) center no-repeat;
  background-size: cover;
  width: 100%;
}

.why .bd-section__title {
  color: #ffffff;
}

.why .bd-section__title.bd-title-border::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  content: "";
  width: 30px;
  height: 3px;
  display: inline-block;
  background-color: #ffffff;
  animation: scale infinite 3s;
}

.why-item {
  width: 100%;
  display: inline-block;
}

.why-item-img {
  width: 100%;
  display: inline-block;
}

.why-item-img img {
  width: 100%;
}

.see-more {
  padding-top: 70px;
}

.see-more a {
  color: #fff;
  padding: 0.8em 1.8em;
  border: 2px solid #ffffff;
  position: relative;
  overflow: hidden !important;
  display: inline-block;
  background-color: transparent;
  text-align: center;
  text-transform: uppercase;
  font-size: 18px;
  z-index: 1;
  font-family: inherit;
  transition: all 0.3s;
}

.see-more a::before {
  content: '';
  width: 0;
  height: 300%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  background: var(--bd-common-red-dark);
  transition: .5s ease;
  display: block;
  z-index: -1;
}

.see-more a:hover::before {
  width: 105%;
}




@media screen and (max-width:767px) {
  .why-item-img {
    text-align: center;
    margin-top: 25px;
  }

  .see-more a {
    font-size: 16px;
    padding: 10px 20px;
  }

  .see-more {
    padding-top: 40px;
  }
}

@media screen and (max-width:576px) {
  .why-item-img {
    text-align: center;
    margin-top: 20px;
  }

  .see-more a {
    font-size: 14px;
    padding: 4px 15px;
  }

  .see-more {
    padding-top: 30px;
  }
}


.bd-feature__item {
  background: var(--bd-theme-primary);
  height: 220px;
  padding: 20px;
  transition: all 0.5s;
}


.bd-feature__item:hover {
  -webkit-box-shadow: 0 20px 40px 0 rgba(12, 0, 46, 0.08);
  box-shadow: 0 20px 40px 0 rgba(12, 0, 46, 0.08);
}

.bd-feature__item p {
  margin-top: 15px;
  margin-bottom: 0px;
}

.bd-feature__icon {
  flex: 0 0 auto;
}

.bd-feature__icon span {
  font-size: 20px;
  color: var(--bd-common-black);
  border-style: solid;
  border-width: 1px;
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0);
  width: 64px;
  height: 64px;
  line-height: 64px;
  text-align: center;
  display: inline-block;
  color: var(--bd-common-black);
}

@media (max-width:425px) {
  .bd-feature__icon span {
    max-width: 64px;
    min-width: 64px;
  }
}

.bd-feature__title {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 0px;
  color: var(--bd-common-white);
  text-transform: capitalize;
}

.bd-feature__img {
  width: 100%;
  height: 100%;
  background-image: url("../img/feature/fearture.jpg");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-feature__img img {
    width: 100%;
  }

  .bd-feature__item {
    margin-bottom: 20px;
  }
}

@media (max-width: 991px) {
  .bd-feature__item {
    height: auto;
  }
}

@media (max-width: 480px) {
  .bd-feature__item {
    display: block;
  }
}

/*----------------------------------------*/
/*  08. manufacturing CSS 
/*----------------------------------------*/

.bd-manufacturing__section p {
  font-size: 18px;
}

.manufacturing-item {
  width: 100%;
}

.border-right {

  border-right: 1px solid #eeeeee;
}

.bd-manufacturing__section .bd-manufacturing__icon h3 {
  color: var(--bd-common-red-dark);
}

.manufacturing-item p {
  font-size: 18px;
  margin-top: 20px;
}

.manufacturing-item img {
  height: 64px;
  width: 64px;
}

@media screen and (max-width:991px) {
  .manufacturing-item {
    margin-top: 20px;
  }

  .bd-manufacturing__section .bd-section__title-wrapper.mb-90 {
    margin-bottom: 40px;
  }
}

@media screen and (max-width:767px) {
  .bd-manufacturing__section p {
    font-size: 16px;
  }
}

@media screen and (max-width:480px) {
  .manufacturing-item {
    padding: 0 15px;
  }

  .bd-manufacturing__section p {
    font-size: 14px;
  }

  .border-right {
    border-bottom: 1px solid #eeeeee;
  }
}


/*----------------------------------------*/
/*  08. COUNTER CSS 
/*----------------------------------------*/

.facts .left-crown {
  left: inherit;
  right: -6.7%
}

.facts .next-section {
  right: inherit;
}

.fact-box {
  position: relative;
  margin-top: 26px;
  float: left;
  padding: 0px 15px;
}

.fact-box .inner {
  position: relative;
  padding: 50px 15px 30px;
  text-align: center;
  border: 2px solid #fff;
  border-radius: 0px 0px 5px 5px;
  border-top: none;
  height: 195px;
  background-color: #000000ba;
}

.fact-box .end {
  margin-top: 20px;
}

.fact-box .inner:before {
  content: '';
  position: absolute;
  right: 0px;
  top: 0px;
  width: 60px;
  border-bottom: 2px solid #fff;
}

.fact-box .inner::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 60px;
  border-bottom: 2px solid #fff;
}

.fact-box .inner img {
  vertical-align: middle;
  background: #000000a6;
  border-radius: 10px;
}

.fact-box .icon-box {
  position: absolute;
  left: 50%;
  top: -30px;
  margin-left: -30px;
  width: 60px;
  height: 60px;
  line-height: 48px;
  font-size: 42px;
}

.fact-box .content {
  position: relative;
}

.count-outer {
  position: relative;
  font-size: 42px;
  line-height: 1.4em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}

.count-outer .count-text {
  font-weight: 700;
}

.fact-box .counter-title {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  color: #fff;
}

@media (max-width:991px) {
  .fact-box .inner {
    margin-top: 15px;
  }

  .fact-box .end {
    max-width: 100%;
  }
}

@media (max-width:992px) {
  .fact-box-sm {
    margin-top: 60px !important
  }
}

@media (max-width:767px) {
  .fact-box-xs {
    margin-top: 60px !important
  }
}

.bd-counter__item {
  height: 250px;
  background-color: var(--bd-grey-2);
  padding: 30px;
}

.bd-counter__info {
  border: 3px solid var(--bd-theme-primary);
  background-color: var(--bd-grey-2);
  padding: 20px;
}

.bd-counter__info .counter {
  color: #0071B7;
  font-size: 55px;
}

.bd-counter__icon {
  margin-right: 20px;
}

.bd-counter__icon span {
  font-size: 48px;
  color: var(--bd-common-black);
}

.bd-counter__title {
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0px;
  color: #0071B7;
}

.bd-counter__info span {
  font-size: 24px;
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 500;
}

/*----------------------------------------*/
/* 09. CONTACT CSS 
/*----------------------------------------*/
.bd-cta__info span {
  color: var(--bd-common-white);
  font-size: 16px;
}

.bd-cta__title {
  font-size: 30px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
}

@media (max-width:767px) {
  .bd-cta__title {
    font-size: 24px;
    letter-spacing: 1px;
  }
}

.bd-contact__map iframe {
  width: 100%;
  vertical-align: bottom;
}

/*----------------------------------------*/
/*  10. TESTIMONIAL CSS 
/*----------------------------------------*/
.bd-testimonial__item {
  background-color: var(--bd-common-white);
  padding: 40px;
}

.bd-testimonial__icon {
  text-align: center;
  margin-bottom: 30px;
}

.bd-testimonial__icon span {
  font-size: 46px;
}

.bd-testimonial__review {
  margin-bottom: 30px;
}

.bd-testimonial__review p {
  text-align: center;
}

.bd-testimonial__revirwer-avata {
  margin-right: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.bd-testimonial__revirwer-name {
  line-height: 1;
}

.bd-testimonial__revirwer-name h3 {
  font-size: 16px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--bd-common-red-dark);
}

.testimonial-slider-button-prev {
  position: absolute;
  left: -100px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  width: 47px;
  height: 47px;
  background-color: var(--bd-common-white);
  border-radius: 50%;
  text-align: center;
  line-height: 47px;
  z-index: 1;
}

@media (max-width: 1315px) {
  .testimonial-slider-button-prev {
    position: absolute;
    left: -40px;
    top: 50%;
  }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider-button-prev {
    position: static;
    transform: translateY(0%);
    top: auto;
    margin: 0 15px;
    bottom: -100px;
  }
}

.testimonial-slider-button-next {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 25px;
  width: 47px;
  height: 47px;
  background-color: var(--bd-common-white);
  border-radius: 50%;
  text-align: center;
  line-height: 47px;
  z-index: 1;
}

@media (max-width: 1315px) {
  .testimonial-slider-button-next {
    position: absolute;
    right: -40px;
    top: 50%;
  }
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-slider-button-next {
    margin: 0 15px;
    transform: translateY(0%);
    position: static;
    top: auto;
    bottom: -100px;
  }
}


@media screen and (max-width:1024px) {
  .testimonial-slider-button-prev {
    display: none;
  }

  .testimonial-slider-button-next {
    display: none;
  }
}


/*----------------------------------------*/
/*  14. products
/*----------------------------------------*/
.bd-products__section {
  position: relative;
  width: 100%;
  z-index: 1;
}

.product-box {
  width: 100%;
  display: inline-block;
  position: relative;
}

.product {
  /* -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  -webkit-transition: all 0.2s linear;
  transition: all 0.6s linear;
  margin-bottom: 30px;
  text-align: center;
}

.product h3 {
  color: var(--bd-common-blue);
  font-size: 20px;
  padding: 17px 0px;
  background: var(--bd-common-white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.product img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.no-margin {
  margin: 0;
}

.product ul li {
  list-style: none;
}

.product p {
  line-height: 20px;
}

.product p i {
  margin-left: -30px;
  color: #000;
  font-size: 10px;
  padding: 6px 10px 0 0;
}

.product-box::before {
  content: "";
  position: absolute;
  bottom: 30px;
  right: 0;
  height: 3px;
  width: 0;
  display: inline-block;
  background-color: var(--bd-theme-primary);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.product-box:hover::before {
  right: auto;
  width: 100%;
  left: 0;
}


/*----------------------------------------*/
/*  14. products CSS
/*----------------------------------------*/
.bd-products__img img {
  border-radius: 50%;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-products__img {
    margin-left: 0;
    margin-right: 0;
  }
}

.bd-products__feature h3 {
  font-size: 18px;
  color: var(--bd-common-black);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.5;
}

.bd-products__feature-list {
  margin-bottom: 40px;
}

.bd-products__feature-list span {
  display: block;
  margin-bottom: 10px;
  position: relative;
  padding-left: 25px;
  text-transform: capitalize;
}

.bd-products__feature-list span i {
  position: absolute;
  left: 0;
  top: 7px;
  margin-right: 15px;
  color: var(--bd-theme-primary);
}

.inner-social__links span {
  margin-right: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.inner-social__links span.title {
  color: var(--bd-common-black);
  font-weight: 700;
}

.inner-social__links span a:hover {
  color: var(--bd-theme-primary);
}

.pt-inner-sidebar {
  padding: 40px;
  padding-bottom: 10px;
}

.tp-pt__inmner-step h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 4px;
  color: #231F5A;
}




/* Products Area CSS */


.item {
  float: left;
  margin-bottom: 40px;
}

.item img {
  min-height: 200px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: cover;
}


.item h3 {
  background-color: #ffffff;
  /* color: var(--bd-common-blue); */
  color: var(--bd-common-red-dark);
  text-transform: capitalize;
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
  padding: 15px 0px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

@media screen and (max-width:576px) {
  .item img {
    min-height: inherit;
    width: 100%;
  }

  .item a:after {
    display: none;
  }
}

.item a {
  width: 100%;
  display: inline-block;
  position: relative;
  outline: 5px solid transparent;
}

.item a:before {
  transition: all .5s ease;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #333;
  transform: scale(0);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.item a:hover:before {
  opacity: .5;
  transform: scale(1);
}

.item a:after {
  transition: all .6s ease .2s;
  content: "+";
  position: absolute;
  top: 8px;
  left: 8px;
  right: 8px;
  bottom: 8px;
  border: 1px solid #aaa;
  background: #000;
  opacity: 0;
  transform: scale(0);
  z-index: 9;
  font-size: 50px;
  color: #fff;
  text-align: center;
  line-height: 190px;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;

}

.item a:hover:after {
  opacity: .35;
  transform: scale(1);
}

.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
  color: #fff;
  background-color: #0071B7;
  right: -1px;
  top: 40px;
  text-align: right;
  padding-right: 10px;
  width: 100%;
  opacity: 1;
  max-width: 41px;

}

.mfp-close {
  font-size: 37px;
  cursor: pointer !important;
}

.mfp-arrow-left:before {
  border-right: 27px solid #0071B7;
}

.mfp-arrow-left:after {
  border-right: 17px solid #0071B7;
  margin-left: 31px;
}

.mfp-arrow-right:before {
  border-left: 27px solid #0071B7;
}

.mfp-arrow-right:after {
  border-left: 17px solid #0071B7;
  margin-left: 39px;
}


/* Products Area CSS End */


/*----------------------------------------*/
/* 15. news CSS
/*----------------------------------------*/
/* .bd-news__section{
  background-color: #101010;
  width: 100%;
  position: relative;
  z-index: 1;
} */
/* .bd-news__section::before{
  content: "";
  width: 100%;
  height: 100%;
  opacity: 0.05;
  background: url("../img/background/bg.png");
  background-attachment: fixed;
  background-position: center center;
  background-repeat: repeat;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
} */
.bd-news__date span {
  padding: 40px 40px;
  background-color: var(--bd-common-white);
  display: inline-block;
  color: var(--bd-theme-primary);
  text-align: center;
  font-size: 18px;
  margin-right: 25px;
  text-transform: uppercase;
  font-weight: 500;
}

@media (max-width:767px) {
  .bd-news__date span {
    display: none;
  }
}

.news-section {
  background: var(--bd-theme-primary);
  padding: 30px;
  margin-bottom: 50px;
  transition: all 0.5s;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-news__date span {
    margin-bottom: 30px;
  }
}

.bd-news__date span b {
  font-size: 36px;
  font-weight: 500;
}

.bd-news__title {
  letter-spacing: 4px;
  font-size: 18px;
  color: var(--bd-common-black);
  margin-bottom: 15px;
  line-height: 1.5;
  text-transform: uppercase;
}

.bd-news__title a {
  background-image: linear-gradient(#fff, #fff), linear-gradient(#fff, #fff);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.bd-news__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

@media (max-width:1199px) {
  .bd-news__title {
    letter-spacing: 0px;
    font-size: 16px;
  }
}

@media (max-width:767px) {
  .bd-news__title {
    letter-spacing: 1px;
    font-size: 20px;
  }
}

.bd-news-3__content {
  padding-left: 20px;
  padding-right: 30px;
  padding-top: 20px;
  padding-bottom: 40px;
  box-shadow: 0px 3px 48px 0px rgba(6, 6, 6, 0.08);
}

.bd-news-3__title {
  letter-spacing: 4px;
  font-size: 18px;
  color: var(--bd-common-black);
  margin-bottom: 15px;
  line-height: 1.5;
  text-transform: uppercase;
}

.bd-news-3__title a {
  background-image: linear-gradient(#000, #000), linear-gradient(#000, #000);
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
}

.bd-news-3__title a:hover {
  background-size: 0% 1px, 100% 1px;
}

/** contact css **/


.postbox__comment-form {
  margin-bottom: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 30px 0 rgba(0, 0, 0, 0.09);
  background: var(--bd-common-white);
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px) {
  .postbox__comment-form {
    padding: 40px 10px;
  }
}

.postbox__comment-form-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--bd-common-red-dark);
  margin-bottom: 40px;
}

.postbox__comment-input {
  position: relative;
  margin-bottom: 20px;
}

.postbox__comment-input span {
  font-weight: 600;
  color: var(--bd-common-black);
  margin-bottom: 12px;
  display: block;
}

.postbox__comment-input input,
.postbox__comment-input textarea {
  height: 55px;
  padding: 12px 20px;
  width: 100%;
  font-size: 14px;
  color: var(--bd-common-black);
  outline: none;
  border: 1px solid transparent;
  -webkit-border-radius: 7px;
  -moz-border-radius: 7px;
  -o-border-radius: 7px;
  -ms-border-radius: 7px;
  border-radius: 7px;
  background: #f7f7f7;
}

.postbox__comment-input input::-webkit-input-placeholder,
.postbox__comment-input textarea::-webkit-input-placeholder {
  color: grey;
}

.postbox__comment-input input:-moz-placeholder,
.postbox__comment-input textarea:-moz-placeholder {
  color: grey;
}

.postbox__comment-input input::-moz-placeholder,
.postbox__comment-input textarea::-moz-placeholder {
  color: grey;
}

.postbox__comment-input input:-ms-input-placeholder,
.postbox__comment-input textarea:-ms-input-placeholder {
  color: grey;
}

.postbox__comment-input textarea {
  height: 175px;
  resize: none;
  padding-top: 20px;
  padding-bottom: 20px;
}

.postbox__comment-avater img {
  width: 50px;
  height: 50px;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -o-border-radius: 50%;
  -ms-border-radius: 50%;
  border-radius: 50%;
}

.postbox__comment-name {
  margin-bottom: 5px;
  letter-spacing: 2px;
}

.postbox__comment-name h5 {
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0;
}

.postbox__comment-name span {
  font-size: 14px;
  color: var(--bd-text-1);
}

@media (max-width: 575px) {
  .postbox__comment-text {
    margin-left: 0;
    margin-top: 15px;
  }
}

.postbox__comment-text p {
  font-size: 16px;
  margin-bottom: 15px;
}

/** career css **/

.postbox__comment-btn {
  text-align: center;
}

.postbox__comment-btn .bd-btn {
  padding: 12px 45px;
  font-size: 18px;
}

.btn-close {
  text-align: right !important;
}


.bd-career-main .postbox__comment-form-title {
  font-size: 34px;
}


@media screen and (max-width:991px) {
  .bd-career__section {
    padding: 30px 0;
  }
}

/** end career **/


.sidebar__search {
  position: relative;
}

.sidebar__search input {
  width: 100%;
  height: 60px;
  line-height: 60px;
  background-color: var(--bd-common-white);
  padding: 0 25px;
  text-transform: capitalize;
  border: 1px solid var(--bd-grey-1);
  outline: none;
  padding-top: 3px;
  padding-right: 80px;
}

.sidebar__search input:focus {
  border-color: var(--bd-theme-primary);
}

.sidebar__search button {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding: 0 24px;
  color: #fff;
  line-height: 60px;
  background: var(--bd-theme-primary);
}

.sidebar__banner::after {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.sidebar__banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1;
  background: var(--bd-common-white);
}

.sidebar__banner-content h4 {
  padding: 15px 20px;
  font-size: 24px;
  color: var(--bd-common-black);
  text-transform: uppercase;
  margin-bottom: 0;
}

.tagcloud a {
  background: var(--bd-grey-2);
  color: var(--bd-common-black);
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 21px;
  padding-bottom: 8px;
  margin-bottom: 8px;
  margin-right: 5px;
  text-transform: uppercase;
  border: 0;
}

.tagcloud a:hover {
  background: var(--bd-theme-primary);
  color: var(--bd-common-white);
}


/*----------------------------------------*/
/* 16. made india CSS 
/*----------------------------------------*/
.bd-made-india__section {
  background-color: #1c1a1a;
}

.bd-made-india-img {
  align-items: center;
}

.bd-made-india-img img {
  width: 250px;
  height: 250px;
}

.india-text p {
  font-size: 16px;
  line-height: 25px;
}

@media (max-width: 1199px) {
  .bd-made-india-img img {
    width: 220px;
    height: 220px;
  }
}

@media screen and (max-width:767px) {
  .bd-made-india__section.pt-50 {
    padding-top: 0px;
  }
}

/*----------------------------------------*/
/*  INFRASTRUCTURE PAGE  CSS */
/*----------------------------------------*/

.infrastucture-item {
  list-style: none;
}

.infrastucture-item li img {
  margin-right: 10px;
  width: 100%;
  max-width: 18px;
}

.infrastucture-item li {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
}

.capablities-title {
  color: var(--bd-common-red-dark);
  margin-bottom: 10px;
}

.capabilities-box .infrastucture-item {
  text-align: start;
}

.turnkey_title {
  color: var(--bd-common-red-dark);
  margin-bottom: 25px;
}

.printed_circuit-img .printed_circuit_title {
  color: var(--bd-theme-primary);
  margin-bottom: 10px;
}


.surface-img,
.box_build-img,
.printed_circuit-img {
  text-align: right;
}

.printed_circuit-img img {
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 170px;
  border-radius: 12px;
}

.box_build-img img {
  width: 100%;
  border-radius: 12px;
}

.surface-img img {
  width: 100%;
  height: 100%;
  max-height: 300px;
  border-radius: 12px;
}

.infra-heading {
  margin-bottom: 50px;
}

.turkey-main {
  margin: 50px 0 30px;
}

.turkey-img {
  text-align: center;
}

.bd-testimonial__item.infra-box {
  padding: 0;
}

.bd-testimonial__item.infra-box img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.though_hole-img img {
  width: 100%;
  border-radius: 12px;
}

.though_hole_item {
  margin-left: 50px;
}



@media(max-width:1199px) {
  .infrastucture_item li {
    font-size: 16px;
  }

  .manufacturing-services-img {
    display: none;
  }

  .infra-heading {
    margin-bottom: 40px;
  }


}

@media (max-width:991px) {
  .manufacturing-services-img {
    margin-top: 25px;
  }

  .printed_circuit-img {
    margin-top: 20px;
  }

  .surface-img {
    margin-top: 25px;
  }

  .though_hole-img {
    margin-bottom: 25px;
  }

  .though_hole_item {
    margin-left: 0;
  }

  .box_build-img {
    margin-top: 25px;
  }

  .surface-img,
  .box_build-img,
  .printed_circuit-img {
    text-align: left;
  }

  .infra-heading {
    margin-bottom: 35px;
  }

  .infrastucture-item.justify-content-around {
    justify-content: start !important;
  }

  .capablities-title {
    margin-top: 20px;
  }

  .though_hole-img {
    margin-top: 20px;
  }

  .turnkey_title {
    margin-top: 20px;
  }

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



@media(max-width:767px) {


  .breadcrumb__title {
    font-size: 22px;
  }

  .turkey-main {
    text-align: left !important;
    margin: 40px 0 10px;
  }

  .turkey-img {
    text-align: left;
    margin-top: 20px;
  }

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

@media (max-width:575px) {
  .surface-img {
    margin-top: 20px;
  }

  .infrastucture-item li {
    text-transform: capitalize !important;
    letter-spacing: normal;
    font-size: 14px;
  }
}


/*----------------------------------------*/
/* 16. FOOTER CSS */
/*----------------------------------------*/
.specing {
  letter-spacing: 0;
}

.bd-footer__section {
  background-color: var(--bd-grey-2);
  width: 100%;
  position: relative;
  z-index: 1;
}

.bd-footer__section::before {
  content: "";
  opacity: 0.05;
  background: url("../img/background/bg-wt.png");
  background-position: center center;
  background-repeat: repeat;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.bd-footer-widget {
  margin-bottom: 20px;
}

.bd-footer-widget__title {
  font-size: 18px;
  font-weight: 600;
  margin: 20px 0px 15px 0px;
  /* letter-spacing: 4px; */
  text-transform: uppercase;
  color: #476E97;
}

.addr {
  line-height: 22px;
}

.addr .add .bd-footer-widget__title {
  letter-spacing: 0;
}

@media(max-width:767px) {
  .bd-footer__section.pt-60 {
    padding-top: 40px;
  }

  .bd-footer-widget {
    margin-bottom: 0px;
  }
}

@media(max-width:425px) {
  .bd-footer-widget__title {
    margin-bottom: 20px;
  }

  .bd-footer__section.pt-60 {
    padding-top: 30px;
  }
}

.bd-footer-widget__content p {
  margin-bottom: 30px;
}

.bd-footer-widget__form {
  position: relative;
  margin-bottom: 40px;
}

.bd-footer-widget__form input {
  height: 52px;
  width: 100%;
  padding-left: 20px;
  padding-right: 200px;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #bfcddb;
}

.bd-footer-widget__form input::-webkit-input-placeholder {
  color: var(--bd-text-body);
}

.bd-footer-widget__form input:-moz-placeholder {
  color: var(--bd-text-body);
}

.bd-footer-widget__form input::-moz-placeholder {
  color: var(--bd-text-body);
}

.bd-footer-widget__form input:-ms-input-placeholder {
  color: var(--bd-text-body);
}

.bd-footer-widget__form button {
  position: absolute;
  right: 0;
  height: 100%;
  border: 1px solid #bfcddb;
  padding: 0 30px;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.bd-footer-widget__form button:hover {
  color: var(--bd-theme-primary);
}


.bd-footer-widget__social a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  background: var(--bd-grey-1);
  color: var(--bd-text-body);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin-right: 15px;
}

.bd-footer-widget__social a:hover {
  background: var(--bd-theme-primary);
  color: var(--bd-common-white);
}

.bd-footer-widget__menu ul {
  width: 250px;
}

.bd-footer-widget__menu ul li {
  list-style: none;
  margin-bottom: 10px;
  width: 50%;
  float: left;
}

.bd-footer-widget__menu ul li a {
  display: inline-block;
}

.bd-footer-widget__menu ul li a:hover {
  color: var(--bd-theme-primary);
}

.bd-footer-widget__news-thum {
  flex: 0 0 auto;
  width: 80px;
  height: 100%;
}

.bd-footer-widget__news-thum img {
  object-fit: cover;
  width: 100%;
}

.bd-footer-widget__news-title {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1.7;
  color: var(--bd-common-black);
}

.bd-footer-widget__news-title a:hover {
  color: var(--bd-theme-primary);
}

.bd-footer__copyright a {
  color: #476E97;
  text-transform: uppercase;
  font-weight: 500;
}

.bd-footer__copyright.bd-border-top {
  border-top: 1px solid #bfcddb;
}

/* footer col design for home 1 */
.footer-col-2 {
  display: inline-block;
}

@media (max-width: 575px),
only screen and (min-width: 576px) and (max-width: 767px),
only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-col-2 {
    padding: 0;
  }
}


@media screen and (max-width:1200px) {
  .main-menu {
    display: none;
  }

  .bd-header__hamburger {
    display: unset;
  }
}

@media screen and (max-width:991px) {
  .bd-footer-widget__social {
    margin-top: 66px;
  }

  .bd-footer-widget__menu ul {
    width: 100%;
  }

  .bd-footer-widget__menu ul li {
    list-style: none;
    margin: 0 10px 10px 0;
    width: 25%;
    display: inline-block;
    float: none;
  }

  .bd-footer-widget__menu ul li a {
    font-size: 16px;
    font-weight: 500;
  }
}

@media screen and (max-width:767px) {
  .bd-footer-widget__social {
    margin-top: 20px;
  }
}

@media screen and (max-width:480px) {
  .bd-footer-widget__menu ul li {
    width: 33%;
  }
}




/*** services css ***/

.service-main .bd-section__title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--bd-common-red-dark);
}

.service-main .service-heading h4 {
  font-size: 24px;
  font-weight: 500;
  color: var(--bd-common-red-dark);
}

.services__one-item {
  padding: 40px 24px;
  transition: 0.4s;
  position: relative;
  z-index: 1;
  overflow: hidden;
  margin-bottom: 40px;
  color: #000000;
  background: var(--bd-common-white);
  height: 290px;
}

/* .services__one-item:hover {
  transform: translateY(-10px);
  background: #fff;
  border-color: #dddcdc;
} */
/* 
.services__one-item::before {
  position: absolute;
  content: "";
  top: -112px;
  right: -112px;
  background: var(--bd-common-white);
  width: 224px;
  height: 224px;
  border-radius: 50%;
  transition: 0.4s;
  opacity: 0.1;
}

.services__one-item:hover::before {
  opacity: 0;
} */

.service-main .img {
  width: 100%;
  display: inline-block;
}

.service-main .img img {
  width: 100%;
  border-radius: 20px;
}

.services__one-item-icon {
  margin-bottom: 20px;
  position: relative;
}

.services__one-item-icon img {
  transform: rotateY(0);
  transition: 0.4s;
  max-width: 70px;
  width: 100%;
}

.services__one-item:hover .services__one-item-icon img {
  animation: rotateY 0.6s;
}

.services__one-item-icon-one {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.4s;
  z-index: 1;
}


.services__one-item-icon-one img {
  transition: 0.4s;
  transform: rotateY(0);
  max-width: 70px;
  width: 100%;
}

.services__one-item:hover .services__one-item-icon-one img {
  animation: rotateY 0.6s;
}

@keyframes rotateY {
  100% {
    transform: rotateY(360deg);
  }
}

.services__one-item h4 {
  margin-bottom: 10px;
  transition: 0.4s;
  font-size: 24px;
  line-height: 34px;
  margin-bottom: 10px;
  font-weight: 700;
  /* color: var(--bd-common-black); */
  color: var(--bd-common-red-dark);
}

.services__one-item p {
  margin-bottom: 0px;
  transition: 0.4s;
}

.service-capabilities-sub-heading h4 {
  font-weight: 500;
  color: var(--bd-common-red-dark);
}

.service-capabilities-sub-heading ul li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  font-size: 16px;
}

.service-capabilities-sub-heading ul li img {
  margin-right: 8px;
  max-width: 20px;
  margin-top: 3px;
  width: 100%;
}

/** box products **/
@media screen and (max-width:1199px) {
  .services__one-item {
    padding: 0px 24px;
  }
}

@media screen and (max-width:991px) {
  .services__one-item {
    height: auto;
  }

  .service-box_products .services__one-item {
    height: auto;
  }

  .services__one-item {
    background: #fff;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    padding: 24px;
  }

  .service-main .pr-0 {
    padding-right: 12px;
  }

  .service-main .pl-0 {
    padding-left: 12px;
  }
}

@media screen and (max-width:767px) {
  .services__one-item h4 {
    font-size: 18px;
  }

  .services__one-item-icon img {
    max-width: 56px;
  }
}

@media screen and (max-width:480px) {
  .service-main .bd-section__title.mb-25 {
    margin-bottom: 15px;
  }

  .service-main .bd-section__title-wrapper.mb-60,
  .service-main .service-heading.mb-60 {
    margin-bottom: 40px;
  }

  .service-main .service-heading h4 {
    font-size: 22px;
  }

  .service-capabilities {
    margin-top: 20px;
  }

  .service-main .bd-section__title {
    font-size: 30px;
  }

  .services__one-item-icon img {
    max-width: 48px;
  }

  .services__one-item h4 {
    font-size: 16px;
  }

}



/** Manufacturing css **/



.electronic-item {
  position: relative;
  transition: 0.3s all ease;
}

.electronic-item:hover {
  transform: translateY(-10px);
}


.electronic-img {
  /* position: relative; */
}

.electronic-img img {
  width: 100%;
  display: block;
  height: 285px;
  object-fit: cover;
  border-radius: 12px;
}

.electronic-img a {
  position: relative;
  width: 100%;
  display: inline-block;
  z-index: 11;
  border-radius: 12px;
}

.electronic-img a.bg-black::before {
  content: "";
  background: -moz-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
  background: linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
  background: -webkit-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 50%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  border-radius: 5px;
  transition: all 500ms ease;
  border-radius: 12px;
}

.electronic-img .add-action {
  position: absolute;
  left: 0px;
  width: 100%;
  text-align: left;
  transition: all 500ms ease;
  padding: 30px 40px;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.electronic-img .add-action .title {
  font-size: 24px;
  color: #fff;
  position: relative;
}

.electronic-img .add-action span {
  font-size: 42px;
  display: inline-block;
  margin: 0 20px 8px 0;
}

.electronic-img .add-action .icon {
  background-color: #0071b7;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.electronic-img .add-action .icon i {
  color: #fff;
  display: block;
  font-size: 24px;
}



/** Industries css **/


.single-services-box {
  margin-bottom: 30px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.single-services-box .services-image {
  position: relative;
}

.single-services-box .services-image img {
  width: 100%;
  border-radius: 12px;
}

.single-services-box .services-image .icon {
  position: absolute;
  left: 25px;
  top: 25px;
  font-size: 24px;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--bd-theme-primary);
  text-align: center;
  color: #ffffff;
  border-radius: 50%;
}

.single-services-box .services-content {
  padding: 25px 15px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  background: #ffffff;
  -webkit-box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  box-shadow: 0 0 1.25rem rgba(108, 118, 134, 0.1);
  margin-left: 10px;
  margin-right: 10px;
  margin-top: -40px;
  border-radius: 12px;
}

.single-services-box .services-content h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.single-services-box .services-content h3 a {
  color: #0d1028;
}

.single-services-box .services-content .link-icon {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -10px;
}

.single-services-box .services-content .link-icon a {
  color: #cecece;
}

.single-services-box .services-content .icon {
  position: absolute;
  z-index: -1;
  left: 0;
  top: 3px;
  color: #ececec;
}

.single-services-box .services-content .icon i::before {
  font-size: 45px;
}



/** Qualtiy CSS **/


.quality-points ul li {
  list-style: none;
  margin-bottom: 3px;
  font-size: 18px;
  color: #444;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.quality-points ul li img {
  margin-right: 10px;
  max-width: 20px;
  width: 100%;
}

.quality-pera p {
  font-size: 18px;
  line-height: 29px;
  margin-bottom: 0;
}


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

.quality-content {
  margin: 0 auto;
  max-width: 546px;
}

.quality-content h2 {
  position: relative;
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--bd-common-red-dark);
  font-family: var(--bd-ff-heading);
}

.quality-content h2:before {
  background: linear-gradient(to top, #f76a66 0%, #231F5A 100%);
  -webkit-background-clip: text;
  content: "0" "1" ".";
  counter-increment: special-heading;
  font-size: 100px;
  font-weight: 100;
  left: -135px;
  line-height: 1;
  position: absolute;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  -webkit-text-fill-color: transparent;
  top: 80%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.quality-content h2.second::before {
  content: "0" "2" ".";
  left: -155px;
}

.quality-content h2.third::before {
  content: "0" "3" ".";
  left: -155px;
}

.quality-content span {
  font-weight: 600;
  font-size: 26px;
  margin-bottom: 30px;
  display: inline-block;
  color: #231F5A;
}

.quality-content p {
  margin-bottom: 0;
}

.quality-heading-bottom {
  font-size: 34px;
  line-height: 46px;
  color: #231F5A;
}

.certificate-img {
  display: inline-block;
  width: 100%;
}

@media screen and (max-width:1800px) {
  .quality-content {
    margin: 0 60px 0 auto;
  }
}


@media screen and (max-width:1600px) {
  .quality-content h2:before {
    left: 0;
    font-size: 50px;
    top: -17px;
    opacity: 0.1;
    font-family: var(--bd-ff-heading);
  }

  .quality-content h2:before {
    content: "0" "1";
  }

  .quality-content h2.second::before {
    content: "0" "2";
    left: 0;
  }

  .quality-content h2.third::before {
    content: "0" "3";
    left: 0;
  }
}

@media screen and (max-width:1400px) {

  .quality-content span {
    font-size: 24px;
    margin-bottom: 20px;
  }

  .quality-content {
    padding: 0 0 0 50px;
    margin: 0;
  }

  .quality-content h2 {
    font-size: 32px;
  }

  .quality-section {
    padding: 70px 0;
  }
}


@media screen and (max-width:1200px) {

  .quality-content {
    padding: 0 50px;
    margin: 100px 0 70px;
    max-width: 100%;
  }
}

@media screen and (max-width:991px) {
  .quality-section.pb-120 {
    padding-bottom: 90px;
  }

  .quality-pera p {
    margin-top: 20px;
  }

  .quality-heading-bottom.pt-90 {
    padding-top: 0px;
  }

  .quality-heading-bottom {
    font-size: 28px;
    line-height: 30px;
  }

  .quality-section {
    padding: 40px 0;
  }
}

@media screen and (max-width:767px) {

  .quality-content {
    padding: 0;
    margin: 60px 0 40px;
    max-width: 100%;
  }

  .quality-section.pb-120 {
    padding-bottom: 40px;
  }

  .quality-heading-bottom {
    font-size: 22px;
    line-height: 26px;
  }

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

@media screen and (max-width:480px) {

  .quality-heading-bottom {
    font-size: 18px;
    line-height: 22px;
  }
}

.quality-points ul li {
  font-size: 16px;
}

/* npi-page css  */

.npi .infra-heading {
  margin-bottom: 70px;
}

.npi-img {
  width: 100%;
  display: inline-block;
}

.npi-details {
  margin-right: 80px;
}

.npi-img img {
  width: 100%;
  max-width: 576px;
  height: 335px;
}

.npi {
  width: 100%;
}

.npi p {
  margin-bottom: 0;
}

@media (max-width:1199px) {
  .npi p {
    padding: 15px 0;
  }
}

@media (max-width:991px) {
  .npi p {
    padding: 0px;
  }

  .npi .infra-heading {
    margin-bottom: 45px;
  }

  .npi-details {
    margin-right: 0px;
  }
}

@media (max-width:767px) {
  .npi .infra-heading {
    margin-bottom: 25px;
  }

  .npi-main.pt-90 {
    padding-top: 25px;
  }

  .npi-main.pb-90 {
    padding-bottom: 25px;
  }

  .npi-img {
    margin-top: 0px;
  }

  .npi-img img {
    height: auto;
  }
}


/* volume page css  */

.volume .infra-heading {
  margin-bottom: 60px;
}

.volume {
  width: 100%;
}

.volume h4 {
  font-weight: 500;
  font-size: 24px;
}

.learn h3 {
  font-weight: lighter;
  padding: 25px 0px;
  display: inline-block;
  line-height: 48px;
  font-size: 32px;
}

.book-session {
  width: 100%;
  display: inline-block;
}

.book-session a {
  background: var(--bd-common-red-dark);
  padding: 15px;
  border: 2px solid #EEEEEE;
  font-size: 18px;
  color: #fff;
  display: inline-block;
  margin-bottom: 10px;
}

.volume-contact {
  width: 100%;
  display: inline-block;
  margin-top: 30px;
}

.volume-img {
  width: 100%;
  display: inline-block;
  margin-top: 30px;
}

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

.capabilities-solution {
  width: 100%;
  display: inline-block;
  background: linear-gradient(60deg, #E2EBF4, #0071B8);
  padding: 20px 20px;
  margin-top: 30px;
}

.capabilities-solution ul {
  list-style: none;
}

.capabilities-solution ul li {
  font-weight: 500;
  color: #000;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 1px;
  display: flex;
  align-items: baseline;
}

.capabilities-solution ul li i {
  margin-right: 15px;
}

.capabilities-solution h3 {
  margin-bottom: 20px;
}

@media (max-width:991px) {
  .volume .infra-heading {
    margin-bottom: 45px;
  }
}

@media (max-width:767px) {
  .volume .infra-heading {
    margin-bottom: 25px;
  }

  .volume-main.pt-90 {
    padding-top: 25px;
  }

  .volume-main.pb-90 {
    padding-bottom: 25px;
  }

  .volume h4 {
    font-size: 18px;
  }

  .volume-img {
    margin-top: 0px;
  }

  .learn h3 {
    padding: 0px;
    line-height: 32px;
    font-size: 24px;
  }

  .book-session a {
    font-size: 16px;
    padding: 10px 20px;
  }
}

@media (max-width:575px) {
  .capabilities-solution h3 {
    font-size: 18px;
  }

  .capabilities-solution ul li {
    font-size: 16px;
  }

  .learn h3 {
    font-size: 20px;
  }
}

@media (max-width:425px) {
  .capabilities-solution {
    margin-top: 15px;
  }

  .volume-contact {
    margin-top: 15px;
  }

  .learn h3 {
    font-size: 18px;
  }

  .capabilities-solution h3 {
    margin-bottom: 15px;
  }

  .book-session a {
    font-size: 16px;
    padding: 7px 15px;
  }
}

/* PCB Assembly page css  */

.pcba .infra-heading {
  margin-bottom: 60px;
}

.pcba h4 {
  font-weight: 500;
  font-size: 24px;
}

.pcba-contact {
  width: 100%;
  display: inline-block;
  margin-top: 30px;
}

.pcba-img {
  width: 100%;
  display: inline-block;
}

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

@media (max-width:1199px) {
  .pcba-img img {
    height: 800px;
  }
}

@media (max-width:991px) {
  .pcba .infra-heading {
    margin-bottom: 45px;
  }

  .pcba-img {
    margin-top: 30px;
  }

  .pcba-img img {
    height: auto;
  }
}

@media (max-width:767px) {
  .pcba .infra-heading {
    margin-bottom: 25px;
  }

  .pcba-main.pt-90 {
    padding-top: 25px;
  }

  .pcba-main.pb-90 {
    padding-bottom: 25px;
  }

  .pcba h4 {
    font-size: 18px;
  }

  .pcba-img {
    margin-top: 0px;
  }
}

@media (max-width:425px) {
  .pcba-contact {
    margin-top: 15px;
  }
}

/* plastics-page css  */

.plastics .infra-heading {
  margin-bottom: 70px;
}

.plastics-details {
  margin-right: 80px;
}

.plastics-details h3 {
  font-weight: 400;
}

.pladtics-img {
  width: 100%;
  display: inline-block;
}

.plastics-img img {
  width: 100%;
  max-width: 450px;
  height: 267px;
}

@media (max-width:1199px) {
  .plastics-details {
    padding: 15px 0;
  }
}

@media (max-width:991px) {
  .plastics-details {
    padding: 0px;
  }

  .plastics .infra-heading {
    margin-bottom: 45px;
  }

  .plastics-details {
    margin-right: 0px;
  }

  .plastics-details h3 {
    font-size: 18px;
  }
}

@media (max-width:767px) {
  .plastics .infra-heading {
    margin-bottom: 25px;
  }

  .plastics-main.pt-90 {
    padding-top: 25px;
  }

  .plastics-main.pb-90 {
    padding-bottom: 25px;
  }

  .plastics-img {
    margin-top: 0px;
  }
}

/* system-integration-page css  */

.system-integration .infra-heading {
  margin-bottom: 70px;
}

.system-integration-img {
  width: 100%;
  display: inline-block;
}

.system-integration-img img {
  width: 450px;
  height: 331px;
}

.system.capabilities-solution {
  margin-top: 0px;
  align-self: center;
}

.system-integration-details {
  margin-bottom: 35px;
}


.system-integration-details h3 {
  font-weight: 400;
  margin-bottom: 20px;
}

@media (max-width:991px) {
  .system-integration-details {
    margin-bottom: 15px;
  }

  .system-integration-details h3 {
    font-size: 22px;
  }

  .system-integration .infra-heading {
    margin-bottom: 45px;
  }

  .system-integration-img img {
    width: 100%;
    height: auto;
  }
}

@media (max-width:767px) {
  .system-integration .infra-heading {
    margin-bottom: 25px;
  }

  .system-integration-main.pt-90 {
    padding-top: 25px;
  }

  .system-integration-main.pb-90 {
    padding-bottom: 25px;
  }

  .system-integration-details h3 {
    font-size: 18px;
  }

  .system-integration-img {
    margin-top: 0px;
  }
}

/* why us page css  */

.why-us-details {
  width: 100%;
  display: inline-block;
}

.why-us-about p {
  line-height: 30px;
  margin-bottom: 60px;
}

.detail {
  display: inline-block;
  width: 100%;
}

.detail i {
  color: var(--bd-theme-primary);
  font-size: 18px;
  margin-right: 15px;
}

.detail p {
  line-height: 30px;
}

.design {
  display: inline-block;
  width: 100%;
}

.design h4 {
  text-align: left;
  font-size: 24px;
}


.design ul li p {
  margin-bottom: 0;
}

.links-btn {
  text-align: center;
  gap: 20px;
}

.links-btn a {
  background-color: #EFF3FE;
  color: var(--bd-theme-primary);
  font-size: 16px;
  border: 3px solid #8FCFFF;
  width: 218px;
  padding: 5px 0;
  border-radius: 15px;
}

.links-btn a.supply-btn {
  padding: 5px 15px;
}

.build-img {
  display: inline-block;
  width: 100%;
}

.build {
  margin-left: 45px;
  display: inline-block;
  width: 100%;
}

.build h4 {
  font-size: 24px;
  text-align: left;
}


.build-detail li {
  font-size: 16px;
  display: flex;
  margin-bottom: 15px;
}

.build-detail li p {
  line-height: 28px;
  margin-bottom: 0;
}

.build-detail i {
  color: var(--bd-theme-primary);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 6px;
}

.deliver-img {
  display: inline-block;
  width: 100%;
}

.deliver {
  display: inline-block;
  width: 100%;
}

.deliver h4 {
  font-size: 24px;
  text-align: left;
}

.deliver-detail li p {
  line-height: 28px;
  margin-bottom: 0;
}

.deliver-detail li {
  font-size: 16px;
  display: flex;
}

.deliver-detail i {
  color: var(--bd-theme-primary);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 6px;
}

@media screen and (max-width:1199px) {
  .design-img img {
    width: 100%;
    max-width: 800px;
  }

  .build-img img {
    width: 100%;
    max-width: 800px;
  }

  .deliver-img img {
    width: 100%;
    max-width: 800px;
  }
}

@media screen and (max-width:991px) {

  .build {
    margin-left: 0px;
  }

  .links-btn.mt-50 {
    margin-top: 25px;
  }

  .links-btn.mb-80 {
    margin-bottom: 60px;
  }
}

@media screen and (max-width:575px) {

  .links-btn button {
    font-size: 14px;
  }

  .links-btn.mt-50 {
    margin-top: 15px;
  }

  .links-btn.mb-80 {
    margin-bottom: 40px;
  }
}




/** unit section **/

.units-main {
  width: 100%;
  display: inline-block;
}

.unit-text {
  width: 100%;
  display: inline-block;
}

.unit-text h3 {
  font-size: 28px;
  color: var(--bd-common-red-dark);
}

.unit-img {
  width: 100%;
  margin-top: 30px;
}

.border-unit {
  border-right: 2px solid #f6f6f6;
}

.unit-img img {
  width: 100%;
  max-width: 530px;
}

/** Why digital **/

.why-digital-main {
  width: 100%;
  display: inline-block;
  position: relative;
  background-color: var(--bd-grey-2);
}

.why-digital-main::before {
  content: "";
  opacity: 0.05;
  background: url(../img/background/bg-wt.png);
  background-position: center center;
  background-repeat: repeat;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 100%;
}


.why-digital-main .why-digital {
  width: 100%;
}

.why-digital-main .why-digital ul li {
  list-style: none;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;
  font-family: var(--bd-ff-body);
}

.why-digital-main .why-digital ul li img {
  width: 100%;
  max-width: 22px;
  margin-right: 10px;
}

.why-digital-main .why-digital-question {
  width: 100%;
  text-align: right;
}

.why-digital-question img {
  width: 100%;
  max-width: 200px;
}

/** business model **/

.business-model {
  width: 100%;
  display: inline-block;
}

.circle-value {
  background-color: var(--bd-grey-2);
  position: relative;
}

.circle-value::before {
  content: "";
  opacity: 0.05;
  background: url(../img/background/bg-wt.png);
  background-position: center center;
  background-repeat: repeat;
  background-attachment: fixed;
  position: absolute;
  top: 0;
  display: inline-block;
  left: 0;
  width: 100%;
  height: 100%;
}

.business-text {
  width: 100%;
}

.business-text ul li {
  list-style: none;
  font-size: 20px;
  margin-bottom: 8px;
  text-transform: capitalize;
  font-weight: 500;

}

.business-img {
  width: 100%;
  margin-top: 50px;
}

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

.circle-img {
  text-align: center;
  margin-top: 20px;
}

.circle-img img {
  max-width: 900px;
}


@media screen and (max-width:1200px) {
  .unit-img img {
    max-width: 440px;
  }
}

@media screen and (max-width:991px) {
  .unit-img {
    text-align: center !important;
  }

  .units-main .bd-section__title-wrapper.mb-70,
  .why-digital-main .bd-section__title-wrapper.mb-70,
  .business-model .bd-section__title-wrapper.mb-70 {
    margin-bottom: 50px;
  }

  .why-digital-main .why-digital-question {
    display: none;
  }

  .why-digital-main .why-digital ul li {
    font-size: 18px;
    letter-spacing: 0;
  }

  .business-text ul li {
    font-size: 18px;
  }

  .business-img {
    margin-top: 30px;
  }
}


@media screen and (max-width:576px) {

  .unit-text h3 {
    font-size: 20px;
  }

  .why-digital-main .why-digital ul li {
    font-size: 14px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
  }

  .business-text {
    text-align: left !important;
  }

  .business-text ul li {
    font-size: 14px;
  }

  .units-main .bd-section__title-wrapper.mb-70,
  .why-digital-main .bd-section__title-wrapper.mb-70,
  .business-model .bd-section__title-wrapper.mb-70 {
    margin-bottom: 25px;
  }
}




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


.bd-manufacturing__item {
  width: 100%;
  display: inline-block;
  background-color: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 30px 25px;
  height: 342px;
}

.bd-manufacturing__item .bd-manufacturing__icon {
  width: 100%;
}

.bd-manufacturing__item .bd-manufacturing__icon img {
  width: 100%;
  max-width: 80px;
}

.bd-manufacturing__item .bd-manufacturing__icon h3 {
  font-size: 26px;
  font-weight: 600;
  padding: 15px 0 10px;
  margin-bottom: 0;
}

.bd-manufacturing__item .bd-manufacturing__content {
  width: 100%;
}

.bd-manufacturing__item .bd-manufacturing__content p {
  margin-bottom: 0;
}

.bangalore-opretion img {
  width: 100%;
  max-width: 700px;
}















.process-3 {
  position: relative;
  z-index: 9;
  padding: 100px 0 100px;
}

.work-process_text h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.work-process_text p {
  margin-bottom: 80px;
}

.process-1 {
  position: relative;
}

.process-1 .before-img-1 {
  position: absolute;
  top: 25%;
  left: 79%;
  margin-top: 0px;
  height: 57px;
}


.process-1 .process-icon {
  display: inline-block;
  position: relative;
  -webkit-box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
  -moz-box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
  box-shadow: 0px 0px 30px 0 rgba(0, 20, 9, 0.1);
  -webkit-border-radius: 700px;
  -moz-border-radius: 700px;
  border-radius: 700px;
  background: #fff;
}

.process-1 .process-icon .process-icon_img {
  height: 235px;
  width: 235px;
  line-height: 235px;
  text-align: center;
  display: inline-block;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
}

.process-1 .process-icon .process-icon_img img {
  width: 100%;
  height: 92px;
  max-width: 92px;
}


.process-1 .process-icon .process-number {
  position: absolute;
  right: 0;
  bottom: 10px;
  top: auto;
  border-radius: 999px;
  background: #231F5A;
  font-size: 18px;
  color: #fff;
  height: 45px;
  width: 45px;
  text-align: center;
  line-height: 45px;
}

.process-1 .process-icon .process-number.process-number_2 {
  right: 0;
  bottom: auto;
  top: 0;
}

.process-1 .process-info {
  display: inline-block;
  width: 100%;
  margin-top: 30px;
}

.process-1 .process-info h5 {
  color: var(--bd-common-white);
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 10px;
  text-transform: initial;
}

.d-none1 {
  transform: rotate(177deg);
  position: absolute;
  top: 38%;
  left: 75%;
  margin-top: 0px;
  height: 61px;
}

@media screen and (max-width:1400px) {
  .process-1 .before-img-1 {
    position: absolute;
    top: 25%;
    left: 84%;
    height: 40px;
  }
}

@media screen and (max-width:1399px) {
  .aboutm-img img {
    height: 378px;
  }

  .bd-manufacturing__item {
    height: 378px;
  }
}

@media screen and (max-width:1199px) {
  .d-none1 {
    display: none;
  }

  .process-1 .before-img-1 {
    position: absolute;
    top: 16%;
    left: 74%;
    height: 85px;
  }

  .aboutm-img img {
    height: 410px;
  }

  .bd-manufacturing__item {
    height: 410px;
  }
}

@media screen and (max-width:991px) {
  .process-1 .before-img-1 {
    position: absolute;
    top: 25%;
    left: 84%;
    height: 42px;
  }

  .bd-manufacturing__item {
    height: auto;
  }
}

@media screen and (max-width:767px) {
  .d-none2 {
    display: none;
  }
}

/** process section css end **/


/** thank you page css **/

.thankyou-main {
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 80px 0;
}

.thankyou {
  width: 100%;
  padding: 60px 40px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.thankyou h2 {
  font-size: 70px;
  font-weight: bold;
  font-family: ui-serif;
  color: #444;
}

.thankyou p {
  color: #555;
  font-weight: 600;
}

.thankyou a {
  padding: 12px 35px;
  display: inline-block;
  margin-top: 15px;
  background-color: #0071b7;
  color: #fff;
  font-weight: 600;
}

@media screen and (max-width:576px) {
  .thankyou h2 {
    font-size: 45px;
  }
  .thankyou p{
    font-size: 14px;
    line-height: 22px;
  }
  .thankyou a{
    padding: 8px 28px;
    font-size: 14px;
    margin-top: 10px;
  }
}