
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&amp;family=Lora:ital,wght@0,400..700;1,400..700&amp;display=swap");
:root {
  --bd-ff-body: 'DM Sans', sans-serif;
  --bd-ff-heading: 'Lora', serif;
  --bd-ff-p: 'DM Sans', sans-serif;
  --bd-fw-normal: normal;
  --bd-fw-thin: 100;
  --bd-fw-elight: 200;
  --bd-fw-light: 300;
  --bd-fw-regular: 400;
  --bd-fw-medium: 500;
  --bd-fw-sbold: 600;
  --bd-fw-bold: 700;
  --bd-fw-ebold: 800;
  --bd-fw-black: 900;
  --bd-fs-body: 18px;
  --bd-fs-p: 18px;
  --bd-fs-h1: 60px;
  --bd-fs-h2: 48px;
  --bd-fs-h3: 24px;
  --bd-fs-h4: 20px;
  --bd-fs-h5: 16px;
  --bd-fs-h6: 14px;
  --bd-color-common-white: #ffffff;
  --bd-color-common-black: #000000;
  --bd-color-common-dark: #232323;
  --bd-color-heading-primary: #121212;
  --bd-color-text-body: #8b827d;
  --bd-color-theme-primary: #e77829;
  --bd-color-theme-secondary: #ffc226;
  --bd-color-bg-1: #11151C;
  --bd-color-grey-1: #F8F8F8;
  --bd-color-grey-2: #faf5f1;
  --bd-color-border-1: #dbdad9;
  --bd-color-border-2: #a0a0a0;
}

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

/**
	Typography CSS
*/
body {
  background-color: #fff;
  font-family: var(--bd-ff-body);
  font-size: 18px;
  line-height: 1.625;
  font-weight: normal;
  color: var(--bd-color-text-body);
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
}

a,
a:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

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

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

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

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

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

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

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

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

p {
  font-family: var(--bd-ff-p);
  font-size: 18px;
  font-weight: var(--bd-fw-normal);
  color: var(--bd-color-text-body);
  margin-bottom: 15px;
  line-height: 28px;
}

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

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

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

.slick-list.draggable {
  cursor: grab;
}

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 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%;
}

ul {
  display: block;
  padding: 0;
  margin: 0;
}

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

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

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

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

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

/**
    Common Classes CSS
*/
.w-img img {
  width: 100%;
}

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

.fix {
  overflow: hidden;
}

.clear {
  clear: both;
}

.f-left {
  float: left;
}

.f-right {
  float: right;
}

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

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

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

.b-radius {
  border-radius: 6px;
}

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

.container {
  max-width: 1345px;
}

.bd-bottom {
  border-bottom: 1px solid #edebf9;
}

.top-shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 468px;
  height: 478px;
  position: absolute;
  top: -200px;
  left: -200px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .top-shape {
    top: -250px;
    left: -250px;
  }
}
@media only screen and (max-width: 992px) {
  .top-shape {
    display: none;
  }
}

.bottom-shape {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom right;
  width: 468px;
  height: 478px;
  position: absolute;
  bottom: -200px;
  right: -200px;
  z-index: -1;
}
@media (max-width: 1399px) {
  .bottom-shape {
    bottom: -250px;
    right: -250px;
  }
}
@media only screen and (max-width: 992px) {
  .bottom-shape {
    display: none;
  }
}

.bg-color-top {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -2;
}

.bg-color-bottom {
  background-color: #171719;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -2;
}

.overflow-h {
  overflow: hidden;
}

.section-heading {
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .section-heading {
    margin-bottom: 40px;
  }
}
.section-heading .sub-heading {
  font-family: var(--bd-ff-p);
  color: var(--bd-color-text-body);
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 25px;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  line-height: 1;
}
.section-heading .sub-heading span {
  padding-right: 10px;
  font-size: 16px;
}
@media only screen and (max-width: 992px) {
  .section-heading .sub-heading {
    font-size: 14px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .sub-heading {
    font-size: 12px;
  }
}
.section-heading .section-title {
  color: var(--bd-color-heading-primary);
  font-size: 55px;
  line-height: 1.2;
  font-weight: 500;
  display: block;
  margin-bottom: 0;
  text-transform: inherit;
  position: relative;
  overflow: hidden;
}
.section-heading .section-title span {
  color: var(--bd-color-theme-primary);
  display: block;
  margin-top: 10px;
  padding-left: 130px;
  position: relative;
  line-height: 1;
  font-style: italic;
}
.section-heading .section-title span:before {
  background-color: var(--bd-color-theme-primary);
  content: "";
  height: 3px;
  width: 100px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 1199px) {
  .section-heading .section-title {
    font-size: 40px;
    width: 100%;
  }
}
@media only screen and (max-width: 992px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .section-heading .section-title {
    font-size: 32px;
  }
}
.section-heading.white-content .sub-heading {
  color: var(--bd-color-theme-primary);
}
.section-heading.white-content p,
.section-heading.white-content .section-title {
  color: var(--bd-color-common-white);
}
.section-heading.heading-2 {
  margin-bottom: 30px;
}
.section-heading.white-content .sub-heading {
  color: var(--bd-color-text-body);
}
.section-heading.white-content .sub-heading span {
  color: var(--bd-color-text-body);
}

.heading-space {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 992px) {
  .heading-space {
    margin-bottom: 40px;
  }
}

.t-up {
  text-transform: uppercase;
}

.white-content h1,
.white-content h2,
.white-content h3,
.white-content h4,
.white-content h5,
.white-content h6,
.white-content p,
.white-content li,
.white-content span {
  color: var(--bd-color-common-white);
}

.img-reveal {
  position: relative;
  overflow: hidden;
  visibility: hidden;
  z-index: 1;
}
.img-reveal .img-overlay {
  background-color: var(--bd-color-theme-primary);
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.img-reveal img {
  object-fit: cover;
  height: 100%;
  width: 100%;
}

.anim-text {
  overflow: hidden;
}

.running-text {
  background-repeat: repeat;
  background-size: 20px;
  padding: 50px 0 70px 0;
  overflow: hidden;
}
.running-text ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 85px;
}
.running-text ul li {
  font-family: var(--bd-ff-heading);
  display: inline-block;
  white-space: nowrap;
  font-size: 72px;
  color: var(--bd-color-heading-primary);
  text-transform: capitalize;
  font-weight: 500;
  position: relative;
}
.running-text ul li:before {
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  content: "\f068";
  font-size: 40px;
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
}
.running-text ul li.color {
  color: var(--bd-color-theme-primary);
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.scroller[data-animated=true] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}
.scroller[data-animated=true] .scroller__inner.inner-2 {
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, reverse) linear infinite;
}

.scroller[data-direction=right] {
  --_animation-direction: reverse;
}

.scroller[data-direction=left] {
  --_animation-direction: forwards;
}

.scroller[data-speed=fast] {
  --_animation-duration: 30s;
}

.scroller[data-speed=slow] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
/* Site Preloader */
#preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #02050A;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 8px solid rgba(231, 120, 41, 0.2);  /* light outer ring */
  border-top: 8px solid #e77829;             /* primary color spinning part */
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@media (max-width: 767px) {
  .spinner {
    width: 50px;
    height: 50px;
    border-width: 6px;
  }
}

/*  Custom Cursor */
@media (min-width: 992px) {
  .mt-cursor {
    display: block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: fixed;
    left: 10px;
    top: 10px;
    user-select: none;
    pointer-events: none;
    visibility: hidden;
    z-index: 10000;
    -webkit-transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
  .mt-cursor:before {
    background: var(--bd-color-theme-primary);
    opacity: 1;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
  }
  .mt-cursor.cursor-grow:before {
    opacity: 0.7;
    transform: scale(1.5);
    transition: all 0.3s ease;
  }
  .mt-cursor.hide {
    opacity: 0;
    transition: opacity 0.3s ease;
    transition-delay: 0.4s;
  }
  .mt-cursor.hide .inner {
    transform: scale(0.1);
    transition: transform 0.3s ease;
  }
}
.sticky-widget {
  position: -webkit-sticky;
  position: sticky;
  top: 170px;
}

@media only screen and (max-width: 767px) {
  br {
    display: none;
  }
}
/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt-180 {
  padding-top: 180px;
}
@media only screen and (max-width: 992px) {
  .pt-180 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-180 {
    padding-top: 50px;
  }
}

.pt-130 {
  padding-top: 130px;
}
@media only screen and (max-width: 992px) {
  .pt-130 {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-130 {
    padding-top: 60px;
  }
}

.pt-120 {
  padding-top: 120px;
}
@media only screen and (max-width: 992px) {
  .pt-120 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-120 {
    padding-top: 60px;
  }
}

.pt-90 {
  padding-top: 90px;
}
@media only screen and (max-width: 992px) {
  .pt-90 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-90 {
    padding-top: 60px;
  }
}

.pt-80 {
  padding-top: 80px;
}
@media only screen and (max-width: 992px) {
  .pt-80 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-80 {
    padding-top: 60px;
  }
}

.pt-70 {
  padding-top: 70px;
}
@media only screen and (max-width: 992px) {
  .pt-70 {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pt-70 {
    padding-top: 60px;
  }
}

.pb-180 {
  padding-bottom: 180px;
}
@media only screen and (max-width: 992px) {
  .pb-180 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-180 {
    padding-bottom: 60px;
  }
}

.pb-130 {
  padding-bottom: 130px;
}
@media only screen and (max-width: 992px) {
  .pb-130 {
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-130 {
    padding-bottom: 60px;
  }
}

.pb-120 {
  padding-bottom: 120px;
}
@media only screen and (max-width: 992px) {
  .pb-120 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-120 {
    padding-bottom: 60px;
  }
}

.pb-90 {
  padding-bottom: 90px;
}
@media only screen and (max-width: 992px) {
  .pb-90 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-90 {
    padding-bottom: 60px;
  }
}

.pb-80 {
  padding-bottom: 80px;
}
@media only screen and (max-width: 992px) {
  .pb-80 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-80 {
    padding-bottom: 60px;
  }
}

.pb-70 {
  padding-bottom: 70px;
}
@media only screen and (max-width: 992px) {
  .pb-70 {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .pb-70 {
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-30 {
    padding-bottom: 30px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-40 {
    padding-bottom: 40px;
  }
}

@media only screen and (max-width: 992px) {
  .md-pb-50 {
    padding-bottom: 50px;
  }
}

/* Scroll To Top */
#scroll-percentage {
  position: fixed;
  right: 20px;
  bottom: 90px;
  height: 60px;
  width: 60px;
  background-color: var(--bd-color-common-white);
  border-radius: 50%;
  transform: scale(0);
  display: grid;
  place-items: center;
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 1001;
}
@media only screen and (max-width: 992px) {
  #scroll-percentage {
    right: 20px;
    bottom: 90px;
  }
}
@media only screen and (max-width: 767px) {
  #scroll-percentage {
    right: 20px;
    bottom: 90px;
  }
}
#scroll-percentage.active {
  right: 20px;
  bottom: 90px;
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  animation: 500ms ease-in-out 0s normal none 1 running scrollToTop;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media only screen and (max-width: 992px) {
  #scroll-percentage.active {
    right: 20px;
    bottom: 90px;
  }
}
@media only screen and (max-width: 767px) {
  #scroll-percentage.active {
    right: 20px;
    bottom: 90px;
  }
}

#scroll-percentage-value {
  height: calc(100% - 6px);
  width: calc(100% - 6px);
  background-color: var(--bd-color-common-white);
  color: var(--bd-color-theme-primary);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 600;
}

#scroll-percentage-value i {
  font-size: 20px;
}

