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

    Theme Name: Cipro - Laboratory & Science Research HTML5 Template
    Author: Bdevs
    Support: https://www.devsnews.com/support/
    Description: Cipro - Laboratory & Science Research HTML5 Template
    Version: 1.0

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

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

01. common CSS
02. header CSS
03. slider CSS
04. About CSS
05. accordion CSS
06. Animation CSS
07. Blog CSS
08. brand CSS
09. BUTTONS CSS
10. choose CSS
11. Contact CSS
12. counter CSS
13. error CSS
14. faq CSS
15. features CSS
16. footer CSS
17. gallery CSS
18. Menu CSS
19. mission CSS
20. page-title CSS
21. pricing CSS
22. Process CSS
23. Products CSS
24. project CSS
25. Section-title CSS
26. Service CSS
27. Settings CSS
28. Team CSS 
29. Testimonial CSS 
30. Video CSS
31. MEAN MENU CSS



/*----------------------------------------
 01. common CSS
----------------------------------------*/
/* Hero section styling */
.hero-section {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh; /* Full viewport height */
}

/* Video background styling */
.video-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1; /* Place video behind content */
  background-color: #000; /* Fallback color */
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto; /* Adjust height proportionally to reduce zoom */
  object-fit: cover;
  transform: translate(-50%, -50%);
}

/* Hero content styling */
.hero-section .content {
  position: relative;
  z-index: 1;
  color: #fff;
  text-align: center;
  padding-top: 200px;
}

/* Main content styling for scrolling */
.main-content {
  padding: 60px 20px;
  background-color: #f3f3f3;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
  color: #333;
}
/* Media query for mobile devices */
@media (max-width: 768px) {
  .header-section {
    height: 80px; /* Adjusted header height for mobile */
  }

  .hero-section {
    height: calc(100vh - 80px); /* Full viewport minus adjusted header height */
    margin-top: 80px; /* Offset for adjusted header height */
  }

  .video-background video {
    object-fit: cover; /* Use cover to fill the section on mobile */
  }
}



@import url("../../../../../css2-1");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--bd-ff-body);
  font-size: 16px;
  font-weight: normal;
  color: #0e202a;
  line-height: 26px;
}

.black-body {
  background-color: black;
  z-index: -1;
}

a {
  text-decoration: none;
}

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

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

span,
p,
i,
input,
select,
textarea,
li,
img,
svg path,
*::after,
*::before,
.transition-3 {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

a,
.btn,
button {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

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

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

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

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bd-ff-body);
  color: var(--clr-common-body-text);
  margin-top: 0px;
  font-weight: 500;
  line-height: 1.2;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

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

p {
  font-size: 16px;
  font-weight: normal;
  color: #0e202a;
  margin-bottom: 15px;
  line-height: 28px;
}

*::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::-moz-selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

::selection {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  text-shadow: none;
}

/*--- Input Placeholder
-----------------------------------------*/
*::-moz-placeholder {
  color: var(--clr-common-placeholder);
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: var(--clr-common-placeholder);
  font-size: 16px;
  opacity: 1;
}

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

.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

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

.dark-grey-bg {
  background: var(--clr-bg-5);
}

.soft-white-bg {
  background-color: var(--clr-bg-2);
}

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

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

.soft-black-bg {
  background: var(--clr-bg-4);
}

.d-black-bg {
  background: var(--clr-common-body-text);
}

.footer-bg {
  background: var(--clr-bg-3);
}

/*--- color
-----------------------------------------*/
.text-white h1,
.text-white h2,
.text-white h3,
.text-white h4,
.text-white h5,
.text-white h6,
.text-white p,
.text-white span,
.text-white li,
.text-white a {
  color: var(--clr-common-white) !important;
}

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

.theme-color {
  color: var(--clr-common-black) !important;
}

.black-color {
  color: var(--clr-common-black);
}

.body-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.body-overlay:hover {
  cursor: pointer;
}

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

/*----------------------------------------
progress wrap 
-----------------------------------------*/
@media (max-width:450px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .progress-wrap {
    right: 15px;
    bottom: 15px;
  }
}

:root {
  /**
    @color declaration
  */
  --clr-common-white: #fff;
  --clr-common-soft-white: #D9D9D9;
  --clr-common-gray: #F5F5F5;
  --clr-common-body-text: #0E202A;
  --clr-common-black: #000;
  --clr-common-blue: #2785ff;
  --clr-common-text: #777777;
  --clr-common-border: #414141;
  --clr-common-paragraph-color: #646464;
  --clr-common-placeholder: #646464;
  --clr-theme-1: #00B67A;
  --clr-theme-2: #F0F7FD;
  --clr-theme-3: #f8f5f0;
  --clr-bg-1: #F5F5F5;
  --clr-bg-2: #F0F7FD;
  --clr-bg-3: #f6f6f6;
  --clr-bg-4: #0A0A0A;
  --clr-bg-5: #F7F7F7;
  /**
  @font family declaration
  */
  --bd-ff-body: 'Sora', sans-serif;
  --bd-ff-heading: 'Sora', sans-serif;
  --bd-ff-fontawesome: "Font Awesome 5 Pro";
  /**
  @font weight declaration
  */
  --bd-fw-normal: normal;
  --bd-fw-thin: 100;
  --bd-fw-elight: 200;
  --bd-fw-light: 300;
  --bd-fw-regular: 400;
  --bd-fw-medium: 500;
  --bd-fw-sbold: 600;
  --bd-fw-bold: 700;
  --bd-fw-ebold: 800;
  --bd-fw-black: 900;
  /**
  @font size declaration
  */
  --bd-fs-body: 16px;
  --bd-fs-p: 16px;
  --bd-fs-h1: 80px;
  --bd-fs-h2: 50px;
  --bd-fs-h3: 24px;
  --bd-fs-h4: 20px;
  --bd-fs-h5: 16px;
  --bd-fs-h6: 14px;
}

.hr1 {
  border-bottom: 1px solid #dcdcdc;
}

/*----------------------------------------
Bootstrap customize
-----------------------------------------*/
.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  width: 100%;
  margin-inline-end: auto;
  margin-inline-start: auto;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  --bs-gutter-x: 30px;
}

.row {
  --bs-gutter-x: 30px;
}

@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}
@media (min-width: 1400px) {
  .container-big {
    max-width: 1800px;
  }
}
/*----------------------------------------
Gutter customize
-----------------------------------------*/
.g-20 {
  --bs-gutter-x: 25px;
}

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

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem;
}

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

/*----------------------------------------
   Mfp customize
-----------------------------------------*/
.mfp-iframe-holder .mfp-content {
  line-height: 0;
  width: 100%;
  max-width: 1280px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 1050px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .mfp-iframe-holder .mfp-content {
    max-width: 820px;
  }
}

.mfp-close {
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.mfp-close:hover {
  color: var(--clr-common-white);
}
.mfp-close::after {
  position: absolute;
  content: "\f00d";
  height: 100%;
  width: 100%;
  font-family: var(--bd-ff-fontawesome);
  font-size: 36px;
  font-weight: 300;
  right: -35px;
  margin-top: -25px;
}

.mfp-iframe-scaler iframe {
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  -ms-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15);
}

.mfp-bg {
  opacity: 0.8;
  background: #212121 !important;
}

--qodef-tab-width {
  width: 200px;
}

/*----------------------------------------
  Basic pagination
-----------------------------------------*/
.basic-pagination ul {
  display: inline-flex;
  gap: 15px;
  flex-wrap: wrap;
}
.basic-pagination li {
  list-style: none;
}
.basic-pagination li a, .basic-pagination li span {
  background: var(--clr-common-gray);
  width: 45px;
  height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  text-transform: capitalize;
  color: var(--clr-common-black);
}
.basic-pagination ul li a:hover,
.basic-pagination ul li span.current {
  background: var(--clr-theme-1);
  color: var(--clr-theme-2);
}

/*----------------------------------------
  Input RTl customize
-----------------------------------------*/
[dir=rtl] [type=tel],
[dir=rtl] [type=url],
[dir=rtl] [type=email],
[dir=rtl] [type=number] {
  direction: rtl;
}