@-webkit-keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@keyframes scrollToTop {
  0% {
    -webkit-transform: translate3d(0, 80%, 0);
    transform: translate3d(0, 80%, 0);
    visibility: visible;
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}
@-webkit-keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
/** Buttons CSS */
.bd-primary-btn {
  background-color: var(--bd-color-theme-primary);
  font-family: var(--bd-ff-heading);
  color: var(--bd-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 22px 30px;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}
.bd-primary-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  -webkit-transform-origin: right center;
  -moz-transform-origin: right center;
  -ms-transform-origin: right center;
  transform-origin: right center;
  -webkit-transform: scale(0, 1);
  -moz-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  -o-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -moz-transition: -moz-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -ms-transition: -ms-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: -o-transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}
.bd-primary-btn i {
  margin-left: 10px;
  font-size: 14px;
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.bd-primary-btn:hover {
  color: var(--bd-color-common-white);
}
.bd-primary-btn:hover:before {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: scale(1, 1);
  -moz-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  -o-transform: scale(1, 1);
  transform: scale(1, 1);
}
.bd-primary-btn:hover i {
  transform: rotate(0deg);
}
.bd-primary-btn:focus {
  color: var(--bd-color-common-white);
}
.bd-primary-btn.transparent {
  background-color: transparent;
  border: 1px solid var(--bd-color-theme-primary);
  color: var(--bd-color-heading-primary);
}
.bd-primary-btn.transparent:hover {
  color: var(--bd-color-common-white);
}
.bd-primary-btn.transparent:before {
  background-color: var(--bd-color-theme-primary);
}

.bd-primary-btn-2 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 10px;
}
.bd-primary-btn-2 .text {
  font-family: var(--bd-ff-p);
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-heading-primary);
  text-transform: capitalize;
  text-decoration: underline;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bd-primary-btn-2 .text:hover {
  color: var(--bd-color-theme-primary);
}
.bd-primary-btn-2 .arrow {
  color: var(--bd-color-theme-primary);
  font-size: 25px;
  display: block;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 50%;
  margin-left: -20px;
}
.bd-primary-btn-2 .arrow i {
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.bd-primary-btn-2:hover i {
  transform: rotate(0);
}

/**----------------------------------------
START: Header CSS
----------------------------------------*/
.header {
  background-color: var(--bd-color-common-white);
  width: 100%;
  position: relative;
  top: 0px;
  left: 0;
  width: 100%;
  z-index: 99;
  overflow-x: clip;
  border-bottom: 1px solid var(--bd-color-border-1);
}
@media only screen and (max-width: 992px) {
  .header {
    position: relative;
    top: 0;
    height: auto !important;
  }
}
.header .primary-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 60px;
}
@media (max-width: 1600px) {
  .header .primary-header-inner {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner {
    padding: 20px 20px;
  }
}
.header .primary-header-inner .primary-header-left {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
@media (max-width: 1600px) {
  .header .primary-header-inner .primary-header-left {
    column-gap: 20px;
  }
}
.header .primary-header-inner .primary-header-left .left-box {
  background-color: var(--bd-color-grey-1);
  color: var(--bd-color-theme-primary);
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 25px;
  border-radius: 10px;
}
.header .primary-header-inner .primary-header-left .left-box .sidebar-trigger {
  line-height: 1;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .primary-header-left .left-box.user {
    display: none;
  }
}
.header .primary-header-inner .primary-header-left .join {
  font-family: var(--bd-ff-body);
  font-size: 18px;
  color: var(--bd-color-heading-primary);
  font-weight: 500;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .primary-header-left .join {
    display: none;
  }
}
.header .primary-header-inner .primary-header-left .join:hover {
  color: var(--bd-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap {
  display: flex !important;
  align-items: center;
}
.header .primary-header-inner .header-menu-wrap .header-menu-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .primary-header-inner .header-menu-wrap ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap ul {
    display: none;
  }
}
.header .primary-header-inner .header-menu-wrap ul li {
  display: inline-block;
  position: relative;
}
.header .primary-header-inner .header-menu-wrap ul li:not(:last-of-type) {
  padding: 0 40px;
  border-right: 1px solid var(--bd-color-border-1);
}
@media (max-width: 1600px) {
  .header .primary-header-inner .header-menu-wrap ul li:not(:last-of-type) {
    padding: 20px;
  }
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul li:not(:last-of-type) {
    padding: 10px;
  }
}
.header .primary-header-inner .header-menu-wrap ul li a {
  font-family: var(--bd-ff-body);
  color: var(--bd-color-heading-primary);
  display: block;
  font-size: 20px;
  padding: 44px 0;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  .header .primary-header-inner .header-menu-wrap ul li a {
    font-size: 16px;
  }
}
.header .primary-header-inner .header-menu-wrap ul li a:hover {
  color: var(--bd-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li a i {
  font-size: 13px;
}
.header .primary-header-inner .header-menu-wrap ul li.active a {
  color: var(--bd-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li.active ul li a {
  color: var(--bd-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li.active.menu-item-has-children:after {
  color: var(--bd-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li ul {
  background-color: var(--bd-color-common-white);
  display: block;
  width: 220px;
  padding: 0;
  -webkit-box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  box-shadow: 0px 50px 100px 0px rgba(64, 1, 4, 0.1), 0px -6px 0px 0px rgba(248, 99, 107, 0.004);
  position: absolute;
  left: 30px;
  top: 122px;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  -webkit-transform: rotate3d(1, 0, 0, -90deg);
  transform: rotate3d(1, 0, 0, -90deg);
  -webkit-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: all 0.6s ease;
}
.header .primary-header-inner .header-menu-wrap ul li:hover > ul {
  visibility: visible;
  transition: all 0.6s ease;
  opacity: 1;
  transform: none;
}
.header .primary-header-inner .header-menu-wrap ul li li {
  display: flex;
  justify-content: space-between;
  text-align: left;
  position: relative;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li li:not(:last-of-type) {
  border-bottom: 1px solid var(--bd-color-border-1);
}
.header .primary-header-inner .header-menu-wrap ul li li:last-child {
  margin: 0;
  border-bottom: none;
}
.header .primary-header-inner .header-menu-wrap ul li li:hover {
  background-color: var(--bd-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  color: var(--bd-color-common-black);
}
.header .primary-header-inner .header-menu-wrap ul li li a {
  background-color: var(--bd-color-common-white);
  display: block;
  height: auto;
  line-height: inherit;
  color: var(--bd-color-heading-primary);
  font-weight: 500;
  font-size: 16px;
  padding: 20px 0;
  padding-left: 30px;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  margin: 0;
  position: relative;
}
.header .primary-header-inner .header-menu-wrap ul li li a:before {
  background-color: var(--bd-color-theme-primary);
  content: "";
  width: 0;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.header .primary-header-inner .header-menu-wrap ul li li a:hover:before {
  width: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li li.active {
  background-color: var(--bd-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li.active a {
  color: var(--bd-color-common-white) !important;
}
.header .primary-header-inner .header-menu-wrap ul li li ul {
  top: 0;
  left: 100%;
}
.header .primary-header-inner .header-menu-wrap ul li li ul li a {
  color: var(--bd-color-common-white);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover a {
  color: var(--bd-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a {
  color: var(--bd-color-heading-primary);
}
.header .primary-header-inner .header-menu-wrap ul li li:hover li a:hover {
  color: var(--bd-color-common-white);
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children {
  position: relative;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
  padding-right: 15px;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul .menu-item-has-children a {
    padding-right: 13px;
  }
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li {
  margin: 0;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children ul li a {
  padding-right: 0;
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 12px;
  font-weight: 700;
  content: "+";
  color: var(--bd-color-heading-primary);
  position: absolute;
  top: 52%;
  right: 40px;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1600px) {
  .header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
    right: 20px;
    top: 50.5%;
  }
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:after {
    right: 10px;
  }
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:hover:after {
  color: var(--bd-color-theme-primary);
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:last-child {
  padding-left: 40px;
}
@media (max-width: 1600px) {
  .header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:last-child {
    padding-left: 20px;
  }
}
.header .primary-header-inner .header-menu-wrap ul .menu-item-has-children:last-child:after {
  right: 0;
}
.header .primary-header-inner .header-menu-wrap ul.list-1 {
  padding-right: 60px;
}
@media (max-width: 1600px) {
  .header .primary-header-inner .header-menu-wrap ul.list-1 {
    padding-right: 30px;
  }
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-menu-wrap ul.list-1 {
    padding-right: 10px;
  }
}
.header .primary-header-inner .header-menu-wrap ul.list-1 ul li {
  border-right: none;
  border-left: none;
  padding: 0;
}
.header .primary-header-inner .header-menu-wrap ul.list-2 {
  padding-left: 20px;
}
@media (max-width: 1600px) {
  .header .primary-header-inner .header-menu-wrap ul.list-2 {
    padding-left: 0px;
  }
}
.header .primary-header-inner .header-menu-wrap ul.list-2 li:last-child {
  padding-left: 40px;
}
@media (max-width: 1600px) {
  .header .primary-header-inner .header-menu-wrap ul.list-2 li:last-child {
    padding-left: 20px;
  }
}
.header .primary-header-inner .header-menu-wrap ul.list-2 li ul li {
  border-right: none;
  border-left: none;
  padding: 0;
}
.header .primary-header-inner .header-menu-wrap ul.list-2 li ul li:last-child {
  padding-left: 0px;
}
.header .primary-header-inner .header-menu-wrap .header-logo {
  width: 210px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .header-menu-wrap .header-logo {
    display: none;
  }
}
.header .primary-header-inner .header-menu-wrap .header-logo .header-logo-inner {
  background-color: var(--bd-color-common-white);
  height: 210px;
  width: 210px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 50%;
}
.header .primary-header-inner .header-right {
  display: flex;
  align-items: center;
  color:#e77829;
}
.header .primary-header-inner .header-right .search-area {
  display: flex;
  align-items: center;
  column-gap: 20px;
  position: relative;
  z-index: 1;
  padding: 25px 0 25px 50px;
  border-radius: 100px 0 0 100px;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-right .search-area {
    padding-left: 30px;
  }
}
.header .primary-header-inner .header-right .search-area:before {
  background-color: var(--bd-color-theme-primary);
  content: "";
  width: 3000px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 100px 0 0 100px;
}
.header .primary-header-inner .header-right .search-area .icon {
  color: var(--bd-color-common-white);
  font-size: 30px;
  margin-bottom: -5px;
  cursor: pointer;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-right .search-area .icon {
    font-size: 18px;
  }
}
.header .primary-header-inner .header-right .search-area .icon i {
  line-height: 1;
}
.header .primary-header-inner .header-right .search-area .form-content .form-control {
  background-color: transparent;
  font-family: var(--bd-ff-body);
  font-size: 18px;
  font-weight: 500;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid var(--bd-color-common-white);
  border-radius: 0;
  padding: 0;
  max-width: 150px;
  width: 100%;
}
@media (max-width: 1199px) {
  .header .primary-header-inner .header-right .search-area .form-content .form-control {
    font-size: 14px;
    max-width: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .search-area .form-content .form-control {
    max-width: 90px;
  }
}
.header .primary-header-inner .header-right .search-area .form-content .form-control::-webkit-input-placeholder {
  font-size: 14px;
  color: var(--bd-color-common-white);
}
.header .primary-header-inner .header-right .search-area .form-content .form-control:-moz-placeholder {
  font-size: 14px;
  color: var(--bd-color-common-white);
}
.header .primary-header-inner .header-right .search-area .form-content .form-control::-moz-placeholder {
  font-size: 14px;
  color: var(--bd-color-common-white);
}
.header .primary-header-inner .header-right .search-area .form-content .form-control:-ms-input-placeholder {
  font-size: 14px;
  color: var(--bd-color-common-white);
}
@media only screen and (max-width: 767px) {
  .header .primary-header-inner .header-right .header-logo img {
    width: 90px;
  }
}
@media only screen and (max-width: 992px) {
  .header .primary-header-inner .mean-push {
    display: none;
  }
}

.header-2 {
  background-color: transparent;
  position: absolute;
  top: 0;
  border-bottom: 1px solid #454546;
}
.header-2 .primary-header-inner {
  padding: 0 100px;
}
.header-2 .primary-header-inner .primary-header-left .header-logo {
  width: 210px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .header-2 .primary-header-inner .primary-header-left .header-logo {
    display: none;
  }
}
.header-2 .primary-header-inner .primary-header-left .header-logo .header-logo-inner {
  background-color: var(--bd-color-common-white);
  height: 210px;
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 50%;
}
.header-2 .primary-header-inner .primary-header-left .left-box {
  background-color: rgba(250, 245, 241, 0.051);
  margin-left: 30px;
}
@media (max-width: 1700px) {
  .header-2 .primary-header-inner .primary-header-left .left-box {
    margin-left: 0;
  }
}
.header-2 .primary-header-inner .primary-header-left .left-box img {
  filter: brightness(0) invert(1);
}
.header-2 .primary-header-inner .primary-header-left .join {
  color: var(--bd-color-common-white);
}
.header-2 .primary-header-inner .primary-header-left .join:hover {
  color: var(--bd-color-theme-primary);
}
.header-2 .primary-header-inner .header-menu-wrap ul li:not(:last-of-type) {
  border-right: 1px solid #454546;
}
.header-2 .primary-header-inner .header-menu-wrap ul li:last-of-type {
  padding-left: 40px;
}
.header-2 .primary-header-inner .header-menu-wrap ul li a {
  color: var(--bd-color-common-white);
}
.header-2 .primary-header-inner .header-menu-wrap ul li.menu-item-has-children:after {
  color: var(--bd-color-common-white);
  top: 51.5%;
}
@media (max-width: 1700px) {
  .header-2 .primary-header-inner .header-menu-wrap ul li.menu-item-has-children:after {
    right: 30px;
  }
}
@media (max-width: 1700px) and (max-width: 1199px) {
  .header-2 .primary-header-inner .header-menu-wrap ul li.menu-item-has-children:after {
    right: 20px;
    font-size: 10px;
    top: 50%;
  }
}
@media (max-width: 1700px) {
  .header-2 .primary-header-inner .header-menu-wrap ul li:last-child {
    padding-left: 30px;
  }
  .header-2 .primary-header-inner .header-menu-wrap ul li:not(:last-of-type) {
    padding: 0 30px;
  }
}
@media (max-width: 1700px) and (max-width: 1199px) {
  .header-2 .primary-header-inner .header-menu-wrap ul li:not(:last-of-type) {
    padding: 0px 20px;
  }
}
@media (max-width: 1199px) {
  .header-2 .primary-header-inner .header-menu-wrap ul li {
    padding-left: 20px;
  }
}
.header-2 .primary-header-inner .header-menu-wrap ul li ul li:not(:last-of-type) {
  padding: 0;
  border-right: none;
}
.header-2 .primary-header-inner .header-menu-wrap ul li ul li:last-of-type {
  padding-left: 0px;
}
.header-2 .primary-header-inner .header-right .header-social {
  list-style: none;
  display: flex;
  column-gap: 0;
}
@media (max-width: 1600px) {
  .header-2 .primary-header-inner .header-right .header-social {
    display: none;
  }
}
.header-2 .primary-header-inner .header-right .header-social li {
  display: inline-flex;
  padding: 0;
  margin: 0;
}
.header-2 .primary-header-inner .header-right .header-social li a {
  background-color: rgba(255, 255, 255, 0.051);
  color: var(--bd-color-common-white);
  height: 71.75px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.header-2 .primary-header-inner .header-right .header-social li:nth-child(2) a {
  background-color: rgba(255, 255, 255, 0.102);
}
.header-2 .primary-header-inner .header-right .search-area {
  background-color: var(--bd-color-theme-primary);
  padding: 14px 50px 14px 30px;
  border-radius: 0 100px 100px 0;
}
.header-2 .primary-header-inner .header-right .search-area:before {
  display: none;
}
.header-2 .primary-header-inner .header-right .search-area .form-content .form-control {
  border: none;
  max-width: 80px;
}

.header-2 .primary-header.fixed {
  background-color: var(--bd-color-heading-primary);
}
.header-2 .primary-header.fixed .primary-header-inner {
  padding: 0 20px;
}

@media (max-width: 1800px) {
  .header-2 .primary-header-inner {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 1800px) and (max-width: 992px) {
  .header-2 .primary-header-inner {
    padding: 20px;
  }
}
.header-3 {
  height: auto !important;
}
.header-3 .top-bar {
  position: relative;
  z-index: 1;
  padding: 20px 0;
}
.header-3 .top-bar:before {
  background-color: var(--bd-color-theme-primary);
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
@media (max-width: 1399px) {
  .header-3 .top-bar:before {
    display: none;
  }
}
.header-3 .top-bar:after {
  background-color: var(--bd-color-border-1);
  content: "";
  width: 50%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media (max-width: 1399px) {
  .header-3 .top-bar:after {
    width: 100%;
  }
}
.header-3 .top-bar .top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1730px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1399px) {
  .header-3 .top-bar .top-bar-inner {
    justify-content: center;
  }
}
.header-3 .top-bar .top-bar-inner .top-bar-left {
  display: flex;
  align-items: center;
  column-gap: 115px;
}
@media (max-width: 1700px) {
  .header-3 .top-bar .top-bar-inner .top-bar-left {
    column-gap: 50px;
  }
}
.header-3 .top-bar .top-bar-inner .top-bar-left span {
  font-family: var(--bd-ff-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--bd-color-text-body);
}
@media only screen and (max-width: 767px) {
  .header-3 .top-bar .top-bar-inner .top-bar-left span {
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .header-3 .top-bar .top-bar-inner .top-bar-left .top-left-list {
    display: none;
  }
}
.header-3 .top-bar .top-bar-inner .top-bar-left .top-left-list li {
  display: inline-flex;
  align-items: center;
}
.header-3 .top-bar .top-bar-inner .top-bar-left .top-left-list li:not(:last-of-type) {
  margin-right: 20px;
}
.header-3 .top-bar .top-bar-inner .top-bar-left .top-left-list li a {
  font-family: var(--bd-ff-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--bd-color-text-body);
}
.header-3 .top-bar .top-bar-inner .top-bar-left .top-left-list li a:hover {
  color: var(--bd-color-theme-primary);
}
@media (max-width: 1399px) {
  .header-3 .top-bar .top-bar-inner .top-bar-right {
    display: none;
  }
}
.header-3 .top-bar .top-bar-inner .top-bar-right .top-bar-contact li {
  font-family: var(--bd-ff-body);
  color: var(--bd-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 18px;
  font-weight: 500;
}
.header-3 .top-bar .top-bar-inner .top-bar-right .top-bar-contact li:not(:last-of-type) {
  margin-right: 50px;
}
@media (max-width: 1700px) {
  .header-3 .top-bar .top-bar-inner .top-bar-right .top-bar-contact li:not(:last-of-type) {
    margin-right: 20px;
  }
}
.header-3 .top-bar .top-bar-inner .top-bar-right .top-bar-contact li i {
  font-size: 16px;
  margin-right: 10px;
  line-height: 1;
}
.header-3 .top-bar .top-bar-inner .top-bar-right .top-bar-contact li a:hover {
  color: var(--bd-color-common-white);
}
.header-3 .primary-header-inner {
  max-width: 1730px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
.header-3 .primary-header-inner .header-logo {
  width: 210px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 1600px) {
  .header-3 .primary-header-inner .header-logo {
    display: none;
  }
}
.header-3 .primary-header-inner .header-logo .header-logo-inner {
  background-color: var(--bd-color-common-white);
  height: 210px;
  width: 210px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 50%;
}
.header-3 .primary-header-inner .header-menu-wrap ul li:first-child {
  padding-left: 6px;
}
.header-3 .primary-header-inner .header-menu-wrap ul li:last-of-type {
  padding-left: 40px;
}
@media (max-width: 1700px) {
  .header-3 .primary-header-inner .header-menu-wrap ul li:last-child {
    padding-left: 30px;
  }
  .header-3 .primary-header-inner .header-menu-wrap ul li:not(:last-of-type) {
    padding: 0 30px;
  }
}
@media (max-width: 1700px) and (max-width: 1199px) {
  .header-3 .primary-header-inner .header-menu-wrap ul li:not(:last-of-type) {
    padding: 0px 20px;
  }
}
@media (max-width: 1199px) {
  .header-3 .primary-header-inner .header-menu-wrap ul li:last-child {
    padding-left: 20px;
  }
}
@media (max-width: 1199px) {
  .header-3 .primary-header-inner .header-menu-wrap ul li {
    padding-left: 20px;
  }
}
.header-3 .primary-header-inner .header-menu-wrap ul li a {
  padding: 30px 0;
  left: -5px;
}
.header-3 .primary-header-inner .header-menu-wrap ul li ul {
  top: 94px;
  left: 0;
}
.header-3 .primary-header-inner .header-menu-wrap ul li ul li:not(:last-of-type) {
  padding: 0;
  border-right: none;
}
.header-3 .primary-header-inner .header-menu-wrap ul li ul li:last-of-type {
  padding-left: 0px;
}
.header-3 .primary-header-inner .header-right {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
@media only screen and (max-width: 992px) {
  .header-3 .primary-header-inner .header-right {
    width: 100%;
    justify-content: space-between;
    padding: 15px 0;
  }
}
@media (max-width: 1199px) {
  .header-3 .primary-header-inner .header-right .search-area {
    display: none;
  }
}
.header-3 .primary-header-inner .header-right .search-area:before {
  display: none;
}
.header-3 .primary-header-inner .header-right .search-area .icon {
  color: var(--bd-color-theme-primary);
  font-size: 15px;
}
.header-3 .primary-header-inner .header-right .search-area .form-content {
  color: var(--bd-color-heading-primary);
}
.header-3 .primary-header-inner .header-right .search-area .form-content .form-control {
  border-bottom: 2px solid var(--bd-color-border-1);
}
.header-3 .primary-header-inner .header-right .search-area .form-content .form-control::-webkit-input-placeholder {
  color: var(--bd-color-heading-primary);
}
.header-3 .primary-header-inner .header-right .search-area .form-content .form-control:-moz-placeholder {
  color: var(--bd-color-heading-primary);
}
.header-3 .primary-header-inner .header-right .search-area .form-content .form-control::-moz-placeholder {
  color: var(--bd-color-heading-primary);
}
.header-3 .primary-header-inner .header-right .search-area .form-content .form-control:-ms-input-placeholder {
  color: var(--bd-color-heading-primary);
}
@media (max-width: 1600px) {
  .header-3 .primary-header-inner .header-right .header-social {
    display: none;
  }
}
.header-3 .primary-header-inner .header-right .header-social li {
  display: inline-flex;
}
.header-3 .primary-header-inner .header-right .header-social li:not(:last-of-type) {
  margin-right: 20px;
}
.header-3 .primary-header-inner .header-right .header-social li a {
  font-size: 18px;
  font-family: var(--bd-ff-body);
  font-weight: 500;
  color: var(--bd-color-heading-primary);
  text-transform: capitalize;
}
.header-3 .primary-header-inner .header-right .header-social li a:hover {
  color: var(--bd-color-theme-primary);
}
.header-3 .primary-header-inner .header-right .header-btn {
  padding: 19px 30px;
  border-radius: 100px;
  border: 1px solid var(--bd-color-border-1);
  display: flex;
  align-items: center;
  column-gap: 15px;
}
@media only screen and (max-width: 767px) {
  .header-3 .primary-header-inner .header-right .header-btn {
    padding: 15px 30;
  }
}
.header-3 .primary-header-inner .header-right .header-btn span {
  font-family: var(--bd-ff-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-heading-primary);
  text-decoration: underline;
}
@media only screen and (max-width: 767px) {
  .header-3 .primary-header-inner .header-right .header-btn span {
    font-size: 14px;
  }
}
.header-3 .primary-header-inner .header-right .header-btn:hover {
  color: var(--bd-color-theme-primary);
}
.header-3 .primary-header-inner .header-right .header-btn i {
  color: var(--bd-color-theme-primary);
  font-size: 20px;
  transform: rotate(-45deg);
  text-decoration: inherit;
  margin-bottom: -4px;
}
.header-3 .primary-header.fixed .header-logo {
  display: none;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu .header-right {
    display: none !important;
  }
}
.side-menu-icon {
  position: absolute;
  right: 20px;
  top: 25px;
  z-index: 100;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 992px) {
  .side-menu-icon {
    display: none;
  }
}

.side-menu-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: 0;
  width: 850px;
  -webkit-transform: translateX(850px);
  -ms-transform: translateX(850px);
  transform: translateX(850px);
  height: 100%;
  display: block;
  background-color: var(--bd-color-theme-bg-dark-deep);
  z-index: 100;
  padding: 40px;
  -webkit-transition: transform 0.5s ease;
  -o-transition: transform 0.5s ease;
  transition: transform 0.5s ease;
  backface-visibility: hidden;
}
.side-menu-wrapper .side-menu-close {
  background-color: var(--bd-color-theme-primary);
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 18px;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
}
.side-menu-wrapper.is-open {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}
@media only screen and (max-width: 992px) {
  .side-menu-wrapper {
    display: none;
  }
}

.side-menu-content .side-menu-header {
  font-family: var(--bd-ff-body);
  font-size: 30px;
  max-width: 600px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  margin-bottom: 40px;
}
.side-menu-content .side-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
  margin-bottom: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box {
  display: flex;
  align-items: center;
  column-gap: 30px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box img {
  max-width: 150px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info .side-menu-title {
  font-family: var(--bd-ff-body);
  font-size: 32px;
  font-weight: 500;
  color: var(--bd-color-theme-primary);
  line-height: 1;
  margin-bottom: 10px;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p {
  max-width: 400px;
  width: 100%;
}
.side-menu-content .side-menu-item .side-menu-thumb-box .side-menu-info p:last-child {
  margin-bottom: 0;
}
.side-menu-content .side-menu-item .side-menu-arrow {
  font-size: 45px;
  color: var(--bd-color-theme-primary);
  transform: rotate(-45deg);
  transition: all 0.3s ease-in-out;
}
.side-menu-content .side-menu-item:hover {
  border: 1px solid var(--bd-color-border-6);
}
.side-menu-content .side-menu-item:hover .side-menu-arrow {
  transform: rotate(0deg);
}
.side-menu-content .side-menu-item:last-child {
  margin-bottom: 0;
}

.side-menu-overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 0%;
  position: fixed;
  top: 0;
  z-index: 9;
  right: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 600ms ease;
  -o-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}
.side-menu-overlay.is-open {
  width: 100%;
  opacity: 0.5;
  visibility: visible;
  cursor: url(../img/cancel.png), auto;
}
@media only screen and (max-width: 992px) {
  .side-menu-overlay {
    display: none;
  }
}

.primary-header {
  width: 100%;
}
.primary-header.fixed {
  background-color: var(--bd-color-common-white);
  position: fixed;
  left: 0;
  top: 0;
  animation-name: menuSticky;
  -webkit-animation-name: menuSticky;
  animation-duration: 1s;
  -webkit-animation-duration: 1s;
  animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  box-shadow: 0px 1px 3px 0px rgba(17, 17, 17, 0.1);
  z-index: 99;
}
.primary-header.fixed .primary-header-inner {
  padding: 0 60px;
}
@media (max-width: 1600px) {
  .primary-header.fixed .primary-header-inner {
    padding: 0 20px;
  }
}
@media only screen and (max-width: 992px) {
  .primary-header.fixed .primary-header-inner {
    padding: 20px;
  }
}

@-webkit-keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
@keyframes menuSticky {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0%);
  }
}
.mobile-side-menu-overlay,
.mobile-side-menu {
  display: none;
}

@media only screen and (max-width: 992px) {
  .mobile-side-menu {
    background-color: var(--bd-color-bg-1);
    position: fixed;
    overflow-y: auto;
    top: 0;
    right: 0;
    width: 80%;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    height: 100%;
    display: block;
    z-index: 100;
    padding: 40px 40px 40px 40px;
    -webkit-transition: transform 0.5s ease;
    -o-transition: transform 0.5s ease;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu {
    padding: 40px 20px;
    width: 100%;
    max-width: 320px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu.is-open {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  .mobile-side-menu .side-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 50px;
  }
  .mobile-side-menu .side-menu-head a img {
    max-width: 120px;
  }
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    position: fixed;
    top: 35px;
    right: 40px;
    color: var(--bd-color-common-white);
    font-size: 17px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--bd-color-border-1);
  }
}
@media only screen and (max-width: 992px) and (max-width: 767px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close {
    right: 16px;
  }
}
@media only screen and (max-width: 992px) {
  .mobile-side-menu .side-menu-head .mobile-side-menu-close:hover {
    background-color: var(--bd-color-theme-primary);
    color: var(--bd-color-common-white);
  }
  .mobile-side-menu .side-menu-wrap {
    overflow: hidden;
    margin-bottom: 50px;
  }
  .mobile-side-menu p {
    color: var(--bd-color-common-white);
    margin-bottom: 50px;
  }
  .mobile-side-menu .list-header {
    color: var(--bd-color-common-white);
    font-family: var(--bd-ff-body);
    font-weight: 400;
    margin-bottom: 30px;
  }
  .mobile-side-menu .side-menu-list {
    list-style: none;
  }
  .mobile-side-menu .side-menu-list li {
    font-family: var(--bd-ff-heading);
    font-size: 16px;
    font-weight: 500;
    color: var(--bd-color-common-white);
  }
  .mobile-side-menu .side-menu-list li span,
  .mobile-side-menu .side-menu-list li a {
    color: var(--bd-color-common-white);
    margin-left: 10px;
    font-size: 16px;
  }
  .mobile-side-menu .side-menu-list li i {
    margin-right: 10px;
  }
  .mobile-side-menu-overlay {
    background-color: rgba(0, 0, 0, 0.7);
    height: 100%;
    width: 0%;
    position: fixed;
    top: 0;
    z-index: 9;
    right: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 600ms ease;
    -o-transition: all 600ms ease;
    transition: all 600ms ease;
    z-index: 10;
    display: block;
  }
  .mobile-side-menu-overlay.is-open {
    width: 100%;
    opacity: 0.5;
    visibility: visible;
    cursor: url(../img/cancel.png), auto;
  }
}
.mean-bar {
  background-color: transparent;
  min-height: auto;
  padding: 0;
}
.mean-bar .meanmenu-reveal {
  display: none !important;
}
.mean-bar .mean-nav {
  background-color: transparent;
  margin-top: 0;
  padding-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul {
  display: block !important;
}
.mean-bar .mean-nav.mean-nav > ul li {
  position: relative;
  float: none;
  display: block;
  width: auto;
}
.mean-bar .mean-nav.mean-nav > ul li:not(:last-of-type) {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bd-color-border-1);
}
.mean-bar .mean-nav.mean-nav > ul li a {
  color: var(--bd-color-heading-primary);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-top: none;
  padding: 0;
  float: none;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li a {
    font-size: 14px;
  }
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  position: absolute;
  padding: 0;
  top: 3px;
  right: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before, .mean-bar .mean-nav.mean-nav > ul li a.mean-expand:after {
  font-size: 12px;
  font-family: "Font Awesome 6 Pro";
  font-weight: 900;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand:before {
  content: "+";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked {
  background-color: var(--bd-color-heading-primary);
  color: var(--bd-color-common-white);
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:after {
  content: "\f068";
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand.mean-clicked:before {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li a.mean-expand i {
  display: none;
}
.mean-bar .mean-nav.mean-nav > ul li ul {
  padding: 0 0 0 30px;
  margin-top: 20px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li:not(:last-of-type) {
  padding-bottom: 15px;
  margin-bottom: 15px;
}
.mean-bar .mean-nav.mean-nav > ul li ul li a {
  padding: 0;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .mean-bar .mean-nav.mean-nav > ul li ul li a {
    font-size: 14px;
  }
}

#popup-search-box {
  background-color: var(--bd-color-common-white);
  position: fixed;
  width: 100%;
  height: 20%;
  top: -100%;
  left: 0;
  right: 0;
  white-space: nowrap;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 500ms ease all;
  -moz-transition: 500ms ease all;
  transition: 500ms ease all;
}
#popup-search-box .box-inner-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  box-shadow: 0px 0px 60px 0px rgba(0, 0, 0, 0.05);
}
#popup-search-box .box-inner-wrap form {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  padding: 0 15px;
}
#popup-search-box .box-inner-wrap form input {
  width: 100%;
  padding: 20px 15px;
  padding-right: 80px;
  background: transparent;
  border: none;
  color: #ddd;
  border: 1px solid var(--bd-color-border-1);
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-webkit-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input::-moz-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:-ms-input-placeholder {
  color: #666;
  font-size: 16px;
}
#popup-search-box .box-inner-wrap form input:focus {
  outline: none;
}
#popup-search-box .box-inner-wrap:hover {
  cursor: url(../img/cross.html), auto;
}
#popup-search-box .box-inner-wrap .search-close {
  position: absolute;
  top: 30px;
  right: 50px;
  color: var(--bd-color-heading-primary);
  border: 1px solid var(--bd-color-border-1);
  height: 50px;
  width: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  #popup-search-box .box-inner-wrap .search-close {
    height: 35px;
    width: 35px;
    top: 10px;
    right: 10px;
  }
}
#popup-search-box .box-inner-wrap .search-close:hover {
  background-color: var(--bd-color-theme-primary);
  border: 1px solid var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
}
#popup-search-box.toggled {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.popup-tags {
  position: relative;
  margin: 0 auto;
}

/* !END: Theme Header CSS */
/**----------------------------------------
    START: Hero CSS
----------------------------------------*/
.hero-section {
  padding-bottom: 270px;
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .hero-section {
    padding-bottom: 100px;
  }
}
.hero-section .hero-img {
  position: absolute;
}
.hero-section .hero-img.img-1 {
  max-width: 250px;
  width: 100%;
  height: 320px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 0 30px 30px 0;
}
@media (max-width: 1399px) {
  .hero-section .hero-img.img-1 {
    max-width: 200px;
    height: 280px;
  }
}
@media (max-width: 1199px) {
  .hero-section .hero-img.img-1 {
    display: none;
  }
}
.hero-section .hero-img.img-2 {
  max-width: 530px;
  width: 100%;
  height: 270px;
  bottom: 0;
  left: 115px;
  z-index: 2;
  border-radius: 30px;
}
@media (max-width: 1199px) {
  .hero-section .hero-img.img-2 {
    left: 0;
    max-width: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-img.img-2 {
    display: none;
  }
}
.hero-section .hero-img.img-3 {
  max-width: 390px;
  width: 100%;
  height: 435px;
  top: 90px;
  right: 0;
  border-radius: 30px 0 0 30px;
}
@media (max-width: 1600px) {
  .hero-section .hero-img.img-3 {
    max-width: 300px;
    height: 350px;
  }
}
@media (max-width: 1399px) {
  .hero-section .hero-img.img-3 {
    max-width: 250px;
    height: 300px;
  }
}
@media only screen and (max-width: 992px) {
  .hero-section .hero-img.img-3 {
    display: none;
  }
}
.hero-section .down-arrow-wrap {
  position: absolute;
  bottom: 0;
  left: 15%;
  width: 100%;
  height: 270px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .hero-section .down-arrow-wrap {
    left: 27%;
  }
}
@media only screen and (max-width: 767px) {
  .hero-section .down-arrow-wrap {
    left: 0;
    bottom: 0px;
    height: 170px;
  }
}
.hero-section .down-arrow-wrap:before {
  background-color: var(--bd-color-border-1);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.hero-section .down-arrow-wrap .arrow-inner {
  position: relative;
  padding: 25px;
}
.hero-section .down-arrow-wrap .arrow-inner .arrow-text {
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: -2;
}

.hero-content {
  padding: 100px 0 90px 50px;
  position: relative;
}
@media (max-width: 1700px) {
  .hero-content {
    padding-left: 140px;
  }
}
@media (max-width: 1600px) {
  .hero-content {
    padding-left: 250px;
  }
}
@media (max-width: 1399px) {
  .hero-content {
    padding-left: 220px;
  }
}
@media (max-width: 1199px) {
  .hero-content {
    padding-left: 0;
  }
}
@media only screen and (max-width: 992px) {
  .hero-content {
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.hero-content .title {
  font-size: 90px;
  font-weight: 500;
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .hero-content .title {
    font-size: 70px;
  }
}
@media (max-width: 1399px) {
  .hero-content .title {
    font-size: 55px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content .title {
    font-size: 34px;
  }
}
.hero-content .title.title-2 {
  line-height: 1;
}
.hero-content .video-text-wrap {
  display: flex;
  align-items: center;
}
@media (max-width: 1399px) {
  .hero-content .video-text-wrap {
    margin: 15px 0;
  }
}
.hero-content .video-text-wrap .video-btn {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  display: inline-flex;
  align-items: center;
  font-size: 14px;
  padding: 20px 30px;
  height: 100%;
  margin-right: 35px;
  border-radius: 10px;
}
.hero-content .video-text-wrap .video-btn span {
  font-size: 18px;
  font-weight: 500;
  margin-left: 10px;
}
@media only screen and (max-width: 767px) {
  .hero-content .video-text-wrap .video-btn {
    display: none;
  }
}
.hero-content .desc {
  max-width: 575px;
  width: 100%;
  border-left: 1px solid var(--bd-color-border-1);
  padding-left: 15px;
  position: absolute;
  bottom: 0;
  right: 40%;
  transform: translateX(50%);
  text-align: justify;
}
@media (max-width: 1700px) {
  .hero-content .desc {
    right: 38%;
    max-width: 450px;
  }
}
@media (max-width: 1399px) {
  .hero-content .desc {
    font-size: 16px;
    max-width: 400px;
  }
}
@media (max-width: 1199px) {
  .hero-content .desc {
    right: 50%;
  }
}
@media only screen and (max-width: 992px) {
  .hero-content .desc {
    position: inherit;
    left: 0;
    transform: inherit;
    margin-top: 30px;
  }
}

.hero-section-3 {
  position: relative;
  z-index: 1;
  height: 700px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  .hero-section-3 {
    height: auto;
  }
}
.hero-section-3 .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 80%;
  position: absolute;
  top: 0;
  left: 0;
}
.hero-section-3 .bg-shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.hero-content-3 {
  padding: 90px 220px 90px 110px;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 992px) {
  .hero-content-3 {
    padding-left: 50px;
    padding-right: 150px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-3 {
    position: inherit;
    top: 0;
    left: 0;
    transform: inherit;
    padding: 100px 20px;
  }
}
.hero-content-3 .bg-text h1 {
  color: rgba(241, 243, 242, 0.06);
  font-size: 200px;
  font-weight: 500;
  position: absolute;
  bottom: 0;
  left: 50px;
}
.hero-content-3 .sub-title {
  font-family: var(--bd-ff-heading);
  color: var(--bd-color-theme-primary);
  font-size: 24px;
  font-weight: 500;
  font-style: italic;
  padding-left: 60px;
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .hero-content-3 .sub-title {
    padding-left: 0;
  }
}
.hero-content-3 .sub-title:before {
  background-color: var(--bd-color-theme-primary);
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
}
.hero-content-3 .title {
  color: var(--bd-color-common-white);
  font-size: 120px;
  font-weight: 500;
  line-height: 1;
}
.hero-content-3 .title.title-2 {
  text-align: right;
  margin-bottom: 0;
}
@media only screen and (max-width: 992px) {
  .hero-content-3 .title {
    font-size: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .hero-content-3 .title {
    font-size: 50px;
  }
}
.hero-content-3 .hero-text-wrap {
  display: flex;
  justify-content: space-between;
}
.hero-content-3 .hero-text-wrap .play-btn {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .hero-content-3 .hero-text-wrap .play-btn {
    display: none;
  }
}
.hero-content-3 .hero-text-wrap .play-btn a {
  background-color: var(--bd-color-common-white);
  color: var(--bd-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  width: 90px;
  border-radius: 50%;
  margin: 20px;
}
.hero-content-3 .hero-text-wrap .play-btn a img {
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  z-index: -2;
}

/* !END: Hero CSS */
/**----------------------------------------
    START: Service CSS
----------------------------------------*/
.service-section {
  background: rgb(250, 245, 241);
  background: linear-gradient(0deg, rgb(250, 245, 241) 0%, rgb(255, 255, 255) 99%);
}

.service-item {
  padding: 15px;
  border-left: 1px solid var(--bd-color-border-1);
  border-bottom: 1px solid var(--bd-color-border-1);
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.service-item .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.service-item .number {
  font-size: 18px;
  font-weight: 500;
  display: block;
  margin-bottom: 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .title {
  font-weight: 500;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .title a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .icon-box {
  display: grid;
  grid-template-columns: 90px 1fr;
  grid-gap: 35px;
}
@media (max-width: 1199px) {
  .service-item .icon-box {
    grid-template-columns: 1fr;
  }
}
.service-item .icon-box .icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--bd-color-border-1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .icon-box .icon img {
  max-width: 65px;
  height: 55px;
}
.service-item .icon-box .content p {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .icon-box a {
  display: flex;
  align-items: center;
}
.service-item .icon-box a .text {
  font-family: var(--bd-ff-p);
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-heading-primary);
  text-transform: capitalize;
  text-decoration: underline;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .icon-box a .text:hover {
  color: var(--bd-color-theme-primary);
}
.service-item .icon-box a .arrow {
  color: var(--bd-color-theme-primary);
  font-size: 25px;
  display: block;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 50%;
  margin-left: -20px;
}
.service-item .icon-box a .arrow i {
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item .icon-box a:hover i {
  transform: rotate(0);
}
.service-item:hover {
  border-radius: 30px;
  overflow: hidden;
}
.service-item:hover .bg-img {
  visibility: visible;
  opacity: 1;
}
.service-item:hover .number {
  color: var(--bd-color-common-white);
}
.service-item:hover .title {
  color: var(--bd-color-common-white);
}
.service-item:hover .icon-box .icon {
  background-color: var(--bd-color-common-white);
  border: 1px solid var(--bd-color-common-white);
}
.service-item:hover .icon-box .content p {
  color: #c9bdbd;
}
.service-item:hover .icon-box .content .text {
  color: var(--bd-color-common-white);
}
.service-item:hover .icon-box .content .text:hover {
  color: var(--bd-color-theme-primary);
}
.service-item:hover .icon-box .content .arrow {
  color: var(--bd-color-common-white);
}
.service-item:hover .icon-box .content .arrow:hover {
  color: var(--bd-color-theme-primary);
}

.service-2 .section-heading {
  margin-bottom: 160px;
}

.service-item-2 {
  background-color: #fcf8f6;
  height: 540px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: end;
  overflow: visible;
  overflow-x: clip;
}
@media only screen and (max-width: 992px) {
  .service-item-2 {
    margin-bottom: 100px;
  }
  .service-item-2.item-3 {
    margin-bottom: 0;
  }
}
.service-item-2:before {
  background-color: var(--bd-color-common-white);
  clip-path: polygon(100% 0, 0 0, 0 60%);
  content: "";
  width: 100%;
  height: 50%;
  position: absolute;
  top: -1px;
  right: 0;
}
.service-item-2 .service-img {
  position: absolute;
  top: -100px;
  left: 0;
  border-radius: 50% 50% 0 50%;
  z-index: 1;
}
.service-item-2:hover {
  overflow: visible;
  overflow-x: clip;
}

.service-section-3 {
  position: relative;
  z-index: 1;
}
.service-section-3 .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.service-container {
  max-width: 1725px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.service-wrap-3 > div {
  padding: 0;
}
@media (max-width: 1600px) {
  .service-wrap-3 > div:nth-child(1) {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .service-wrap-3 > div:nth-child(1) {
    padding-left: 20px;
  }
}
.service-wrap-3 > div:nth-child(1) .service-top-content:before {
  left: auto;
  right: 0;
  width: 20%;
}
.service-wrap-3 > div:nth-child(1) .service-top-content .number {
  padding-left: 0;
}
.service-wrap-3 > div:nth-child(1) .service-content {
  padding-left: 0px;
}
.service-wrap-3 > div:nth-child(4) .service-top-content:before {
  width: 80%;
}
.service-wrap-3 > div:nth-child(4) .service-content {
  border-right: none;
}

.service-item-3 .service-top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 15px;
  position: relative;
  z-index: 1;
}
.service-item-3 .service-top-content:before {
  background-color: var(--bd-color-border-1);
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.service-item-3 .service-top-content .number {
  font-family: var(--bd-ff-heading);
  font-size: 24px;
  font-weight: 500;
  padding-left: 50px;
}
@media (max-width: 1199px) {
  .service-item-3 .service-top-content .number {
    padding-left: 20px;
  }
}
.service-item-3 .service-top-content .icon {
  margin-right: 50px;
  background-color: var(--bd-color-common-white);
  padding: 25px 10px 20px 10px;
  border-radius: 30px 30px 0 0;
}
.service-item-3 .service-top-content .icon img {
  height: 50px;
}
@media (max-width: 1199px) {
  .service-item-3 .service-top-content .icon {
    margin-right: 20px;
  }
}
.service-item-3 .service-content {
  padding-top: 40px;
  padding-right: 50px;
  border-right: 1px solid var(--bd-color-border-1);
  padding-left: 50px;
}
@media (max-width: 1199px) {
  .service-item-3 .service-content {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .service-item-3 .service-content {
    border-right: none;
  }
}
.service-item-3 .service-content .title {
  font-weight: 500;
  margin-bottom: 30px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-item-3 .service-content .title a {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1399px) {
  .service-item-3 .service-content .title {
    font-size: 20px;
  }
}
@media (max-width: 1199px) {
  .service-item-3 .service-content .title {
    font-size: 18px;
  }
}
.service-item-3 .service-content p {
  margin-bottom: 0;
}
@media (max-width: 1600px) {
  .service-item-3 .service-content p {
    font-size: 15px;
  }
}
@media (max-width: 1199px) {
  .service-item-3 .service-content p {
    font-size: 14px;
  }
}

/* !END: Service CSS */
/**----------------------------------------
    START: About CSS
----------------------------------------*/
.about-section {
  padding-bottom: 175px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .about-section {
    padding-bottom: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .about-section {
    padding-bottom: 50px;
  }
}

.about-img-wrap {
  display: flex;
  align-items: center;
  column-gap: 24px;
  row-gap: 24px;
  max-width: 650px;
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .about-img-wrap {
    margin: 0 auto;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .about-img-wrap {
    flex-direction: column;
  }
}
.about-img-wrap .about-img-2,
.about-img-wrap .about-img {
  max-width: 315px;
  width: 100%;
  height: 530px;
  display: block;
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap .about-img-2,
  .about-img-wrap .about-img {
    height: 350px;
  }
}
.about-img-wrap .round-text {
  position: absolute;
  bottom: -55px;
  right: -55px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap .round-text {
    display: none;
  }
}
.about-img-wrap .round-text img {
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.about-img-wrap .about-counter {
  background-color: var(--bd-color-common-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  padding: 40px;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap .about-counter {
    padding: 30px 20px;
  }
}
.about-img-wrap .about-counter .title {
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
  margin-top: 20px;
}
@media only screen and (max-width: 767px) {
  .about-img-wrap .about-counter .title {
    font-size: 36px;
  }
}
.about-img-wrap .about-counter .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.about-img-wrap .about-counter .title .odometer-formatting-mark {
  display: none;
}
.about-img-wrap .about-counter p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
  margin-top: 10px;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.about-content {
  margin-left: 100px;
}
@media only screen and (max-width: 992px) {
  .about-content {
    margin-left: 0;
  }
}
.about-content .section-heading {
  margin-bottom: 30px;
}
.about-content p {
  font-size: 18px;
  margin-bottom: 0;
}
.about-content .exp {
  font-size: 24px;
  font-weight: 500;
  max-width: 470px;
  width: 100%;
  line-height: 1.5;
  margin: 40px 0;
}
.about-content .about-items {
  max-width: 520px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 20px;
}
.about-content .about-items .about-item {
  display: grid;
  align-items: center;
  grid-template-columns: 32px 1fr;
  grid-gap: 20px;
  padding: 20px 30px;
  border-radius: 0 50px 50px 0;
  border: 1px solid var(--bd-color-border-1);
  border-left: 3px solid var(--bd-color-theme-primary);
}
.about-content .about-items .about-item .icon img {
  max-width: 35px;
}
.about-content .about-items .about-item .content .title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.5;
}

.about-section-2 {
  position: relative;
  z-index: 1;
}
.about-section-2 .shape {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
.about-section-2 .section-heading .section-title {
  margin-left: 0;
}

.about-content-2 {
  text-align: center;
  position: relative;
}
.about-content-2 p {
  max-width: 400px;
  text-align: left;
  margin: 10px 0 75px 0;
  margin-left: 380px;
}
@media (max-width: 1399px) {
  .about-content-2 p {
    margin-left: 270px;
    max-width: 350px;
  }
}
@media (max-width: 1199px) {
  .about-content-2 p {
    margin-left: 200px;
    max-width: 400px;
    margin: 20px 0 75px 0;
  }
}
@media only screen and (max-width: 767px) {
  .about-content-2 p {
    margin-bottom: 30px;
  }
}
.about-content-2 .about-thumb {
  max-width: 480px;
  width: 100%;
  position: absolute;
  top: -22%;
  right: 0;
  z-index: 1;
}
@media (max-width: 1399px) {
  .about-content-2 .about-thumb {
    max-width: 400px;
  }
}
@media only screen and (max-width: 992px) {
  .about-content-2 .about-thumb {
    top: 15%;
    max-width: 300px;
  }
}
@media only screen and (max-width: 767px) {
  .about-content-2 .about-thumb {
    display: none;
  }
}
.about-content-2 .about-img-wrap-2 {
  position: relative;
}
.about-content-2 .about-img-wrap-2 .about-btn {
  background-color: var(--bd-color-common-white);
  height: 330px;
  width: 330px;
  border: 1px solid var(--bd-color-border-1);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: -22%;
  left: 0;
}
@media (max-width: 1199px) {
  .about-content-2 .about-img-wrap-2 .about-btn {
    top: -12%;
  }
}
@media only screen and (max-width: 992px) {
  .about-content-2 .about-img-wrap-2 .about-btn {
    height: 280px;
    width: 280px;
  }
}
@media only screen and (max-width: 767px) {
  .about-content-2 .about-img-wrap-2 .about-btn {
    display: none;
  }
}
.about-content-2 .about-img-wrap-2 img {
  max-width: 990px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .about-content-2 .about-img-wrap-2 img {
    height: 300px;
    object-fit: cover;
  }
}

/* !END: About CSS */
/**----------------------------------------
    START: Cta CSS
----------------------------------------*/
.cta-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-section:before {
  background-color: rgb(231, 120, 41);
  content: "";
  height: 490px;
  width: 490px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  border-radius: 50%;
  mix-blend-mode: multiply;
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .cta-section:before {
    left: 68%;
  }
}
@media only screen and (max-width: 767px) {
  .cta-section:before {
    display: none;
  }
}
.cta-section .overlay {
  background-color: rgba(18, 18, 18, 0.95);
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .cta-section .overlay {
    width: 100%;
  }
}
.cta-section .video-btn-wrap {
  height: 150px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
@media only screen and (max-width: 992px) {
  .cta-section .video-btn-wrap {
    left: 68%;
  }
}
@media only screen and (max-width: 767px) {
  .cta-section .video-btn-wrap {
    display: none;
  }
}
.cta-section .video-btn-wrap .video-btn {
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 30px;
  color: var(--bd-color-common-white);
  height: 150px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content .section-heading {
  margin-bottom: 30px;
}
.cta-content .section-heading .sub-heading {
  color: var(--bd-color-text-body);
}
.cta-content .section-heading .sub-heading span {
  color: var(--bd-color-text-body);
}
.cta-content p {
  font-size: 18px;
  max-width: 410px;
  width: 100%;
  margin-bottom: 30px;
}
.cta-content a {
  display: flex;
  align-items: center;
}
.cta-content a .text {
  font-family: var(--bd-ff-p);
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-common-white);
  text-transform: capitalize;
  text-decoration: underline;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta-content a .text:hover {
  color: var(--bd-color-theme-primary);
}
.cta-content a .arrow {
  color: var(--bd-color-theme-primary);
  font-size: 25px;
  display: block;
  height: 100px;
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  margin-left: -20px;
}
.cta-content a .arrow i {
  transform: rotate(-45deg);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.cta-content a:hover i {
  transform: rotate(0);
}

/* !END: Cta CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.team-section-2 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.team-section-2 .overlay {
  background-color: var(--bd-color-heading-primary);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.9;
}
.team-section-2 .shapes .shape {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.team-section-2:before {
  background-image: url(../img/shapes/testi-bg-shape.png);
  background-color: var(--bd-color-common-white);
  content: "";
  width: 110%;
  height: 160px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
}

.team-top p {
  font-size: 18px;
  max-width: 550px;
  width: 100%;
}

.team-item {
  position: relative;
}
.team-item .team-thumb {
  height: 230px;
  width: 230px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: -180px;
}
.team-item .team-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-item .team-content {
  padding: 210px 30px 50px 30px;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 150px;
  position: relative;
}
@media (max-width: 1199px) {
  .team-item .team-content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.team-item .team-content .social-list {
  margin-bottom: 30px;
  width: 100%;
  position: absolute;
  top: 180px;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-content .social-list li {
  display: inline-flex;
}
.team-item .team-content .social-list li:not(:last-of-type) {
  margin-right: 10px;
}
.team-item .team-content .social-list li:nth-child(1) {
  transform: translateY(-20px);
}
.team-item .team-content .social-list li:nth-child(4) {
  transform: translateY(-20px);
}
.team-item .team-content .social-list li a {
  background-color: #1877f2;
  color: var(--bd-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.team-item .team-content .social-list li a i {
  transform: rotate(5deg);
}
.team-item .team-content .social-list li.pinterest a {
  background-color: #E60023;
}
.team-item .team-content .social-list li.twitter a {
  background-color: #1da1f2;
}
.team-item .team-content .social-list li.instagram a {
  background-color: #FD1D1D;
}
.team-item .team-content span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-item .team-content .name {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1;
}
.team-item .team-content p {
  margin-bottom: 20px;
}
.team-item .team-content .team-btn {
  font-family: var(--bd-ff-p);
  font-size: 18px;
  color: var(--bd-color-theme-primary);
  font-weight: 500;
  text-decoration: underline;
}
.team-item:hover .team-content .social-list {
  visibility: visible;
  opacity: 1;
  top: 200px;
}
.team-item:hover .team-content span {
  padding-top: 50px;
}
.team-item.team-btn-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-wrap {
  mask-image: url(../img/images/mask-img-1.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: cover;
  height: 100%;
  width: 100%;
  mask-position: top center;
}
@media only screen and (max-width: 992px) {
  .team-wrap {
    mask-image: inherit;
    margin-top: 40px;
  }
}

.team-box {
  position: relative;
  z-index: 1;
}
.team-box .team-img {
  position: relative;
}
.team-box .team-img .prof {
  background-color: var(--bd-color-common-white);
  padding: 7px 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.team-box .team-content-wrap {
  background-color: var(--bd-color-common-white);
  mask-image: url(../img/images/mask-img-3.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-size: cover;
  height: 100%;
  width: 100%;
  mask-position: bottom center;
}
@media only screen and (max-width: 992px) {
  .team-box .team-content-wrap {
    background-color: var(--bd-color-common-white);
  }
}
.team-box .team-content-wrap .content {
  padding: 25px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-box .team-content-wrap .content .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
.team-box:hover .team-content-wrap .content {
  background-color: var(--bd-color-theme-primary);
}
.team-box:hover .team-content-wrap .content .title a {
  color: var(--bd-color-common-white);
}

.team-inner {
  display: grid;
  align-items: end;
  grid-template-columns: 310px 1fr;
  grid-gap: 0;
}
@media (max-width: 1199px) {
  .team-inner {
    grid-template-columns: 250px 1fr;
  }
}
@media only screen and (max-width: 767px) {
  .team-inner {
    grid-template-columns: 1fr;
  }
}
.team-inner .team-thumb {
  border-radius: 30px 30px 0 30px;
  width: 310px;
  height: 385px;
}
@media (max-width: 1199px) {
  .team-inner .team-thumb {
    width: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .team-inner .team-thumb {
    width: 100%;
    border-radius: 30px 30px 0 0;
  }
}
.team-inner .team-thumb .social-list {
  position: absolute;
  top: 50%;
  left: 30px;
  transform: translateY(-50%);
  list-style: none;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.team-inner .team-thumb .social-list li:not(:last-of-type) {
  margin-bottom: 10px;
}
.team-inner .team-thumb .social-list li a {
  background-color: #1877f2;
  color: var(--bd-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.team-inner .team-thumb .social-list li a i {
  transform: rotate(5deg);
}
.team-inner .team-thumb .social-list li.pinterest a {
  background-color: #E60023;
}
.team-inner .team-thumb .social-list li.twitter a {
  background-color: #1da1f2;
}
.team-inner .team-thumb .social-list li.instagram a {
  background-color: #FD1D1D;
}
.team-inner .team-info {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(18, 18, 18, 0.08);
  padding: 50px 40px;
  border-radius: 0 30px 30px 0;
}
@media (max-width: 1199px) {
  .team-inner .team-info {
    padding: 50px 20px;
  }
}
.team-inner .team-info span {
  font-size: 14px;
  nav-down: 500;
  display: block;
  margin-bottom: 10px;
}
.team-inner .team-info .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.team-inner .team-info p {
  margin-bottom: 20px;
}
.team-inner .team-info .team-btn {
  font-family: var(--bd-ff-body);
  color: var(--bd-color-theme-primary);
  font-size: 18px;
  text-decoration: underline;
}
.team-inner:hover .team-thumb .social-list {
  visibility: visible;
  opacity: 1;
  left: 40px;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Project CSS
----------------------------------------*/
.project-container {
  max-width: 1730px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.project-item {
  height: 100%;
}
.project-item .project-img {
  height: 500px;
  border-radius: 30px;
}
@media only screen and (max-width: 767px) {
  .project-item .project-img {
    height: 350px;
  }
}
.project-item .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-item .project-content-wrap {
  box-shadow: 0px 0px 35px 0px rgba(18, 18, 18, 0.06);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  padding: 20px;
}

.project-top .project-filter {
  display: flex;
  align-items: center;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 10px;
  list-style: none;
}
.project-top .project-filter li {
  font-family: var(--bd-ff-heading);
  color: var(--bd-color-heading-primary);
  border: 1px solid var(--bd-color-border-2);
  border-radius: 100px;
  padding: 5px 25px;
  font-size: 24px;
  font-weight: 500;
  cursor: pointer;
}
.project-top .project-filter li.active {
  color: var(--bd-color-theme-primary);
}

.project-box {
  border: 1px solid #a0a0a0;
  border-radius: 20px 20px 20px 0;
  overflow: hidden;
}
.project-box .project-content {
  padding: 30px 40px;
}
.project-box .project-content .title {
  font-size: 30px;
  font-weight: 500;
}
.project-box .project-content span {
  font-size: 14px;
  font-weight: 500;
}
.project-box .project-img {
  height: 270px;
  width: 90%;
  position: relative;
}
.project-box .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px 20px 20px 0;
}
.project-box .project-img .project-btn {
  background-color: var(--bd-color-common-white);
  color: var(--bd-color-theme-primary);
  font-size: 30px;
  height: 140px;
  width: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -70px;
  right: 0;
  border-radius: 50%;
}
.project-box .project-img .project-btn i {
  height: 110px;
  width: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #a0a0a0;
  border-radius: 50%;
  transform: rotate(-45deg);
}
.project-box .project-img .project-btn i:hover {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  transform: rotate(0);
}

.project-section-3 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.project-top-3 p {
  color: #8b827d;
  max-width: 485px;
  width: 100%;
}

.project-wrap-3 {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 435px 1fr;
  grid-gap: 24px;
}
@media (max-width: 1199px) {
  .project-wrap-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .project-wrap-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .project-wrap-3 {
    grid-template-columns: 1fr;
  }
}

.project-item-3 {
  position: relative;
  height: 450px;
}
.project-item-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-item-3 .content {
  background-color: var(--bd-color-common-white);
  height: 300px;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .project-item-3 .content {
    border-radius: 0;
    width: 200px;
    height: 200px;
  }
}
.project-item-3 .content .title {
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .project-item-3 .content .title {
    font-size: 22px;
  }
}
.project-item-3 .content span {
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}
.project-item-3 .content a {
  font-size: 34px;
  color: var(--bd-color-theme-primary);
  display: inline-block;
  margin-top: 20px;
  transform: rotate(-45deg);
}
.project-item-3 .content a i {
  line-height: 1;
}
.project-item-3 .content a:hover {
  transform: rotate(0);
}
.project-item-3:hover .content {
  transform: translate(-50%, -50%) scale(1);
}

/* !END: Project CSS */
/**----------------------------------------
    START: Skill CSS
----------------------------------------*/
.skill-img-wrap {
  position: relative;
  max-width: 650px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .skill-img-wrap {
    margin: 0 auto;
    margin-bottom: 50px;
  }
}
.skill-img-wrap .skill-img {
  max-width: 560px;
  width: 100%;
  border-radius: 30px;
}
.skill-img-wrap .text-img {
  position: absolute;
  bottom: 50px;
  right: 0;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .skill-img-wrap .text-img img {
    height: 150px;
  }
}

.skill-content .section-heading {
  margin-bottom: 30px;
}
.skill-content p {
  margin-bottom: 40px;
}

.skills-item {
  overflow: hidden;
  padding-bottom: 40px;
}
.skills-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.skills-item .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .skills-item .title {
    font-size: 18px;
  }
}
.skills-item .progress {
  height: 2px;
  overflow: visible;
  border-radius: 0;
}
.skills-item .progress .progress-bar {
  position: relative;
  background-color: var(--bd-color-theme-primary);
  overflow: visible;
}
.skills-item .progress .progress-bar span {
  font-family: var(--bd-ff-heading);
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  display: block;
  line-height: 1;
  font-size: 20px;
  font-weight: 500;
  background-repeat: no-repeat;
  padding: 15px;
  position: absolute;
  top: -25px;
  right: -11px;
}
@media only screen and (max-width: 767px) {
  .skills-item .progress .progress-bar span {
    padding: 5px 15px;
    top: -13px;
  }
}

.skill-content.content-2 {
  max-width: 600px;
  width: 100%;
}
.skill-content.content-2 p {
  max-width: 500px;
  width: 100%;
  padding-left: 65px;
  margin-top: 40px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .skill-content.content-2 p {
    padding-left: 0;
  }
}

.skill-img-wrap-2 {
  text-align: center;
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.skill-img-wrap-2 .skill-img {
  border-radius: 50%;
}
.skill-img-wrap-2 .skill-text {
  background-color: var(--bd-color-common-white);
  height: 275px;
  width: 275px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: absolute;
  top: 50px;
  left: -20%;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 1199px) {
  .skill-img-wrap-2 .skill-text {
    left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .skill-img-wrap-2 .skill-text {
    display: none;
  }
}
.skill-img-wrap-2 .skill-text .number {
  background: url(../img/images/text-img-1.png);
  background-size: contain;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  font-size: 100px;
  line-height: 1;
  display: flex;
  justify-content: center;
}
.skill-img-wrap-2 .skill-text .number span {
  font-size: 40px;
  display: block;
  margin-top: 15px;
}
.skill-img-wrap-2 .skill-text p {
  font-family: var(--bd-ff-heading);
  color: var(--bd-color-heading-primary);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}

/* !END: Skill CSS */
/**----------------------------------------
    START: Testi CSS
----------------------------------------*/
.testimonial-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.testi-thumb-wrap {
  overflow-y: clip;
}
.testi-thumb-wrap .thumb-carousel {
  height: 630px;
  max-width: 530px;
  width: 100%;
  margin-right: auto;
  margin-left: 0;
}
.testi-thumb-wrap .thumb-carousel.swiper {
  overflow: visible;
}
.testi-thumb-wrap .thumb-carousel .testi-author-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 160px 1fr;
  max-width: 485px;
  width: 100%;
  padding: 20px 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 10px;
}
@media only screen and (max-width: 767px) {
  .testi-thumb-wrap .thumb-carousel .testi-author-wrap {
    grid-template-columns: 80px 1fr;
  }
}
.testi-thumb-wrap .thumb-carousel .testi-author-wrap .testi-thumb {
  height: 160px;
  width: 160px;
  border-radius: 50%;
}
@media only screen and (max-width: 767px) {
  .testi-thumb-wrap .thumb-carousel .testi-author-wrap .testi-thumb {
    height: 80px;
    width: 80px;
  }
}
.testi-thumb-wrap .thumb-carousel .testi-author-wrap .author-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 30px 40px 30px 110px;
  display: inline-block;
  border-radius: 10px;
  margin-left: -80px;
}
@media only screen and (max-width: 767px) {
  .testi-thumb-wrap .thumb-carousel .testi-author-wrap .author-content {
    padding-right: 20px;
  }
}
.testi-thumb-wrap .thumb-carousel .testi-author-wrap .author-content .title {
  color: var(--bd-color-common-white);
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .testi-thumb-wrap .thumb-carousel .testi-author-wrap .author-content .title {
    font-size: 16px;
  }
}
.testi-thumb-wrap .thumb-carousel .testi-author-wrap .author-content span {
  color: var(--bd-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .testi-thumb-wrap .thumb-carousel .testi-author-wrap .author-content span {
    font-size: 13px;
  }
}
.testi-thumb-wrap .swiper-slide.swiper-slide-thumb-active .testi-author-wrap {
  padding-left: 40px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .testi-thumb-wrap .swiper-slide.swiper-slide-thumb-active .testi-author-wrap {
    padding-left: 20px;
  }
}
.testi-thumb-wrap .swiper-slide.swiper-slide-thumb-active .testi-author-wrap:before {
  background: linear-gradient(90deg, rgba(231, 120, 41, 0.5) 0%, rgba(63, 90, 243, 0.0088410364) 80%);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 10px;
  z-index: -1;
}
.testi-thumb-wrap .swiper-slide.swiper-slide-thumb-active .testi-author-wrap:after {
  background-color: var(--bd-color-theme-primary);
  content: "";
  height: 15px;
  width: 15px;
  position: absolute;
  top: 50%;
  right: -38%;
  transform: translateY(-50%);
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1199px) {
  .testi-thumb-wrap .swiper-slide.swiper-slide-thumb-active .testi-author-wrap:after {
    display: none;
  }
}

.testi-right {
  padding-left: 120px;
}
@media (max-width: 1199px) {
  .testi-right {
    padding-left: 50px;
  }
}
@media only screen and (max-width: 767px) {
  .testi-right {
    padding-left: 0px;
  }
}

.testi-content .quote {
  position: relative;
  margin-bottom: 50px;
}
.testi-content .quote:before {
  background-color: var(--bd-color-text-body);
  content: "";
  height: 2px;
  width: 70px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.testi-content .quote img {
  padding-left: 120px;
}
.testi-content p {
  margin-bottom: 50px;
}
.testi-content .review-wrap {
  display: flex;
  align-items: center;
}
.testi-content .review-wrap .review li {
  display: inline-flex;
  font-size: 16px;
  color: var(--bd-color-theme-primary);
}
.testi-content .review-wrap span {
  padding-left: 10px;
}

.testi-border {
  position: relative;
  z-index: 1;
}
.testi-border:before {
  background-color: #5b5b5b;
  content: "";
  height: 100%;
  width: 2px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1199px) {
  .testi-border:before {
    display: none;
  }
}

.testimonial-section-2 {
  position: relative;
  z-index: 1;
}
.testimonial-section-2 .bg-shape {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.testi-item {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  border: 1px solid var(--bd-color-border-1);
  padding: 50px 80px;
  border-radius: 200px;
}
@media (max-width: 1199px) {
  .testi-item {
    max-width: 650px;
    padding: 30px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .testi-item {
    max-width: 650px;
    padding: 30px 20px;
    border-radius: 0;
  }
}
.testi-item .review {
  margin-bottom: 30px;
}
.testi-item .review li {
  display: inline-flex;
  color: #fbaf02;
}
.testi-item p {
  margin-bottom: 50px;
  font-style: italic;
  font-weight: 400;
}
.testi-item .author-box {
  display: inline-flex;
  align-items: center;
  column-gap: 15px;
}
.testi-item .author-box img {
  height: 85px;
  width: 85px;
  border-radius: 50%;
}
.testi-item .author-box .name {
  font-size: 24px;
  font-weight: 500;
  text-align: left;
  margin-bottom: 0;
}
.testi-item .author-box .name span {
  font-family: var(--bd-ff-body);
  font-style: normal;
  display: block;
  font-size: 14px;
  color: var(--bd-color-theme-primary);
  margin-top: 8px;
}

@media only screen and (max-width: 992px) {
  .testimonial-carousel .swiper-arrow {
    display: none;
  }
}
.testimonial-carousel .swiper-arrow .swiper-nav {
  color: var(--bd-color-heading-primary);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
}
.testimonial-carousel .swiper-arrow .swiper-nav i {
  color: var(--bd-color-text-body);
  margin-left: 20px;
  margin-right: 10px;
}
.testimonial-carousel .swiper-arrow .swiper-nav.swiper-prev {
  left: auto;
  right: 0;
}
.testimonial-carousel .swiper-arrow .swiper-nav.swiper-prev i {
  margin-left: 10px;
  margin-right: 20px;
}

.testimonial-section-3 {
  position: relative;
  z-index: 1;
  padding-bottom: 400px;
  overflow: hidden;
}
@media only screen and (max-width: 992px) {
  .testimonial-section-3 {
    padding-bottom: 180px;
  }
}
.testimonial-section-3 .section-heading {
  margin-left: 135px;
}
@media (max-width: 1600px) {
  .testimonial-section-3 .section-heading {
    margin-left: 245px;
  }
}
@media only screen and (max-width: 992px) {
  .testimonial-section-3 .section-heading {
    margin-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .testimonial-section-3 .section-heading .section-title {
    font-size: 26px;
  }
}
.testimonial-section-3 .section-images .client-img {
  position: absolute;
  z-index: -1;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .testimonial-section-3 .section-images .client-img {
    display: none;
  }
}
.testimonial-section-3 .section-images .client-img img {
  width: 100%;
  height: 100%;
  object-fit: inherit;
}
.testimonial-section-3 .section-images .client-img.img-1 {
  max-width: 300px;
  height: 420px;
  top: 0;
  left: 0;
  border-radius: 150px;
}
@media (max-width: 1700px) {
  .testimonial-section-3 .section-images .client-img.img-1 {
    left: -50px;
  }
}
@media (max-width: 1399px) {
  .testimonial-section-3 .section-images .client-img.img-1 {
    left: -100px;
  }
}
.testimonial-section-3 .section-images .client-img.img-2 {
  max-width: 500px;
  height: 400px;
  top: 0;
  right: 0;
  border-radius: 200px 0 0 200px;
}
@media (max-width: 1600px) {
  .testimonial-section-3 .section-images .client-img.img-2 {
    right: -110px;
  }
}
@media (max-width: 1399px) {
  .testimonial-section-3 .section-images .client-img.img-2 {
    right: -200px;
  }
}
@media (max-width: 1199px) {
  .testimonial-section-3 .section-images .client-img.img-2 {
    display: none;
  }
}
.testimonial-section-3 .section-images .client-img.img-3 {
  max-width: 530px;
  height: 275px;
  bottom: 80px;
  left: 100px;
  border-radius: 200px;
}
@media (max-width: 1600px) {
  .testimonial-section-3 .section-images .client-img.img-3 {
    left: 50px;
  }
}
.testimonial-section-3 .section-images .client-img.img-4 {
  max-width: 300px;
  height: 400px;
  bottom: 80px;
  right: 14%;
  border-radius: 150px;
}
@media (max-width: 1600px) {
  .testimonial-section-3 .section-images .client-img.img-4 {
    right: 5%;
  }
}
@media (max-width: 1399px) {
  .testimonial-section-3 .section-images .client-img.img-4 {
    right: 1%;
  }
}
@media (max-width: 1199px) {
  .testimonial-section-3 .section-images .client-img.img-4 {
    display: none;
  }
}

.testi-carousel-wrap-3 {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  max-width: 752px;
  width: 100%;
  padding: 65px 90px 65px 175px;
  border-radius: 170px;
  position: relative;
  z-index: 1;
  margin-top: 80px;
  margin-left: 235px;
}
@media (max-width: 1399px) {
  .testi-carousel-wrap-3 {
    margin-left: 200px;
  }
}
@media (max-width: 1199px) {
  .testi-carousel-wrap-3 {
    margin-left: 220px;
  }
}
@media only screen and (max-width: 992px) {
  .testi-carousel-wrap-3 {
    margin-left: 50px;
    max-width: 650px;
  }
}
@media only screen and (max-width: 767px) {
  .testi-carousel-wrap-3 {
    margin-left: 0;
    padding: 40px 20px;
    border-radius: 0;
    margin-top: 150px;
  }
}
.testi-carousel-wrap-3:before {
  background-color: rgba(18, 18, 18, 0.95);
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 170px;
}
@media only screen and (max-width: 767px) {
  .testi-carousel-wrap-3:before {
    border-radius: 0;
  }
}
.testi-carousel-wrap-3 .round-shape {
  background-color: rgba(255, 255, 255, 0.071);
  width: 220px;
  height: 220px;
  position: absolute;
  bottom: 0;
  left: 0;
  border-radius: 50%;
}
.testi-carousel-wrap-3 .quote-shape {
  position: absolute;
  bottom: 67px;
  left: 45px;
}
.testi-carousel-wrap-3 .author-img {
  position: absolute;
  top: -70px;
  right: 120px;
}
@media only screen and (max-width: 767px) {
  .testi-carousel-wrap-3 .author-img {
    top: -120px;
    right: 0;
  }
}
.testi-carousel-wrap-3 .circle-shape {
  position: absolute;
  top: -125px;
  right: 3%;
}
.testi-carousel-wrap-3 .rating-img {
  position: absolute;
  top: 50%;
  left: -35px;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .testi-carousel-wrap-3 .rating-img {
    display: none;
  }
}

.testi-card {
  max-width: 752px;
  width: 100%;
}
.testi-card .author-box {
  padding-left: 20px;
  margin-bottom: 30px;
}
.testi-card .author-box span {
  color: #9e98a9;
  font-size: 14px;
  font-weight: 500;
  display: block;
  margin-bottom: 10px;
}
.testi-card .author-box .name {
  color: var(--bd-color-common-white);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
}
.testi-card p {
  color: #9e98a9;
  font-size: 16px;
  margin-bottom: 0;
}

.testi-carousel-3 {
  overflow: visible;
  overflow-x: clip;
}
.testi-carousel-3 .swiper-pagination {
  bottom: -200px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 992px) {
  .testi-carousel-3 .swiper-pagination {
    bottom: -150px;
  }
}
.testi-carousel-3 .swiper-pagination:before {
  background-color: var(--bd-color-theme-primary);
  content: "";
  width: 40%;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.7;
  z-index: -1;
}
.testi-carousel-3 .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--bd-color-common-white);
  height: 25px;
  width: 25px;
  border-radius: 50%;
  border: 2px solid var(--bd-color-theme-primary);
  opacity: 1;
}
.testi-carousel-3 .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--bd-color-heading-primary);
  border: 4px solid var(--bd-color-heading-primary);
}

/* !END: Testi CSS */
/**----------------------------------------
    START: Pricing CSS
----------------------------------------*/
.pricing-top .nav-tabs {
  border: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
}
.pricing-top .nav-tabs .nav-item:not(:last-of-type) {
  margin-right: 15px;
}
.pricing-top .nav-tabs .nav-item .nav-link {
  font-family: var(--bd-ff-heading);
  color: var(--bd-color-heading-primary);
  font-size: 24px;
  font-weight: 500;
  padding: 10px 30px;
  border-radius: 100px;
  border: 1px solid var(--bd-color-border-2);
}
@media only screen and (max-width: 767px) {
  .pricing-top .nav-tabs .nav-item .nav-link {
    font-size: 18px;
  }
}
.pricing-top .nav-tabs .nav-item .nav-link.active {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  border: 1px solid var(--bd-color-theme-primary);
}

.pricing-img {
  max-width: 425px;
  width: 100%;
}

.pricing-item .pricing-inner {
  padding: 40px 40px 100px 40px;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 0 200px 200px 0;
  position: relative;
  display: flex;
  column-gap: 120px;
  margin-bottom: 80px;
}
@media (max-width: 1199px) {
  .pricing-item .pricing-inner {
    column-gap: 60px;
  }
}
@media only screen and (max-width: 992px) {
  .pricing-item .pricing-inner {
    padding: 30px 20px 70px 20px;
    column-gap: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .pricing-item .pricing-inner {
    border-radius: 0;
    padding-bottom: 40px;
    flex-direction: column;
    row-gap: 15px;
    margin-bottom: 40px;
  }
}
.pricing-item .pricing-inner .pricing-right {
  display: flex;
  align-items: center;
  column-gap: 50px;
}
@media (max-width: 1199px) {
  .pricing-item .pricing-inner .pricing-right {
    column-gap: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .pricing-item .pricing-inner .pricing-right {
    align-items: start;
    flex-direction: column;
    row-gap: 15px;
  }
}
.pricing-item .pricing-inner .pricing-right .pricing-list {
  list-style: none;
}
@media (max-width: 1199px) {
  .pricing-item .pricing-inner .pricing-right .pricing-list li {
    font-size: 14px;
  }
}
.pricing-item .pricing-inner .pricing-right .pricing-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.pricing-item .pricing-inner .pricing-right .pricing-list li span {
  color: var(--bd-color-theme-primary);
  margin-right: 10px;
}
.pricing-item .pricing-inner .price-box {
  padding: 10px 40px;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 0 100px 100px 0;
  position: absolute;
  bottom: 80px;
  left: 0;
}
@media only screen and (max-width: 992px) {
  .pricing-item .pricing-inner .price-box {
    bottom: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .pricing-item .pricing-inner .price-box {
    bottom: 0;
    padding: 10px 20px;
    position: inherit;
    margin-top: 20px;
  }
}
.pricing-item .pricing-inner .price-box .price {
  color: var(--bd-color-theme-primary);
  font-size: 55px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.pricing-item .pricing-inner .price-box .price span {
  color: var(--bd-color-heading-primary);
  font-size: 14px;
}
.pricing-item .pricing-inner .price-box span {
  color: var(--bd-color-heading-primary);
  font-size: 16px;
  font-weight: 600;
}
.pricing-item .pricing-inner .pricing-text {
  position: absolute;
  bottom: -80px;
  right: 0;
}
@media only screen and (max-width: 767px) {
  .pricing-item .pricing-inner .pricing-text {
    display: none;
  }
}
.pricing-item .pricing-inner .pricing-text h2 {
  color: rgba(18, 18, 18, 0.059);
  font-size: 200px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
}
.pricing-item .pricing-btn .bd-primary-btn-2 {
  justify-content: center;
}
.pricing-item .pricing-btn .bd-primary-btn-2 .text {
  color: var(--bd-color-text-body);
}
.pricing-item .pricing-btn .bd-primary-btn-2:hover .text {
  color: var(--bd-color-theme-primary);
}

/* !END: Pricing CSS */
/**----------------------------------------
START: Blog CSS
----------------------------------------*/
.blog-container {
  max-width: 1725px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.blog-top {
  margin-left: 190px;
}
@media (max-width: 1199px) {
  .blog-top {
    margin-left: 0;
  }
}
.blog-top p {
  max-width: 460px;
  width: 100%;
}

.post-card-wrap:not(:last-of-type) {
  margin-bottom: 30px;
}

.post-card-wrap {
  position: relative;
  height: 350px;
}
@media (max-width: 1399px) {
  .post-card-wrap {
    height: auto;
  }
}

.post-content-wrap {
  position: relative;
}
.post-content-wrap .date {
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%) rotate(-90deg);
}
@media only screen and (max-width: 992px) {
  .post-content-wrap .date {
    right: -20px;
  }
}
.post-content-wrap .date span {
  color: var(--bd-color-theme-primary);
  font-size: 18px;
  font-weight: 500;
}

.post-card {
  border: 1px solid var(--bd-color-border-1);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
}
.post-card .post-thumb {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 340px;
  height: 330px;
  border-radius: 0 30px 30px 30px;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .post-card .post-thumb {
    position: relative;
  }
}
.post-card .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-in-out;
  transform: scale(1);
}
.post-card .post-content {
  padding: 100px 0;
  padding-left: 380px;
  padding-right: 90px;
}
@media (max-width: 1399px) {
  .post-card .post-content {
    padding-left: 30px;
    padding-right: 60px;
    padding-top: 30px;
    padding: 30px 60px 30px 30px;
  }
}
.post-card .post-content span {
  font-family: var(--bd-ff-body);
  color: #e77829;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 20px;
  display: block;
}
.post-card .post-content .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 20px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .post-card .post-content .title {
    font-size: 18px;
  }
}
.post-card .post-content .title a {
  background: linear-gradient(var(--bd-color-theme-primary) 0%, var(--bd-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card .post-content .title a:hover {
  color: var(--bd-color-theme-primary);
  background-size: 100% 2px;
}
.post-card .post-content p {
  margin-bottom: 0;
}
.post-card:hover .post-thumb img {
  transform: scale(1.02);
}

.post-meta {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 20px;
}
.post-meta li {
  font-family: var(--bd-ff-body);
  color: var(--bd-color-text-body);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.post-meta li i {
  color: var(--bd-color-theme-primary);
  font-size: 14px;
}
.post-meta li:not(:last-of-type) {
  margin-right: 20px;
}
.post-meta li a:hover {
  color: var(--bd-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .post-meta li {
    font-size: 12px;
  }
}

.post-content-wrap .post-meta {
  display: flex;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
  row-gap: 10px;
  margin-bottom: 20px;
}
.post-content-wrap .post-meta li {
  font-family: var(--bd-ff-body);
  color: #B0B2B7;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.post-content-wrap .post-meta li i {
  font-size: 14px;
}
.post-content-wrap .post-meta li:not(:last-of-type) {
  margin-right: 20px;
}
.post-content-wrap .post-meta li a:hover {
  color: var(--bd-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .post-content-wrap .post-meta li {
    font-size: 12px;
  }
}

.post-content .title {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .post-content .title {
    font-size: 18px;
  }
}
.post-content .title a {
  background: linear-gradient(var(--bd-color-theme-primary) 0%, var(--bd-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-content .title a:hover {
  color: var(--bd-color-common-white);
  background-size: 100% 2px;
}
.post-content .blog-btn {
  background-color: transparent;
  border: 1px solid var(--bd-color-border-1);
  padding: 14.5px 30px;
}
.post-content .blog-btn:before {
  background-color: var(--bd-color-theme-primary);
}

.post-card-2 {
  border: 1px solid var(--bd-color-border-1);
  border-radius: 30px 30px 30px 0;
  position: relative;
  z-index: 1;
}
.post-card-2 .post-thumb {
  position: relative;
  z-index: 1;
  height: 360px;
  border-radius: 30px;
}
.post-card-2 .post-thumb .date-box {
  background-color: var(--bd-color-common-white);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  width: 130px;
  border-radius: 50%;
  position: absolute;
  bottom: 30px;
  left: 20px;
}
.post-card-2 .post-thumb .date-box .date {
  font-size: 20px;
  font-weight: 500;
  color: var(--bd-color-theme-primary);
  margin-bottom: 0;
}
.post-card-2 .post-thumb .date-box .date span {
  font-family: var(--bd-ff-body);
  font-size: 18px;
  color: var(--bd-color-heading-primary);
}
.post-card-2 .post-content {
  padding: 50px 40px;
}
@media only screen and (max-width: 767px) {
  .post-card-2 .post-content {
    padding: 30px 20px;
  }
}
.post-card-2 .post-content span {
  color: var(--bd-color-theme-primary);
  font-family: var(--bd-ff-body);
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 15px;
}
.post-card-2 .post-content .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}
.post-card-2 .post-content .title a {
  background: linear-gradient(var(--bd-color-theme-primary) 0%, var(--bd-color-theme-primary) 98%);
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.post-card-2 .post-content .title a:hover {
  color: var(--bd-color-theme-primary);
  background-size: 100% 2px;
}
.post-card-2 .post-content p {
  margin-bottom: 0;
}
.post-card-2.card-1 .arrow {
  background-color: var(--bd-color-common-white);
  border-left: 1px solid var(--bd-color-border-1);
  position: absolute;
  bottom: -40px;
  left: -1px;
  width: 170px;
  height: 70px;
}
.post-card-2.card-1 .arrow:before {
  height: 175px;
  width: 1px;
  background-color: var(--bd-color-border-1);
  content: "";
  position: absolute;
  right: 84px;
  top: -37px;
  transform: rotate(77deg);
}
@media only screen and (max-width: 992px) {
  .post-card-2.card-1 .arrow {
    display: none;
  }
}
.post-card-2.card-2 {
  border-radius: 30px;
}
.post-card-2.card-3 {
  border-radius: 30px 30px 0 30px;
}
@media only screen and (max-width: 992px) {
  .post-card-2.card-3 {
    border-radius: 30px;
  }
}
.post-card-2.card-3 .arrow {
  background-color: var(--bd-color-common-white);
  border-right: 1px solid var(--bd-color-border-1);
  position: absolute;
  bottom: -40px;
  right: -1px;
  width: 170px;
  height: 70px;
}
.post-card-2.card-3 .arrow:before {
  height: 175px;
  width: 1px;
  background-color: var(--bd-color-border-1);
  content: "";
  position: absolute;
  left: 84px;
  top: -37px;
  transform: rotate(-77deg);
}
@media only screen and (max-width: 992px) {
  .post-card-2.card-3 .arrow {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .post-card-2 {
    border-radius: 30px;
  }
}

.post-card-3 .post-thumb {
  height: 520px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .post-card-3 .post-thumb {
    height: 320px;
  }
}
.post-card-3 .post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.post-card-3 .post-content {
  padding: 30px 25px 30px 25px;
  border-bottom: 2px solid var(--bd-color-heading-primary);
  margin-bottom: 25px;
}
.post-card-3 .post-content span {
  color: var(--bd-color-theme-primary);
  font-size: 16px;
  display: block;
  margin-bottom: 15px;
}
.post-card-3 .post-content .title {
  margin-bottom: 0;
}
@media (max-width: 1199px) {
  .post-card-3 .post-content .title a {
    font-size: 22px;
  }
  .post-card-3 .post-content .title a br {
    display: none;
  }
}
.post-card-3 .post-content .title a:hover {
  color: var(--bd-color-theme-primary);
}
.post-card-3 .post-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  column-gap: 10px;
  flex-wrap: wrap;
  row-gap: 15px;
}
.post-card-3 .post-bottom .date {
  background-color: rgba(231, 120, 41, 0.15);
  color: var(--bd-color-theme-primary);
  line-height: 1;
  padding: 14px 30px;
  border-radius: 100px;
  font-size: 18px;
  font-weight: 500;
}
.post-card-3 .post-bottom .blog-btn {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.post-card-3 .post-bottom .blog-btn span {
  font-family: var(--bd-ff-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-heading-primary);
  text-decoration: underline;
}
.post-card-3 .post-bottom .blog-btn:hover {
  color: var(--bd-color-theme-primary);
}
.post-card-3 .post-bottom .blog-btn i {
  color: var(--bd-color-theme-primary);
  font-size: 20px;
  transform: rotate(-45deg);
  text-decoration: inherit;
  margin-bottom: -4px;
}
.post-card-3:hover .post-thumb {
  border-radius: 230px;
}

.inner-blog {
  border: none;
  margin-bottom: 60px;
}
.inner-blog .post-thumb {
  height: 400px;
}
.inner-blog .post-content {
  padding: 0;
  padding-top: 30px;
}
.inner-blog .post-content .title {
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .inner-blog .post-content .title {
    font-size: 24px;
  }
}
.inner-blog .post-content p {
  margin-bottom: 10px;
}
.inner-blog .post-content .inner-blog-btn {
  font-family: var(--bd-ff-body);
  color: var(--bd-color-theme-primary);
  font-size: 16px;
  font-weight: 500;
  text-decoration: underline;
  margin-top: 30px;
  display: block;
}

.pagination-wrap {
  display: flex;
  align-items: center;
  list-style: none;
  column-gap: 10px;
}
@media only screen and (max-width: 992px) {
  .pagination-wrap {
    margin-bottom: 50px;
  }
}
.pagination-wrap li a {
  font-family: var(--bd-ff-heading);
  background-color: transparent;
  color: var(--bd-color-heading-primary);
  font-weight: 500;
  height: 60px;
  width: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 10px;
}
.pagination-wrap li a:hover {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  border: 1px solid var(--bd-color-theme-primary);
}
.pagination-wrap li .active {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  border: 1px solid var(--bd-color-theme-primary);
}

/* !END: Theme Blog CSS */
/**----------------------------------------
    START: Request CSS
----------------------------------------*/
.request-img {
  position: relative;
  z-index: 1;
}
.request-img .shape {
  position: absolute;
  top: 50px;
  left: 70px;
  z-index: -1;
}

.request-content {
  padding-left: 14px;
}

.request-wrap {
  position: relative;
  padding-bottom: 120px;
}

.request-form-wrap {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: auto;
  max-width: 760px;
  width: 100%;
  padding: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  border-radius: 30px;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .request-form-wrap {
    padding: 40px 20px;
  }
}
.request-form-wrap .form-item .select-control,
.request-form-wrap .form-item .form-control {
  font-family: var(--bd-ff-body);
  font-size: 16px;
  font-weight: 400;
  color: var(--bd-color-common-white);
  background-color: rgba(245, 245, 245, 0.2);
  border-radius: 15px;
  border: none;
  box-shadow: none;
  margin-bottom: 20px;
  padding: 20px;
}
.request-form-wrap .form-item .select-control::-webkit-input-placeholder,
.request-form-wrap .form-item .form-control::-webkit-input-placeholder {
  color: var(--bd-color-common-white);
}
.request-form-wrap .form-item .select-control:-moz-placeholder,
.request-form-wrap .form-item .form-control:-moz-placeholder {
  color: var(--bd-color-common-white);
}
.request-form-wrap .form-item .select-control::-moz-placeholder,
.request-form-wrap .form-item .form-control::-moz-placeholder {
  color: var(--bd-color-common-white);
}
.request-form-wrap .form-item .select-control:-ms-input-placeholder,
.request-form-wrap .form-item .form-control:-ms-input-placeholder {
  color: var(--bd-color-common-white);
}
.request-form-wrap .form-item .select-control {
  width: 100%;
  height: inherit;
  line-height: inherit;
}
.request-form-wrap .form-item .select-control:after {
  border-color: var(--bd-color-common-white);
  height: 7px;
  width: 7px;
  right: 15px;
}
.request-form-wrap .form-item .select-control .list li {
  color: var(--bd-color-heading-primary);
}
.request-form-wrap .submit-btn .bd-primary-btn {
  border-radius: 15px;
}

/* !END: Request CSS */
/**----------------------------------------
    START: Insta CSS
----------------------------------------*/
.insta-top p {
  max-width: 550px;
  width: 100%;
}

.insta-wrap {
  background-color: #faf5f1;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(5, 1fr);
}
@media only screen and (max-width: 992px) {
  .insta-wrap {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .insta-wrap {
    grid-template-columns: 1fr;
  }
}

.insta-item {
  position: relative;
  z-index: 1;
  display: inline-block;
  height: 430px;
}
@media (max-width: 1600px) {
  .insta-item {
    height: 330px;
  }
}
@media (max-width: 1199px) {
  .insta-item {
    height: 250px;
  }
}
@media only screen and (max-width: 767px) {
  .insta-item {
    height: 330px;
  }
}
.insta-item img {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.insta-item:hover img {
  border-radius: 50%;
}
.insta-item .icon {
  color: var(--bd-color-common-white);
  font-size: 70px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.insta-item:hover .icon {
  visibility: visible;
  opacity: 1;
}

/* !END: Insta CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.page-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.page-header .shape {
  position: absolute;
  z-index: -1;
  height: 100%;
  width: 47%;
}
@media only screen and (max-width: 767px) {
  .page-header .shape {
    width: 100%;
    opacity: 0.6;
  }
}
.page-header .shape.shape-1 {
  top: 0;
  left: 0;
}
.page-header .shape.shape-1 img {
  height: 100%;
  width: 100%;
}
.page-header .page-header-content {
  padding: 160px 0;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 992px) {
  .page-header .page-header-content {
    padding: 100px 0 100px 0;
  }
}
.page-header .page-header-content .title {
  color: var(--bd-color-common-white);
  font-size: 90px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
  display: block;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .title {
    line-height: 1.3em;
  }
}
@media only screen and (max-width: 992px) {
  .page-header .page-header-content .title {
    font-size: 60px;
  }
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .title {
    font-size: 40px;
  }
}
.page-header .page-header-content .sub-title {
  font-family: var(--bd-ff-heading);
  font-size: 24px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--bd-color-common-white);
  border: 1px solid rgba(255, 255, 255, 0.6);
  display: inline-block;
  padding: 15px 50px;
  border-radius: 100px;
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .sub-title {
    font-size: 13px;
  }
}
.page-header .page-header-content .sub-title .home {
  color: var(--bd-color-common-white);
  position: relative;
  padding-right: 25px;
  margin-right: 20px;
}
.page-header .page-header-content .sub-title .home:before {
  background-image: none;
  font-family: "Font Awesome 6 Pro";
  font-size: 13px;
  font-weight: 700;
  content: "\f068";
  color: var(--bd-color-common-white);
  position: absolute;
  top: 60%;
  right: 0;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .page-header .page-header-content .sub-title a {
    line-height: 2;
  }
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.process-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.process-section .shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.process-top .bd-primary-btn-2 .text {
  color: var(--bd-color-common-white);
}
.process-top .bd-primary-btn-2 .arrow {
  color: var(--bd-color-common-white);
}

.process-wrap {
  margin-bottom: 150px;
}

.process-item {
  position: relative;
  z-index: 1;
}
.process-item .arrow-right {
  position: absolute;
  top: 50%;
  right: -15%;
  transform: translateY(-50%);
  z-index: -1;
}
@media (max-width: 1199px) {
  .process-item .arrow-right {
    display: none;
  }
}
.process-item .process-inner {
  height: 240px;
  width: 240px;
  margin: 0 auto;
  border-radius: 50%;
  border: 5px solid #888989;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
}
.process-item .process-inner:before {
  background-image: url(../img/shapes/process-border.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
  width: 270px;
  height: 270px;
  position: absolute;
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}
.process-item .process-inner .arrow-bottom {
  position: absolute;
  bottom: -57%;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.process-item .process-inner .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.process-item .process-inner span {
  font-family: var(--bd-ff-heading);
  color: rgba(255, 255, 255, 0.08);
  display: inline-block;
  font-size: 150px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 767px) {
  .process-item.item-1 {
    margin-bottom: 150px;
  }
}
.process-item.item-1 .process-inner {
  margin-left: 0;
}
@media (max-width: 1199px) {
  .process-item.item-1 .process-inner {
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  .process-item.item-2 {
    margin-bottom: 150px;
  }
}
.process-item.item-2 .arrow-right {
  right: -37%;
}
.process-item.item-3 .process-inner {
  margin-right: 0;
}
@media (max-width: 1199px) {
  .process-item.item-3 .process-inner {
    margin: 0 auto;
  }
}

.process-bottom {
  align-items: start;
}
@media only screen and (max-width: 992px) {
  .process-bottom {
    justify-content: center;
  }
}
.process-bottom p {
  max-width: 670px;
  width: 100%;
  margin-bottom: 0;
}
.process-bottom .process-img {
  max-width: 500px;
  width: 100%;
  height: 240px;
}
.process-bottom .process-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Newsletter CSS
----------------------------------------*/
.newsletter-wrap {
  padding: 65px 90px;
  border: 1px solid var(--bd-color-border-1);
  position: relative;
}
@media (max-width: 1199px) {
  .newsletter-wrap {
    padding: 65px 60px;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter-wrap {
    padding: 65px 20px;
  }
}
.newsletter-wrap .arrow {
  background-color: var(--bd-color-common-white);
  border-top: 1px solid var(--bd-color-border-1);
  position: absolute;
  top: -32px;
  left: -1px;
  width: 170px;
  height: 70px;
}
.newsletter-wrap .arrow:before {
  height: 175px;
  width: 1px;
  background-color: var(--bd-color-border-1);
  content: "";
  position: absolute;
  left: 84px;
  top: -37px;
  transform: rotate(77deg);
}
@media only screen and (max-width: 767px) {
  .newsletter-wrap .arrow:before {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .newsletter-wrap .arrow {
    border-top: none;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter-wrap .arrow {
    display: none;
  }
}
.newsletter-wrap .arrow-2 {
  background-color: var(--bd-color-common-white);
  border-top: 1px solid var(--bd-color-border-1);
  position: absolute;
  top: -32px;
  right: -1px;
  width: 170px;
  height: 70px;
}
@media only screen and (max-width: 767px) {
  .newsletter-wrap .arrow-2 {
    display: none;
  }
}
.newsletter-wrap .arrow-2:before {
  height: 175px;
  width: 1px;
  background-color: var(--bd-color-border-1);
  content: "";
  position: absolute;
  left: 84px;
  top: -37px;
  transform: rotate(-77deg);
}
@media only screen and (max-width: 767px) {
  .newsletter-wrap .arrow-2:before {
    display: none;
  }
}
@media only screen and (max-width: 992px) {
  .newsletter-wrap .arrow-2 {
    border-top: none;
  }
}
@media only screen and (max-width: 767px) {
  .newsletter-wrap .arrow-2 {
    border-top: 1px solid var(--bd-color-border-1);
  }
}
@media only screen and (max-width: 767px) {
  .newsletter-wrap .section-heading .section-title {
    font-size: 25px;
  }
}
.newsletter-wrap .newsletter-form {
  max-width: 500px;
  width: 100%;
  position: relative;
}
.newsletter-wrap .newsletter-form .form-control {
  padding: 17px 30px;
  box-shadow: none;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 100px;
}
.newsletter-wrap .newsletter-form .form-control::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-text-body);
}
.newsletter-wrap .newsletter-form .form-control:-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-text-body);
}
.newsletter-wrap .newsletter-form .form-control::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-text-body);
}
.newsletter-wrap .newsletter-form .form-control:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-text-body);
}
.newsletter-wrap .newsletter-form .form-btn {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  font-family: var(--bd-ff-body);
  font-size: 16px;
  font-weight: 500;
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  text-decoration: underline;
  padding: 12px 35px;
  border-radius: 100px;
}
@media only screen and (max-width: 767px) {
  .newsletter-wrap .newsletter-form .form-btn {
    position: inherit;
    transform: translateY(0);
    margin-top: 15px;
  }
}

/* !END: Newsletter CSS */
/**----------------------------------------
START: Contact CSS
----------------------------------------*/
.contact-item {
  padding: 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(18, 18, 18, 0.08);
  border-radius: 15px;
  position: relative;
  z-index: 1;
}
.contact-item .title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 30px;
}
.contact-item .title span {
  font-family: var(--bd-ff-body);
  color: var(--bd-color-text-body);
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-top: 5px;
}
.contact-item ul {
  list-style: none;
}
.contact-item ul li {
  font-family: var(--bd-ff-body);
  color: var(--bd-color-text-body);
  font-size: 16px;
  font-weight: 400;
  display: block;
  margin-top: 5px;
  line-height: 1;
}
.contact-item ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.contact-item .icon {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  font-size: 20px;
  padding: 25px 30px;
  position: absolute;
  top: -20px;
  right: 40px;
  border-radius: 0 0 50px 50px;
}
.contact-item .icon:before {
  background-color: rgb(207, 112, 45);
  content: "";
  height: 20px;
  width: 15px;
  position: absolute;
  top: 0;
  left: -15px;
  z-index: -1;
  clip-path: polygon(100% 0, 100% 0, 100% 100%, 0% 100%);
}
.contact-item.item-2 {
  background-color: #faf5f1;
}
.contact-item.item-2 .icon {
  background-color: var(--bd-color-heading-primary);
}
.contact-item.item-2 .icon:before {
  background-color: rgb(79, 74, 74);
}
@media only screen and (max-width: 992px) {
  .contact-item {
    margin-bottom: 40px;
  }
  .contact-item.item-3 {
    margin-bottom: 0;
  }
}

.map-wrapper {
  margin-bottom: -10px;
}

/* !END: Theme Contact CSS */
/**----------------------------------------
START: Slider CSS
----------------------------------------*/
.slider-section {
  overflow: hidden;
}

.inserct-slider {
  background-color: var(--bd-color-heading-primary);
  position: relative;
  z-index: 2;
}
.inserct-slider .inserct-slider-controls {
  display: flex;
  align-items: center;
  column-gap: 50px;
  position: absolute;
  bottom: 10%;
  left: 5%;
  z-index: 1;
}
@media (max-width: 1399px) {
  .inserct-slider .inserct-slider-controls {
    bottom: 5%;
  }
}
@media only screen and (max-width: 767px) {
  .inserct-slider .inserct-slider-controls {
    column-gap: 30px;
  }
}
.inserct-slider .inserct-slider-controls .inserct-swiper-pagination {
  color: var(--bd-color-common-white);
  width: 70px;
}
.inserct-slider .inserct-slider-controls .inserct-swiper-pagination span {
  font-family: var(--bd-ff-heading);
  color: var(--bd-color-common-white);
  font-size: 24px;
  font-weight: 500;
}
.inserct-slider .inserct-slider-controls .inserct-swiper-pagination .swiper-pagination-current {
  font-size: 55px;
  color: var(--bd-color-common-white);
}
.inserct-slider .inserct-slider-controls .swiper-arrow {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.inserct-slider .inserct-slider-controls .swiper-arrow .swiper-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 65px;
  width: 65px;
  border-radius: 7px;
  border: 1px solid #404144;
}

.slider-item {
  min-height: 800px;
  position: relative;
  overflow: hidden;
  z-index: 2;
}
@media (max-width: 1199px) {
  .slider-item {
    height: auto;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item {
    height: auto;
  }
}
@media only screen and (max-width: 992px) {
  .slider-item .shapes {
    display: none;
  }
}
.slider-item .shapes .shape {
  position: absolute;
}
.slider-item .shapes .shape.shape-1 {
  background-image: -moz-linear-gradient(90deg, rgb(231, 120, 41) 0%, rgba(125, 69, 30, 0.35) 39%, rgba(18, 18, 18, 0.09) 55%, rgb(18, 18, 18) 60%);
  background-image: -webkit-linear-gradient(90deg, rgb(231, 120, 41) 0%, rgba(125, 69, 30, 0.35) 39%, rgba(18, 18, 18, 0.09) 55%, rgb(18, 18, 18) 60%);
  background-image: -ms-linear-gradient(90deg, rgb(231, 120, 41) 0%, rgba(125, 69, 30, 0.35) 39%, rgba(18, 18, 18, 0.09) 55%, rgb(18, 18, 18) 60%);
  opacity: 0.8;
  position: absolute;
  top: -760px;
  left: 135px;
  height: 2000px;
  width: 300px;
  transform: rotate(40deg);
}
.slider-item .shapes .shape.shape-2 {
  background-image: -moz-linear-gradient(90deg, rgb(231, 120, 41) 0%, rgba(125, 69, 30, 0.35) 39%, rgba(18, 18, 18, 0.09) 55%, rgb(18, 18, 18) 60%);
  background-image: -webkit-linear-gradient(90deg, rgb(231, 120, 41) 0%, rgba(125, 69, 30, 0.35) 39%, rgba(18, 18, 18, 0.09) 55%, rgb(18, 18, 18) 60%);
  background-image: -ms-linear-gradient(90deg, rgb(231, 120, 41) 0%, rgba(125, 69, 30, 0.35) 39%, rgba(18, 18, 18, 0.09) 55%, rgb(18, 18, 18) 60%);
  opacity: 0.6;
  position: absolute;
  right: 0;
  top: -508px;
  height: 2000px;
  width: 300px;
  transform: rotate(30deg);
}
@media (max-width: 1399px) {
  .slider-item .shapes .shape.shape-2 {
    transform: rotate(35deg);
  }
}
.slider-item .slide-img-wrap {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  z-index: -1;
}
.slider-item .slide-img-wrap img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.slider-item .slider-content-wrap {
  padding: 240px 0 110px 0;
}
@media (max-width: 1399px) {
  .slider-item .slider-content-wrap {
    padding-bottom: 170px;
  }
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-content-wrap {
    padding-top: 150px;
  }
}
.slider-item .slider-content-wrap .slider-content {
  position: relative;
  text-align: right;
  margin-left: auto;
  width: 100%;
}
.slider-item .slider-content-wrap .slider-content .slider-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  width: 300px;
  border: 1px solid var(--bd-color-theme-primary);
  border-radius: 50%;
  position: absolute;
  top: 13%;
  left: 23%;
}
@media (max-width: 1199px) {
  .slider-item .slider-content-wrap .slider-content .slider-icon-box {
    left: 10%;
    top: 7%;
  }
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-content-wrap .slider-content .slider-icon-box {
    display: none;
  }
}
.slider-item .slider-content-wrap .slider-content .slider-thumb-wrap {
  margin-bottom: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: end;
  column-gap: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap .slider-content .slider-thumb-wrap {
    flex-wrap: wrap;
    row-gap: 15px;
    justify-content: start;
    margin-bottom: 40px;
  }
}
.slider-item .slider-content-wrap .slider-content .slider-thumb-wrap:before {
  background-color: rgb(255, 255, 255);
  content: "";
  height: 2px;
  width: 60px;
  position: absolute;
  top: 50%;
  left: -60px;
  opacity: 0.302;
  transform: translateY(-50%);
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap .slider-content .slider-thumb-wrap:before {
    display: none;
  }
}
.slider-item .slider-content-wrap .slider-content .slider-thumb-wrap .slider-thumb-inner {
  background-color: var(--bd-color-common-black);
  mask-image: url(../img/slider/thumb-mask-img.png);
  mask-repeat: no-repeat;
  mask-size: 100%;
  height: 90px;
  max-width: 250px;
  width: 100%;
}
.slider-item .slider-content-wrap .slider-content .slider-thumb-wrap p {
  font-size: 18px;
  font-weight: 400;
  color: var(--bd-color-common-white);
  margin-bottom: 0;
  text-align: left;
}
.slider-item .slider-content-wrap .slider-content-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.slider-item .slider-content-wrap .inserct-caption {
  font-family: var(--bd-ff-heading);
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
  padding-right: 140px;
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-content-wrap .inserct-caption {
    padding-right: 0;
  }
}
.slider-item .slider-content-wrap .inserct-caption .inserct-cap {
  color: var(--bd-color-common-white);
  font-size: 150px;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 1399px) {
  .slider-item .slider-content-wrap .inserct-caption .inserct-cap {
    font-size: 130px;
  }
}
@media (max-width: 1199px) {
  .slider-item .slider-content-wrap .inserct-caption .inserct-cap {
    font-size: 100px;
  }
}
@media only screen and (max-width: 992px) {
  .slider-item .slider-content-wrap .inserct-caption .inserct-cap {
    font-size: 90px;
  }
}
@media only screen and (max-width: 767px) {
  .slider-item .slider-content-wrap .inserct-caption .inserct-cap {
    font-size: 60px;
    text-align: left;
  }
}
.slider-item .slider-content-wrap .inserct-desc p {
  color: #bdbbbb;
  max-width: 550px;
  width: 100%;
  margin-left: auto;
  text-align: left;
}

.inserct-fraction {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.inserct-fraction .sep {
  background-color: #404144;
  width: 400px;
  height: 4px;
  position: relative;
  border-radius: 100px;
}
@media (max-width: 1399px) {
  .inserct-fraction .sep {
    width: 350px;
  }
}
@media only screen and (max-width: 767px) {
  .inserct-fraction .sep {
    display: none;
  }
}

.inserct-fraction .sep .swiper-slider-progress {
  background-color: var(--bd-color-theme-primary);
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  -webkit-transition: width 0.3s linear;
  -moz-transition: width 0.3s linear;
  -ms-transition: width 0.3s linear;
  -o-transition: width 0.3s linear;
  transition: width 0.3s linear;
}

@keyframes slider-progress {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes section-animation-2 {
  0% {
    width: 0;
  }
  15% {
    width: 100%;
  }
  85% {
    opacity: 1;
  }
  90% {
    width: 100%;
    opacity: 0;
  }
  to {
    width: 0;
    opacity: 0;
  }
}
.ripple,
.ripple:before,
.ripple:after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  transform: translateX(-50%) translateY(-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -ms-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -o-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  -moz-animation: rippleOne 3s infinite;
  -ms-animation: rippleOne 3s infinite;
  -o-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}

.ripple {
  z-index: -1;
}

.ripple:before {
  -webkit-animation-delay: 0.9s;
  -moz-animation-delay: 0.9s;
  -ms-animation-delay: 0.9s;
  -o-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

.ripple:after {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -ms-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@-webkit-keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    box-shadow: 0 0 0 20px rgba(244, 68, 56, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
/* Text Animation */
.inserct-animation,
.inserct-animation span {
  animation-duration: 0.3s;
  animation-fill-mode: both;
}

.inserct-animation span {
  display: inline-block;
}

/* Fade Effect */
.inserct-fadeIn {
  animation-name: asFadeIn;
}

@keyframes asFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.inserct-fadeInLeft {
  animation-name: asFadeInLeft;
}

@keyframes asFadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
  }
}
.inserct-fadeInRight {
  animation-name: asFadeInRight;
}

@keyframes asFadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
  }
}
.inserct-fadeInDown {
  animation-name: asFadeInTop;
}

@keyframes asFadeInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
  }
}
.inserct-fadeInUp {
  animation-name: asFadeInBottom;
}

@keyframes asFadeInBottom {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
  }
}
/* Image Effect */
.inserct-img-effect {
  animation-name: imgEffect;
}

@keyframes imgEffect {
  from {
    opacity: 0;
    transform: translatex(50%) scalex(2);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translatex(0) scalex(1);
    filter: blur(0);
  }
}
/* Move From Effect */
.inserct-moveFromLeft {
  animation-name: asMoveFromLeft;
}

@keyframes asMoveFromLeft {
  from {
    visibility: hidden;
    transform: translateX(-50px);
  }
  to {
    visibility: visible;
  }
}
.inserct-moveFromRight {
  animation-name: asMoveFromRight;
}

@keyframes asMoveFromRight {
  from {
    visibility: hidden;
    transform: translateX(50px);
  }
  to {
    visibility: visible;
  }
}
.inserct-moveFromTop {
  animation-name: asMoveFromTop;
}

@keyframes asMoveFromTop {
  from {
    visibility: hidden;
    transform: translateY(-50px);
  }
  to {
    visibility: visible;
  }
}
.inserct-moveFromBottom {
  animation-name: asMoveFromBottom;
}

@keyframes asMoveFromBottom {
  from {
    visibility: hidden;
    transform: translateY(50px);
  }
  to {
    visibility: visible;
  }
}
/* Blur Effect */
.inserct-blurIn {
  animation-name: asBlurIn;
}

@keyframes asBlurIn {
  from {
    filter: blur(20px);
    opacity: 0;
  }
}
.inserct-blurInLeft {
  animation-name: asBlurInLeft;
}

@keyframes asBlurInLeft {
  from {
    transform: translateX(50px);
    filter: blur(20px);
    opacity: 0;
  }
}
.inserct-blurInRight {
  animation-name: asBlurInRight;
}

@keyframes asBlurInRight {
  from {
    transform: translateX(-50px);
    filter: blur(20px);
    opacity: 0;
  }
}
.inserct-blurInTop {
  animation-name: asBlurInTop;
}

@keyframes asBlurInTop {
  from {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
  }
}
.inserct-blurInBottom {
  animation-name: asBlurInBottom;
}

@keyframes asBlurInBottom {
  from {
    transform: translateY(-50px);
    filter: blur(20px);
    opacity: 0;
  }
}
/* Zoom Effect */
.inserct-zoomIn {
  animation-name: asZoomIn;
}

@keyframes asZoomIn {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.inserct-zoomInLeft {
  animation-name: asZoomInLeft;
}

@keyframes asZoomInLeft {
  from {
    transform: scale(5) translateX(-50%);
    opacity: 0;
  }
}
.inserct-zoomInRight {
  animation-name: asZoomInRight;
}

@keyframes asZoomInRight {
  from {
    transform: scale(5) translateX(50%);
    opacity: 0;
  }
}
.inserct-zoomInTop {
  animation-name: asZoomInTop;
}

@keyframes asZoomInTop {
  from {
    transform: scale(10) translateY(-50%);
    opacity: 0;
  }
}
.inserct-zoomInBottom {
  animation-name: asZoomInBottom;
}

@keyframes asZoomInBottom {
  from {
    transform: scale(10) translateY(50%);
    opacity: 0;
  }
}
/* Flip Effect */
.inserct-flipInTop {
  animation-name: asFlipInTop;
}

@keyframes asFlipInTop {
  from {
    transform: perspective(600px);
    opacity: 0;
  }
  30% {
    transform: perspective(600px) rotateX(180deg);
    transform-origin: 0 0;
    animation-timing-function: ease-out;
  }
  to {
    transform: perspective(600px);
  }
}
.inserct-flipInBottom {
  animation-name: asFlipInBottom;
}

@keyframes asFlipInBottom {
  from {
    transform: perspective(600px);
    opacity: 0;
  }
  30% {
    transform: perspective(600px) rotateX(180deg);
    transform-origin: bottom;
    animation-timing-function: ease-out;
  }
  to {
    transform: perspective(600px);
  }
}
/* Roll Effect */
.inserct-rollFromLeft {
  animation-name: asRollFromLeft;
}

@keyframes asRollFromLeft {
  from {
    transform: translateX(-60px) perspective(600px) rotateY(180deg);
    opacity: 0;
  }
}
.inserct-rollFromRight {
  animation-name: asRollFromRight;
}

@keyframes asRollFromRight {
  from {
    transform: translateX(60px) perspective(600px) rotateY(-180deg);
    opacity: 0;
  }
}
.inserct-rollFromTop {
  animation-name: asRollFromTop;
}

@keyframes asRollFromTop {
  from {
    transform: translateY(-60px) perspective(600px) rotateX(180deg);
    opacity: 0;
  }
}
.inserct-rollFromBottom {
  animation-name: asRollFromBottom;
}

@keyframes asRollFromBottom {
  from {
    transform: translateY(60px) perspective(600px) rotateX(-180deg);
    opacity: 0;
  }
}
/* Rotate Skate Effect */
.inserct-rotateSkateInRight {
  animation-name: asRotateSkateInRight;
}

@keyframes asRotateSkateInRight {
  from {
    transform: scaleX(0.2) translateX(100px);
    opacity: 0;
  }
}
.inserct-rotateSkateInLeft {
  animation-name: asRotateSkateInLeft;
}

@keyframes asRotateSkateInLeft {
  from {
    transform: scaleX(0.2) translateX(-100px);
    opacity: 0;
  }
}
.inserct-rotateSkateInTop {
  animation-name: asRotateSkateInTop;
}

@keyframes asRotateSkateInTop {
  from {
    transform: scaleY(0.2) translateY(-100px);
    opacity: 0;
  }
}
.inserct-rotateSkateInBottom {
  animation-name: asRotateSkateInBottom;
}

@keyframes asRotateSkateInBottom {
  from {
    transform: scaleY(0.2) translateY(100px);
    opacity: 0;
  }
}
/* PopUp Effect */
.inserct-popUp {
  animation-name: asPopUp;
}

@keyframes asPopUp {
  0% {
    visibility: hidden;
  }
  50% {
    transform: scale(1.1);
    visibility: visible;
  }
}
.inserct-popUpLeft {
  animation-name: asPopUpLeft;
}

@keyframes asPopUpLeft {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
    transform: translateX(-20px) scale(1.1);
    animation-timing-function: ease-in;
  }
}
.inserct-popUpRight {
  animation-name: asPopUpRight;
}

@keyframes asPopUpRight {
  0% {
    visibility: hidden;
  }
  50% {
    visibility: visible;
    transform: translateX(20px) scale(1.1);
    animation-timing-function: ease-in;
  }
}
/* !END:  Slider CSS */
/**----------------------------------------
    START: Video CSS
----------------------------------------*/
.video-container {
  max-width: 1725px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}

.video-tab-left .video-img-wrap {
  position: relative;
}
@media only screen and (max-width: 767px) {
  .video-tab-left .video-img-wrap img {
    height: 350px;
    width: 100%;
    object-fit: cover;
  }
}
.video-tab-left .video-img-wrap .video-btn-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.video-tab-left .video-img-wrap .video-btn-wrap .video-btn {
  background-color: rgba(255, 255, 255, 0.3);
  font-size: 30px;
  color: var(--bd-color-common-white);
  height: 150px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.video-tab-right .nav-tabs {
  border: none;
  flex-direction: column;
}
@media (max-width: 1199px) {
  .video-tab-right .nav-tabs {
    flex-direction: inherit;
    justify-content: space-between;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 767px) {
  .video-tab-right .nav-tabs {
    row-gap: 15px;
  }
}
.video-tab-right .nav-tabs .nav-link {
  border: none;
  position: relative;
  padding: 0;
  border-right: 1px solid var(--bd-color-border-1);
  border-radius: 0;
  position: relative;
}
.video-tab-right .nav-tabs .nav-link:not(:last-of-type) {
  margin-bottom: 55px;
}
@media (max-width: 1199px) {
  .video-tab-right .nav-tabs .nav-link:not(:last-of-type) {
    margin-bottom: 0;
  }
}
.video-tab-right .nav-tabs .nav-link:before {
  background-color: var(--bd-color-border-1);
  content: "";
  width: 60%;
  height: 1px;
  position: absolute;
  top: 0;
  right: 0;
}
.video-tab-right .nav-tabs .nav-link:after {
  background-color: var(--bd-color-border-1);
  content: "";
  width: 60%;
  height: 1px;
  position: absolute;
  bottom: 0;
  right: 0;
}
.video-tab-right .nav-tabs .nav-link .title {
  color: rgba(18, 18, 18, 0.08);
  font-family: var(--bd-ff-heading);
  font-size: 150px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
@media only screen and (max-width: 992px) {
  .video-tab-right .nav-tabs .nav-link .title {
    font-size: 100px;
  }
}
@media only screen and (max-width: 767px) {
  .video-tab-right .nav-tabs .nav-link .title {
    font-size: 70px;
  }
}
.video-tab-right .nav-tabs .nav-link .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
}
.video-tab-right .nav-tabs .nav-link .sub-title {
  font-family: var(--bd-ff-heading);
  font-size: 20px;
  color: var(--bd-color-heading-primary);
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.video-tab-right .nav-tabs .nav-link.active {
  border-right: 1px solid var(--bd-color-heading-primary);
}
.video-tab-right .nav-tabs .nav-link.active:before, .video-tab-right .nav-tabs .nav-link.active:after {
  background-color: var(--bd-color-heading-primary);
}

/* !END: Video CSS */
/**----------------------------------------
    START: Award CSS
----------------------------------------*/
.award-wrap {
  position: relative;
  z-index: 1;
}
.award-wrap .bg-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 55%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 35% 0 0;
}
@media only screen and (max-width: 992px) {
  .award-wrap .bg-img {
    width: 100%;
  }
}

.award-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  padding: 110px 0;
  max-width: 715px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .award-items {
    padding: 50px 0;
    grid-template-columns: 1fr;
  }
}

.award-item .icon {
  margin-bottom: 35px;
  height: 75px;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  .award-item .icon {
    margin-bottom: 20px;
  }
}
.award-item .content .title {
  color: var(--bd-color-common-white);
  font-size: 22px;
  margin-bottom: 25px;
  font-weight: 500;
  line-height: 1.5;
}
.award-item .content span {
  color: #8b827d;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.award-item:nth-child(1) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .award-item:nth-child(1) {
    border: none;
    padding: 0;
  }
}
.award-item:nth-child(2) {
  padding-left: 55px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 35px;
}
@media only screen and (max-width: 767px) {
  .award-item:nth-child(2) {
    border: none;
    padding: 0;
  }
}
.award-item:nth-child(3) {
  padding-top: 35px;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 767px) {
  .award-item:nth-child(3) {
    border: none;
    padding: 0;
  }
}
.award-item:nth-child(4) {
  padding-left: 55px;
  padding-top: 35px;
}
@media only screen and (max-width: 767px) {
  .award-item:nth-child(4) {
    border: none;
    padding: 0;
  }
}
@media only screen and (max-width: 767px) {
  .award-item {
    border: none;
    padding: 0;
  }
  .award-item:not(:last-of-type) {
    margin-bottom: 40px;
  }
}

.award-content {
  padding-left: 50px;
}
@media only screen and (max-width: 992px) {
  .award-content {
    padding-bottom: 50px;
    padding-left: 0;
  }
  .award-content .section-heading .section-title {
    color: var(--bd-color-common-white);
  }
}
@media only screen and (max-width: 992px) {
  .award-content .bd-primary-btn-2 .text {
    color: var(--bd-color-common-white);
  }
}

/* !END: Award CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.apartment-text-wrap .apartment-text-carousel {
  height: 440px;
}
@media only screen and (max-width: 767px) {
  .apartment-text-wrap .apartment-text-carousel {
    height: 300px;
  }
}
.apartment-text-wrap .apartment-text-carousel .apartment-content {
  cursor: pointer;
}
.apartment-text-wrap .apartment-text-carousel .apartment-content .title {
  font-size: 60px;
  font-weight: 500;
  color: rgba(18, 18, 18, 0.15);
}
@media (max-width: 1199px) {
  .apartment-text-wrap .apartment-text-carousel .apartment-content .title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .apartment-text-wrap .apartment-text-carousel .apartment-content .title {
    font-size: 30px;
  }
}
.apartment-text-wrap .apartment-text-carousel .apartment-content a {
  display: flex;
  align-items: center;
  column-gap: 15px;
}
.apartment-text-wrap .apartment-text-carousel .apartment-content a span {
  font-family: var(--bd-ff-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--bd-color-heading-primary);
  text-decoration: underline;
}
.apartment-text-wrap .apartment-text-carousel .apartment-content a:hover {
  color: var(--bd-color-theme-primary);
}
.apartment-text-wrap .apartment-text-carousel .apartment-content a i {
  color: var(--bd-color-theme-primary);
  font-size: 20px;
  transform: rotate(-45deg);
  text-decoration: inherit;
  margin-bottom: -4px;
}
.apartment-text-wrap .apartment-text-carousel .swiper-slide {
  display: flex;
  align-items: center;
}
.apartment-text-wrap .apartment-text-carousel .swiper-slide.swiper-slide-thumb-active .apartment-content .title {
  color: var(--bd-color-heading-primary);
}

.apartment-thumb-carousel .apartment-img {
  height: 440px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .apartment-thumb-carousel .apartment-img {
    text-align: center;
  }
}
.apartment-thumb-carousel .apartment-img .overlay {
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.8;
}
.apartment-thumb-carousel .apartment-img img {
  height: 100%;
}
.apartment-thumb-carousel .swiper-slide-active .apartment-img .overlay {
  display: none;
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Page Header CSS
----------------------------------------*/
.counter-area {
  padding: 60px;
  border: 1px solid var(--bd-color-border-1);
  margin-top: 120px;
}
@media only screen and (max-width: 992px) {
  .counter-area {
    margin-top: 70px;
  }
}
.counter-area.area-2 {
  margin-top: 0;
  padding: 40px 60px;
  border-radius: 20px;
}

.counter-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 85px;
}
@media only screen and (max-width: 992px) {
  .counter-wrap {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .counter-wrap {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}
.counter-wrap.wrap-2 {
  grid-template-columns: repeat(3, 1fr);
}
@media only screen and (max-width: 767px) {
  .counter-wrap.wrap-2 {
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
}

.counter-item .title {
  font-family: var(--bd-ff-heading);
  font-size: 55px;
  font-weight: 500;
  display: flex;
  align-items: center;
  line-height: 1;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 4px solid var(--bd-color-border-1);
}
.counter-item .title .odometer-auto-theme {
  font-family: inherit;
  line-height: 1;
  margin-bottom: -5px;
}
.counter-item .title i {
  font-size: 20px;
  margin-top: -20px;
  margin-left: 2px;
}
.counter-item p {
  font-weight: 500;
  margin-bottom: 0;
}
.counter-item:hover .title {
  border-bottom: 4px solid var(--bd-color-theme-primary);
}

/* !END: Page Header CSS */
/**----------------------------------------
    START: Sponsor CSS
----------------------------------------*/
.sponsor-area {
  margin-top: 120px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-gap: 20px;
  border-top: 1px solid var(--bd-color-border-1);
  border-bottom: 1px solid var(--bd-color-border-1);
}
@media only screen and (max-width: 992px) {
  .sponsor-area {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 70px;
  }
}
@media only screen and (max-width: 767px) {
  .sponsor-area {
    grid-template-columns: repeat(2, 1fr);
  }
}

.sponsor-item {
  text-align: center;
  margin: 25px 0;
}
.sponsor-item:not(:last-of-type) {
  border-right: 1px solid var(--bd-color-border-1);
}
@media only screen and (max-width: 767px) {
  .sponsor-item:not(:last-of-type) {
    border: none;
  }
}

/* !END: Sponsor CSS */
/**----------------------------------------
    START: Faq CSS
----------------------------------------*/
.faq-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.faq-section .shape {
  position: absolute;
  top: -180px;
  left: 0;
  z-index: -1;
}

.faq-content {
  max-width: 600px;
  width: 100%;
}
.faq-content .tab-content .tab-pane {
  background-color: var(--bd-color-common-white);
  padding: 40px 30px;
  border: 1px solid var(--bd-color-border-1);
}

.faq-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
  row-gap: 30px;
}
@media (max-width: 1199px) {
  .faq-wrap {
    flex-direction: column;
  }
}

.faq-tab {
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.06);
  padding: 60px 0;
  max-width: 700px;
  width: 100%;
  margin-bottom: 20px;
}
.faq-tab .nav-tabs {
  flex-direction: column;
  border: none;
  row-gap: 20px;
}
.faq-tab .nav-tabs .nav-link {
  font-family: var(--bd-ff-heading);
  border: none;
  display: flex;
  align-items: center;
  padding-left: 50px;
  width: 100%;
  border-radius: 0;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .faq-tab .nav-tabs .nav-link {
    padding-left: 10px;
  }
}
.faq-tab .nav-tabs .nav-link .number {
  font-family: var(--bd-ff-heading);
  color: rgba(18, 18, 18, 0.15);
  font-size: 100px;
  font-weight: 600;
  display: inline-block;
  width: 150px;
  line-height: 1;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .faq-tab .nav-tabs .nav-link .number {
    font-size: 60px;
  }
}
.faq-tab .nav-tabs .nav-link .qus {
  color: var(--bd-color-heading-primary);
  font-size: 24px;
  font-weight: 500;
  border-bottom: 1px solid var(--bd-color-border-1);
  line-height: 1;
  padding-bottom: 15px;
}
@media only screen and (max-width: 767px) {
  .faq-tab .nav-tabs .nav-link .qus {
    font-size: 18px;
  }
}
.faq-tab .nav-tabs .nav-link.active {
  background-color: var(--bd-color-theme-primary);
}
.faq-tab .nav-tabs .nav-link.active .number {
  color: rgba(255, 255, 255, 0.15);
}
.faq-tab .nav-tabs .nav-link.active .qus {
  color: var(--bd-color-common-white);
  border-bottom: none;
  padding-bottom: 0px;
}

/* !END: Faq CSS */
/**----------------------------------------
    START: Service Details CSS
----------------------------------------*/
.service-details-content .service-details-img {
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
}
.service-details-content .service-details-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.service-details-content .title {
  font-size: 30px;
  font-weight: 500;
  margin: 40px 0 30px 0;
}
.service-details-content .service-details-list li {
  display: flex;
  align-items: center;
}
.service-details-content .service-details-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.service-details-content .service-details-list li .icon {
  background-color: var(--bd-color-common-white);
  box-shadow: 0px 0px 20px 0px rgba(42, 35, 115, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-right: 15px;
}
.service-details-content .service-details-video {
  margin-bottom: 40px;
  position: relative;
}
.service-details-content .service-details-video img {
  height: 400px;
  object-fit: cover;
}
.service-details-content .service-details-video .video-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.service-details-content .service-details-video .video-btn a {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-details-content .service-details-video .video-btn a .play-btn .ripple {
  height: 100px;
  width: 100px;
}
.service-details-content .service-tag-list {
  margin: 40px 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 15px;
  list-style: none;
}
.service-details-content .service-tag-list li:not(:last-of-type) {
  margin-right: 15px;
}
.service-details-content .service-tag-list li a {
  background-color: #faf5f1;
  display: inline-block;
  color: var(--bd-color-text-body);
  font-size: 16px;
  font-weight: 500;
  padding: 15px 40px;
  border-radius: 10px;
}
.service-details-content .service-tag-list li a:hover {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
}
.service-details-content .service-bottom-wrap {
  display: grid;
  align-items: center;
  grid-template-columns: 275px 1fr;
  grid-gap: 20px;
  margin: 40px 0;
}
@media only screen and (max-width: 767px) {
  .service-details-content .service-bottom-wrap {
    grid-template-columns: 1fr;
  }
}
.service-details-content .service-bottom-wrap .thumb {
  height: 315px;
  max-width: 275px;
  width: 100%;
}
.service-details-content .service-bottom-wrap .content .service {
  margin-bottom: 15px;
}
.service-details-content .service-bottom-wrap .content p {
  margin-bottom: 30px;
}

.service-widget:not(:last-of-type) {
  margin-bottom: 65px;
}
.service-widget .widget-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1;
}
.service-widget .category-list {
  padding: 30px;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 30px;
  list-style: none;
}
.service-widget .category-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.service-widget .category-list li a {
  font-family: var(--bd-ff-heading);
  color: var(--bd-color-heading-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-widget .category-list li a i {
  font-size: 30px;
  margin-right: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.service-widget .category-list li a:hover {
  color: var(--bd-color-theme-primary);
}
.service-widget .category-list li a:hover i {
  visibility: visible;
  opacity: 1;
  margin-right: 0;
}
.service-widget .service-details-form .form-item {
  position: relative;
}
.service-widget .service-details-form .form-item .icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.service-widget .service-details-form .form-item .form-control {
  border: 1px solid var(--bd-color-border-1);
  border-radius: 10px;
  box-shadow: none;
  padding: 19px 20px;
  margin-bottom: 20px;
}
.service-widget .service-details-form .form-item.message-item .icon {
  top: 30px;
}
.service-widget .download-area {
  padding: 30px;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 30px;
}
.service-widget .download-area .download-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service-widget .download-area .download-item:not(:last-of-type) {
  margin-bottom: 20px;
}
.service-widget .download-area .download-item .left-item {
  display: flex;
  column-gap: 15px;
}
.service-widget .download-area .download-item .left-item .content .title {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 0px;
  line-height: 1;
}
.service-widget .download-area .download-item .left-item .content a {
  font-size: 14px;
  color: var(--bd-color-text-body);
}

/* !END: Service Details CSS */
/**----------------------------------------
    START: Team Details CSS
----------------------------------------*/
.team-details-content .team-details-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 1199px) {
  .team-details-content .team-details-list-wrap {
    flex-wrap: wrap;
    row-gap: 40px;
  }
}
.team-details-content .team-details-list-wrap .team-details-list {
  list-style: none;
}
.team-details-content .team-details-list-wrap .team-details-list li {
  font-family: var(--bd-ff-heading);
  color: var(--bd-color-heading-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
}
.team-details-content .team-details-list-wrap .team-details-list li:not(:last-of-type) {
  margin-bottom: 40px;
}
.team-details-content .team-details-list-wrap .team-details-list li span,
.team-details-content .team-details-list-wrap .team-details-list li a {
  font-family: var(--bd-ff-body);
  color: var(--bd-color-text-body);
  font-size: 16px;
}

.team-details-img {
  display: flex;
  column-gap: 10px;
}
.team-details-img .social-list {
  list-style: none;
  margin-top: 70px;
}
@media only screen and (max-width: 767px) {
  .team-details-img .social-list {
    display: none;
  }
}
.team-details-img .social-list li:not(:last-of-type) {
  margin-bottom: 25px;
}
.team-details-img .social-list li a {
  background-color: #1877f2;
  color: var(--bd-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.team-details-img .social-list li a i {
  transform: rotate(5deg);
}
.team-details-img .social-list li.facebook {
  margin-left: 20px;
}
.team-details-img .social-list li.pinterest a {
  background-color: #E60023;
}
.team-details-img .social-list li.twitter a {
  background-color: #1da1f2;
}
.team-details-img .social-list li.instagram {
  margin-left: 20px;
}
.team-details-img .social-list li.instagram a {
  background-color: #FD1D1D;
}
.team-details-img .img-wrap {
  position: relative;
  padding-bottom: 90px;
}
@media only screen and (max-width: 767px) {
  .team-details-img .img-wrap {
    margin-top: 50px;
  }
}
.team-details-img .img-wrap img {
  height: 385px;
  border-radius: 31%;
  object-fit: cover;
  max-width: 660px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .team-details-img .img-wrap img {
    border-radius: 0;
    height: 450px;
  }
}
.team-details-img .img-wrap .content {
  background-color: var(--bd-color-common-white);
  box-shadow: 0px 0px 30px 0px rgba(18, 18, 18, 0.08);
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  max-width: 380px;
  width: 100%;
  padding: 35px 20px;
}
.team-details-img .img-wrap .content span {
  font-size: 16px;
  font-weight: 500;
}
.team-details-img .img-wrap .content .name {
  color: var(--bd-color-heading-primary);
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
}

.team-qualification {
  border-top: 1px solid var(--bd-color-border-1);
  position: relative;
  z-index: 1;
}
.team-qualification .bg-img {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (max-width: 1199px) {
  .team-qualification .bg-img {
    display: none;
  }
}

.qualification-content-wrap {
  display: flex;
  align-items: center;
  justify-content: end;
}

.qualification-content {
  max-width: 400px;
  width: 100%;
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .qualification-content {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
.qualification-content .qualification-item p {
  font-size: 16px;
}

/* !END: Team Details CSS */
/**----------------------------------------
    START: Project Details CSS
----------------------------------------*/
.project-details-content .project-details-img {
  position: relative;
  max-width: 1170px;
  width: 100%;
}
.project-details-content .project-details-img .project-details-list {
  background-color: var(--bd-color-common-white);
  padding: 40px 30px;
  list-style: none;
  position: absolute;
  bottom: -50%;
  right: 0;
  border-radius: 20px;
}
.project-details-content .project-details-img .project-details-list li {
  font-family: var(--bd-ff-heading);
  font-size: 18px;
  color: var(--bd-color-heading-primary);
  font-weight: 500;
}
.project-details-content .project-details-img .project-details-list li span {
  color: var(--bd-color-text-body);
  font-family: var(--bd-ff-body);
  font-size: 16px;
  display: block;
  margin-top: 5px;
}
.project-details-content .project-details-img .project-details-list li:not(:last-of-type) {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--bd-color-border-1);
}
.project-details-content .details-title {
  font-size: 40px;
  line-height: 1;
  font-weight: 500;
  margin: 50px 0 40px 0;
}
@media only screen and (max-width: 767px) {
  .project-details-content .details-title {
    font-size: 30px;
  }
}
.project-details-content p {
  max-width: 851px;
  width: 100%;
}
.project-details-content .project-details-list-2 {
  margin: 40px 0;
}
.project-details-content .project-details-list-2 li {
  font-family: var(--bd-ff-heading);
  display: flex;
  align-items: center;
  column-gap: 15px;
  color: var(--bd-color-heading-primary);
  font-size: 18px;
  font-weight: 500;
}
.project-details-content .project-details-list-2 li i {
  color: var(--bd-color-theme-primary);
}
.project-details-content .project-details-list-2 li:not(:last-of-type) {
  margin-bottom: 10px;
}

/* !END: Project Details CSS */
/**----------------------------------------
START: Sidebar CSS
----------------------------------------*/
#sidebar-overlay,
.sidebar-trigger,
.sidebar-area {
  display: none;
}

.sidebar-trigger {
  display: block;
}

.sidebar-area {
  background-color: var(--bd-color-common-white);
  border-left: 1px solid var(--bd-color-border-1);
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 450px;
  height: 100%;
  z-index: 9999;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  overflow: scroll;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  padding: 40px 40px;
}

.open-sidebar .sidebar-area {
  right: 0;
  visibility: visible;
  transform: translate(0);
}

.sidebar-trigger.close {
  position: absolute;
  right: 30px;
  top: 63px;
  color: var(--grey-color);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-trigger.close:hover {
  color: var(--bd-color-theme-primary);
}

.sidebar-trigger.close svg {
  fill: currentColor;
  stroke: none;
  width: 20px;
  height: 20px;
}

.sidebar-content .site-logo {
  margin-bottom: 40px;
}

.sidebar-content .site-logo img {
  max-width: 200px;
}

.sidebar-content .sidebar-info li {
  font-size: 18px;
}

.sidebar-content .sidebar-social li {
  display: inline-block;
  margin: 0 3px;
  padding-top: 30px;
}

.sidebar-content .sidebar-social li a {
  display: inline-block;
  border: 1px solid var(--border-1);
  font-size: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.sidebar-content .sidebar-social li a:after {
  background-color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 59%;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  opacity: 1;
  transform: translate(-50%, -50%) scale(0);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
}

.sidebar-content .sidebar-social li a:hover {
  border: 1px solid var(--primary-color);
  color: #fff;
}

.sidebar-content .sidebar-social li:hover a:after {
  visibility: visible;
  opacity: 1;
  transition: 0.4s;
  transform: translate(-50%, -50%) scale(1);
}

.sidebar-content .list-post-area {
  margin: 50px 0 20px 0;
}

/*Scrollbar Style*/
.sidebar-area::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

.sidebar-area::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #ccc;
}

.sidebar-area::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area-webkit-::selection {
  background-color: #999;
  color: #fff;
}

.sidebar-area::-moz-selection {
  background-color: #999;
  color: #fff;
}

#sidebar-overlay {
  display: block;
  height: 100%;
  left: 0;
  opacity: 0;
  overflow: hidden;
  position: fixed;
  top: 0;
  transition: all 0s ease-in-out;
  width: calc(100% - 400px);
  z-index: -1;
}

.open-sidebar #sidebar-overlay {
  opacity: 1;
  z-index: 1002;
  transition: all 0.6s ease-in-out;
  transition-delay: 0.3s;
}

@media (max-width: 992px) {
  .sidebar-content .list-post-area.list-2 {
    grid-template-columns: 1fr;
    grid-gap: 0;
  }
  .sidebar-area {
    width: 400px;
    justify-content: center;
  }
  .side-menu-logo {
    margin-bottom: 50px;
  }
  .side-menu-wrap {
    margin-bottom: 70px;
  }
  .side-menu-header h3 {
    display: none;
  }
  .side-menu-list li a {
    font-size: 14px;
  }
  .side-menu-list li p {
    font-size: 14px;
  }
}
@media (max-width: 767px) {
  .sidebar-area {
    width: 320px;
    padding: 60px 20px 60px 20px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card .post-img {
    height: 90px;
    width: 90px;
  }
  .sidebar-content .list-post-area.list-2 .list-post-card {
    grid-template-columns: 90px 1fr;
  }
}
.side-menu-logo {
  max-width: 150px;
}

.side-menu-about {
  margin: 50px 0 50px 0;
}
@media only screen and (max-width: 992px) {
  .side-menu-about {
    display: none;
  }
}

.side-menu-about p {
  margin: 25px 0;
}

.side-menu-header h3 {
  font-size: 30px;
  font-weight: 600px;
  line-height: 1;
  font-weight: 600;
}

.side-menu-content .side-menu-header,
.side-menu-about .side-menu-header {
  margin-bottom: 20px;
}

.side-menu-list {
  margin: 25px 0 35px 0;
}

.side-menu-list li {
  display: flex;
  align-items: center;
}

.side-menu-list li:not(:last-of-type) {
  margin-bottom: 20px;
}

.side-menu-list li i {
  background-color: var(--bd-color-theme-primary);
  font-size: 12px;
  color: var(--bd-color-common-white);
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
}

.side-menu-list li:hover i {
  background-color: var(--bd-color-theme-primary);
  color: #fff;
}

.side-menu-list li p {
  padding-left: 10px;
  margin-bottom: 0;
}

.side-menu-list li a {
  font-size: 16px;
  color: var(--bd-color-text-body);
  padding-left: 10px;
}
.side-menu-list li a:hover {
  color: var(--bd-color-theme-primary);
}

.side-menu-social {
  margin-top: 40px;
  list-style: none;
}
.side-menu-social li {
  display: inline-flex;
}
.side-menu-social li:not(:last-of-type) {
  margin-right: 10px;
}
.side-menu-social li a {
  background-color: var(--bd-color-theme-primary);
  font-size: 17px;
  color: var(--bd-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-menu-social li a:hover {
  color: var(--bd-color-common-white);
}

/* !END: Sidebar CSS */
/**----------------------------------------
START: Blog Details CSS
----------------------------------------*/
.blog-details-img {
  width: 100%;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
}
.blog-details-img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: top;
}
@media only screen and (max-width: 992px) {
  .blog-details-img {
    height: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-details-img {
    height: 300px;
  }
}

@media only screen and (max-width: 992px) {
  .blog-details-wrap {
    margin-bottom: 40px;
  }
}
.blog-details-wrap .details-title {
  font-size: 30px;
  font-weight: 500;
}
@media only screen and (max-width: 992px) {
  .blog-details-wrap .details-title {
    font-size: 24px;
  }
}
.blog-details-wrap .details-img-wrap {
  display: flex;
  align-items: center;
  column-gap: 15px;
  flex-wrap: wrap;
  row-gap: 24px;
}
.blog-details-wrap .details-img-wrap img {
  max-width: 430px;
  width: 100%;
}
@media (max-width: 1199px) {
  .blog-details-wrap .details-img-wrap img {
    max-width: 280px;
  }
}
@media only screen and (max-width: 992px) {
  .blog-details-wrap .details-img-wrap img {
    max-width: 350px;
  }
}
.blog-details-wrap .blog-quote-wrap {
  display: grid;
  grid-template-columns: 45px 1fr;
  grid-gap: 20px;
  margin: 30px 0;
}
.blog-details-wrap .blog-quote-wrap .quote {
  margin-top: 10px;
}
.blog-details-wrap .blog-quote-wrap p {
  margin-bottom: 0;
}
.blog-details-wrap .blog-details-list {
  list-style: none;
  margin-bottom: 40px;
}
.blog-details-wrap .blog-details-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.blog-details-wrap .blog-details-list li span {
  display: inline-block;
  background-color: var(--bd-color-theme-primary);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  opacity: 0.3;
  margin-right: 10px;
}

blockquote {
  background-color: var(--bd-color-bg-1);
  display: grid;
  align-items: center;
  grid-template-columns: 150px 1fr;
}
@media only screen and (max-width: 767px) {
  blockquote {
    grid-template-columns: 1fr;
  }
}
blockquote .icon {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  font-size: 40px;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  blockquote .icon {
    padding: 30px 0;
  }
}
blockquote .content {
  padding: 35px 40px;
}
blockquote .content p {
  color: var(--bd-color-common-white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.8;
  text-transform: uppercase;
  margin-bottom: 20px;
}
blockquote .content .author {
  color: var(--bd-color-theme-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
  position: relative;
  padding-left: 50px;
  line-height: 1;
}
blockquote .content .author:before {
  background-color: var(--bd-color-theme-primary);
  content: "";
  width: 30px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 30px;
  margin: 40px 0;
}
.tags .social-list-wrap {
  display: flex;
  align-items: center;
  column-gap: 20px;
}
.tags .social-list-wrap .follow {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 0;
}
.tags .social-list-wrap .social-list {
  display: flex;
  align-items: center;
  column-gap: 5px;
  list-style: none;
}
.tags .social-list-wrap .social-list li a {
  background-color: transparent;
  color: var(--bd-color-heading-primary);
  font-size: 15px;
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.tags .social-list-wrap .social-list li a:hover {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
}

.next-prev-wrap {
  background-color: #faf5f1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 30px;
  flex-wrap: wrap;
  row-gap: 20px;
  padding: 20px 20px;
  margin: 50px 0 0 0;
  border-radius: 100px;
}
.next-prev-wrap .left-item .bd-primary-btn-2 .arrow {
  margin-left: 0;
  margin-right: -20px;
}
.next-prev-wrap .left-item .bd-primary-btn-2 .arrow i {
  transform: rotate(-120deg);
}
.next-prev-wrap .left-item .bd-primary-btn-2:hover .arrow i {
  transform: rotate(-180deg);
}

.comments-area .comments-title {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 40px;
}
@media only screen and (max-width: 992px) {
  .comments-area .comments-title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .comments-area .comments-title {
    font-size: 26px;
  }
}

.comment-item {
  position: relative;
  display: grid;
  align-items: center;
  grid-template-columns: 110px 1fr;
  grid-gap: 25px;
}
@media only screen and (max-width: 767px) {
  .comment-item {
    grid-template-columns: 1fr;
  }
}
.comment-item .comment-thumb img {
  height: 100%;
  width: 110px;
  object-fit: cover;
  object-position: top;
}
.comment-item .comment-info .author {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}
.comment-item .comment-info p {
  font-size: 18px;
  margin-bottom: 15px;
}
.comment-item .comment-info .comments-meta span {
  color: var(--bd-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
}
.comment-item .comment-info .comments-meta .reply {
  font-size: 16px;
  color: var(--bd-color-theme-primary);
  margin-left: 20px;
}
.comment-item .comment-info .comments-meta .reply i {
  margin-left: 5px;
}
.comment-item.item-2 {
  padding: 30px 50px;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 15px;
  margin: 50px 0;
}

.blog-contact-form .title {
  font-size: 30px;
  font-weight: 500;
}
.blog-contact-form p {
  margin-bottom: 30px;
}
.blog-contact-form .request-form .form-item {
  position: relative;
}
.blog-contact-form .request-form .form-item .form-control {
  color: var(--bd-color-text-body);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  padding: 17.5px 30px;
  border-radius: 0;
  margin-bottom: 25px;
  width: 100%;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 15px;
}
.blog-contact-form .request-form .form-item .form-control::-webkit-input-placeholder {
  color: var(--bd-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-moz-placeholder {
  color: var(--bd-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control::-moz-placeholder {
  color: var(--bd-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control:-ms-input-placeholder {
  color: var(--bd-color-text-body);
  font-size: 16px;
  font-weight: 400;
}
.blog-contact-form .request-form .form-item .form-control.nice-select {
  height: auto;
  line-height: inherit;
  padding: 15.5px 30px;
}
.blog-contact-form .request-form .form-item .form-control.nice-select:after {
  top: 46%;
  width: 10px;
  height: 10px;
  border-color: var(--bd-color-text-body);
  border-bottom: 1px solid var(--bd-color-text-body);
  border-right: 1px solid var(--bd-color-text-body);
  right: 35px;
}
.blog-contact-form .request-form .form-item .form-control.nice-select .list {
  background-color: var(--bd-color-border-1);
  width: 100%;
}
.blog-contact-form .request-form .form-item .form-control.nice-select .list li {
  padding-left: 30px;
}
.blog-contact-form .request-form .bd-primary-btn {
  border-radius: 30px;
}

.sidebar-widget:not(:last-of-type) {
  margin-bottom: 90px;
}
@media only screen and (max-width: 992px) {
  .sidebar-widget:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.sidebar-widget .search-form {
  position: relative;
}
.sidebar-widget .search-form .form-control {
  background-color: var(--bd-color-common-white);
  color: var(--bd-color-text-body);
  font-size: 16px;
  border: none;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 0;
  box-shadow: none;
  padding: 20px 0;
  padding-left: 20px;
  padding-right: 30px;
  border-radius: 100px;
}
.sidebar-widget .search-form .form-control::-webkit-input-placeholder {
  color: var(--bd-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control:-moz-placeholder {
  color: var(--bd-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control::-moz-placeholder {
  color: var(--bd-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .form-control:-ms-input-placeholder {
  color: var(--bd-color-text-body);
  font-size: 16px;
}
.sidebar-widget .search-form .search-btn {
  color: var(--bd-color-text-body);
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.sidebar-widget .widget-title {
  font-size: 30px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 30px;
}
.sidebar-widget.blog-author img {
  height: 220px;
  width: 220px;
  border-radius: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
.sidebar-widget.blog-author .name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}
.sidebar-widget.blog-author p {
  margin-bottom: 25px;
}
.sidebar-widget.blog-author .social-list {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
.sidebar-widget.blog-author .social-list li a {
  color: var(--bd-color-common-white);
  font-size: 15px;
  display: block;
}
.sidebar-widget.blog-author .social-list li:not(:last-of-type) {
  margin-right: 15px;
}
.sidebar-widget .category-list {
  padding: 30px;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 30px;
  list-style: none;
}
.sidebar-widget .category-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .category-list li a {
  font-family: var(--bd-ff-heading);
  color: var(--bd-color-heading-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 20px;
  font-weight: 500;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-widget .category-list li a i {
  font-size: 30px;
  margin-right: 10px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.sidebar-widget .category-list li a:hover {
  color: var(--bd-color-theme-primary);
}
.sidebar-widget .category-list li a:hover i {
  visibility: visible;
  opacity: 1;
  margin-right: 0;
}
.sidebar-widget .blog-gallery-wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 10px;
}
@media (max-width: 1399px) {
  .sidebar-widget .blog-gallery-wrap {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 992px) {
  .sidebar-widget .blog-gallery-wrap {
    display: flex;
    align-items: center;
    column-gap: 10px;
    row-gap: 10px;
    flex-wrap: wrap;
  }
}
.sidebar-widget .blog-gallery-wrap .gallary-img {
  height: 100px;
  width: 100px;
}
.sidebar-widget .tags {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  row-gap: 20px;
  list-style: none;
  column-gap: 0;
  margin: 0;
}
.sidebar-widget .tags li:not(:last-of-type) {
  margin-right: 10px;
}
.sidebar-widget .tags li a {
  font-family: var(--bd-ff-body);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  border: 1px solid var(--bd-color-border-1);
}
.sidebar-widget .tags li a:hover {
  background-color: var(--bd-color-theme-primary);
  color: var(--bd-color-common-white);
  border: 1px solid var(--bd-color-theme-primary);
}
.sidebar-widget .sidebar-post-wrap {
  padding: 30px;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 30px;
}
.sidebar-widget .sidebar-post-wrap .sidebar-post {
  display: grid;
  align-items: center;
  grid-template-columns: 70px 1fr;
  grid-gap: 0px;
}
.sidebar-widget .sidebar-post-wrap .sidebar-post:not(:last-of-type) {
  margin-bottom: 20px;
}
.sidebar-widget .sidebar-post-wrap .sidebar-post img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  border-radius: 50%;
}
.sidebar-widget .sidebar-post-wrap .sidebar-post .post-content {
  padding-left: 20px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post-wrap .sidebar-post .post-content {
    padding-left: 10px;
  }
}
.sidebar-widget .sidebar-post-wrap .sidebar-post .post-content .post-meta {
  display: flex;
  align-items: center;
  column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 5px;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post-wrap .sidebar-post .post-content .post-meta {
    column-gap: 5px;
  }
}
.sidebar-widget .sidebar-post-wrap .sidebar-post .post-content .post-meta li {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 10px;
  text-transform: capitalize;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post-wrap .sidebar-post .post-content .post-meta li {
    font-size: 13px;
  }
}
.sidebar-widget .sidebar-post-wrap .sidebar-post .post-content .title {
  font-size: 16px;
  margin-bottom: 0px;
  font-weight: 700;
  text-transform: capitalize;
  line-height: 1.4;
}
@media only screen and (max-width: 767px) {
  .sidebar-widget .sidebar-post-wrap .sidebar-post .post-content .title {
    font-size: 14px;
  }
}
.sidebar-widget .sidebar-post-wrap .sidebar-post .post-content .title a:hover {
  color: var(--bd-color-theme-primary);
}
.sidebar-widget .tags {
  padding: 30px;
  border: 1px solid var(--bd-color-border-1);
  border-radius: 30px;
}
.sidebar-widget .tags li a {
  font-family: var(--bd-ff-body);
  color: var(--bd-color-heading-primary);
  font-size: 16px;
  font-weight: 500;
  border: none;
  padding: 15px 20px;
  border-radius: 10px;
}
.sidebar-widget .tags li a:hover {
  background-color: var(--bd-color-theme-primary);
  border: none;
  color: var(--bd-color-common-white);
}

/* !END: Theme Blog Details CSS */
/**----------------------------------------
START: Footer CSS
----------------------------------------*/
.footer-section {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  padding-top: 100px;
}
.footer-section .shape {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.footer-text {
  text-align: center;
}
.footer-text .title {
  font-size: 200px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
  text-transform: capitalize;
}
@media (max-width: 1199px) {
  .footer-text .title {
    font-size: 100px;
  }
}
@media only screen and (max-width: 992px) {
  .footer-text .title {
    font-size: 72px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-text .title {
    font-size: 30px;
  }
}

.footer-box-wrap {
  background-color: var(--bd-color-theme-primary);
  height: 300px;
  width: 300px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 10px;
}
@media (max-width: 1199px) {
  .footer-box-wrap {
    margin: 0 auto;
  }
}
@media (max-width: 1199px) {
  .footer-box-wrap {
    width: 100%;
    border-radius: 0;
    padding: 30px 20px;
    padding-top: 20px;
  }
}
.footer-box-wrap .footer-box {
  margin-top: -10px;
}
.footer-box-wrap .footer-box .footer-logo {
  display: block;
  margin-bottom: 5px;
}
.footer-box-wrap .footer-box p {
  color: var(--bd-color-common-white);
  margin-bottom: 10px;
  font-size: 15px;
}
@media only screen and (max-width: 767px) {
  .footer-box-wrap .footer-box p {
    margin-bottom: 15px;
  }
}
.footer-box-wrap .footer-box .footer-social {
  list-style: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .footer-box-wrap .footer-box .footer-social {
    bottom: 30px;
  }
}
.footer-box-wrap .footer-box .footer-social li {
  display: inline-flex;
}
.footer-box-wrap .footer-box .footer-social li:not(:last-of-type) {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  .footer-box-wrap .footer-box .footer-social li:not(:last-of-type) {
    margin-right: 5px;
  }
}
.footer-box-wrap .footer-box .footer-social li a {
  background-color: rgba(255, 255, 255, 0.2);
  color: var(--bd-color-common-white);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.footer-box-wrap .footer-box .footer-social li a:hover {
  background-color: var(--bd-color-common-white);
  color: var(--bd-color-theme-primary);
}

.footer-box-wrap .footer-box .footer-social li:nth-child(2) {
  transform: translateY(20px);
}
@media only screen and (max-width: 767px) {
  .footer-box-wrap .footer-box .footer-social li:nth-child(2) {
    transform: translateY(0);
  }
}
.footer-box-wrap .footer-box .footer-social li:nth-child(4) {
  transform: translateY(10px);
}
@media only screen and (max-width: 767px) {
  .footer-box-wrap .footer-box .footer-social li:nth-child(4) {
    transform: translateY(0);
  }
}

@media only screen and (max-width: 767px) {
  .footer-box-wrap .footer-box .footer-social li {
    transform: translateY(0);
  }
}

.footer-wrap {
  margin: 100px 0;
}
@media (max-width: 1199px) {
  .footer-wrap {
    margin-top: 50px;
  }
}

.footer-widget .widget-header {
  margin-bottom: 45px;
}
@media only screen and (max-width: 767px) {
  .footer-widget .widget-header {
    margin-bottom: 20px;
  }
}
.footer-widget .widget-header .footer-logo {
  max-width: 170px;
}
.footer-widget .widget-header .widget-title {
  color: var(--bd-color-common-white);
  font-size: 28px;
  font-weight: 500;
  position: relative;
  display: inline-block;
  line-height: 1;
}
.footer-widget .widget-header .widget-title:before {
  background-color: #b99a80;
  content: "";
  height: 2px;
  width: 20px;
  position: absolute;
  bottom: 6px;
  right: -25px;
}
.footer-widget .widget-header .widget-title.before-none:before {
  display: none;
}
.footer-widget .title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 0;
  margin-top: 30px;
  text-transform: uppercase;
}
.footer-widget .title span {
  color: var(--bd-color-text-body);
  display: block;
  margin-top: 10px;
  text-transform: inherit;
  font-weight: 400;
}
.footer-widget .footer-list-wrap {
  display: flex;
  column-gap: 30px;
}
.footer-widget .footer-list {
  list-style: none;
}
.footer-widget .footer-list li {
  color: rgba(255, 255, 255, 0.8);
}
.footer-widget .footer-list li a {
  font-family: var(--bd-ff-body);
  color: #a2a5ae;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
.footer-widget .footer-list li a:hover {
  color: var(--bd-color-theme-primary);
}
.footer-widget .footer-list li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer-widget .footer-insta-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 10px;
  max-width: 315px;
  width: 100%;
}
.footer-widget .footer-insta-items .footer-insta-item {
  position: relative;
  max-width: 100px;
}
.footer-widget .footer-insta-items .footer-insta-item img {
  width: 100%;
  height: 90px;
}
.footer-widget .footer-insta-items .footer-insta-item .link {
  background-color: var(--bd-color-heading-primary);
  height: 60px;
  width: 60px;
  color: var(--bd-color-common-white);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}
.footer-widget .footer-insta-items .footer-insta-item:hover .link {
  transform: translate(-50%, -50%) scale(1);
}
.footer-widget.footer-col-2 {
  padding-left: 50px;
}
@media only screen and (max-width: 992px) {
  .footer-widget.footer-col-2 {
    padding-left: 0;
  }
}
.footer-widget.widget-space {
  padding-left: 50px;
}
@media only screen and (max-width: 992px) {
  .footer-widget.widget-space {
    padding-left: 0;
  }
}

.footer-top {
  display: grid;
  align-items: center;
  grid-template-columns: 220px 1fr;
  grid-gap: 150px;
}
@media only screen and (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
}
.footer-top .footer-logo a {
  background-color: var(--bd-color-theme-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 220px;
  width: 220px;
  border-radius: 50%;
}
.footer-top .footer-top-right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 0px;
}
@media only screen and (max-width: 767px) {
  .footer-top .footer-top-right {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.footer-top .footer-top-right .subscribe {
  font-size: 30px;
  color: var(--bd-color-common-white);
  font-weight: 500;
  margin-bottom: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.8);
  padding-left: 40px;
  max-width: 400px;
  width: 100%;
}
@media only screen and (max-width: 992px) {
  .footer-top .footer-top-right .subscribe {
    padding-left: 30px;
  }
}
.footer-top .footer-top-right .footer-form {
  max-width: 485px;
  width: 100%;
  position: relative;
}
.footer-top .footer-top-right .footer-form .form-control {
  background-color: rgba(255, 255, 255, 0.149);
  border-radius: 15px;
  border: none;
  box-shadow: none;
  color: var(--bd-color-common-white);
  padding: 28px 20px;
}
.footer-top .footer-top-right .footer-form .form-control::-webkit-input-placeholder {
  color: var(--bd-color-common-white);
}
.footer-top .footer-top-right .footer-form .form-control:-moz-placeholder {
  color: var(--bd-color-common-white);
}
.footer-top .footer-top-right .footer-form .form-control::-moz-placeholder {
  color: var(--bd-color-common-white);
}
.footer-top .footer-top-right .footer-form .form-control:-ms-input-placeholder {
  color: var(--bd-color-common-white);
}
.footer-top .footer-top-right .footer-form .submit {
  background-color: var(--bd-color-heading-primary);
  padding: 12px 30px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 18px;
  color: var(--bd-color-common-white);
  text-decoration: underline;
}

.copyright-area.area-2 {
  border-top: 1px solid #3a3a3a;
}

.copyright-content {
  padding: 20px 0;
  padding-left: 30px;
  position: relative;
  z-index: 1;
  align-items: center;
}
@media only screen and (max-width: 992px) {
  .copyright-content {
    margin-top: 0;
    padding-left: 0;
  }
}
@media only screen and (max-width: 767px) {
  .copyright-content {
    row-gap: 20px;
  }
}
.copyright-content:before {
  background-color: rgba(255, 255, 255, 0.2);
  content: "";
  width: 3000px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.copyright-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-family: var(--bd-ff-body);
  margin: 0;
  letter-spacing: 1px;
}
.copyright-content p span {
  color: var(--bd-color-theme-primary);
}
@media only screen and (max-width: 767px) {
  .copyright-content p {
    text-align: center;
  }
}
.copyright-content .copy-list {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-wrap: wrap;
  row-gap: 10px;
  list-style: none;
}
@media only screen and (max-width: 767px) {
  .copyright-content .copy-list {
    justify-content: center;
  }
}
.copyright-content .copy-list li a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}
.copyright-content .copy-list li a:hover {
  color: var(--bd-color-theme-primary);
}
.copyright-content .copy-list li:not(:last-of-type) {
  margin-right: 15px;
}
.copyright-content.content-2::before {
  display: none;
}

/* !END: Theme Footer CSS */

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