/*----------------------------------------
06. Animation CSS
----------------------------------------*/
@-webkit-keyframes bd-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes bd-rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes section_stroke {
  0% {
    stroke-dashoffset: 560;
  }
  50% {
    stroke-dashoffset: 0;
  }
  100% {
    stroke-dashoffset: -560;
  }
}
@keyframes UpToDown {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(30px);
  }
  100% {
    transform: translateY(0px);
  }
}
@keyframes rightToLeft {
  0% {
    transform: translateX(700px);
  }
  100% {
    transform: translateX(-1100px);
  }
}
@keyframes DownToUp {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-30px);
  }
  100% {
    transform: translateY(0px);
  }
}
.swiper-slide-active .slider-title, .swiper-slide-active .slider-sub-title, .swiper-slide-active .slider-content p, .swiper-slide-active .slider-content .bd-btn {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.swiper-slide-active .slider-title {
  animation-delay: 0.6s;
  animation-duration: 0.8s;
}

.swiper-slide-active .slider-sub-title {
  animation-delay: 0.8s;
  animation-duration: 1s;
}

.swiper-slide-active .slider-content p {
  animation-delay: 1s;
  animation-duration: 1.2s;
}

.swiper-slide-active .slider-content .bd-btn {
  animation-delay: 1.4s;
  animation-duration: 1.3s;
}

.single-slide-2 .slider-title-2, .single-slide-2 .slider-shape-svg, .single-slide-2 .slider-content-2 .slider-sub-title-2, .single-slide-2 .slider-content-2 .slider-btn {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.single-slide-2 .slider-title-2 {
  animation-delay: 0.6s;
  animation-duration: 0.8s;
}

.single-slide-2 .slider-shape-svg {
  animation-delay: 0.8s;
  animation-duration: 1s;
}

.single-slide-2 .slider-sub-title-2 {
  animation-delay: 1s;
  animation-duration: 1.2s;
}

.single-slide-2 .slider-btn {
  animation-delay: 1.4s;
  animation-duration: 1.3s;
}

.slider-wrap-3 .slider-title-3, .slider-wrap-3 .slider-btn-3 {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.slider-wrap-3 .slider-title-3 {
  animation-delay: 0.6s;
  animation-duration: 0.8s;
}

.slider-wrap-3 .slider-btn-3 {
  animation-delay: 0.8s;
  animation-duration: 1s;
}

.swiper-slide-active .slider-title-2, .swiper-slide-active .slider-sub-title, .swiper-slide-active .slider-content p, .swiper-slide-active .slider-content .white-bd-btn {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.swiper-slide-active .slider-title-2 {
  animation-delay: 0.6s;
  animation-duration: 0.8s;
}

.swiper-slide-active .slider-sub-title-2 {
  animation-delay: 0.8s;
  animation-duration: 1s;
}

.swiper-slide-active .slider-content .white-bd-btn {
  animation-delay: 1s;
  animation-duration: 1.3s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -webkit-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }
  70% {
    -moz-box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 45px rgba(255, 255, 255, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
/*----------------------------------------
25. Section-title CSS
----------------------------------------*/
.lg-mb-30 {
  margin-bottom: 30px;
}

.section-title {
  font-size: 50px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--clr-common-body-text);
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .section-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .section-title {
    font-size: 30px;
  }
}
@media (max-width:450px) {
  .section-title {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title br {
    display: none;
  }
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: #0e202a;
  display: inline-block;
  margin-bottom: 28px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-subtitle {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width:450px), (max-width: 575px) {
  .section-subtitle {
    margin-bottom: 10px;
  }
}

.section-wrapper p {
  font-size: 16px;
  font-weight: 400;
  /* text-transform: capitalize; */
  color: #0e202a;
}

.section-white .section-subtitle {
  color: var(--clr-common-white);
}
.section-white .section-title {
  color: var(--clr-bg-2);
  margin-bottom: 38px;
}
.section-white p {
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-bg-2);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-btn {
    margin-left: 395px;
    margin-bottom: 50px;
  }
}

.section-title-2 {
  font-size: 50px;
  font-weight: 400;
  /* text-transform: capitalize; */
  color: var(--clr-common-body-text);
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .section-title-2 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .section-title-2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title-2 {
    font-size: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-2 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .section-title-2 {
    font-size: 30px;
  }
}
@media (max-width:450px) {
  .section-title-2 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title-2 br {
    display: none;
  }
}

.section-subtitle-2 {
  font-size: 16px;
  font-weight: 400;
  /* text-transform: capitalize; */
  color: #0e202a;
  display: inline-block;
  margin-bottom: 28px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-subtitle-2 {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width:450px), (max-width: 575px) {
  .section-subtitle-2 {
    margin-bottom: 10px;
  }
}

.section-white .section-title-2 {
  color: var(--clr-bg-2);
}
.section-white .section-subtitle-2 {
  color: var(--clr-common-white);
}
.section-white p {
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-bg-2);
  /* text-transform: capitalize; */
}

.section-title-3 {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .section-title-3 {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .section-title-3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title-3 {
    font-size: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-title-3 {
    font-size: 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .section-title-3 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .section-title-3 {
    font-size: 30px;
  }
}
@media (max-width:450px) {
  .section-title-3 {
    font-size: 26px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .section-title-3 br {
    display: none;
  }
}
@media (max-width:450px), (max-width: 575px) {
  .section-title-3 br {
    display: none;
  }
}

.section-subtitle-3 {
  font-size: 16px;
  font-weight: 400;
  /* text-transform: capitalize; */
  color: #0e202a;
  display: inline-block;
  margin-bottom: 28px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .section-subtitle-3 {
    margin-bottom: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width:450px), (max-width: 575px) {
  .section-subtitle-3 {
    margin-bottom: 10px;
  }
}

.section-sub-title-3 {
  background: var(--clr-theme-1);
  border-radius: 50px;
  text-align: center;
  margin-bottom: 26px;
  display: inline-block;
  padding: 5px 20px;
  font-size: 16px;
  color: var(--clr-theme-2);
  /* text-transform: capitalize; */
  font-weight: 400;
  line-height: 28px;
}

.section-title-style {
  text-align: center;
  /* text-transform: capitalize; */
  background: linear-gradient(90.02deg, rgba(14, 32, 42, 0) 0.02%, #071015 49.79%, rgba(0, 0, 0, 0) 99.55%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  font-size: 75px;
  line-height: 1.2;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .section-title-style {
    font-size: 60px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .section-title-style {
    font-size: 46px;
  }
}
@media (max-width:450px) {
  .section-title-style {
    font-size: 36px;
  }
}

.details-section-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  /* text-transform: capitalize; */
}

.details-section-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  /* text-transform: capitalize; */
  color: #0e202a;
}

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

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

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

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

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

.mean-container .mean-nav ul li a {
  width: 100%;
  padding: 10px 0;
  color: var(--clr-common-body-text);
  font-size: 18px;
  line-height: 1.5;
  font-weight: 500;
  /* text-transform: capitalize; */
  border-top: 1px solid var(--clr-common-body-text);
}
.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--clr-theme-1);
}

.mean-container .mean-nav ul li a.mean-expand {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-common-body-text);
  top: 0;
  font-weight: 400;
  font-size: 20px;
}

.mean-container .mean-nav ul li > a > i {
  display: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 20px;
}

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

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

.mean-container .mean-nav ul li a.mean-expand.mean-clicked i {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

/*----------------------------------------
18. Menu CSS
----------------------------------------*/
.main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 45px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .main-menu ul li {
    margin-inline-end: 35px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-menu ul li {
    margin-inline-end: 30px;
  }
}
.main-menu ul li:last-child {
  margin-inline-end: 0;
}
.main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  color: var(--clr-common-body-text);
  padding: 37px 0;
  font-weight: 400;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-transform: capitalize;
  line-height: 1;
}
.main-menu ul li.has-dropdown > a {
  position: relative;
}
.main-menu ul li .submenu {
  position: absolute;
  top: 120%;
  inset-inline-start: 0;
  width: 240px;
  background: var(--clr-common-body-text);
  border-top: 3px solid var(--clr-theme-1);
  padding: 15px 25px 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  -webkit-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  -moz-box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  box-shadow: 0px 30px 70px 0px rgba(11, 6, 70, 0.08);
  visibility: hidden;
  opacity: 0;
  z-index: 50;
}
.main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.main-menu ul li .submenu li:not(:last-child) {
  border-bottom: 1px solid var(--clr-border-1);
}
.main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  right: 25px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .submenu li > a {
  width: 100%;
  display: block;
  padding: 14px 0px;
  /* text-transform: capitalize; */
  color: var(--clr-common-white);
  position: relative;
}
.main-menu ul li .submenu li > a::after {
  right: 30px;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  -moz-transform: translateY(-50%) rotate(-90deg);
  -ms-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}
.main-menu ul li .submenu li > a::before {
  display: none;
}
.main-menu ul li .submenu li .submenu {
  inset-inline-start: 120%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.main-menu ul li .submenu li:hover > a {
  color: var(--clr-theme-1);
}
.main-menu ul li .submenu li:hover > a::after {
  color: var(--clr-common-body-text);
  -webkit-transform: translateY(-6px) rotate(45deg);
  -moz-transform: translateY(-6px) rotate(45deg);
  -ms-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
}
.main-menu ul li .submenu li:hover > a::before {
  inset-inline-start: 0;
  right: auto;
  width: 100%;
}
.main-menu ul li .submenu li:hover > .submenu {
  inset-inline-start: 100%;
  visibility: visible;
  opacity: 1;
}
.main-menu ul li:hover > a {
  color: var(--clr-theme-1);
}
.main-menu ul li:hover > .submenu {
  top: 100%;
  visibility: visible;
  opacity: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu-2 ul li {
    margin-inline-end: 35px;
  }
}
.main-menu.is-white.main-menu ul li a {
  color: var(--clr-common-white);
}
.main-menu.is-white.main-menu ul li:hover > a {
  color: var(--clr-theme-1);
}

/*----------------------------------------
09. BUTTONS CSS
----------------------------------------*/
.bd-btn {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-common-body-text);
  /* text-transform: capitalize; */
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  z-index: 9;
  line-height: 1;
}
.bd-btn:hover {
  color: var(--clr-common-body-text);
}
.bd-btn:hover i {
  transform: rotate(45deg);
}
[dir=rtl] .bd-btn:hover i {
  transform: rotate(-135deg) translateY(2px);
}
.bd-btn:hover::before {
  width: 100%;
}
.bd-btn::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  height: 1px;
  width: 0;
  bottom: -3px;
  background-color: var(--clr-common-body-text);
  transition: all 0.3s linear;
}
.bd-btn i {
  margin-inline-start: 3px;
  display: inline-block;
  font-size: 24px;
  color: var(--clr-common-body-text);
  transform: translateY(2px);
}
[dir=rtl] .bd-btn i {
  transform: rotate(-90deg) translateY(2px);
}

.white-bd-btn {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-bg-2);
  /* text-transform: capitalize; */
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.white-bd-btn:hover {
  color: var(--clr-bg-2);
}
.white-bd-btn:hover i {
  transform: rotate(45deg);
}
[dir=rtl] .white-bd-btn:hover i {
  transform: rotate(-135deg) translateY(2px);
}
.white-bd-btn:hover::before {
  width: 100%;
}
.white-bd-btn::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  height: 2px;
  width: 0;
  bottom: -3px;
  background-color: var(--clr-bg-2);
  transition: all 0.3s linear;
}
.white-bd-btn i {
  font-size: 20px;
  color: var(--clr-bg-2);
  transform: translateY(2px);
}
[dir=rtl] .white-bd-btn i {
  transform: rotate(-90deg) translateY(2px);
}

.white-bd-btn-2 {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-bg-2);
  /* text-transform: capitalize; */
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.white-bd-btn-2:hover {
  color: var(--clr-bg-2);
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}
.white-bd-btn-2:hover i {
  transform: rotate(45deg);
}
[dir=rtl] .white-bd-btn-2:hover i {
  transform: rotate(-135deg) translateY(2px);
}
.white-bd-btn-2 i {
  margin-inline-start: 3px;
  display: inline-block;
  font-size: 24px;
  color: var(--clr-bg-2);
  transform: translateY(2px);
}
[dir=rtl] .white-bd-btn-2 i {
  transform: rotate(-90deg) translateY(2px);
}

.b-border {
  position: relative;
}

.b-border::after {
  position: absolute;
  content: "";
  border-bottom: 1px solid #D9D9D9;
  width: 100%;
}

.border-left {
  position: relative;
}
.border-left:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  background: #eaebee;
  inset-inline-start: 0;
  top: 0;
}

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

/*----------------------------------------
02. header CSS
----------------------------------------*/
.bd-sticky.header-sticky {
  background-color: var(--clr-common-body-text);
}

.bd-sticky-2.header-sticky {
  background-color: var(--clr-theme-2);
}

.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99;
}

.header-sticky {
  position: fixed !important;
  left: 0;
  margin: auto;
  top: 0;
  width: 100%;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.07);
  z-index: 99;
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  -webkit-box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
  box-shadow: 0px 4px 10px rgba(3, 4, 28, 0.1);
  transition: 0.9s;
}

.header-sticky.header-area {
  padding-top: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-sticky.header-area {
    padding: 20px 0;
  }
}
.header-sticky .main-menu ul li a {
  color: var(--clr-common-white);
}
.header-sticky .bar-icon span {
  width: 100%;
  height: 2px;
  background: var(--clr-common-white);
  display: inline-block;
}
.header-sticky .header-search input {
  border: 1px solid var(--clr-common-white);
  color: var(--clr-common-white);
}
.header-sticky .header-logo-black {
  display: none;
}
.header-sticky .header-search-btn i {
  color: var(--clr-common-white);
}
.header-sticky .header-spaces {
  padding-top: 25px;
  padding-bottom: 28px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-sticky .header-spaces {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.header-sticky.header-area-3 {
  padding-bottom: 25px;
  padding-top: 25px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-sticky.header-area-3 {
    padding-bottom: 15px;
    padding-top: 15px;
  }
}
.header-sticky.header-area-4 {
  padding-top: 0;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-sticky.header-area-4 {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
.header-sticky .header-logo-white {
  display: block;
}
.header-sticky .header-logo-normal {
  display: block;
}
.header-sticky .header-logo-clip {
  display: none;
}
.header-sticky .header-logo-4 {
  clip-path: none;
  background: none;
  padding: 0;
  margin-top: 0px;
}

.header-logo-white {
  display: none;
}

.bar-icon-1 {
  width: 35px;
  height: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.bar-icon-1 span {
  width: 100%;
  height: 2px;
  background: var(--clr-common-body-text);
  display: inline-block;
}
.bar-icon-1 span:nth-child(3) {
  margin-inline-start: 15px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bar-icon-1:hover span:nth-child(3) {
  margin-inline-start: 0;
}
.bar-icon-1.is-color-black span {
  background: rgb(0, 0, 0);
}
.bar-icon-1.is-color-black:hover span {
  background: var(--clr-common-black);
}

.bar-icon {
  width: 30px;
  height: 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}
.bar-icon span {
  width: 100%;
  height: 2px;
  background: var(--clr-common-body-text);
  display: inline-block;
}
.bar-icon span:nth-child(3) {
  margin-inline-start: 10px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bar-icon:hover span:nth-child(3) {
  margin-inline-start: 0;
}
.bar-icon.is-white span {
  background: var(--clr-common-white);
}
.bar-icon.is-black span {
  background: rgb(240, 247, 253);
}
.bar-icon.is-black:hover span {
  background: var(--clr-common-white);
}
.bar-icon.is-color-black span {
  background: rgb(0, 0, 0);
}
.bar-icon.is-color-black:hover span {
  background: var(--clr-common-black);
}

.header-area {
  padding-top: 20px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-area {
    padding-top: 30px;
  }
}
.header-area .container {
  max-width: 1590px;
  margin: 0 auto;
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-main {
    display: block;
  }
}

.header-left {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: space-between;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-left {
    flex-direction: row-reverse;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0px 66px;
}

.header-search {
  position: relative;
}
.header-search input {
  border-radius: 28px;
  background: transparent;
  border: 1px solid var(--clr-common-black);
  width: 100%;
  height: 55px;
  padding-inline-start: 25px;
  padding-inline-end: 50px;
  position: relative;
  color: var(--clr-common-black);
  outline: 0;
}
.header-search input:focus-visible {
  border: 1px solid var(--clr-theme-1);
}
.header-search.is-white input {
  border: 1px solid var(--clr-common-white);
  color: var(--clr-common-white);
}
.header-search.is-white input:focus-visible {
  border: 1px solid var(--clr-theme-1);
}
.header-search.is-white .header-search-btn i {
  color: var(--clr-common-white);
}

.header-search-btn {
  position: absolute;
  top: 17px;
  inset-inline-end: 25px;
}
.header-search-btn i {
  color: var(--clr-common-body-text);
}

.header-logo-2 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
}
@media (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-logo-2 {
    inset-inline-start: 95%;
    transform: translateX(-100%);
  }
  [dir=rtl] .header-logo-2 {
    inset-inline-start: 81%;
    transform: translateX(-100%);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-logo-2 {
    inset-inline-start: 95%;
    transform: translateX(-100%);
  }
  [dir=rtl] .header-logo-2 {
    inset-inline-start: 75%;
    transform: translateX(-100%);
  }
}
@media (max-width: 575px) {
  [dir=rtl] .header-logo-2 {
    inset-inline-start: 67%;
    transform: translateX(50%);
  }
}
@media (max-width:450px) {
  [dir=rtl] .header-logo-2 {
    inset-inline-start: 67%;
    transform: translateX(50%);
  }
}

.header-spaces {
  padding-top: 40px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-spaces {
    padding-top: 25px;
  }
}

.header-menu-bar-3 {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-title-3 {
  color: rgb(240, 247, 253);
  margin-inline-start: 25px;
  margin-top: -3px;
  cursor: pointer;
}

.header-area-3 {
  padding-top: 30px;
}

.header-logo-normal {
  display: none;
}

.header-area-4 {
  padding-top: 10px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .header-area-4 {
    padding: 15px 0;
  }
}

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

.header-right-4 {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 65px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .header-right-4 {
    gap: 35px;
  }
}

.header-action-2 {
  display: flex;
  align-items: center;
  gap: 30px 65px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .header-action-2 {
    gap: 30px 45px;
  }
}

.header-logo-4 {
  clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 100% 100%, 50% 70%, 0 100%, 0 70%);
  background: var(--clr-common-white);
  padding: 40px 20px 50px;
  width: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -20px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width:450px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .header-logo-4 {
    padding: 10px 18px;
    clip-path: none;
    margin-top: 0;
  }
}

.search-btn-4 a {
  height: 55px;
  border: 1px solid var(--clr-theme-2);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px 30px;
}
.search-btn-4 a:hover {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}

.sidebar-nav-wrapper {
  transition: all 0.7s ease-in;
  position: relative;
  width: 100%;
  z-index: 999;
}
.sidebar-nav-wrapper::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.sidebar-nav-wrapper .sidebar-menu-contact {
  gap: 35px;
}
.sidebar-nav-wrapper .sidebar-menu-contact a {
  width: 45px;
  text-align: center;
}
.sidebar-nav-wrapper .mobile-logo-area .header-logo {
  max-width: 120px;
}
.sidebar-nav-wrapper .main-nav-js {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 30px 5% !important;
  z-index: 99;
  height: 100%;
  overflow-y: auto;
  box-shadow: 4px 3px 20px rgba(16, 33, 34, 0.06);
  transition: all 0.7s;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-10vh);
  opacity: 0;
  visibility: hidden;
  background: url("../img/bg/noise-transparent-1.png") repeat 0 0;
  background-repeat: repeat;
  background-color: #101010;
  gap: 30px;
  scrollbar-width: none;
}
.sidebar-nav-wrapper .main-nav-js::-webkit-scrollbar {
  display: none;
  width: 5px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-nav-wrapper .main-nav-js {
    min-width: 100%;
    justify-content: flex-start;
  }
}
.sidebar-nav-wrapper .main-nav-js::before {
  content: "Explore Pages.";
  position: absolute;
  top: 45%;
  inset-inline-end: 10%;
  transform: translateY(-50%);
  display: block;
  font-size: 220px;
  font-weight: 500;
  line-height: 1;
  color: #ACACAC;
  opacity: 0.1;
  z-index: 1;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: 0;
  height: 300px;
  letter-spacing: 5px;
  text-align: right;
  z-index: -1;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-nav-wrapper .main-nav-js::before {
    display: none;
    visibility: hidden;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sidebar-nav-wrapper .main-nav-js::before {
    font-size: 200px;
  }
}
.sidebar-nav-wrapper .main-nav-js::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.sidebar-nav-wrapper .main-nav-js::-webkit-scrollbar-thumb {
  background: #999;
}
.sidebar-nav-wrapper .main-nav-js::-webkit-scrollbar-thumb:hover {
  background: var(--border-color);
}
.sidebar-nav-wrapper .main-nav-js .menu-close-btn {
  cursor: pointer;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  color: #ACACAC;
}
.sidebar-nav-wrapper .main-nav-js .menu-close-btn:hover {
  color: var(--clr-theme-1);
}
.sidebar-nav-wrapper .main-nav-js .menu-close-btn svg {
  width: 25px;
}
.sidebar-nav-wrapper .main-nav-js .sidebar-nav-wrapper .main-nav-js .menu-close-btn {
  cursor: pointer;
  padding: 5px;
  opacity: 0.8;
  font-size: 40px;
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul {
  float: none;
  text-align: left;
  padding: 50px 0;
  margin-bottom: 0;
  width: 100%;
  max-width: 500px;
  margin-inline-start: 0;
  margin-inline-end: auto;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul {
    padding: 40px 0 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul {
    max-width: 100%;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul {
    padding: 45px 0 35px;
  }
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li {
  display: block;
  position: relative;
  padding: 5px;
  transition: all 0.2s;
  transform: translateY(50px) scaleY(0);
  opacity: 0;
  margin-bottom: 15px;
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li:last-child {
  border-bottom: 1px solid transparent;
  margin-bottom: 0;
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li:hover a:before {
  width: 100%;
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li > .bi {
  position: absolute;
  right: 40px;
  top: 15px;
  font-size: 36px;
  cursor: pointer;
  color: #ACACAC;
  font-family: var(--bd-ff-fontawesome);
  font-weight: 300;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li > .bi {
    right: 5px;
  }
}
@media (max-width: 575px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li > .bi {
    top: 12px;
    font-size: 30px;
  }
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li a {
  padding: 4px 0;
  display: inline-block;
  font-size: 4rem;
  font-weight: 500;
  color: #ACACAC;
  font-style: normal;
  text-decoration: none;
  transition: all 0.55s ease;
  position: relative;
  text-transform: uppercase;
  line-height: 1;
}
@media (max-width: 575px), (max-width:450px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li a {
    font-size: 2.1rem;
  }
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li a::before {
  overflow: hidden;
  position: absolute;
  top: 5px;
  inset-inline-start: 0;
  width: 0;
  color: #ACACAC;
  white-space: nowrap;
  content: attr(data-hover);
  transition: all 0.8s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li a::before {
    color: white;
    content: "";
  }
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li ul.sub-menu {
  position: static;
  min-width: 180px;
  background: 0 0;
  border: none;
  opacity: 1;
  visibility: visible;
  box-shadow: none;
  transform: none;
  transition: none;
  display: none;
  list-style: none;
  padding-left: 20px;
  margin-top: 25px;
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li ul.sub-menu li {
  opacity: 1;
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li ul.sub-menu li a {
  font-size: 22px;
  font-weight: 400;
  padding: 15px 5px;
  font-style: normal;
  text-transform: uppercase;
  -webkit-text-stroke: unset;
  -webkit-text-fill-color: unset;
  color: #ACACAC;
  width: 100%;
}
@media (max-width:450px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li ul.sub-menu li a {
    font-size: 18px;
  }
}
.sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li ul.sub-menu li a:hover {
  color: var(--clr-theme-1);
}
.sidebar-nav-wrapper .main-nav-js.show-menu {
  transform: none;
  opacity: 1;
  visibility: visible;
}
.sidebar-nav-wrapper .uesr-aera {
  width: 70px;
  height: 70px;
  line-height: 72px;
  border-radius: 50%;
  text-align: center;
  background: var(--primary-color2);
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
}
.sidebar-nav-wrapper .uesr-aera .bi {
  font-size: 35px;
  color: var(--text-primary);
}
.sidebar-nav-wrapper .mobile-menu {
  position: relative;
  top: 2px;
  padding: 0 5px;
  border-radius: 50%;
  display: inline-block;
}

.main-page-wrapper {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  position: relative;
}
.main-page-wrapper .left-fixed-image {
  width: 700px;
  position: fixed;
  top: 0;
  left: 0;
  max-height: 100vh;
  height: 100%;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .main-page-wrapper .left-fixed-image {
    width: 550px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-page-wrapper .left-fixed-image {
    width: 400px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .main-page-wrapper .left-fixed-image {
    width: 300px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .main-page-wrapper .left-fixed-image {
    display: none;
    visibility: none;
  }
}
.main-page-wrapper .left-fixed-image img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100% !important;
}

@-webkit-keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateY(50px) scaleY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
@keyframes navLinkFade {
  from {
    opacity: 0;
    transform: translateY(50px) scaleY(0);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleY(1);
  }
}
@supports (-webkit-text-stroke: 1px #ACACAC) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li a {
    -webkit-text-stroke: 1px #ACACAC;
    color: transparent;
  }
  @media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
    .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li a {
      -webkit-text-stroke: 0;
      color: #ACACAC;
    }
  }
}
.offcanvas__close .menu-close-btn {
  cursor: pointer;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  color: var(--clr-common-body-text);
  padding: 3px;
}
.offcanvas__close .menu-close-btn:hover {
  color: var(--clr-theme-1);
}
.offcanvas__info {
  background: var(--clr-common-white) none repeat scroll 0 0;
  position: fixed;
  top: 0;
  width: 450px;
  height: 100%;
  inset-inline-start: -490px;
  transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
  backdrop-filter: blur(37px);
}
.offcanvas__info::-webkit-scrollbar {
  display: none;
}
@media (max-width:450px) {
  .offcanvas__info {
    width: 320px;
  }
}
.offcanvas__info.info-open {
  opacity: 1;
  inset-inline-start: 0;
}
.offcanvas__logo a img {
  max-width: 100%;
}
.offcanvas__wrapper {
  position: relative;
  height: 100%;
  position: relative;
  height: 100%;
  padding: 50px 50px;
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 30px 30px;
  }
}
.offcanvas__top {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--clr-border-3);
}
.offcanvas__title {
  font-size: 24px;
  margin-bottom: 20px;
  /* text-transform: capitalize; */
  color: var(--clr-common-body-text);
}
.offcanvas__contact {
  margin-bottom: 20px;
}
.offcanvas__contact-text p {
  margin-bottom: 10px;
}
.offcanvas__contact-text p a {
  color: var(--clr-common-body-text);
}
.offcanvas__contact-text p a:hover {
  color: var(--clr-theme-1);
}
.offcanvas__contact-text span a {
  color: var(--clr-common-body-text);
}
.offcanvas__contact-text span a:hover {
  color: var(--clr-theme-1);
}
.offcanvas__social {
  margin-bottom: 30px;
}
.offcanvas__social ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  /* flex-wrap: wrap; */
  gap: 10px 10px;
}
.offcanvas__social ul li {
  list-style: none;
}
.offcanvas__social ul li a {
  color: var(--clr-common-body-text);
}
.offcanvas__social ul li a:hover {
  color: var(--clr-theme-1);
}
.offcanvas__devider {
  border-bottom: 1px solid var(--clr-common-body-text);
  margin-bottom: 20px;
}
.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: var(--clr-common-black);
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.offcanvas__overlay.overlay-open {
  opacity: 0.5;
  visibility: visible;
}

.bd-search-popup-area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 99999;
  min-height: 300px;
  align-items: center;
  background-color: var(--clr-common-body-text);
  transform: translateY(-10%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-search-popup-area.bd-search-opened {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
}

.bd-search-popup {
  width: 100%;
  font-size: 64px;
  padding-bottom: 17px;
}

.bd-search-form {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}

.bd-search-input {
  background-color: transparent;
  display: flex;
  align-items: center;
}
.bd-search-input input {
  width: 100%;
  border: 0;
  color: var(--clr-common-white);
  height: 70px;
  background-color: transparent;
  font-size: 36px;
  font-weight: 400;
  outline: 0;
  border-bottom: 1px solid var(--clr-common-border);
  padding: 0 55px;
}
.bd-search-input input:focus {
  border-color: var(--clr-common-white);
}
.bd-search-input input::placeholder {
  font-size: 36px;
}
.bd-search-input input::selection {
  color: var(--clr-theme-1);
}

.bd-search-submit {
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
}
.bd-search-submit button {
  color: var(--clr-common-white);
  font-size: 35px;
  position: relative;
  transform: translateY(-10px);
  color: var(--clr-common-white);
  font-size: 35px;
  position: relative;
  transform: translateY(-10px);
}

.bd-search-close-btn {
  position: absolute;
  inset-inline-end: 0;
  top: 40%;
  transform: translateY(-50%);
}
.bd-search-close-btn button {
  color: var(--clr-common-white);
  cursor: pointer;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  padding: 3px;
}

.bd-search-overlay {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  z-index: 9998;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  -moz-backdrop-filter: blur(10px);
  transition-delay: 0.3s;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-search-overlay.bd-search-opened {
  opacity: 1;
  visibility: visible;
}

.bd-search-open-btn i {
  color: var(--clr-common-white);
  font-size: 20px;
  line-height: 1;
}

.search-close-icon {
  cursor: pointer;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  color: var(--clr-common-white);
}
.search-close-icon:hover {
  color: var(--clr-theme-1);
}

/*----------------------------------------
03. slider CSS
----------------------------------------*/
.slider-height {
  min-height: 960px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: end;
  padding-top: 120px;
  padding-bottom: 255px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-height {
    padding-bottom: 250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height {
    padding-bottom: 200px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-height {
    min-height: 790px;
    padding-top: 120px;
    padding-bottom: 200px;
  }
}
.slider-height-2 {
  min-height: 950px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 215px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-height-2 {
    min-height: 850px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height-2 {
    min-height: 750px;
    padding-top: 150px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-height-2 {
    min-height: 650px;
    padding-top: 150px;
  }
}
@media (max-width: 575px) {
  .slider-height-2 {
    min-height: 650px;
    padding-top: 100px;
  }
}
.slider-height-3 {
  min-height: 900px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  align-items: end;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-height-3 {
    min-height: 750px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-height-3 {
    min-height: 650px;
    padding-bottom: 0;
    align-items: center;
  }
}
.slider-height-4 {
  min-height: 960px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  padding: 150px 0px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .slider-height-4 {
    min-height: 900px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-height-4 {
    min-height: 850px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height-4 {
    min-height: 750px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-height-4 {
    min-height: 680px;
  }
}

.single-slide {
  position: relative;
  z-index: 1;
}
.single-slide::before {
  background: linear-gradient(180deg, #FAF9DF 0%, rgba(250, 249, 223, 0.2) 100%);
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider-title {
  font-size: 226px;
  font-weight: 500;
  color: var(--clr-common-white);
  line-height: 1;
  margin-bottom: 0;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .slider-title {
    font-size: 200px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .slider-title {
    font-size: 180px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-title {
    font-size: 170px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-title {
    font-size: 180px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-title {
    font-size: 135px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-title {
    font-size: 130px;
  }
}
@media (max-width: 575px) {
  .slider-title {
    font-size: 100px;
    margin-bottom: 20px;
  }
}
@media (max-width:450px) {
  .slider-title {
    font-size: 80px;
  }
}
.slider-sub-title {
  font-size: 75px;
  font-weight: 600;
  color: var(--clr-common-body-text);
  text-transform: uppercase;
  margin-bottom: 27px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .slider-sub-title {
    font-size: 65px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .slider-sub-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-sub-title {
    font-size: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-sub-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-sub-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-sub-title {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .slider-sub-title {
    font-size: 32px;
  }
}
.slider-content p {
  margin-bottom: 55px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-content p {
    margin-bottom: 45px;
  }
}
.slider-shape {
  position: absolute;
  top: -100px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  text-align: center;
  margin: 0 auto;
  -webkit-animation: bd-rotate 15s linear infinite;
  animation: bd-rotate 15s linear infinite;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-shape {
    display: none;
  }
}
.slider-shape img {
  width: 170px;
}
.slider-wrap-2 {
  margin-inline-end: -100px;
  margin-top: 50px;
}
@media (max-width: 575px) {
  .slider-wrap-2 {
    margin-inline-end: 0px;
    margin-top: 100px;
  }
}

.slider-content-2 {
  margin-top: 225px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-content-2 {
    margin-top: 180px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-content-2 {
    margin-top: 0;
  }
}

.slider-wrapper .slider-pagination {
  position: absolute;
  bottom: 75px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 9;
}
.slider-wrapper .slider-pagination .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background-color: #0e202a;
  position: relative;
  z-index: 1;
  outline-offset: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 0 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .slider-wrapper .slider-pagination .swiper-pagination-bullet {
    margin: 0 12px;
  }
}
.slider-wrapper .slider-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  border: 1px solid #0e202a;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  inset-inline-start: 50%;
}
[dir=rtl] .slider-wrapper .slider-pagination .swiper-pagination-bullet::before {
  inset-inline-start: auto;
  inset-inline-end: 50%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .slider-wrapper .slider-pagination .swiper-pagination-bullet::before {
    height: 20px;
    width: 20px;
  }
}
.slider-wrapper .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  height: 44px;
  width: 44px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .slider-wrapper .slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    height: 30px;
    width: 30px;
  }
}

.single-slide-2 {
  position: relative;
  z-index: 1;
}
.single-slide-2::before {
  background: var(--clr-common-body-text);
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.9;
}

.slider-title-2 {
  font-size: 75px;
  font-weight: 400;
  color: var(--clr-common-white);
  /* text-transform: capitalize; */
  margin-bottom: 27px;
  letter-spacing: -1px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .slider-title-2 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-title-2 {
    font-size: 55px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-title-2 {
    font-size: 55px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-title-2 {
    font-size: 50px;
  }
  .slider-title-2 br {
    display: none;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-title-2 {
    font-size: 55px;
  }
  .slider-title-2 br {
    display: none;
  }
}
@media (max-width: 575px) {
  .slider-title-2 {
    font-size: 45px;
  }
  .slider-title-2 br {
    display: none;
  }
}
@media (max-width:450px) {
  .slider-title-2 {
    font-size: 35px;
  }
  .slider-title-2 br {
    display: none;
  }
}
.slider-sub-title-2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: var(--clr-theme-2);
  /* text-transform: capitalize; */
}
.slider-shape-2 {
  position: absolute;
  top: 175px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  margin-inline-start: 320px;
}
.slider-shape-svg {
  position: relative;
  z-index: 1;
  display: inline-block;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-shape-svg {
    inset-inline-end: 100px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .slider-shape-svg {
    inset-inline-end: 300px;
  }
}
.slider-shape-svg svg {
  position: absolute;
  inset-inline-start: 320px;
  bottom: 30px;
  z-index: -1;
  width: 240px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  [dir=rtl] .slider-shape-svg svg {
    inset-inline-start: 170px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-shape-svg svg {
    inset-inline-start: 210px;
    bottom: 10px;
  }
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .slider-shape-svg svg {
    bottom: 10px;
  }
}
.slider-shape-svg svg path {
  stroke: var(--clr-common-white);
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
  animation: section_stroke 3s linear forwards infinite;
  -webkit-animation: section_stroke 3s linear forwards infinite;
}

.features-num-pgnation {
  bottom: 80px;
  inset-inline-start: 80px;
  width: 100%;
  z-index: 9;
  position: absolute;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .features-num-pgnation {
    inset-inline-start: 20px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .features-num-pgnation {
    display: none;
  }
}
.features-num-pgnation .swiper-pagination-current {
  font-size: 36px;
  color: var(--clr-common-white);
  z-index: 9;
}

.slider-title-3 {
  font-size: 75px;
  font-weight: 400;
  color: var(--clr-common-white);
  /* text-transform: capitalize; */
  margin-bottom: 50px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-title-3 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-title-3 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-title-3 {
    font-size: 45px;
  }
}
@media (max-width: 575px) {
  .slider-title-3 {
    font-size: 40px;
  }
}
@media (max-width:450px) {
  .slider-title-3 {
    font-size: 36px;
  }
}
.slider-btn-3 a {
  border: 1px solid var(--clr-theme-2);
  display: inline-flex;
  height: 55px;
  border-radius: 50px;
  padding: 0px 25px;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.slider-wrap-4 {
  margin-top: 50px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-wrap-4 {
    margin-top: 0px;
  }
}

.slider-title-4 {
  font-size: 75px;
  font-weight: 400;
  color: var(--clr-common-white);
  /* text-transform: capitalize; */
  margin-bottom: 25px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-title-4 {
    font-size: 65px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-title-4 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-title-4 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .slider-title-4 {
    font-size: 36px;
  }
}
@media (max-width: 575px) {
  .slider-title-4 {
    font-size: 32px;
  }
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1600px) and (max-width: 1800px) {
  .slider-button-4 {
    display: none;
  }
}

.slider-content-4 > p {
  color: var(--clr-common-white);
  margin-bottom: 50px;
}

.single-slide-4 {
  position: relative;
  z-index: 1;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media (max-width:450px), (max-width: 575px) {
  .single-slide-4 {
    min-height: 720px;
  }
}
.single-slide-4::before {
  background: linear-gradient(180deg, var(--clr-common-black) 0 0%, rgba(0, 0, 0, 0) 100%);
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.slider-active-4 .swiper-pagination-bullets {
  position: absolute;
  bottom: 75px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  margin: 0 auto;
  text-align: center;
  z-index: 9;
}
.slider-active-4 .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
  z-index: 1;
  outline-offset: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 0 20px;
}
.slider-active-4 .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  border: 1px solid #fff;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  inset-inline-start: 50%;
}
[dir=rtl] .slider-active-4 .swiper-pagination-bullet::before {
  inset-inline-start: auto;
  inset-inline-end: 50%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .slider-active-4 .swiper-pagination-bullet::before {
    height: 20px;
    width: 20px;
  }
}
.slider-active-4.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .slider-active-4.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 12px;
  }
}
.slider-active-4 .swiper-pagination-bullet-active::before {
  height: 40px;
  width: 40px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .slider-active-4 .swiper-pagination-bullet-active::before {
    height: 30px;
    width: 30px;
  }
}

.slider-button-4 .slider-button-4-next,
.slider-button-4 .slider-button-4-prev {
  border-radius: 50%;
  width: 96px;
  height: 96px;
  position: absolute;
  top: 50%;
  z-index: 5;
  inset-inline-start: 50px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px) {
  .slider-button-4 .slider-button-4-next,
  .slider-button-4 .slider-button-4-prev {
    display: none;
  }
}

.slider-button-4 .slider-button-4-next {
  inset-inline-start: auto;
  inset-inline-end: 50px;
}

.slider-button-4-next,
.slider-button-4-prev span {
  font-size: 26px;
  width: 96px;
  height: 96px;
  border: 1px solid var(--clr-common-white);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--clr-common-white);
  cursor: pointer;
  transition: 0.3s ease-in-out;
}
.slider-button-4-next::before,
.slider-button-4-prev span::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100%;
  opacity: 0;
  border-radius: 50%;
  z-index: -1;
}
.slider-button-4-next:hover,
.slider-button-4-prev span:hover {
  border-color: rgba(255, 255, 255, 0.25);
}
.slider-button-4-next:hover::before,
.slider-button-4-prev span:hover::before {
  opacity: 0.6;
}
.slider-button-4-next:hover::after,
.slider-button-4-prev span:hover::after {
  opacity: 0.6;
}

/*----------------------------------------
23. Products CSS
----------------------------------------*/
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bdproduct-wrapper {
    text-align: center;
    margin-bottom: 40px;
  }
}
@media (max-width: 575px) {
  .bdproduct-wrapper {
    text-align: center;
    margin-bottom: 40px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bdproduct-wrapper {
    text-align: center;
    margin-bottom: 40px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bdproduct-thumb {
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
}
@media (max-width: 575px) {
  .bdproduct-thumb {
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bdproduct-thumb {
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
  }
}
.bdproduct-thumb-1 img {
  border-radius: 137px;
  animation-name: UpToDown;
  animation-duration: 4.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bdproduct-thumb-1 {
    padding: 0 !important;
  }
}
@media (max-width: 575px) {
  .bdproduct-thumb-1 {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bdproduct-thumb-1 {
    padding: 0 !important;
  }
}
.bdproduct-thumb-2 {
  margin-inline-start: 30px;
  margin-top: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bdproduct-thumb-2 {
    margin-inline-start: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bdproduct-thumb-2 {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .bdproduct-thumb-2 {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bdproduct-thumb-2 {
    margin: 0;
  }
}
.bdproduct-thumb-2 img {
  border-radius: 137px;
  animation-name: UpToDown;
  animation-duration: 7s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.bdproduct-thumb-3 {
  margin-inline-start: 30px;
  margin-top: -20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bdproduct-thumb-3 {
    margin-inline-start: 15px;
    margin-inline-end: 15px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bdproduct-thumb-3 {
    margin: 0;
  }
}
@media (max-width: 575px) {
  .bdproduct-thumb-3 {
    margin: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bdproduct-thumb-3 {
    margin: 0;
  }
}
.bdproduct-thumb-3 img {
  border-radius: 137px;
  animation-name: UpToDown;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.bdproduct-btn {
  margin-bottom: 50px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bdproduct-btn {
    margin-bottom: 70px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bdproduct-wrapper-2 {
    margin-top: 50px;
  }
}

/*----------------------------------------
05. accordion CSS
----------------------------------------*/
.accordion-button:not(.collapsed) {
  pointer-events: none;
}

.bdaccordion {
  margin-inline-start: 75px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bdaccordion {
    margin-inline-start: 0;
    margin-inline-end: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bdaccordion {
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bdaccordion {
    margin-inline-start: 0;
  }
}
@media (max-width: 575px) {
  .bdaccordion {
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bdaccordion {
    margin-inline-start: 0;
  }
}
.bdaccordion .accordion-item {
  background-color: var(--clr-common-white);
  border: none;
  border-bottom: 1px solid var(--clr-common-soft-white);
}
.bdaccordion .accordion-item:last-child {
  border-bottom: none;
}
.bdaccordion .accordion-button:not(.collapsed) {
  color: var(--clr-common-body-text);
  background-color: transparent;
  box-shadow: none;
}
.bdaccordion .accordion-button::after {
  position: absolute;
  content: "\f10c";
  font-family: "flaticon_cipro";
  background-image: none;
  top: 28%;
  right: 0;
  transform: rotate(90deg);
  color: var(--clr-common-body-text);
  width: auto;
  height: auto;
  font-weight: 400;
  font-size: 16px;
}
.bdaccordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-45deg);
}
.bdaccordion .accordion-button:focus {
  box-shadow: none;
}
.bdaccordion .accordion-button {
  font-size: 24px;
  padding: 28px 30px 30px 0;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .bdaccordion .accordion-button {
    font-size: 20px;
    padding: 15px 30px 15px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bdaccordion .accordion-button {
    font-size: 18px;
    padding: 15px 30px 15px 0;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .bdaccordion .accordion-button {
    font-size: 18px;
  }
}
@media (max-width:450px) {
  .bdaccordion .accordion-button {
    padding: 10px 30px 10px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .bdaccordion .accordion-button br {
    display: none;
  }
}
.bdaccordion .accordion-body {
  padding: 0 30px 0 0;
}
.bdaccordion .accordion-body p {
  /* text-transform: capitalize; */
  margin-bottom: 25px;
  font-size: 16px;
}
@media (max-width: 575px), (max-width:450px) {
  .bdaccordion .accordion-body p {
    font-size: 14px;
  }
}

.bdproduct-wrapper-2 {
  margin-inline-start: 100px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .bdproduct-wrapper-2 {
    margin-inline-start: 0;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bdproduct-wrapper-2 {
    margin-inline-start: 30px;
  }
}

.bd-accordion-2 .accordion-item {
  border: none;
  margin-bottom: 10px;
}
.bd-accordion-2 .accordion-item:last-child {
  margin-bottom: 0;
}
.bd-accordion-2 .accordion-button {
  padding: 35px 40px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .bd-accordion-2 .accordion-button {
    padding: 20px 40px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-accordion-2 .accordion-button {
    padding: 15px 40px;
  }
}
@media (max-width:450px) {
  .bd-accordion-2 .accordion-button {
    padding: 20px 20px;
  }
}
.bd-accordion-2 .accordion-button.collapsed {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  /* text-transform: capitalize; */
  color: var(--clr-common-black);
  background-color: var(--clr-common-gray);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-accordion-2 .accordion-button.collapsed {
    font-size: 20px;
  }
}
@media (max-width:450px), (max-width: 575px) {
  .bd-accordion-2 .accordion-button.collapsed {
    font-size: 18px;
  }
}
.bd-accordion-2 .accordion-button:not(.collapsed) {
  background-color: var(--clr-common-gray);
  font-weight: 400;
  font-size: 24px;
  /* text-transform: capitalize; */
  color: var(--clr-common-black);
  box-shadow: none;
}
@media (max-width:450px) {
  .bd-accordion-2 .accordion-button:not(.collapsed) {
    font-size: 20px;
  }
}
.bd-accordion-2 .accordion-button::after {
  position: absolute;
  content: "\f10c";
  font-family: "flaticon_cipro";
  background-image: none;
  top: 50%;
  inset-inline-end: 45px;
  color: var(--clr-common-body-text);
  width: auto;
  height: auto;
  font-weight: 700;
  font-size: 20px;
  transform: translateY(-50%);
  transition: 0.3s ease-in-out;
}
@media (max-width:450px), xs {
  .bd-accordion-2 .accordion-button::after {
    inset-inline-end: 15px;
    font-size: 16px;
  }
}
.bd-accordion-2 .accordion-button:not(.collapsed)::after {
  transform: translateY(-50%) rotate(-45deg);
  color: var(--clr-common-body-text);
}
.bd-accordion-2 .accordion-button:focus {
  box-shadow: none;
}
.bd-accordion-2 .accordion-body {
  padding: 40px 40px 30px 40px;
  background-color: var(--clr-common-body-text);
}
@media (max-width:450px), xs {
  .bd-accordion-2 .accordion-body {
    padding: 20px 20px 20px 20px;
  }
}
.bd-accordion-2-thumb img {
  width: 100%;
}
.bd-accordion-2-link {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  /* text-transform: capitalize; */
  color: var(--clr-common-gray);
  margin-top: 35px;
  margin-bottom: 5px;
}
@media (max-width:450px) {
  .bd-accordion-2-link {
    font-size: 18px;
  }
}
.bd-accordion-2-link:hover a {
  transform: rotate(45deg);
  color: var(--clr-theme-1);
}
.bd-accordion-2-thumb img {
  width: 100%;
}

/*----------------------------------------
15. features CSS
----------------------------------------*/
.features-area {
  position: relative;
  z-index: 9;
  margin-top: -326px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .features-area {
    margin-top: -250px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .features-area {
    margin-top: -200px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .features-area {
    margin-top: 0;
    padding-top: 70px;
  }
}

.feature-thum img {
  width: 100%;
}

.feature-content {
  border-bottom: 1px solid var(--clr-common-soft-white);
  margin-top: 45px;
  gap: 20px 50px;
  padding-bottom: 40px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .feature-content {
    flex-wrap: wrap;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature-content {
    flex-direction: column;
  }
}
.feature-content .feature-border:last-child::before {
  display: none;
}

.feature-btn a {
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .feature-btn a {
    font-size: 18px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature-btn a {
    font-size: 18px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    line-height: 1.5;
  }
}

.feature-border {
  position: relative;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .feature-border {
    width: 100%;
  }
}
.feature-border::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 1px;
  background-color: var(--clr-common-soft-white);
  top: 50%;
  transform: translateY(-50%);
  right: -70px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .feature-border::before {
    display: none;
  }
}

/*----------------------------------------
24. project CSS
----------------------------------------*/
.project-content-item {
  position: relative;
  overflow: hidden;
}

.project-bg {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.project-bg::before {
  background: var(--clr-common-body-text);
  content: "";
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.project-img img {
  width: 100%;
}

.project-content-wrapper {
  margin-left: 90px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-content-wrapper {
    margin-left: 0;
  }
}

.project-active {
  margin-inline-start: -480px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-active {
    margin-inline-start: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .project-active {
    margin-inline-start: 0px;
    margin-bottom: 0;
  }
}

.project-active .swiper-slide:hover .project-text {
  opacity: 1;
  visibility: visible;
}

.project-text {
  text-align: center;
  position: absolute;
  z-index: 999;
  bottom: 0;
  padding: 0 30px 25px 30px;
  left: 0;
  right: 0;
}
.project-text-title {
  font-size: 30px;
  color: var(--clr-common-body-text);
  text-transform: uppercase;
  display: inline-block;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .project-text-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-text-title {
    font-size: 18px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-text-title {
    font-size: 22px;
  }
}
@media (max-width:450px) {
  .project-text-title {
    font-size: 18px;
  }
}

@media (max-width:450px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .project-btn {
    justify-content: center;
    margin-top: 30px;
  }
}
.project-btn .project-button-prev i, .project-btn .project-button-next i {
  height: 64px;
  width: 64px;
  line-height: 64px;
  text-align: center;
  border: 1px solid var(--clr-common-border);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--clr-bg-2);
  font-weight: 600;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.project-btn .project-button-prev:hover.project-button-next i, .project-btn .project-button-next:hover.project-button-next i {
  transform: rotate(45deg);
  border: 1px solid var(--clr-theme-1);
  background: var(--clr-theme-1);
}
.project-btn .project-button-prev:hover.project-button-prev i, .project-btn .project-button-next:hover.project-button-prev i {
  transform: rotate(55deg);
  border: 1px solid var(--clr-theme-1);
  background: var(--clr-theme-1);
}
.project-btn .project-button-prev {
  margin-inline-end: 15px;
  transform: rotate(170deg);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-btn {
    justify-content: center;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .project-area {
    padding-right: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-area {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .project-area {
    text-align: center;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .project-content {
    text-align: center;
    margin-top: 45px;
  }
}

.project-bg-3 {
  position: absolute;
  inset-inline-end: 0;
  z-index: -1;
  top: 348px;
}
.project-bg-3::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.1) 50%, #000000 100%);
}

.project-wrapper {
  border: 1px solid var(--clr-theme-2);
  padding: 30px 30px 30px 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .project-wrapper {
    margin-top: 45px;
  }
}
.project-wrapper .project-thumb {
  margin-bottom: 30px;
  margin-top: 65px;
}

.single-project {
  position: relative;
  padding-bottom: 60px;
  margin-top: 60px;
}
.single-project:last-child {
  border-bottom: none;
  margin-right: 0;
  padding-bottom: 0;
}
.single-project:first-child {
  margin-top: 60px;
}
.single-project img {
  width: 100%;
}
.single-project::before {
  position: absolute;
  content: "";
  bottom: 0;
  right: -30px;
  height: 1px;
  width: calc(100% + 30px);
  background-color: var(--clr-theme-2);
}
.single-project-title {
  font-size: 24px;
  color: var(--clr-theme-2);
  /* text-transform: capitalize; */
  font-weight: 400;
  margin-bottom: 15px;
}
.single-project-title:hover {
  color: var(--clr-theme-1);
}
.single-project:last-child::before {
  display: none;
}

.project-content p {
  color: var(--clr-common-white);
  margin-bottom: 0;
}

/*----------------------------------------
10. choose CSS
----------------------------------------*/
.choose-icon i {
  font-size: 60px;
  color: var(--clr-bg-4);
}

.choose-shape {
  position: relative;
}
.choose-shape img {
  position: absolute;
  top: 50px;
  transform: rotate(37.71deg) translateY(50%);
  left: 50px;
  opacity: 0.25;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width:450px), (max-width: 575px) {
  .choose-shape img {
    top: -100px;
    transform: rotate(0deg) translateY(50%);
    opacity: 0.25;
    margin-left: 160px;
  }
}

.choose-content-title {
  font-size: 24px;
  line-height: 30px;
  color: var(--clr-common-black);
  margin-top: 20px;
  /* text-transform: capitalize; */
  margin-bottom: 15px;
}
.choose-content-title a:hover {
  color: var(--clr-theme-1);
}
@media (max-width:450px) {
  .choose-content-title {
    font-size: 20px;
  }
}
.choose-content p {
  font-size: 16px;
  color: #0e202a;
  /* text-transform: capitalize; */
}

.choose-icon::before {
  position: absolute;
  background-color: var(--clr-common-gray);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  z-index: -1;
  content: "";
  margin-left: 20px;
}

/*----------------------------------------
22. Process CSS
----------------------------------------*/
.process-item:hover .process-count-title::before {
  color: var(--clr-common-body-text);
  -webkit-text-stroke: 1px var(--clr-common-body-text);
}
.process-item.active .process-count-title::before {
  color: var(--clr-common-body-text);
  -webkit-text-stroke: 1px var(--clr-common-body-text);
}
.process-item::before {
  position: absolute;
  content: "";
  height: 160px;
  width: 1px;
  background-color: var(--clr-common-soft-white);
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
}
@media (max-width: 575px) {
  .process-item::before {
    display: none;
  }
}
.process-counts {
  counter-reset: count;
}
.process-count {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
}
.process-count-title {
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 0;
  transition: 0.3s ease-out 0s;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .process-count-title {
    font-size: 22px;
  }
}
@media (max-width:450px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-count-title {
    font-size: 20px;
  }
}
.process-count-title::before {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  text-align: center;
  margin: 0 auto;
  color: transparent;
  font-size: 75px;
  font-weight: 600;
  counter-increment: count;
  content: "0" counter(count);
  transition: all 500ms ease;
  display: inline-block;
  -webkit-text-stroke: 1px #e7e7e7;
  line-height: 1;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .process-count-title::before {
    font-size: 60px;
  }
}
.process-thumb {
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.process-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--clr-common-body-text);
  opacity: 0.6;
}
.process-thumb img {
  width: 100%;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .process-area {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.row [class*=col-]:last-child .process-item::before {
  display: none;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .row [class*=col-]:nth-child(2) .process-item::before {
    display: none;
  }
}

/*----------------------------------------
04. About CSS
----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .cipro-xl-none {
    display: none;
  }
}

.bar-title {
  font-size: 16px;
  color: var(--clr-common-body-text);
  font-weight: 500;
  line-height: 28px;
}

.bd-progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
  color: var(--clr-comon-soft-white);
  text-align: center;
  white-space: nowrap;
  background-color: #0e202a;
  transition: width 0.6s ease;
}

.progress {
  height: 6px;
}

.progress-persent span {
  color: var(--clr-common-body-text);
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
}

.about-thumb-shape img {
  position: absolute;
  inset-inline-start: 0;
  top: 105px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-thumb-shape img {
    top: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-thumb-shape img {
    width: 100%;
    position: inherit;
    margin-top: 30px;
  }
}
@media (max-width: 575px) {
  .about-thumb-shape img {
    width: 100%;
    position: inherit;
    margin-top: 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-thumb-shape img {
    width: 100%;
    position: inherit;
    margin-top: 30px;
  }
}

.about-skill-wrapper {
  margin-right: 90px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-skill-wrapper {
    margin-right: 0;
  }
}

.about-shape-roted {
  position: absolute;
  top: 60px;
  left: 55px;
  -webkit-animation: bd-rotate 15s linear infinite;
  animation: bd-rotate 15s linear infinite;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about-shape-roted {
    left: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-shape-roted {
    left: 390px;
    transform: translateY(50%);
  }
}

.about-left-area-2 {
  padding-right: 60px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width:450px), (max-width: 575px) {
  .about-left-area-2 {
    padding-right: 0px;
  }
}

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

.about-btn-2 {
  margin-top: 60px;
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about-left-area {
    padding-left: 45px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-left-area {
    text-align: center;
    padding: 0 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-left-area {
    text-align: center;
    padding-right: 0;
    margin-bottom: 100px;
    padding: 0 !important;
  }
}
@media (max-width: 575px) {
  .about-left-area {
    padding: 0 !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-left-area {
    padding: 0 !important;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .about-thumb {
    padding-right: 45px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-thumb img {
    width: 100%;
  }
}
@media (max-width: 575px) {
  .about-thumb img {
    width: 100%;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-thumb img {
    width: 100%;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-btn {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 40px !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-btn {
    margin-bottom: 50px;
    margin-top: 40px !important;
  }
}
@media (max-width: 575px) {
  .about-btn {
    margin-bottom: 50px;
    margin-top: 40px !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .about-btn {
    margin-bottom: 50px;
    margin-top: 40px !important;
  }
}

.about-right-thumb-2 {
  background-color: var(--clr-common-white);
  /* padding-top: 50px; */
}
.about-right-thumb-2 img {
  width: 100%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-btn-2 {
    margin-top: 0px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .about-btn-2 {
    margin-top: 0px;
    margin-bottom: 80px;
  }
}
.about-bg {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.about-bg::before {
  position: absolute;
  content: "";
  opacity: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000101 100%);
}

.about-img-3 {
  text-align: end;
  margin-inline-end: 20%;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .about-img-3 {
    position: absolute;
    inset-inline-start: 135px;
    margin-top: -50px;
    inset-block-end: auto;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .about-img-3 {
    display: none;
  }
}
.about-img-3 img {
  animation-name: DownToUp;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.about-content {
  font-size: 16px;
  font-weight: 400;
  color: var(--clr-theme-2);
}

.about-list ul {
  list-style: none;
  margin-left: 10px;
}
.about-list ul li {
  font-weight: 600;
  font-size: 16px;
  text-transform: capitalize;
  color: var(--clr-theme-2);
  position: relative;
  margin-bottom: 15px;
}
.about-list ul li:last-child {
  margin-bottom: 0;
}
.about-list ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: var(--clr-theme-2);
  margin-inline-start: -15px;
  top: 50%;
  transform: translateY(-50%);
}

.about-4-wrap {
  margin-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .about-4-wrap {
    margin-left: 0px;
  }
}

.about-area-4 {
  margin-top: -150px;
}

.about-wrapper {
  padding: 70px 55px 70px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .about-wrapper {
    padding: 50px 0px;
  }
}

.about-thumb-4 img {
  width: 100%;
}

.about-tab-title .nav-tabs {
  border-bottom: 1px solid var(--clr-common-border);
  gap: 30px 30px;
}
.about-tab-title .nav-tabs .nav-link.active, .about-tab-title .nav-tabs .nav-item.show .nav-link {
  color: var(--clr-common-body-text);
  background-color: var(--clr-theme-2);
  text-transform: capitalize;
  font-weight: 600;
  height: 55px;
}
.about-tab-title .nav-tabs .nav-link {
  background: transparent;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  color: var(--clr-theme-2);
}
.about-tab-title .nav-tabs .nav-link {
  margin-bottom: 0;
  background: none;
  border: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.about-thumb-4 {
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .about-thumb-4 {
    height: 450px;
  }
}

.about-tab-list-title {
  color: var(--clr-common-soft-white);
  display: block;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}
.about-tab-list p {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--clr-theme-2);
}

.bd-contact-wrapper-4 {
  position: relative;
  z-index: 9;
}
.bd-contact-wrapper-4.contact-2 {
  margin: 0 0 0 38px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-contact-wrapper-4.contact-2 {
    margin: 0;
    margin-top: 80px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-contact-wrapper-4 {
    margin-top: 0;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-contact-wrapper-4 {
    margin: 50px 0 0;
  }
}
.bd-contact-wrapper-4 .contact-shape {
  color: var(--clr-common-white);
  font-size: 48px;
  border: 1px solid var(--clr-bg-1);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  line-height: 88px;
  display: inline-block;
  text-align: center;
}
@media (max-width: 575px), (max-width:450px) {
  .bd-contact-wrapper-4 .contact-shape {
    width: 60px;
    height: 60px;
    line-height: 50px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .bd-contact-wrapper-4 .contact-shape img {
    width: 50%;
  }
}
.bd-contact-wrapper-4 .contact-content span {
  font-size: 16px;
  color: var(--clr-bg-1);
  display: block;
}
.bd-contact-wrapper-4 .contact-content a {
  font-size: 20px;
  color: var(--clr-common-gray);
}
.bd-contact-wrapper-4 .contact-content a:hover {
  color: var(--clr-theme-1);
}
@media (max-width:450px) {
  .bd-contact-wrapper-4 .contact-content a {
    font-size: 18px;
  }
}

.contact-content span {
  margin-bottom: 10px;
  display: inline-block;
}

/*----------------------------------------
28. Team CSS 
----------------------------------------*/
.team-wrapper {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  inset-inline-start: 0;
}

.team-wrapper {
  position: relative;
  border-radius: 50%;
}
.team-wrapper:hover .team-thumb::before {
  opacity: 0.8;
}
.team-wrapper:hover .team-info {
  opacity: 1;
  visibility: visible;
  bottom: 65px;
}
@media (max-width: 575px), (max-width:450px) {
  .team-wrapper:hover .team-info {
    bottom: 10px;
    box-shadow: 10px 10px 0px 0px var(--clr-theme-2);
  }
}
.team-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
@media (max-width:450px) {
  .team-title {
    font-size: 20px;
  }
}
.team-title a:hover {
  color: var(--clr-theme-2);
}
.team-info {
  position: absolute;
  bottom: 55px;
  inset-inline-start: 0;
  inset-inline-end: 0;
  -webkit-transition: all 0.3s ease-in-out ease-out 0s;
  -moz-transition: all 0.3s ease-in-out ease-out 0s;
  -ms-transition: all 0.3s ease-in-out ease-out 0s;
  -o-transition: all 0.3s ease-in-out ease-out 0s;
  transition: all 0.3s ease-in-out ease-out 0s;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s linear;
}
@media (max-width: 575px) {
  .team-info {
    padding: 20px 10px;
    width: calc(100% - 172px);
    background: var(--clr-theme-1);
    margin: 30px 60px;
    transition: 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
    bottom: 10px;
  }
}
@media (max-width:450px) {
  .team-info {
    padding: 20px 10px;
    width: calc(100% - 48px);
    background: var(--clr-theme-1);
    margin: 30px 15px;
    transition: 0.3s ease-in-out;
    opacity: 1;
    visibility: visible;
    bottom: 10px;
  }
}
.team-info span {
  font-size: 16px;
  color: var(--clr-common-body-text);
}
.team-thumb {
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}
.team-thumb::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: var(--clr-theme-1);
  opacity: 0;
  border-radius: 50%;
  transition: 0.5s linear;
}
.team-thumb .img {
  width: 100%;
}

.team-meta {
  padding: 20px 20px;
  width: calc(100% - 80px);
  background: var(--clr-theme-2);
  margin: 20px 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-meta {
    padding: 10px 20px;
    width: calc(100% - 25px);
    margin: 20px 10px;
  }
}

.team-box {
  width: 100%;
  height: 100%;
}
.team-item {
  background-color: transparent;
  padding: 40px 40px 40px 40px;
  width: 100%;
  aspect-ratio: 100/117;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.team-wrap {
  height: 100%;
}
.team-meta {
  position: absolute;
  bottom: 0;
}
.team-meta-title {
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
}
.team-meta span {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
}
.team-title-2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
.team-title-2 a:hover {
  color: var(--clr-theme-1);
}
@media (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px) {
  .team-title-2 {
    font-size: 20px;
  }
}

.team-active-2 {
  margin-inline-start: -115px;
  margin-inline-end: -140px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .team-active-2 {
    margin: 0;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .team-area {
    padding-inline-start: 45px;
    padding-inline-end: 45px;
  }
}

.team-thumb-2 {
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 50%;
  object-position: center center;
  object-fit: cover;
  transition: 0.3s linear;
  position: absolute;
  inset-inline-end: 40px;
  top: 40px;
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  inset-inline-end: 0;
}
.team-thumb-2 img {
  width: 100%;
  object-fit: cover;
  height: 100%;
  object-position: top;
  transform-origin: top center;
}

.team-item {
  padding: 0;
}
.team-item .team-meta {
  padding: 20px 20px;
  width: calc(100% - 80px);
  background: var(--clr-theme-2);
  margin: 30px 30px;
  transition: 0.3s ease-in-out;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-item .team-meta {
    padding: 10px 20px;
    width: calc(100% - 25px);
    margin: 20px 10px;
  }
}
.team-item .team-meta:hover {
  box-shadow: 10px 10px 0px 0px var(--clr-theme-1);
}
.team-item:hover .team-thumb-2 img {
  transform: scale(1.1);
}

.team-title-3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
  color: var(--clr-common-body-text);
}
@media (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px) {
  .team-title-3 {
    font-size: 20px;
  }
}
.team-title-3 a:hover {
  color: var(--clr-theme-1);
}

.team-thumb-3 {
  width: 110px;
  height: 110px;
  overflow: hidden;
  border-radius: 50%;
  object-position: center center;
  object-fit: cover;
  transition: 0.3s linear;
  position: absolute;
  inset-inline-end: 40px;
  top: 40px;
  width: 100%;
  height: 100%;
  border-radius: 0;
  top: 0;
  inset-inline-end: 0;
}
.team-thumb-3 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transform-origin: top center;
}

.team-item:hover .team-thumb-3 img {
  transform: scale(1.1);
}
.team-item:hover .team-title-3 {
  color: var(--clr-common-body-text);
}
.team-item:hover .team-sub-title-3 {
  color: var(--clr-common-body-text);
}

@media (max-width: 575px) {
  .bd-member-name-card {
    margin-bottom: 20px;
  }
}

.member-name {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
}
.member-name a:hover {
  color: var(--clr-theme-1);
}

.member-designation {
  font-weight: 400;
  font-size: 16px;
  line-height: 18px;
  text-transform: capitalize;
  color: #0e202a;
}

.team-content {
  margin-bottom: 25px;
}

.team-social {
  border-top: 1px solid var(--clr-common-soft-white);
  padding-top: 25px;
}
.team-social a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--clr-common-border);
  font-size: 16px;
  margin-inset-inline-end: 10px;
  color: var(--clr-common-body-text);
  display: inline-block;
}
.team-social a:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}

.team-card {
  margin-bottom: 220px;
  position: relative;
}
.team-card.active.team-card .team-card-thumb {
  opacity: 1;
  visibility: visible;
  transform: rotate(-10deg);
}
@media (max-width: 575px) {
  .team-card.active.team-card .team-card-thumb {
    transform: rotate(0deg);
  }
}
.team-card .team-card-thumb {
  position: absolute;
  inset-inline-start: 30px;
  inset-inline-end: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0.6s;
  z-index: -1;
  top: -80%;
  max-width: 320px;
}
.team-card .team-card-thumb img {
  width: 100%;
}
.team-card:hover .team-card-thumb {
  opacity: 1;
  visibility: visible;
  transform: rotate(-10deg);
}
@media (max-width: 575px), (max-width:450px) {
  .team-card:hover .team-card-thumb {
    transform: rotate(0deg);
    inset-inline-start: 0px;
  }
}

.bd-member-widget-thumb img {
  width: 100%;
}

.bd-member-widget-link {
  position: absolute;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  font-size: 60px;
  bottom: 60px;
  color: var(--clr-common-body-text);
  transition: 0.3s ease-in-out;
}
.bd-member-widget-link:hover {
  color: var(--clr-theme-1);
}

.bd-member-nav-tabs {
  background-color: #F9F9F9;
  padding: 55px 60px 55px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-member-nav-tabs {
    padding: 30px 30px 30px;
  }
}
.bd-member-nav-tabs .bd-member-tab-title .nav {
  display: flex;
  flex-wrap: wrap;
  padding-inline-start: 0;
  list-style: none;
  margin-bottom: 25px;
}
.bd-member-nav-tabs .bd-member-tab-title .nav-tabs .nav-link {
  margin-bottom: 0px;
  background: none;
  border: none;
  border-top-left-radius: 0.25rem;
  border-top-right-radius: 0.25rem;
  position: relative;
}
.bd-member-nav-tabs .bd-member-tab-title .nav-tabs .nav-link::after {
  content: "";
  content: "";
  position: absolute;
  border-right: 1px solid var(--clr-common-black);
  height: 10px;
  padding-inline-start: 42px;
  top: 13px;
  transform: translate(-50%, -50%);
}
.bd-member-nav-tabs .bd-member-tab-title .nav-tabs .nav-link:last-child::after {
  display: none;
}
.bd-member-nav-tabs .bd-member-tab-title .nav-tabs .nav-link.active,
.bd-member-nav-tabs .bd-member-tab-title .nav-tabs .nav-item.show .nav-link {
  color: var(--clr-theme-1);
  background-color: transparent;
  border-color: transparent;
  font-weight: 600;
}
.bd-member-nav-tabs .bd-member-tab-title .nav-link {
  display: block;
  padding: 0 44px 20px 0;
  color: var(--clr-common-black);
  text-decoration: none;
  padding-inline-start: 0;
}
.bd-member-nav-tabs .bd-member-tab-content .bd-member-tab-list .team-social {
  border-top: none;
  padding-top: 0;
}
.bd-member-nav-tabs .bd-member-tab-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #0e202a;
}

.team-5-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .team-5-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .team-5-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}

.skills-progress-wrapper {
  gap: 30px 0px;
  display: grid;
}

.skills-single-wrapper .skill-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  align-items: center;
}
.skills-single-wrapper .skill-category {
  font-size: 18px;
  color: #0e202a;
}
.skills-single-wrapper span {
  font-size: 18px;
  color: #0e202a;
}
.skills-single-wrapper .progress {
  background: #e9ecef;
  border-radius: 0px;
}
.skills-single-wrapper .progress .progress-bar {
  background-color: #0e202a;
}

.bd-team-details-list li {
  padding: 0px 0 10px 0;
  font-size: 15px;
  line-height: 22px;
  display: block;
}
.bd-team-details-list li .bd-team-list-title {
  display: inline-block;
}
.bd-team-details-list li .bd-team-list-value {
  display: inline-block;
}

/*----------------------------------------
26. Service CSS
----------------------------------------*/
.service-meta-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--clr-common-white);
 /* Adjust this value as needed */
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: left;
    text-align: left;
}
.service-meta-thumb::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 150%;
  top: 0;
  left: 0;
  background: linear-gradient(rgba(0, 182, 122, 0) 0%, rgba(0, 182, 122, 0.1) 40%, rgba(0, 182, 122, 0.9) 60%);
  opacity: 1;
  -webkit-transition: all 0.5s ease-out 0s;
  -moz-transition: all 0.5s ease-out 0s;
  -ms-transition: all 0.5s ease-out 0s;
  -o-transition: all 0.5s ease-out 0s;
  transition: all 0.5s ease-out 0s;
}
.service-meta-thumb img {
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.service-icon {
  z-index: 9999999;
  position: relative;
}

.service-box {
  width: 100%;
  height: 100%;
}
.service-item {
  background-color: var(--clr-common-white);
  height: 418px;
  display: flex;
  justify-content: space-between;
  transition: 0.5s;
  padding: 20px 30px 30px 30px;
}
.service-item:hover {
  padding: 30px 30px 30px 30px;
}
.service-item:hover .service-meta-thumb::after {
  top: -50%;
}
.service-item:hover .service-meta {
  transform: translateY(25px);
}
.service-meta {
  transform: translateY(236px);
  -webkit-transition: all 0.4s ease-out 0s;
  -moz-transition: all 0.4s ease-out 0s;
  -ms-transition: all 0.4s ease-out 0s;
  -o-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}
.service-meta span {
  font-size: 16px;
  font-weight: 400;
  display: inline-block;
  margin-bottom: 8px;
  color: var(--clr-common-white);
}
.service-meta p {
  margin-bottom: 60px;
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--clr-common-white);
}
@media (max-width:450px) {
  .service-meta p {
    margin-bottom: 50px;
  }
}
.service-title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--clr-common-white);
 /* Adjust this value as needed */
    overflow: hidden;
    display: flex;
    align-items: left;
    justify-content: left;
    text-align: left;
}
.service-title a:hover {
  color: var(--clr-common-body-text);
}

.services-arrow-wrapper {
  margin-top: 78px;
}

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

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .sewrvice-area {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.service-active-2.swiper-slide.swiper-slide-active {
  width: 1170px !important;
}

.service-thumb-2 {
  position: relative;
}
.service-thumb-2 img {
  width: 100%;
}
.service-thumb-2 a {
  cursor: url(../img/svg/cursor-1.png) 32 32, auto;
  transition: cursor 0.3s;
}
.service-thumb-2:hover .service-content-2 a {
  opacity: 1;
  visibility: visible;
}

.research-animation .swiper-slide {
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  position: relative;
  overflow: hidden;
  padding: 0 7px;
  color: var(--clr-common-body-text);
  text-transform: capitalize;
}
.research-animation .animation-img {
  margin-inline-start: 13px;
}

.research-animation-wrap {
  transition-timing-function: linear;
}

.service-active-2.swiper-container {
  overflow: visible;
}

.swiper-pagination-total {
  margin-right: 6px;
  color: #0e202a;
}

.bd-swiper-fraction-divide {
  margin-right: 6px;
  color: #0e202a;
}

.service-nav {
  top: 10px;
}
.service-nav .swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background: var(--clr-common-soft-white);
  height: 1px;
}
.service-nav .swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--clr-common-body-text);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.service-slider-arrow .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.service-slider-arrow .swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-slider-arrow .swiper-button-prev {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-common-body-text);
  margin-left: 20px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-slider-arrow .swiper-button-prev {
    margin-left: 10px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-slider-arrow .swiper-button-prev {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .service-slider-arrow {
    display: none;
  }
}

.service-slider-arrow .swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
  font-size: 24px;
  font-weight: 700;
  color: var(--clr-common-body-text);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-slider-arrow .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 0;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .service-slider-arrow .swiper-button-next,
  .swiper-container-rtl .swiper-button-prev {
    right: 0;
  }
}

.swiper-pagination-current {
  font-size: 36px;
  color: var(--clr-common-body-text);
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .swiper-pagination-current {
    font-size: 24px;
  }
}

.service-box-3 {
  border: 1px solid var(--clr-theme-2);
  padding: 30px 30px 30px 30px;
  display: block;
  transition: 0.3s;
}
.service-box-3:hover {
  border-color: transparent;
}
.service-box-3:hover .service-box-link {
  transform: rotate(45deg);
  color: var(--clr-theme-1);
}
.service-box-3:hover .service-box-title {
  color: var(--clr-theme-1);
}
.service-box-3 .service-box-title {
  color: var(--clr-theme-2);
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 27px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-box-3 .service-box-title {
    font-size: 20px;
  }
}
.service-box-3 .service-box-link {
  font-size: 24px;
  color: var(--clr-theme-2);
  display: inline-block;
}

.service-box-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  display: block;
  z-index: -1;
}
.service-box-bg img {
  width: 100%;
  height: 100%;
}
.service-box-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: -2px;
  height: 101%;
  background: var(--clr-common-black);
  opacity: 0.7;
}

.service-active-nav .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background-color: #0e202a;
  position: relative;
  z-index: 1;
  outline-offset: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 0 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-active-nav .swiper-pagination-bullet {
    margin: 0 12px;
  }
}
.service-active-nav .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  border: 1px solid #0e202a;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-active-nav .swiper-pagination-bullet::before {
    height: 20px;
    width: 20px;
  }
}
.service-active-nav .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  height: 44px;
  width: 44px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-active-nav .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    height: 30px;
    width: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-active-nav .swiper-pagination-bullets {
    padding-bottom: 35px;
    text-align: center;
    justify-content: center;
  }
}

.single-service-4 {
  position: relative;
  padding: 40px 0 38px 0;
  border-bottom: 1px solid var(--clr-common-soft-white);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .single-service-4 {
    padding: 15px 0 7px 0;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .single-service-4 {
    padding: 25px 0;
  }
}
.single-service-4 .service-img img {
  width: 100%;
}
.single-service-4:hover .service-img {
  opacity: 1;
  visibility: visible;
  inset-inline-end: 1%;
}
.single-service-4:hover .service-img.img {
  width: 100%;
}
.single-service-4:hover .service-title-4 {
  color: var(--clr-theme-1);
}
.single-service-4:hover i {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 0px);
}

.service-title-4 {
  font-size: 75px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  color: #0e202a;
  transition: 0.4s linear;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-title-4 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .service-title-4 {
    font-size: 55px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .service-title-4 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .service-title-4 {
    font-size: 35px;
  }
}
@media (max-width:450px) {
  .service-title-4 {
    font-size: 30px;
  }
}
.service-title-4 i {
  margin-left: 90px;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s linear;
  transform: translate(-50px, 50px);
  display: inline-block;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .service-title-4 i {
    margin-left: 20px;
  }
}

.service-img {
  width: 32.5%;
  height: 200%;
  object-fit: cover;
  position: absolute;
  inset-inline-end: 5%;
  top: 105%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s linear;
  z-index: 9;
}
@media (max-width:450px), (max-width: 575px) {
  .service-img {
    top: 0%;
    transform: translateY(0%);
  }
}
.service-img .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-service-4:last-child .service-img {
  top: 0;
}

.services-inner {
  border-top: 1px solid var(--clr-common-soft-white);
}
@media (max-width: 575px) {
  .services-inner {
    border-top: none;
  }
}

.our-service-area,
.profile-area {
  border: 1px solid var(--clr-common-soft-white);
}

.our-service-title {
  font-size: 30px;
  padding: 27px 30px;
  margin-bottom: 0;
}
@media (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .our-service-title {
    font-size: 26px;
  }
}
@media (max-width:450px) {
  .our-service-title {
    padding: 30px 20px;
  }
}

.service-list ul li {
  border-top: 1px solid var(--clr-common-soft-white);
  padding: 30px 30px;
  position: relative;
  z-index: 1;
  list-style: none;
}
@media (max-width:450px) {
  .service-list ul li {
    padding: 30px 20px;
  }
}
.service-list ul li::after {
  background: var(--clr-common-black);
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.3s;
}
.service-list ul li::before {
  font-family: flaticon_cipro !important;
  content: "\f10a";
  position: absolute;
  right: 30px;
  font-size: 20px;
  color: var(--clr-common-white);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.service-list ul li:hover img {
  opacity: 1;
}
.service-list ul li:hover a {
  color: var(--clr-common-white);
}
.service-list ul li:hover::before {
  opacity: 1;
  visibility: visible;
}
.service-list ul li:hover::after {
  opacity: 0.6;
}
.service-list ul li img {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
  width: 100%;
  height: 100%;
}
.service-list ul li a {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--clr-common-body-text);
  position: relative;
  display: block;
}
@media (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-list ul li a {
    font-size: 20px;
  }
}

.profile-list ul li {
  border-top: 1px solid var(--clr-common-soft-white);
  padding: 30px 30px;
  list-style: none;
}
@media (max-width:450px) {
  .profile-list ul li {
    padding: 30px 20px;
  }
}
.profile-list ul li a {
  font-weight: 400;
  font-size: 24px;
  color: var(--clr-common-body-text);
  display: block;
}
@media (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .profile-list ul li a {
    font-size: 20px;
  }
}
.profile-list ul li a:hover {
  color: var(--clr-theme-1);
}
.profile-list ul li a .d-icon {
  position: absolute;
  inset-inline-end: 30px;
}

.call-area-title {
  position: absolute;
  top: 30px;
  inset-inline-start: 30px;
  font-size: 30px;
  font-weight: 300;
  color: var(--clr-theme-2);
  text-transform: capitalize;
  line-height: 1.5;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .call-area-title {
    font-size: 22px;
    line-height: 1.1;
    left: 0;
    margin: 0 30px;
  }
}
@media (max-width:450px), (max-width: 575px) {
  .call-area-title {
    font-size: 22px;
    line-height: 1.2;
  }
}

.call-thumb {
  position: relative;
}
.call-thumb img {
  width: 100%;
}
.call-thumb::before {
  background: var(--clr-common-black);
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0.7;
}

.call-area-bottom {
  position: absolute;
  bottom: 30px;
  left: 30px;
}
.call-area-bottom .call-area-subtitle {
  font-weight: 600;
  font-size: 16px;
  color: var(--clr-theme-2);
  text-transform: capitalize;
  display: block;
  margin-bottom: 15px;
}
.call-area-bottom .contuct-number {
  font-weight: 600;
  font-size: 26px;
  color: var(--clr-theme-2);
  text-transform: capitalize;
  margin-bottom: 0;
}
.call-area-bottom .contuct-number:hover {
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .call-area-bottom .contuct-number {
    font-size: 24px;
    margin-top: 0;
  }
}
@media (max-width:450px), (max-width: 575px) {
  .call-area-bottom .contuct-number {
    font-size: 24px;
    margin-top: 0;
  }
}

.details-nav-tabs {
  border: 1px solid var(--clr-common-soft-white);
}
.details-nav-tabs .nav-tabs {
  border-bottom: 0;
  justify-content: space-between;
  text-align: center;
  gap: 10px 0;
}
.details-nav-tabs .nav-tabs .nav-item {
  position: relative;
}
.details-nav-tabs .nav-tabs .nav-item::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 1px;
  top: 50%;
  inset-inline-end: -30px;
  background: black;
  transform: translateY(-50%);
  inset-block-end: -30px;
}
[dir=rtl] .details-nav-tabs .nav-tabs .nav-item::after {
  inset-block-start: auto;
  inset-inline-end: -30px;
  top: 50%;
}
.details-nav-tabs .nav-tabs .nav-item:last-child:after {
  display: none;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .details-nav-tabs .nav-tabs .nav-item:nth-child(3)::after {
    display: none;
  }
}
@media (max-width:450px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .details-nav-tabs .nav-tabs .nav-item::after {
    border-right: none;
  }
}
.details-nav-tabs .nav-tabs .nav-link {
  margin-bottom: 0px;
  border: none;
  display: block;
  color: var(--clr-common-black);
  text-decoration: none;
  padding: 6px 0;
}
.details-nav-tabs .nav-tabs .active {
  color: var(--clr-theme-1);
  background-color: transparent;
  border-color: transparent;
  font-weight: 600;
}
.details-nav-tabs .details-tab-title {
  position: relative;
  border-bottom: 1px solid var(--clr-common-soft-white);
  padding: 20px 30px 20px 30px;
}

.details-tab-list {
  padding: 30px 30px 30px 30px;
}

.details-tab-content span {
  color: var(--clr-common-green);
  font-weight: 700;
  font-size: 16px;
  line-height: 30px;
  text-transform: capitalize;
}
.details-tab-content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #0e202a;
  margin-bottom: 25px;
  margin-top: 15px;
}
.details-tab-content ul {
  margin-bottom: 25px;
}
.details-tab-content ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: #0e202a;
  margin-bottom: 15px;
  padding-inline-start: 20px;
  list-style: none;
}
.details-tab-content ul li::before {
  font-family: flaticon_cipro !important;
  content: "\f10a";
  position: absolute;
  inset-inline-start: 0;
  font-size: 16px;
  color: var(--clr-common-black);
}

.details-tab-thumb img {
  width: 100%;
}

.service-border {
  border-top: 1px solid var(--clr-common-soft-white);
  padding-top: 140px;
}
@media (max-width:450px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .service-border {
    padding-top: 70px;
  }
}

/*----------------------------------------
11. Contact CSS
----------------------------------------*/
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .contact-area {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.form-thumb {
  position: relative;
  z-index: 9;
}
.form-thumb img {
  width: 100%;
  min-height: 250px;
  object-fit: cover;
}

.contact-form-wrapper {
  position: relative;
  z-index: 9;
}
.contact-thumb {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.contact-thumb::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--clr-common-body-text);
  opacity: 0.96;
  z-index: -1;
}
.contact-form-box {
  padding: 58px 58px;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .contact-form-box {
    padding: 58px 35px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-box {
    padding: 58px 30px;
  }
}
.contact-form-input input, .contact-form-input textarea {
  width: 100%;
  height: 64px;
  border: none;
  border-bottom: 1px solid #0e202a;
}
.contact-form-input input:focus, .contact-form-input textarea:focus {
  outline: none;
  border-color: var(--clr-common-body-text);
}
.contact-form-input textarea {
  height: 130px;
  resize: none;
}
.contact-form-btn {
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.contact-form-btn:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}
.contact-form-btn:hover .contact-btn {
  color: var(--clr-common-white);
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}
.contact-form-btn .contact-btn {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: var(--clr-common-body-text);
  border: 1.77459px solid #0e202a;
  display: block;
  width: 100%;
  padding: 22px 20px;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .contact-form-btn .contact-btn {
    margin-top: 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-form-btn .contact-btn {
    margin-top: 20px !important;
  }
}

.bd-contact-wrap {
  position: relative;
  z-index: 9;
  margin-left: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .bd-contact-wrap {
    margin-left: 0;
  }
}
.bd-contact-wrap .contact-shape {
  color: var(--clr-common-white);
  font-size: 48px;
  border: 1px solid var(--clr-bg-1);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  line-height: 88px;
  display: inline-block;
  text-align: center;
}
@media (max-width: 575px), (max-width:450px) {
  .bd-contact-wrap .contact-shape {
    width: 60px;
    height: 60px;
    line-height: 50px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .bd-contact-wrap .contact-shape img {
    width: 50%;
  }
}
.bd-contact-wrap .contact-content span {
  font-size: 16px;
  color: var(--clr-bg-1);
  display: block;
  font-weight: 400;
  margin-bottom: 10px;
}
.bd-contact-wrap .contact-content a {
  font-size: 20px;
  font-weight: 600;
  color: var(--clr-common-gray);
}
@media (max-width: 575px), (max-width:450px) {
  .bd-contact-wrap .contact-content a {
    font-size: 18px;
  }
}
.bd-contact-wrap .contact-content:hover a {
  color: var(--clr-theme-1);
}

.contact-list-wrapper {
  display: flex;
  align-items: center;
  gap: 25px;
}

.contact-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 20px;
}

.contact-select {
  margin-top: 22px;
}

.nice-select.contact-form-input {
  border: none;
  border-bottom: 1px solid #0e202a;
  border-radius: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #0e202a;
  display: block;
  width: 100%;
  padding: 0;
}
.nice-select.contact-form-input .current {
  position: relative;
  top: -8px;
}
.nice-select.contact-form-input .list {
  border-radius: 0;
}
.nice-select.contact-form-input::after {
  margin-top: -27px;
  border-bottom: 2px solid #4D4D4D;
  border-right: 2px solid #4D4D4D;
  content: "";
  display: block;
  height: 10px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 65%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 10px;
}
.nice-select.contact-form-input .option.selected {
  font-weight: 600;
  font-size: 15px;
}

.contact-page {
  padding: 0 65px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .contact-page {
    padding: 0 0px;
  }
}

.contact-thumb-bg {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.contact-thumb-bg::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: var(--clr-common-body-text);
  opacity: 0.7;
  z-index: -1;
}

.contact-title {
  font-weight: 400;
  font-size: 50px;
  line-height: 1.3;
  text-transform: capitalize;
  color: var(--clr-theme-2);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .contact-title {
    margin-bottom: 30px;
  }
  .contact-title br {
    display: none;
  }
}
@media (max-width:450px), (max-width: 575px) {
  .contact-title {
    font-size: 26px;
    margin-bottom: 30px;
  }
}

.bd-contact-form-wrapper {
  position: relative;
  z-index: 9;
}
.bd-contact-form-input input, .bd-contact-form-input textarea {
  width: 100%;
  height: 55px;
  border: none;
  border-bottom: 1px solid #0e202a;
  padding: 0px 17px;
}
.bd-contact-form-input input:focus, .bd-contact-form-input textarea:focus {
  outline: none;
}
.bd-contact-form-input input::placeholder, .bd-contact-form-input textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #0e202a;
}
.bd-contact-form-input textarea {
  height: 200px;
  resize: none;
  padding: 15px 15px;
}
.bd-contact-form-btn:hover {
  background-color: var(--clr-common-black);
}
.bd-contact-form-btn:hover .contact-btn {
  color: var(--clr-common-white);
}
.bd-contact-form-btn .contact-btn {
  font-weight: 600;
  font-size: 18px;
  line-height: 1;
  color: var(--clr-common-body-text);
  border: 1.77459px solid #0e202a;
  display: block;
  width: 100%;
  padding: 22px 20px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-contact-form-btn .contact-btn {
    margin-top: 0;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-contact-form-btn .contact-btn {
    margin-top: 20px !important;
  }
}

.nice-select.bd-contact-form-input {
  border: none;
  border-bottom: 1px solid #0e202a;
  border-radius: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 55px;
  color: #0e202a;
  display: block;
  width: 100%;
  height: 55px;
  margin-bottom: 25px;
}
.nice-select.bd-contact-form-input .current {
  position: relative;
}
.nice-select.bd-contact-form-input.nice-select .list {
  border-radius: 0;
}
.nice-select.bd-contact-form-input::after {
  margin-top: -15px;
  border-bottom: 2px solid #646464;
  border-right: 2px solid #646464;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  top: 60%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.contact-btn-2 a {
  display: inline-flex;
  background-color: var(--clr-common-white);
  padding: 16px 27px;
  color: var(--clr-common-body-text);
  transition: 0.3s ease-in-out;
}
.contact-btn-2 a:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.contact-btn-2 a:hover i {
  color: var(--clr-common-white);
  transform: rotate(45deg);
}
.contact-btn-2 i {
  margin-inline-start: 5px;
  display: inline-block;
  font-size: 24px;
  color: var(--clr-common-body-text);
  transform: translateY(2px);
}

.contact-wrapper-2 {
  padding: 40px 40px 40px;
}
@media (max-width: 575px) {
  .contact-wrapper-2 {
    padding: 30px 30px 30px;
  }
}
.contact-wrapper-2 .contact-list-wrapper-2 {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-wrapper-2 .contact-list-wrapper-2 .contact-shape-2 {
  color: var(--clr-common-white);
  font-size: 48px;
  border: 1px solid #0e202a;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  line-height: 88px;
  display: inline-block;
  text-align: center;
  flex: 0 0 auto;
}
@media (max-width: 575px), (max-width:450px) {
  .contact-wrapper-2 .contact-list-wrapper-2 .contact-shape-2 {
    width: 60px;
    height: 60px;
    line-height: 50px;
  }
}
@media (max-width: 575px), (max-width:450px) {
  .contact-wrapper-2 .contact-list-wrapper-2 .contact-shape-2 img {
    width: 40%;
  }
}
.contact-wrapper-2 .contact-list-wrapper-2 .contact-content-2 span {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  display: flex;
  align-items: center;
  color: var(--clr-common-body-text);
}
.contact-wrapper-2 .contact-list-wrapper-2 .contact-content-2 a {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  display: flex;
  align-items: center;
  color: var(--clr-common-body-text);
}
@media (max-width: 575px), (max-width:450px) {
  .contact-wrapper-2 .contact-list-wrapper-2 .contact-content-2 a {
    font-size: 18px;
  }
}
.contact-wrapper-2 .contact-list-wrapper-2 .contact-content-2:hover a {
  color: var(--clr-theme-1);
}

.location-map {
  height: 400px;
}
.location-map iframe {
  height: 400px;
  width: 100%;
  border: 0;
  position: absolute;
  left: 0;
}

/*----------------------------------------
07. Blog CSS
----------------------------------------*/
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .xl-mb-0 {
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .lg-mt-0 {
    margin-top: 0;
  }
}

.under-line a {
  background-image: linear-gradient(var(--clr-theme-1), var(--clr-theme-1)), linear-gradient(var(--clr-theme-1), var(--clr-theme-1));
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 83%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  line-height: 1.5;
  padding: 2% 0;
}
.under-line a:hover {
  background-size: 0 1px, 100% 1px;
}

.under-line-2 a {
  background-image: linear-gradient(var(--clr-theme-2), var(--clr-theme-2)), linear-gradient(var(--clr-theme-2), var(--clr-theme-2));
  display: inline;
  background-size: 0% 1px, 0 1px;
  background-position: 100% 100%, 0 83%;
  background-repeat: no-repeat;
  transition: background-size 0.4s linear;
  padding: 2% 0;
}
.under-line-2 a:hover {
  background-size: 0 1px, 100% 1px;
}

.bd-blog-content-title {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.1;
  margin-inline-start: 82px;
  text-transform: capitalize;
  color: var(--clr-common-black);
}
.bd-blog-content-title:hover {
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width:450px) {
  .bd-blog-content-title {
    font-size: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-blog-content-title {
    margin-inline-start: 0px;
  }
}
@media (max-width: 575px) {
  .bd-blog-content-title {
    margin-inline-start: 0px;
    font-size: 20px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-blog-thumb {
    margin-inline-start: 0px;
  }
}
.bd-blog-thumb img {
  width: 100%;
}

.left-line {
  position: relative;
}
.left-line:before {
  content: "";
  height: 1px;
  width: 48px;
  display: inline-block;
  background-color: #0e202a;
  margin-inline-end: 10px;
  text-align: center;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .left-line:before {
    display: none;
  }
}

.postbox__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.postbox__meta h5 {
  margin-bottom: 0;
}
.postbox__meta-inner {
  display: flex;
  align-items: center;
  gap: 38px;
}
.postbox__meta-inner span {
  color: #0e202a;
  text-transform: capitalize;
  position: relative;
}
.postbox__meta-inner span a {
  font-size: 16px;
  color: #0e202a;
}
.postbox__meta-inner span a:hover {
  color: var(--clr-theme-1);
}
.postbox__meta-inner span:last-child:before {
  position: absolute;
  content: "";
  height: 7px;
  width: 7px;
  background: #626262;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: -21px;
  border-radius: 50%;
}

.bd-blog-tag {
  position: absolute;
  inset-inline-end: 1px;
  transform: rotate(-90deg);
  top: 96px;
  display: flex;
  gap: 10px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-blog-tag {
    inset-inline-end: -50px;
    top: 75px;
  }
}
.bd-blog-tag a {
  background-color: #FAF9DF;
  display: inline-block;
  width: 70px;
  height: 28px;
  text-align: center;
  border-radius: 30px;
  text-transform: capitalize;
  font-size: 14px;
}
.bd-blog-tag a:not(:last-child) {
  background-color: #DFF0FA;
}

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

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-info {
    margin-bottom: 50px;
  }
}

.news-2 {
  margin-top: 0px !important;
  text-align: end;
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px) {
  .news-2 {
    text-align: start !important;
  }
}

.blog-info {
  margin-inline-start: 140px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-info {
    margin-inline-start: 0px;
  }
}

.news-btn {
  margin-top: 75px;
}
@media only screen and (min-width: 1600px) and (max-width: 1800px), only screen and (min-width: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .news-btn {
    margin-top: 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .news-btn {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), (max-width:450px), only screen and (min-width: 576px) and (max-width: 767px) {
  .news-btn {
    margin-top: 30px;
    justify-content: flex-start;
  }
}

.bd-blog-2 {
  border: 1px solid var(--clr-common-soft-white);
  padding: 40px 40px 40px 40px;
  z-index: 1;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-blog-2 {
    padding: 25px 20px 25px 20px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-blog-2 {
    padding: 35px 20px 35px 20px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .bd-blog-2 {
    padding: 40px 20px 40px 20px;
  }
}
.bd-blog-2:hover .bd-blog-content-2 {
  transform: translateY(0px);
}
.bd-blog-tag-2 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.bd-blog-tag-2 a {
  background-color: #FAF9DF;
  display: inline-flex;
  height: 30px;
  border-radius: 30px;
  text-transform: capitalize;
  font-size: 16px;
  padding: 0 10px;
  align-items: center;
  justify-content: center;
}
.bd-blog-tag-2 a:not(:last-child) {
  background-color: #DFF0FA;
}
.bd-blog-content-title-2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2px;
  text-transform: capitalize;
  margin-bottom: 15px;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px), (max-width:450px) {
  .bd-blog-content-title-2 {
    font-size: 20px;
  }
}
.bd-blog-content-title-2:hover {
  color: var(--clr-common-body-text);
}
.bd-blog-content-sub-title-2 {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: var(--clr-common-white);
  margin-bottom: 40px;
  z-index: 9;
}
.bd-blog-content-2 {
  transform: translateY(157px);
  transition: all 0.4s ease-out 0s;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-blog-content-2 {
    transform: translateY(175px);
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-blog-content-2 {
    transform: translateY(180px);
  }
}
@media (max-width: 575px) {
  .bd-blog-content-2 {
    transform: translateY(245px);
  }
}
@media (max-width:450px) {
  .bd-blog-content-2 {
    transform: translateY(240px);
  }
}

.blog-thumb {
  position: absolute;
  transition: 0.3s;
  top: 0;
  inset-inline-start: 0;
  bottom: 0;
  inset-inline-end: 0;
  z-index: -1;
}
.blog-thumb::before {
  position: absolute;
  content: "";
  inset-inline-start: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(rgba(255, 255, 255, 0.1) 0%, rgba(0, 182, 122, 0.8) 80%, rgb(0, 182, 122) 100%);
}
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-detailes-3 {
    margin-bottom: 60px;
    margin-top: 60px;
  }
}

.bd-blog-tag-3 {
  margin-bottom: 30px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-blog-tag-3 {
    margin-bottom: 25px;
  }
}
.bd-blog-tag-3 a {
  background-color: #FAF9DF;
  display: inline-block;
  padding: 0 10px;
  height: 30px;
  text-align: center;
  border-radius: 30px;
  text-transform: capitalize;
  font-size: 16px;
  line-height: 30px;
  margin-inline-end: 5px;
}
.bd-blog-tag-3 a:not(:last-child) {
  background-color: #DFF0FA;
}

.blog-thumb-3 img {
  width: 100%;
}

.bd-blog-content-title-3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1.7;
  text-transform: capitalize;
  color: var(--clr-theme-2);
  margin-bottom: 25px;
}
.bd-blog-content-title-3:hover {
  color: var(--clr-theme-1);
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .bd-blog-content-title-3 {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media (max-width:450px) {
  .bd-blog-content-title-3 {
    font-size: 20px;
    line-height: 1.2;
  }
}

.bd-blog-meta-3 span {
  color: var(--clr-common-gray);
  font-size: 16px;
  line-height: 28px;
}
.bd-blog-meta-3 span::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--clr-common-soft-white);
  line-height: 7px;
  border-radius: 50%;
  transform: translateY(10px);
  margin-inline-start: 15px;
}
@media (max-width:450px), (max-width: 575px) {
  .bd-blog-meta-3 span::after {
    display: none;
  }
}
.bd-blog-meta-3 p {
  margin-inline-start: 35px;
  color: var(--clr-common-gray);
  font-size: 16px;
  margin-bottom: 0;
}
@media (max-width:450px), (max-width: 575px) {
  .bd-blog-meta-3 p {
    margin-inline-start: 10px;
  }
}

.bd-blog-meta-3 {
  display: flex;
  align-items: center;
}

.blog-btn-3 a {
  border: 1px solid var(--clr-common-gray);
  width: 100px;
  height: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-btn-3 a {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width:450px), (max-width: 575px) {
  .blog-btn-3 a {
    width: 70px;
    height: 70px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.blog-btn-3 a i {
  font-size: 30px;
  color: var(--clr-common-white);
  display: inline-block;
}
.blog-btn-3 a:hover {
  background: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
}
.blog-btn-3 a:hover i {
  transform: rotate(45deg);
  color: var(--clr-theme-2);
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .blog-btn-3 {
    float: inline-start !important;
  }
}

.blog-list-wrapper article .bd-blog-3 {
  border-bottom: 1px solid var(--clr-common-gray);
  padding-bottom: 62px;
}

.blog-list-wrapper article:last-child .bd-blog-3 {
  border-bottom: 0;
  padding-bottom: 0px;
}

@media (max-width:450px), (max-width: 575px) {
  .bd-blog-4 {
    padding: 0px 15px;
  }
}

.bd-blog-tag-4 {
  font-size: 16px;
  text-transform: capitalize;
  position: absolute;
  top: 30px;
  inset-inline-start: 30px;
}
.bd-blog-tag-4 a {
  background-color: #FAF9DF;
  display: inline-block;
  padding: 0 10px;
  height: 30px;
  text-align: center;
  border-radius: 30px;
  text-transform: capitalize;
  font-size: 14px;
  line-height: 30px;
  margin-inline-end: 5px;
}
.bd-blog-tag-4 a:not(:last-child) {
  background-color: #DFF0FA;
}

.bd-blog-thumb-4 img {
  width: 100%;
  height: 100%;
}
.bd-blog-thumb-4 img:hover {
  transform: scale(1.1);
}

.bd-blog-meta-4 span {
  font-size: 16px;
  font-weight: 400;
  color: #0e202a;
}
.bd-blog-meta-4 span a {
  font-size: 16px;
  margin-inline-start: 10px;
  color: #0e202a;
  line-height: 28px;
  font-weight: 400;
}
.bd-blog-meta-4 span a:hover {
  color: var(--clr-theme-1);
}
.bd-blog-meta-4 p {
  margin-inline-start: 35px;
  font-size: 14px;
  font-weight: 400;
  line-height: 28px;
}
.bd-blog-meta-4 p::after {
  content: "";
  width: 7px;
  height: 7px;
  background-color: #0e202a;
  border-radius: 50%;
  line-height: 7px;
  transform: translateY(11px);
  margin-inline-start: -20px;
  display: block;
  margin-top: -29px;
}
@media (max-width:450px) {
  .bd-blog-meta-4 {
    flex-direction: column;
  }
}

.bd-blog-content-title-4 {
  font-weight: 500;
  font-size: 24px;
  text-transform: capitalize;
  margin-top: 15px;
}
.bd-blog-content-title-4:hover {
  color: var(--clr-theme-1);
}
@media (max-width:450px), (max-width: 575px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-blog-content-title-4 {
    font-size: 20px;
  }
}

.blog-pgnation {
  text-align: end;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .blog-pgnation {
    text-align: start;
  }
}
.blog-pgnation .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background-color: #0e202a;
  position: relative;
  z-index: 1;
  outline-offset: 8px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  margin: 0 20px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .blog-pgnation .swiper-pagination-bullet {
    margin: 0 12px;
  }
}
.blog-pgnation .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  border: 1px solid #0e202a;
  border-radius: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  inset-inline-start: 50%;
}
[dir=rtl] .blog-pgnation .swiper-pagination-bullet::before {
  inset-inline-start: auto;
  inset-inline-end: 50%;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .blog-pgnation .swiper-pagination-bullet::before {
    height: 20px;
    width: 20px;
  }
}
.blog-pgnation .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  height: 44px;
  width: 44px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .blog-pgnation .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    height: 30px;
    width: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .blog-pgnation .swiper-pagination-bullets {
    padding-bottom: 35px;
  }
}

.details-main-thumb img {
  width: 100%;
}

.case-sub-image {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
.case-sub-image div img {
  width: 100%;
}
@media (max-width:450px), (max-width: 575px) {
  .case-sub-image {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.client-details-area {
  border: 1px solid var(--clr-common-soft-white);
}
.client-details ul li {
  border-top: 1px solid var(--clr-common-soft-white);
  padding: 25px 30px;
  position: relative;
  list-style: none;
  z-index: 1;
}
.client-details ul li .client-details-subtitle {
  font-weight: 400;
  font-size: 14px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
}
.client-details ul li h3 {
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: var(--clr-common-body-text);
  position: relative;
  display: block;
  margin-top: 10px;
}
.client-details ul li h3 a:hover {
  color: var(--clr-theme-1);
}
.client-title {
  font-size: 30px;
  padding: 30px 30px;
}

.details-list ul {
  margin-bottom: 25px;
}
.details-list ul li {
  position: relative;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #0e202a;
  margin-bottom: 15px;
  padding-inline-start: 26px;
  list-style: none;
}
.details-list ul li::before {
  font-family: flaticon_cipro !important;
  content: "\f10a";
  position: absolute;
  inset-inline-start: 0;
  font-size: 16px;
  color: var(--clr-common-black);
}

.bd-postbox-devider {
  border-bottom: 1px solid var(--clr-common-soft-white);
}

.bd-postbox-thumb {
  border: 1px solid var(--clr-common-soft-white);
  padding: 30px 30px 25px;
}
@media (max-width:450px), (max-width: 575px) {
  .bd-postbox-thumb {
    padding: 20px 20px 20px 20px;
  }
}
.bd-postbox-thumb img {
  width: 100%;
}
.bd-postbox-thumb .bd-blog-tag-5 a {
  background-color: #FAF9DF;
  display: inline-block;
  width: 70px;
  height: 28px;
  text-align: center;
  border-radius: 30px;
  text-transform: capitalize;
  font-size: 14px;
}
.bd-postbox-thumb .bd-blog-tag-5 a:not(:last-child) {
  background-color: #DFF0FA;
}
.bd-postbox-thumb .blog-video a {
  position: absolute;
  top: 50%;
  inset-inline-start: 50%;
  transform: translate(-50%, -50%);
  background: var(--clr-common-white);
  width: 104px;
  height: 104px;
  line-height: 110px;
  text-align: center;
  font-size: 20px;
  border-radius: 50%;
  color: var(--clr-common-body-text);
  animation: pulse 2s infinite;
}
[dir=rtl] .bd-postbox-thumb .blog-video a {
  top: 50%;
  inset-inline-end: 50%;
  transform: translate(50%, -50%);
}

.blog-content-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  text-transform: capitalize;
  color: var(--clr-common-black);
}
.blog-content .post-text p {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #0e202a;
}

.postbox-btn {
  width: 45px;
  height: 45px;
  background: var(--clr-common-gray);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.postbox-btn i {
  font-size: 20px;
  color: var(--clr-common-black);
}
.postbox-btn:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.bd-blog-meta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 30px;
}

.audio-blog {
  background-color: var(--clr-common-gray);
  padding: 65px 30px 45px 30px;
}
.audio-blog audio {
  width: 100%;
}
.audio-blog-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 40px;
  text-transform: capitalize;
  color: var(--clr-common-black);
}

.audio-postbox-title {
  margin-bottom: 25px;
}

.audio-blog-ply {
  align-items: center;
}
.audio-blog-ply i {
  background: var(--clr-common-white);
  width: 52px;
  height: 52px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  font-size: 14px;
  color: var(--clr-common-body-text);
}
.audio-blog-ply .time {
  margin-inline-start: 20px;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
}
@media (max-width:450px) {
  .audio-blog-ply .time {
    margin-inline-start: 10px;
  }
}
.audio-blog-ply .time-line {
  background: var(--clr-common-soft-white);
  height: 5px;
  width: 383px;
  margin-inline-start: 15px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .audio-blog-ply .time-line {
    width: 290px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .audio-blog-ply .time-line {
    width: 370px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .audio-blog-ply .time-line {
    width: 190px;
  }
}
@media (max-width: 575px) {
  .audio-blog-ply .time-line {
    width: 150px;
  }
}
@media (max-width:450px) {
  .audio-blog-ply .time-line {
    width: 0;
  }
}

.audio-blog-volume {
  align-items: center;
}
.audio-blog-volume i {
  background: var(--clr-common-white);
  width: 52px;
  height: 52px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  font-size: 14px;
  color: var(--clr-common-body-text);
}
.audio-blog-volume .volume-line {
  width: 71px;
  height: 5px;
  background: var(--clr-common-soft-white);
  margin-inline-start: 20px;
  position: relative;
}
.audio-blog-volume .volume-line::after {
  position: absolute;
  content: "";
  width: 39px;
  height: 5px;
  z-index: 17;
}

.postbox-sm-title {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  line-height: 1.5;
}
@media (max-width:450px) {
  .postbox-sm-title {
    font-size: 20px;
  }
}
.postbox-sm-title a:hover {
  color: var(--clr-theme-1);
}

.bd-sidebar-widget-wrapper {
  padding: 30px 30px 30px 30px;
}
.bd-sidebar-widget-wrapper-title {
  font-weight: 500;
  font-size: 20px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
  margin-bottom: 30px;
}
.bd-sidebar-widget-wrapper .sidebar-search {
  position: relative;
}
.bd-sidebar-widget-wrapper .sidebar-search input {
  width: 100%;
  height: 55px;
  border: 1px solid var(--clr-common-soft-white);
  background: var(--clr-common-white);
  border-radius: 0;
  padding: 0 23px;
  padding-inline-end: 55px;
  outline: 0;
  font-size: 14px;
}
.bd-sidebar-widget-wrapper .sidebar-search input::placeholder {
  color: #969696;
}
.bd-sidebar-widget-wrapper .sidebar-search input:focus {
  border-color: var(--clr-theme-2);
}
.bd-sidebar-widget-wrapper .sidebar-search button {
  position: absolute;
  inset-inline-end: 16px;
  top: 13px;
  color: #0e202a;
  line-height: 1;
  width: 30px;
  height: 30px;
  font-size: 20px;
}
.bd-sidebar-widget-wrapper .categories-list ul {
  margin-top: -10px;
}
.bd-sidebar-widget-wrapper .categories-list ul li {
  list-style: none;
  font-weight: 300;
  font-size: 16px;
  line-height: 40px;
  color: var(--clr-common-body-text);
  margin-inline-start: 15px;
  position: relative;
}
.bd-sidebar-widget-wrapper .categories-list ul li:hover {
  color: var(--clr-theme-1);
}
.bd-sidebar-widget-wrapper .categories-list ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--clr-common-body-text);
  top: 45%;
  transform: translateX(-50%);
  margin-inline-start: -13px;
}
.bd-sidebar-widget-wrapper .sidebar-blog {
  display: flex;
  gap: 10px 20px;
  border-bottom: 1px solid var(--clr-common-soft-white);
  padding-bottom: 20px;
}
@media (max-width:450px) {
  .bd-sidebar-widget-wrapper .sidebar-blog {
    flex-wrap: wrap;
  }
}
.bd-sidebar-widget-wrapper .sidebar-blog-thumb img {
  max-width: 76px;
  height: auto;
}
@media (max-width: 575px) {
  .bd-sidebar-widget-wrapper .sidebar-blog-thumb img {
    max-width: 100%;
  }
}
.bd-sidebar-widget-wrapper .sidebar-blog-content .blog-meta span {
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  text-transform: capitalize;
  color: #0e202a;
}
.bd-sidebar-widget-wrapper .sidebar-blog-content .blog-title {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  text-transform: capitalize;
  color: var(--clr-common-black);
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.bd-sidebar-widget-wrapper .sidebar-blog-content .blog-title:hover {
  opacity: 0.8;
}
.bd-sidebar-widget-wrapper .sidebar-widget-thumb img {
  width: 100%;
}

.sidebar-blog-tags {
  display: flex;
  gap: 15px 10px;
  flex-wrap: wrap;
}
.sidebar-blog-tags .blog-tag {
  font-size: 14px;
  text-transform: capitalize;
  color: #0e202a;
  border: 1px solid #0e202a;
  height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
}
.sidebar-blog-tags .blog-tag:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}

.bd-postbox-single .blog-sub-image {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
}
@media (max-width:450px), (max-width: 575px) {
  .bd-postbox-single .blog-sub-image {
    flex-wrap: wrap;
  }
}
.bd-postbox-single .blog-sub-image > div img {
  width: 100%;
}
.bd-postbox-single .blog-meta-wrapper {
  border-top: 1px solid var(--clr-common-soft-white);
  border-bottom: 1px solid var(--clr-common-soft-white);
  display: flex;
  justify-content: space-between;
  gap: 20px 30px;
  padding: 20px 0;
}
.bd-postbox-single .blog-meta-wrapper .meta-likes-wrapper i {
  height: 40px;
  width: 40px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--clr-common-border);
  font-size: 16px;
  margin-inline-end: 10px;
  color: var(--clr-common-body-text);
  display: inline-block;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-postbox-single .blog-meta-wrapper .meta-likes-wrapper i {
    margin-inline-end: 7px;
  }
}
.bd-postbox-single .blog-meta-wrapper .meta-likes-wrapper i:hover {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.social-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.social-links a {
  height: 40px;
  width: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border-radius: 50%;
  border: 1px solid var(--clr-common-border);
  font-size: 16px;
  color: var(--clr-common-body-text);
}
.social-links a:hover {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.blog-single {
  display: flex;
  gap: 20px;
  padding: 30px 30px 30px 30px;
  background: var(--clr-common-gray);
}
@media (max-width:450px) {
  .blog-single {
    flex-wrap: wrap;
  }
}
.blog-single-thumb img {
  max-width: 76px;
  height: auto;
}
@media (max-width: 575px) {
  .blog-single-thumb img {
    max-width: 100%;
  }
}

.postbox-title {
  font-weight: 400;
  font-size: 24px;
  text-transform: capitalize;
  margin-bottom: 15px;
  color: var(--clr-common-black);
}
.postbox-title a:hover {
  color: var(--clr-theme-1);
}
@media (max-width:450px) {
  .postbox-title {
    font-size: 20px;
  }
}

.blog-next {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .blog-next {
    align-items: start;
  }
}

.blog-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  text-transform: capitalize;
  cursor: pointer;
  color: var(--clr-common-body-text);
}
.blog-status:hover {
  opacity: 0.8;
}
.blog-status i {
  font-size: 20px;
}

.about-author {
  display: flex;
  gap: 30px;
  border: 1px solid var(--clr-common-soft-white);
  padding: 30px 30px 30px 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .about-author {
    display: grid;
  }
}
.about-author .author-title {
  font-weight: 400;
  font-size: 24px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
  margin-bottom: 5px;
}
.about-author .author-name {
  font-weight: 400;
  font-size: 14px;
  line-height: 25px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
}
.about-author .author-text p {
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: #0e202a;
  margin-top: 15px;
  margin-bottom: 0;
}

.blog-comment-wrapper {
  padding-top: 140px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width:450px), (max-width: 575px) {
  .blog-comment-wrapper {
    padding-top: 60px;
  }
}

.bd-form-title {
  font-weight: 400;
  font-size: 50px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
  position: relative;
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .bd-form-title {
    font-size: 40px;
  }
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .bd-form-title {
    font-size: 36px;
  }
}
@media (max-width:450px) {
  .bd-form-title {
    font-size: 30px;
  }
}

.blog-comment-form .single-input-field {
  margin-bottom: 30px;
}
.blog-comment-form .single-input-field input {
  border-radius: 0;
  padding: 0 22px;
}
.blog-comment-form .single-input-field input:focus-visible {
  border-color: var(--clr-theme-1);
}
.blog-comment-form .single-input-field textarea {
  border-radius: 0;
  padding: 12px 22px;
  height: 200px;
}
.blog-comment-form .single-input-field textarea:focus-visible {
  border-color: var(--clr-theme-1);
}

.single-input-field {
  margin-bottom: 20px;
  position: relative;
}
.single-input-field input {
  border-radius: 6px;
  height: 55px;
  width: 100%;
  padding: 0px 20px;
  padding-inline-start: 47px;
  background: var(--clr-common-white);
  color: #535353;
  border: 1px solid var(--clr-common-border);
  outline: 0;
}
.single-input-field textarea {
  border-radius: 6px;
  min-height: 100px;
  width: 100%;
  padding: 15px 15px;
  background: var(--clr-common-white);
  color: #535353;
  border: 1px solid var(--clr-common-border);
  resize: none;
  outline: 0;
}

.comment-btn a {
  display: inline-flex;
  border: 1px solid var(--clr-common-black);
  padding: 14px 27px;
  color: var(--clr-common-body-text);
  transition: 0.3s ease-in-out;
}
@media (max-width: 575px) {
  .comment-btn a {
    width: 100%;
    justify-content: center;
  }
}
.comment-btn a:hover {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.comment-btn a:hover i {
  color: var(--clr-common-white);
  transform: rotate(45deg);
}
.comment-btn i {
  margin-inline-start: 5px;
  display: inline-block;
  font-size: 24px;
  color: var(--clr-common-body-text);
  transform: translateY(2px);
}

/*----------------------------------------
30. Video CSS 
----------------------------------------*/
.back-video {
  position: relative;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

.video-3-bg {
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 575px) {
  .video-3-bg {
    min-height: 550px;
  }
}

.video-4-bg {
  padding-top: 100px;
  padding-bottom: 145px;
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .video-4-bg {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.video-4-bg::before {
  background: var(--clr-common-black);
  content: "";
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: matrix(-1, 0, 0, 1, 0, 0);
  transform: matrix(-1, 0, 0, 1, 0, 0);
}

.video-link-3 {
  position: relative;
}
.video-link-3 a {
  background: var(--clr-theme-1);
  width: 137px;
  height: 137px;
  display: inline-block;
  border-radius: 50%;
  line-height: 150px;
  font-size: 30px;
  color: var(--clr-common-white);
  animation: pulse 2s infinite;
}
.video-title {
  border-bottom: 1px solid var(--clr-common-white);
  margin-top: -70px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .video-title {
    margin-top: 0px;
    margin-bottom: 50px;
    text-align: center;
  }
}
.video-title span {
  font-size: 18px;
  color: var(--clr-theme-2);
  font-weight: 400;
  line-height: 1.7;
  text-transform: capitalize;
  display: inline-block;
  padding-bottom: 20px;
}
.video-time {
  border-top: 1px solid var(--clr-common-white);
  margin-top: 130px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .video-time {
    margin-top: 50px;
  }
}
.video-time span {
  font-weight: 600;
  font-size: 50px;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--clr-theme-2);
  text-align: right;
  display: block;
  padding-top: 70px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .video-time span {
    padding-top: 30px;
    text-align: center;
  }
}

.about-video-area {
  margin-top: -250px;
  position: relative;
  z-index: 9;
}
.about-video-area .about-video-link {
  background: var(--clr-theme-1);
  width: 138px;
  height: 138px;
  display: inline-block;
  border-radius: 50%;
  line-height: 150px;
  font-size: 38px;
  color: var(--clr-common-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}
@media (max-width:450px) {
  .about-video-area .about-video-link {
    width: 100px;
    height: 100px;
    line-height: 110px;
    font-size: 26px;
  }
}
.about-video-area .about-video-thumb {
  min-height: 585px;
}
@media (max-width: 575px) {
  .about-video-area .about-video-thumb {
    min-height: 450px;
  }
}

/*----------------------------------------
    Testimonial CSS
----------------------------------------*/
.testimonial-thumb {
  padding-right: 30px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .testimonial-thumb {
    padding-right: 0px;
    margin-top: 30px;
  }
}
.testimonial-thumb img {
  width: 100%;
  border-radius: 1000px 1000px 0px 1000px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-thumb img {
    border-radius: 0;
  }
}
@media (max-width: 575px) {
  .testimonial-thumb {
    margin-top: 50px;
  }
}

.quote-icon {
  position: absolute;
  font-size: 44px;
  color: var(--clr-common-black);
  top: 50%;
  left: 81px;
  width: 78px;
  height: 78px;
  background: var(--clr-common-white);
  line-height: 78px;
  text-align: center;
  border-radius: 50%;
  transform: translateY(-50%);
}

.testimonial-title-area {
  display: inline-block;
  margin-top: 80px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-title-area {
    margin-top: 0;
  }
}

.testimonial-sm-img {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .testimonial-sm-img {
    right: -30px;
  }
}
@media (max-width:450px), (max-width: 575px) {
  .testimonial-sm-img {
    display: none;
  }
}
.testimonial-sm-img img {
  border-radius: 1000px 1000px 1000px 0px;
}

@media (max-width:450px), (max-width: 575px) {
  .testimonial-items-4 {
    margin-top: 30px;
  }
}

.testmonial-heading-title {
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: var(--clr-common-body-text);
}

.testmonial-rating {
  margin-bottom: 30px;
}

.testimonial-items-4 p {
  font-size: 24px;
  line-height: 1.5;
  color: #0e202a;
  margin-bottom: 20px;
}
@media (max-width:450px) {
  .testimonial-items-4 p {
    font-size: 20px;
  }
}

.testimonial-info-title {
  font-weight: 500;
  font-size: 18px;
  line-height: 34px;
  color: var(--clr-common-body-text);
  margin-bottom: 0;
}

.testimonial-info-designation {
  font-weight: 400;
  font-size: 14px;
  line-height: 32px;
}

.testimonial-active .testimonial-pagination {
  position: absolute;
  text-align: end;
  z-index: 9;
  padding-bottom: 5px;
}
.testimonial-active .testimonial-pagination .testimonial-pagination {
  position: absolute;
  text-align: end;
}
.testimonial-active .swiper-pagination-bullet {
  width: 24px;
  height: 24px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #0e202a;
  background: transparent;
  opacity: 0.2;
  position: relative;
  line-height: 24px;
}
.testimonial-active .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--clr-common-black);
  line-height: 24px;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.testimonial-active .swiper-pagination-bullet.swiper-pagination-bullet-active {
  transform: scale(2);
  margin: 0 15px;
  opacity: 0.8;
  color: #0e202a;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .testimonial-active .swiper-pagination-bullet.swiper-pagination-bullet-active {
    transform: scale(1.5);
    margin: 0 5px;
  }
}
.testimonial-active .swiper-pagination-bullets {
  display: flex;
  justify-content: end;
  gap: 15px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .testimonial-active .swiper-pagination-bullets {
    justify-content: end;
    gap: 2px;
    margin-left: -1px;
  }
}

/*----------------------------------------
19. mission CSS
----------------------------------------*/
.mission-thumb {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100%;
}

.l-bottom {
  border-bottom: 1px solid var(--clr-theme-2);
  padding-bottom: 50px;
}

.mission-nav-tabs .mission-tab-title {
  margin-bottom: 35px;
  margin-top: 35px;
}
.mission-nav-tabs .mission-tab-title .nav-tabs {
  border-bottom: 1px solid var(--clr-theme-2);
  padding-bottom: 35px;
  border-top: 1px solid var(--clr-common-white);
  padding-top: 35px;
  gap: 30px 20px;
}
@media (max-width:450px), (max-width: 575px) {
  .mission-nav-tabs .mission-tab-title .nav-tabs {
    flex-direction: column;
  }
}
.mission-nav-tabs .mission-tab-title .nav-tabs .nav-link.active, .mission-nav-tabs .mission-tab-title .nav-tabs .nav-item.show .nav-link {
  color: var(--clr-common-white);
  background-color: transparent;
  border: none;
}
@media (max-width:450px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .mission-nav-tabs .mission-tab-title .nav-tabs .nav-link.active, .mission-nav-tabs .mission-tab-title .nav-tabs .nav-item.show .nav-link {
    border: 1px solid var(--clr-theme-2);
  }
}
.mission-nav-tabs .mission-tab-title .nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
@media (max-width:450px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .mission-nav-tabs .mission-tab-title .nav-tabs .nav-link {
    margin-bottom: 10px;
    border: 1px solid #0e202a;
  }
}
.mission-nav-tabs .mission-tab-title .nav-link {
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 0;
  height: 55px;
  color: #acacac;
}
.mission-nav-tabs .mission-tab-list ul li {
  display: flex;
  justify-content: space-between;
  color: var(--clr-common-white);
  font-size: 16px;
  text-transform: capitalize;
  border-bottom: 1px solid var(--clr-theme-2);
  padding-bottom: 30px;
  padding-top: 30px;
}
@media (max-width:450px), (max-width: 575px) {
  .mission-nav-tabs .mission-tab-list ul li {
    font-size: 14px;
  }
}

.mission-btn a {
  border: 2px solid var(--clr-common-white);
  border-radius: 50px;
  padding: 14px 27px;
}


.choose-container {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 20px; /* Optional: Add spacing between columns */
}

.choose-column {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1; /* Make all columns the same width */
  min-width: 250px; /* Set a minimum width for responsiveness */
}

/*----------------------------------------
 12. counter CSS
----------------------------------------*/
.single-counter p {
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  color: var(--clr-common-body-text);
}

.single-counter .count {
  font-size: 50px;
  font-weight: 600;
  line-height: 60px;
  color: #0e202a;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  justify-content: center;
}

/*----------------------------------------
20. page-title CSS
----------------------------------------*/
.breadcrumb-header.header-menu-bar-2 i {
  color: var(--clr-common-black);
}

.breadcrumb-header ul li a {
  color: var(--clr-common-black);
}

.breadcrumb-search.search-trigger-2 .input {
  border: 1px solid var(--clr-common-black);
  color: var(--clr-common-black);
}
.breadcrumb-search.search-trigger-2 .input::placeholder {
  color: var(--clr-common-black);
}
.breadcrumb-search.search-trigger-2 .search-btn .search-btn-icon {
  color: var(--clr-common-black);
}

.page-title-area.page-space {
  /* padding: 195px 0 395px; */
}

.page-title-area {
  display: flex;
  align-items: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  z-index: 2;
  padding: 200px 0 145px;
}
@media (max-width: 575px) {
  .page-title-area {
    padding: 170px 0 115px;
  }
}
.page-title-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #E6E6FA;
  opacity: 0.8;
  top: 0;
  inset-inline-start: 0;
  z-index: -1;
}

.page-title-wrapper p {
  font-weight: 700;
  color: var(--clr-common-white);
  text-transform: uppercase;
  margin-bottom: 3px;
}

.page-title {
  font-size: 75px;
  font-weight: 400;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 1400px) and (max-width: 1599px) {
  .page-title {
    font-size: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title {
    font-size: 48px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .page-title {
    font-size: 38px;
  }
}
@media (max-width: 575px) {
  .page-title {
    font-size: 36px;
  }
}

.breadcrumb-menu li {
  list-style: none;
  position: relative;
}
.breadcrumb-menu li a:hover {
  color: var(--clr-theme-1);
}
.breadcrumb-menu li a span:hover {
  color: var(--clr-theme-1);
}
.breadcrumb-menu li span {
  font-size: 16px;
  font-weight: 500;
  color: var(--clr-common-body-text);
  text-transform: capitalize;
}
.breadcrumb-menu li:first-child span {
  font-weight: 400;
  color: var(--clr-common-body-text);
}
.breadcrumb-menu li:not(:last-child):after {
  display: inline-block;
  color: var(--clr-common-body-text);
  content: "\f10a";
  position: absolute;
  inset-inline-end: -25px;
  top: 0px;
  font-family: flaticon_cipro !important;
  font-size: 14px;
}
[dir=rtl] .breadcrumb-menu li:not(:last-child):after {
  transform: rotateY(180deg);
}
.breadcrumb-menu ul {
  display: flex;
  justify-content: center;
  gap: 5px 36px;
  flex-wrap: wrap;
}

.page-title-shape {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  inset-inline-start: 0;
}
.page-title-shape .shape-cube {
  position: absolute;
  inset-inline-end: 70px;
  bottom: 34px;
  opacity: 0.25;
  width: 126px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .page-title-shape .shape-cube {
    width: 70px;
  }
}
@media (max-width: 575px) {
  .page-title-shape .shape-cube {
    width: 50px;
  }
}

/*----------------------------------------
08. brand CSS
----------------------------------------*/
.brand-img {
  display: block;
  text-align: center;
}

.brand-area-2 .brand-img {
  display: block;
  text-align: center;
  opacity: 0.2;
  transition: 0.7s;
}
.brand-area-2 .brand-img:hover {
  opacity: 1;
}

/*----------------------------------------
21. pricing CSS
----------------------------------------*/
.bd-price {
  position: relative;
  padding: 30px 30px 30px 30px;
  z-index: 1;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width:450px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-price {
    padding: 30px 25px 30px;
  }
}
.bd-price::before {
  background: #F0F7FD;
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  opacity: 0.8;
  z-index: -1;
}

.bd-price-head-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
  border-bottom: 1px solid #D9D9D9;
  padding-bottom: 15px;
  margin-bottom: 0;
}

.bd-price-tag {
  position: relative;
  font-weight: 400;
  font-size: 55px;
  line-height: 1;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
  margin-top: 25px;
  margin-bottom: 50px;
}
@media (max-width:450px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .bd-price-tag {
    font-size: 48px;
  }
}
.bd-price-tag span {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-transform: capitalize;
  color: #000000;
}
.bd-price-tag span::before {
  position: absolute;
  content: "/";
  bottom: 7px;
  margin-inline-start: -10px;
}

.bd-price-feature {
  margin-bottom: 55px;
}
.bd-price-feature ul {
  list-style: none;
}
.bd-price-feature ul li {
  margin-bottom: 15px;
  position: relative;
  font-weight: 400;
  font-size: 16px;
  text-transform: capitalize;
  color: #000000;
  margin-inline-start: 15px;
}
.bd-price-feature ul li:last-child {
  margin-bottom: 0;
}
.bd-price-feature ul li::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  background: #000;
  margin-inline-start: -15px;
  top: 50%;
  transform: translateY(-50%);
}
.bd-price-feature ul li.price-feature {
  color: #0e202a;
}

.bd-price-btn a {
  display: inline-flex;
  border: 1px solid var(--clr-common-black);
  padding: 14px 27px;
  color: var(--clr-common-body-text);
  transition: 0.3s ease-in-out;
}
.bd-price-btn a:hover {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.bd-price-btn a:hover i {
  color: var(--clr-common-white);
  transform: rotate(45deg);
}
.bd-price-btn i {
  margin-inline-start: 5px;
  display: inline-block;
  font-size: 24px;
  color: var(--clr-common-body-text);
  transform: translateY(2px);
}

.active-price {
  border: 1px solid #FF7800;
}

.bd-price-badge {
  position: absolute;
  background: #FF7800;
  padding: 10px 60px 10px 60px;
  transform: rotate(-42.22deg);
  inset-inline-end: -55px;
  bottom: 25px;
}
[dir=rtl] .bd-price-badge {
  transform: rotate(42.22deg);
}
.bd-price-badge span {
  font-weight: 500;
  font-size: 18px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--clr-common-white);
}

/*----------------------------------------
14. faq CSS
----------------------------------------*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .faq-accordion {
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .faq-accordion {
    margin-left: 0 !important;
  }
}
@media (max-width: 575px) {
  .faq-accordion {
    margin-left: 0 !important;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .faq-accordion {
    margin-left: 0 !important;
  }
}
.faq-accordion .accordion-item {
  background-color: var(--clr-common-white);
  border: none;
  border-bottom: 1px solid var(--clr-common-soft-white);
}
.faq-accordion .accordion-item:last-child {
  border-bottom: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  color: var(--clr-common-body-text);
  background-color: transparent;
  box-shadow: none;
}
.faq-accordion .accordion-button::after {
  position: absolute;
  content: "\f10c";
  font-family: "flaticon_cipro";
  background-image: none;
  top: 28%;
  right: 0;
  transform: rotate(90deg);
  color: var(--clr-common-body-text);
  width: auto;
  height: auto;
  font-weight: 400;
  font-size: 16px;
}
.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(-45deg);
  color: #0e202a;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-button {
  padding: 28px 30px 30px 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 36px;
  text-transform: capitalize;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .faq-accordion .accordion-button {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  .faq-accordion .accordion-button {
    padding: 15px 30px 15px 0;
    font-size: 18px;
    line-height: 26px;
  }
}
.faq-accordion .accordion-body {
  padding: 0 30px 0 0;
}
.faq-accordion .accordion-body p {
  /* text-transform: capitalize; */
  margin-bottom: 25px;
}

.faq-thumb {
  margin-left: 30px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .faq-thumb {
    margin-left: 0px;
  }
}
.faq-thumb img {
  width: 100%;
}

/*----------------------------------------
16. footer CSS
----------------------------------------*/
.footer-info {
  border-bottom: 1px solid var(--clr-common-border);
  padding-bottom: 32px;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}
.footer-info .footer-info-title {
  font-size: 20px;
  color: var(--clr-bg-2);
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 0;
}
.footer-info .footer-info-title a:hover {
  color: #00ffaa;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-info .footer-info-title {
    font-size: 17px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-info .footer-info-title {
    font-size: 16px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-info .footer-info-title {
    font-size: 16px;
  }
}
.footer-info p {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #0e202a;
}
.footer-info:hover.footer-info p {
  color: var(--clr-bg-2);
}
.footer-info:hover.footer-info {
  border-color: var(--clr-common-white);
}

.footer-menu-title {
  color: var(--clr-bg-2);
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  margin-bottom: 20px;
}

.footer-menu ul {
  display: inline-block;
}
.footer-menu ul li {
  font-size: 16px;
  color: var(--clr-bg-2);
  margin-bottom: 10px;
  list-style: none;
}
.footer-menu ul li:hover {
  color: var(--clr-theme-1);
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget-wrap {
    flex-direction: column;
  }
}

.footer-widget-link-title {
  color: var(--clr-common-white);
  font-weight: 400;
  font-size: 50px;
  text-transform: capitalize;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-widget-link-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget-link-title {
    font-size: 38px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-widget-link-title {
    font-size: 30px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget-link-title {
    font-size: 30px;
    text-align: start !important;
    margin-bottom: 20px;
  }
}
@media (max-width:450px), (max-width: 575px) {
  .footer-widget-link-title {
    font-size: 30px;
    text-align: start !important;
  }
}

.footer-widget-link-btn a {
  background: var(--clr-theme-2);
  width: 70px;
  height: 70px;
  border-radius: 50px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  font-size: 32px;
  color: var(--clr-common-body-text);
}
.footer-widget-link-btn a:hover {
  transform: rotate(46deg);
  background: var(--clr-theme-1);
  color: white;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .footer-widget-link-btn a {
    width: 60px;
    height: 60px;
    font-size: 22px;
  }
}
@media (max-width:450px), (max-width: 575px) {
  .footer-widget-link-btn a {
    width: 55px;
    height: 55px;
    font-size: 22px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget-link-btn {
    text-align: start !important;
  }
}

.footer-social a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--clr-common-border);
  font-size: 16px;
  margin-right: 10px;
  color: var(--clr-bg-2);
  display: inline-block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-social a {
    margin-right: 7px;
  }
}
.footer-social a:hover {
  border-color: var(--clr-theme-1);
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.b-bottom {
  border-bottom: 1px solid var(--clr-common-border);
}

.copyright-title {
  margin-bottom: 35px;
  font-size: 16px;
  line-height: 28px;
  color: #0e202a;
}
.copyright-title:hover a {
  color: var(--clr-theme-1);
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-area {
    padding-left: 45px;
    padding-right: 45px;
  }
}

@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .copyright-area {
    padding-left: 45px;
    padding-right: 45px;
  }
}

.footer-line {
  border-bottom: 1px solid var(--clr-common-border);
}

.footer-widget .footer-menu-title-2 {
  font-weight: 500;
  font-size: 20px;
  text-transform: capitalize;
  color: var(--clr-bg-2);
  margin-bottom: 35px;
}
.footer-widget span {
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: var(--clr-bg-2);
  text-transform: capitalize;
}
.footer-widget:hover span {
  color: var(--clr-theme-1);
}

.footer-subscribe input {
  border-radius: 30px;
  padding-left: 26px;
  padding-right: 70px;
  color: var(--clr-common-white);
  font-size: 16px;
  font-weight: 400;
  background: transparent;
  width: 100%;
  height: 64px;
  outline: none;
  border: 1px solid var(--clr-common-white);
}
.footer-subscribe input:focus-visible {
  border: 1px solid var(--clr-theme-1);
}
.footer-subscribe input::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
  color: #0e202a;
}

.footer-submit {
  position: absolute;
  top: 9px;
  right: 10px;
  width: 48px;
  height: 48px;
  background-color: var(--clr-bg-2);
  border-radius: 50%;
  color: var(--clr-common-body-text);
  text-align: center;
  line-height: 56px;
  font-size: 24px;
}
.footer-submit:hover {
  transform: rotate(45deg);
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}

.copyright-area-3 {
  padding-bottom: 120px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px) {
  .copyright-area-3 {
    padding-bottom: 0px;
  }
}

.copy-right-menu ul {
  display: inline-flex;
  font-size: 16px;
  color: var(--clr-bg-2);
  align-items: center;
  gap: 20px 20px;
  flex-wrap: wrap;
}
.copy-right-menu ul li {
  list-style: none;
}
.copy-right-menu ul li:hover a {
  color: var(--clr-theme-1);
}

.copyright-title-2 {
  font-size: 16px;
  color: var(--clr-bg-2);
  text-transform: capitalize;
}
.copyright-title-2 a:hover {
  color: var(--clr-theme-1);
}

.footer-rateing {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.footer-rateing .rateing-title {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: var(--clr-bg-2);
}

.footer__widget-wrapper-3 {
  display: grid;
  grid-template-columns: 30% 40% auto;
  justify-content: space-between;
  align-items: center;
  gap: 50px 30px;
  margin-bottom: 65px;
}
@media (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .footer__widget-wrapper-3 {
    grid-template-columns: auto;
  }
}

.footer-bg {
  position: relative;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.footer-bg::before {
  background: linear-gradient(180deg, #000000 0%, rgba(0, 0, 0, 0.46) 100%);
  content: "";
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transform: matrix(-1, 0, 0, 1, 0, 0);
}
.footer-bg::after {
  position: absolute;
  content: "";
  height: 1px;
  width: 1410px;
  background: linear-gradient(90deg, #000 0%, #FFF 51.04%, #000 100%);
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer-bg::after {
    width: 100%;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-logo-area .footer-widget-logo {
    text-align: start !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-logo-area .footer-rateing {
    text-align: start !important;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px), only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-logo-area .footer-social {
    text-align: start !important;
  }
}

.footer-bottom-3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px 50px;
}

.footer-address p {
  color: var(--clr-common-white);
}

.footer-widget-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .footer-widget-wrap {
    display: grid !important;
    grid-template-columns: auto auto;
  }
}
@media (max-width:450px) {
  .footer-widget-wrap {
    flex-wrap: wrap;
  }
}

/*----------------------------------------
27. Settings CSS
----------------------------------------*/
.bd-theme-settings-area {
  position: fixed;
  top: 50%;
  right: 0px;
  width: 240px;
  background-color: var(--clr-common-white);
  border: 1px solid #EAEAEF;
  -webkit-transform: translateY(-50%) translateX(100%);
  -moz-transform: translateY(-50%) translateX(100%);
  -ms-transform: translateY(-50%) translateX(100%);
  transform: translateY(-50%) translateX(100%);
  z-index: 991;
  border-bottom-right-radius: 4px;
}
[dir=rtl] .bd-theme-settings-area {
  -webkit-transform: translateY(-50%) translateX(-100%);
  -moz-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%);
  left: 0px;
  right: auto;
}
.bd-theme-settings-area.settings-opened {
  -webkit-transform: translateY(-50%) translateX(0%);
  -moz-transform: translateY(-50%) translateX(0%);
  -ms-transform: translateY(-50%) translateX(0%);
  transform: translateY(-50%) translateX(0%);
}
.bd-theme-settings-area.settings-opened .bd-theme-settings-gear {
  opacity: 0;
}
.bd-theme-settings-area.settings-opened .bd-theme-settings-close {
  opacity: 1;
}
.bd-theme-settings-open {
  position: absolute;
  top: -1px;
  inset-inline-end: 100%;
}
.bd-theme-settings-open button {
  display: none;
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 20px;
  color: var(--clr-common-black);
  position: relative;
  background: var(--clr-theme-1);
  /* display: inline-flex; */
  align-items: center;
  justify-content: center;
  border-inline-end: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-theme-settings-open button {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
  }
}
.bd-theme-settings-gear {
  display: inline-block;
  -webkit-animation: spin 4s linear infinite;
  -moz-animation: spin 4s linear infinite;
  animation: spin 4s linear infinite;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-ms-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.bd-theme-settings-close {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
}
.bd-theme-header-title {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
}
.bd-theme-wrapper {
  padding: 20px 25px 20px;
}
.bd-theme-toggle {
  text-align: center;
  display: none !important;
}
.bd-theme-toggle-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}
.bd-theme-toggle-light, .bd-theme-toggle-dark {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}
.bd-theme-toggle input {
  display: none;
}
.bd-theme-toggle:hover {
  cursor: pointer;
}
.bd-theme-toggle label {
  color: var(--clr-common-black);
  font-size: 14px;
  font-weight: 500;
}
.bd-theme-toggle label:hover {
  cursor: pointer;
}
.bd-theme-toggle #bd-theme-toggler {
  display: none;
}
.bd-theme-toggle #bd-theme-toggler:checked + i {
  inset-inline-end: calc(50% - 4px);
}
.bd-theme-toggle-slide {
  position: absolute;
  top: 50%;
  inset-inline-end: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--clr-common-black);
  background-color: var(--clr-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.bd-theme-dir {
  text-align: center;
}
.bd-theme-dir-main {
  display: inline-block;
  width: 160px;
  margin: auto;
  position: relative;
  z-index: 1;
  background-color: #f0f0f5;
  padding: 4px;
  border-radius: 20px;
}
.bd-theme-dir-ltr, .bd-theme-dir-rtl {
  display: inline-block;
  width: 48%;
  height: 26px;
  line-height: 26px;
}
.bd-theme-dir input {
  display: none;
}
.bd-theme-dir:hover {
  cursor: pointer;
}
.bd-theme-dir label {
  color: var(--clr-common-black);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--tpl-ff-heading);
}
.bd-theme-dir label:hover {
  cursor: pointer;
}
.bd-theme-dir #bd-dir-toggler {
  display: none;
}
.bd-theme-dir #bd-dir-toggler:checked + i {
  inset-inline-end: calc(50% - 4px);
}
.bd-theme-dir-slide {
  position: absolute;
  top: 50%;
  inset-inline-end: 4px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 50%;
  height: 26px;
  color: var(--clr-common-black);
  background-color: var(--clr-common-white);
  border-radius: 30px;
  -webkit-transform: translate3d(0, 0);
  transform: translate3d(0, 0);
  -webkit-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  -o-transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  transition: 0.2s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: -1;
}
.bd-theme-color-item.active button::before {
  opacity: 1;
  visibility: visible;
}
.bd-theme-color-btn {
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  position: relative;
}
.bd-theme-color-btn::before {
  position: absolute;
  content: "\f00c";
  font-weight: 400;
  font-family: "Font Awesome 5 Pro";
  color: var(--clr-common-white);
  font-size: 16px;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#00B67A"] {
  background-color: #00B67A;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#008080"] {
  background-color: #008080;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#28B6F6"] {
  background-color: #28B6F6;
}
.bd-theme-color-btn.bd-color-settings-btn[data-color="#f46100"] {
  background-color: #f46100;
}
.bd-theme-color-input {
  margin-top: 15px;
}
.bd-theme-color-input h6 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 10px;
}
.bd-theme-color-input label {
  display: inline-block;
  width: 100%;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background-color: var(--clr-bg-1);
}
.bd-theme-color-input label:hover {
  cursor: pointer;
}
.bd-theme-color-input input {
  display: none;
}

/*----------------------------------------
13. error CSS
----------------------------------------*/
.error-content-title {
  font-size: 65px;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 15px;
  color: var(--clr-common-body-text);
  text-transform: capitalize;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .error-content-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .error-content-title {
    font-size: 40px;
  }
}
@media (max-width:450px) {
  .error-content-title {
    font-size: 36px;
  }
}
.error-content-sub-title {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.2;
  color: #0e202a;
  display: inline-block;
}

.error-btn {
  margin-top: 50px;
}
.error-btn a {
  margin-inline-start: 10px;
  display: inline-block;
  border: 2px solid var(--clr-common-black);
  border-radius: 50px;
  padding: 14px 27px;
  color: var(--clr-common-body-text);
  transition: 0.3s ease-in-out;
}
.error-btn a:hover {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.error-btn span i {
  font-size: 16px;
  color: var(--clr-common-body-text);
}

/*----------------------------------------
17. gallery CSS
----------------------------------------*/
.gallery-thumb img {
  max-width: 100%;
}

/*----------------------------------------
    cursor CSS
----------------------------------------*/
body {
  cursor: none;
}

.cursor-outer {
  margin-left: -15px;
  margin-top: -15px;
  width: 30px;
  height: 30px;
  border: 2px solid #b554f1;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  transition: all 0.08s ease-out;
}
.cursor-outer.cursor-hover {
  opacity: 0;
}
.cursor-outer.cursor-none {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}
[dir=rtl] .mouseCursor {
  left: 0;
  right: auto;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px), (max-width:450px) {
  .mouseCursor {
    display: none;
  }
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: #b554f1;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.cursor-inner span {
  color: #b554f1;
  line-height: 80px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}
.cursor-inner.cursor-hover {
  margin-left: -40px;
  margin-top: -40px;
  width: 80px;
  height: 80px;
  background-color: #b554f1;
  opacity: 0.3;
}
.cursor-inner.cursor-none {
  opacity: 0;
}

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