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

/************ 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
----------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Sora:wght@100;200;300;400;500;600;700;800&amp;display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--bd-ff-body);
  font-size: 16px;
  font-weight: normal;
  color: var(--clr-common-text);
  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;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--bd-ff-body);
  color: var(--clr-common-body-text);
  margin-top: 0px;
  font-weight: 600;
  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: 65px;
}

h2 {
  font-size: 45px;
}

h3 {
  font-size: 35px;
}

h4 {
  font-size: 25px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

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

p {
  font-size: 16px;
  font-weight: normal;
  color: var(--clr-common-paragraph-color);
  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:#f0f7fd;
}

.cp-bg3a {
    background-color: #2c7e2f;
}

.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: #5d9700 !important;
  --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;
  --clr-bg-6: #F1F8FD;
  /**
  @font family declaration
  */
  --bd-ff-body: 'Poppins', sans-serif;
  --bd-ff-heading: 'Poppins', 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: 1441px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}
@media (min-width: 1441px) {
  .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;
}

.uppercase {
  text-transform: uppercase;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.inline-block {
  display: inline-block;
}

.cp-pointer {
  cursor: pointer;
}

.container.container-1550 {
  max-width: 1550px;
}

.cp-tc {
  color: var(--clr-theme-1);
}

.cp-bg1 {
  background-color: var(--clr-theme-1);
}

.cp-bg2 {
  background-color: var(--clr-theme-2);
}

.cp-bg3 {
  background-color: #0E202A;
}

.cp-bg4 {
  background-color: #F1F8FD;
}

.cp-bg5 {
  background-color: #F0F7FD;
  
}

.cp-bg6 {
  background-color: #F5F5F5;
}

.max-800 {
  max-width: 800px;
}

.max-820 {
  max-width: 820px;
}

.max-700 {
  max-width: 700px;
}

.max-790 {
  max-width: 790px;
}

.max-500 {
  max-width: 500px;
}

.max-450 {
  max-width: 450px;
}

.max-420 {
  max-width: 420px;
}

.cp-max-500 {
  max-width: 500px;
}

.max-520 {
  max-width: 520px;
}

.max-570 {
  max-width: 570px;
}

.max-410 {
  max-width: 410px;
}

.max-350 {
  max-width: 350px;
}

.max-360 {
  max-width: 360px;
}

.max-320 {
  max-width: 320px;
}

.max-270 {
  max-width: 270px;
}

.max-600 {
  max-width: 600px;
}

.max-1120 {
  max-width: 1120px;
}

.max-640 {
  max-width: 640px;
}

.max-690 {
  max-width: 690px;
}

.cp-ml-auto {
  margin-left: auto;
}
[dir=rtl] .cp-ml-auto {
  margin-right: auto;
}

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

.cp-round-arrow-wrap {
  gap: 15px;
}

@media (max-width: 575px) {
  .team-nav-btn.cp-round-arrow-wrap.mt-60 {
    margin-top: 30px;
  }
}

.cp-round-arrow i {
  height: 64px;
  width: 64px;
  line-height: 64px;
  text-align: center;
  border: 1.5px solid #cddc39;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color:#cddc39;
  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;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cp-round-arrow i {
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 15px;
  }
}
[dir=rtl] .cp-round-arrow i {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.cp-round-arrow:hover i {
  border-color: #0E202A;
  background-color: #0E202A;
  color: #F0F7FD;
}

.nice-select::after {
  margin-top: 0;
  transform: translateY(-50%) rotate(45deg);
}

.nice-select.open::after {
  transform: translateY(-50%) rotate(-135deg);
}

.cp-border-top {
  border-top: 1px solid #D9E1E8;
}

.section-subtitle.clr-text1 {
  color: var(--clr-theme-1);
}

.section-title-2.clr-text2 {
  color: white;
}

.section-wrapper .clr-text3 {
  color: #A7A7A7;
}

.clr-text1 {
  color: var(--clr-theme-1);
  -webkit-text-stroke: 1px #fff;
}

.clr-text2 {
  color: white;
}

.clr-text3 {
  color: #A7A7A7;
}

.clr-text4 {
  color: #B3B3B3;
}

.section-title-3.white-text {
  color: var(--clr-common-white);
}

.cp-box-shadow {
  box-shadow: 0px 25px 40px rgba(0, 0, 0, 0.05);
}

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

hr.cp-hr {
  border-color: rgba(128, 128, 128, 0.768627451);
  margin: 0;
}

.cp {
  cursor: pointer;
}

.cp-space-30 {
  padding: 30px;
}

.swiper-button-disabled {
  cursor: no-drop;
  opacity: 0.5;
}

/*----------------------------------------
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, .swiper-slide-active .cp-banner-subtitle {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.swiper-slide-active .slider-title,
.swiper-slide-active .cp-banner-subtitle {
  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, .swiper-slide-active .cp-fill,
.swiper-slide-active .slider-title-4,
.swiper-slide-active .slider4-content {
  animation-fill-mode: both;
  animation-name: fadeInUp;
}

.swiper-slide-active .slider-title-4 {
  animation-delay: 0.4s;
  animation-duration: 0.6s;
}
.swiper-slide-active .slider-title-2,
.swiper-slide-active .slider4-content {
  animation-delay: 0.6s;
  animation-duration: 0.8s;
}
.swiper-slide-active .slider-sub-title-2,
.swiper-slide-active .slider-content-4 .cp-fill {
  animation-delay: 0.8s;
  animation-duration: 1s;
}
.swiper-slide-active .slider-content .cp-fill {
  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);
  }
}
@-webkit-keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}
.cp-up-down-anim:hover i {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.cp-updown-box-item:hover .cp-updown-box {
  animation-name: wobble-vertical;
  animation-duration: 1s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
}

.cp-rotation-360 {
  animation: cp-rotation-360 6s linear infinite;
}

@keyframes cp-rotation-360 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes cp-fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.cp-fadeInUp {
  -webkit-animation-name: cp-fadeInUp;
  animation-name: cp-fadeInUp;
}

/*----------------------------------------
25. Section-title CSS
----------------------------------------*/
.lg-mb-30 {
  margin-bottom: 30px;
}

.section-title {
  font-size: 44px;
  font-weight: 600;
  color: var(--clr-common-body-text);
}
@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;
  }
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--clr-common-paragraph-color);
  display: inline-block;
  margin-bottom: 20px;
}

.section-wrapper p {
  text-align: justify;
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--clr-common-paragraph-color);
}

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

.section-title-2 {
  font-size: 44px;
  font-weight: 600;
  color: var(--clr-common-body-text);
}
@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;
  }
}

.section-subtitle-2 {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--clr-common-paragraph-color);
  display: inline-block;
  margin-bottom: 28px;
}

.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: 44px;
  font-weight: 600;
  line-height: 1.2;
  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;
  }
}

.section-subtitle-3 {
  font-size: 16px;
  font-weight: 400;
  text-transform: capitalize;
  color: var(--clr-common-paragraph-color);
  display: inline-block;
  margin-bottom: 28px;
}

.section-sub-title-3 {
  background-color: #D8F0F0;
  border-radius: 50px;
  text-align: center;
  margin-bottom: 26px;
  display: inline-block;
  padding: 6px 24px;
  font-size: 16px;
  color: var(--clr-theme-1);
  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: 600;
  font-size: 26px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.details-section-title-2 {
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  text-transform: capitalize;
  margin-bottom: 5px;
}

.details-topic ul{
  padding-left: 30px;
  margin-bottom: 15px;
}

.details-section-subtitle {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  text-align: justify;
  /* text-transform: capitalize; */
  color: var(--clr-common-paragraph-color);
}

/*----------------------------------------
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: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-top: 1px solid rgba(14, 32, 42, 0.23);
}
.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: -5px;
  font-weight: 400;
  font-size: 18px;
}

.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: 25px;
}
@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-black);
  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.menu-item-has-children > a {
  position: relative;
  padding-inline-end: 13px;
}
.main-menu ul li.menu-item-has-children > a::after {
  content: "+";
  color: #0E202A;
  font-size: 16px;
  inset-inline-end: 0;
  position: absolute;
  transition: 0.3s;
}
.main-menu ul li.menu-item-has-children:hover > a::after {
  content: "-";
  color: var(--clr-theme-1);
}
.main-menu ul li:hover a {
  color: var(--clr-theme-1);
}
.main-menu ul li .submenu {
  position: absolute;
  top: 120%;
  width: 260px;
  background:#ffffff;
  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;
  left: 0;
  color: var(--clr-common-white);
}
[dir=rtl] .main-menu ul li .submenu {
  left: auto;
  right: 0;
}
.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: 12px 0px;
  text-transform: capitalize;
  color: #333333;
  position: relative;
  text-align: left;
}
[dir=rtl] .main-menu ul li .submenu li > a {
  text-align: right;
}
.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);
}

.main-menu nav ul li.menu-last .submenu {
  left: auto;
  right: 0;
}
[dir=rtl] .main-menu nav ul li.menu-last .submenu {
  right: auto;
  left: 0;
}

.mean-nav .mega-menu.pages-mega-menu img {
  max-width: 100%;
  margin-bottom: 10px;
}

.main-menu ul li {
  /* mega menu start */
}
.main-menu ul li.has-mega-menu {
  position: static;
}
.main-menu ul li .mega-menu {
  position: absolute;
  top: 120%;
  left: 50%;
  padding: 40px 40px;
  background: var(--clr-common-body-text);
  border-top: 3px solid var(--clr-theme-1);
  box-shadow: 0px 20px 30px rgba(3, 4, 28, 0.1);
  visibility: hidden;
  opacity: 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;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99;
  width: 1400px;
  margin: 0 auto;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .main-menu ul li .mega-menu {
    max-width: 1200px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .main-menu ul li .mega-menu {
    max-width: 1100px;
  }
}
.main-menu ul li .mega-menu li {
  float: left;
  width: 25%;
  margin-right: 0;
  text-align: left;
}
[dir=rtl] .main-menu ul li .mega-menu li {
  float: right;
  margin-left: 0;
  text-align: right;
}
.main-menu ul li .mega-menu li .mega-menu-title {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--clr-common-white);
  cursor: text;
  padding: 0;
  padding-left: 0px;
  display: inline-block;
  margin-bottom: 25px;
}
.main-menu ul li .mega-menu li ul li {
  width: 100%;
  float: none;
  margin-bottom: 10px;
}
.main-menu ul li .mega-menu li ul li:last-child {
  margin-bottom: 0;
}
.main-menu ul li .mega-menu li ul li a {
  font-weight: 400;
  font-size: 16px;
  color: var(--clr-common-white);
  padding: 0;
}
.main-menu ul li .mega-menu li:hover > a {
  color: var(--clr-theme-1);
}
.main-menu ul li.has-pages-menu {
  position: relative;
}
.main-menu ul li .pages-mega-menu {
  transform: translateX(-200px) !important;
  display: grid;
  grid-template-columns: auto auto auto auto;
  gap: 30px 20px;
}
.main-menu ul li .pages-mega-menu li {
  float: none !important;
  width: auto !important;
  margin: 0;
  margin-right: 0px;
  overflow: hidden;
  border: 1px solid rgba(212, 212, 212, 0.562);
  padding: 10px 10px;
  text-align: center;
}
.main-menu ul li .pages-mega-menu li a {
  padding: 0;
}
.main-menu ul li .pages-mega-menu li a span {
  color: var(--clr-common-white);
}
.main-menu ul li .pages-mega-menu li img {
  max-width: 100%;
  margin-bottom: 16px;
}
.main-menu ul li .pages-mega-menu li:hover img {
  transform: scale(1.05);
}
.main-menu ul li .pages-mega-menu li:hover a span {
  color: var(--clr-theme-1);
}
.main-menu ul li:hover .mega-menu {
  top: 100%;
  visibility: visible;
  opacity: 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: translateY(3px) 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: 16px;
  color: var(--clr-bg-2);
  transform: translateY(3px);
}
[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: 17px;
  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;
}

.cp-text-btn {
  font-weight: 600;
  font-size: 16px;
  color: #0E202A;
  text-transform: capitalize;
  display: inline-block;
}
.cp-text-btn i {
  color: #0E202A;
  font-weight: 600;
  display: inline-block;
  transform: translateY(4px);
  font-size: 18px;
}
.cp-text-btn.clr-text2 {
  color: var(--clr-common-white);
}
.cp-text-btn.clr-text2:hover {
  color: var(--clr-theme-1);
}
.cp-text-btn.clr-text2:hover i {
  color: var(--clr-theme-1);
}
.cp-text-btn.clr-text2 i {
  color: var(--clr-common-white);
}
.cp-text-btn.clr-text3 {
  color: #B3B3B3;
}
.cp-text-btn.clr-text3:hover {
  color: var(--clr-theme-1);
}
.cp-text-btn.clr-text3:hover i {
  color: var(--clr-theme-1);
}
.cp-text-btn.clr-text3 i {
  color: #B3B3B3;
}
.cp-text-btn:hover {
  color: #0E202A;
}
.cp-text-btn:hover i {
  transform: rotate(45deg) translateY(4px);
}

.cp-bottom-bar {
  position: relative;
  padding-bottom: 10px;
}
.cp-bottom-bar::before {
  width: 70px;
  height: 2px;
  background-color: var(--clr-theme-1);
  content: "";
  position: absolute;
  bottom: 0;
}
.cp-bottom-bar:hover::before {
  width: 100%;
}

.cp-fill {
  background: var(--clr-theme-1);
  border-radius: 27.5px;
  height: 55px;
  line-height: 55px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  display: inline-block;
  padding: 0 30px;
  -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;
}
.cp-fill i {
  margin-inline-start: 5px;
  transform: translateY(4px);
  display: inline-block;
  font-weight: 700;
  font-size: 17px;
}
.cp-fill:hover i {
  transform: rotate(45deg) translateY(4px);
}

.black-hover-bg:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.green-btn {
  color: var(--clr-theme-1);
}
.green-btn::before {
  width: 41px;
}
.green-btn i {
  color: var(--clr-theme-1);
}
.green-btn:hover {
  color: var(--clr-common-black);
}
.green-btn:hover i {
  color: var(--clr-common-black);
}

.white-hover:hover {
  color: #B7BCBF;
}
.white-hover:hover::before {
  background-color: #B7BCBF;
}
.white-hover:hover i {
  color: #B7BCBF;
}

.white-hover-bg:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.cp-border-btn {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  padding: 0 35px;
  color: #000;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  height: 55px;
  line-height: 55px;
}
.cp-border-btn i {
  font-size: 18px;
  color: var(--clr-common-black);
  transform: translateY(3px) rotate(0);
  display: inline-block;
  margin-inline-start: 4px;
}
.cp-border-btn:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}
.cp-border-btn:hover i {
  color: var(--clr-common-white);
  transform: translateY(3px) rotate(43deg);
}

.cp-btn {
  background: var(--clr-theme-1);
  border-radius: 27.5px;
  height: 55px;
  line-height: 55px;
  font-weight: 600;
  font-size: 16px;
  color: #FFFFFF;
  display: inline-block;
  padding: 0 30px;
  -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;
}
.cp-btn i {
  transform: translateY(3px);
  display: inline-block;
  font-weight: 500;
}
.cp-btn.xs-btn {
  height: 40px;
  line-height: 40px;
  padding: 0 20px;
  font-size: 13px;
}
.cp-btn.sm-btn {
  height: 45px;
  line-height: 45px;
  padding: 0 25px;
  font-size: 15px;
}
.cp-btn.lg-btn {
  height: 60px;
  line-height: 60px;
  padding: 0 45px;
  font-size: 18px;
}
.cp-btn.xl-btn {
  height: 65px;
  line-height: 65px;
  padding: 0 50px;
  font-size: 20px;
}
.cp-btn.border-btn {
  background-color: transparent;
  border: 1px solid var(--clr-theme-1);
  color: var(--clr-theme-1);
}
.cp-btn.border-btn:hover {
  border-color: var(--clr-common-black);
}
.cp-btn:hover, .cp-btn:focus {
  background-color: var(--clr-common-black);
  color: var(--clr-common-white);
}
.cp-btn:hover i, .cp-btn:focus i {
  transform: translateY(3px) rotate(45deg);
}

.cp-text-btn:hover.hover-txt-theme, .cp-text-btn:focus.hover-txt-theme {
  color: var(--clr-theme-1);
}
.cp-text-btn:hover.hover-txt-theme i, .cp-text-btn:focus.hover-txt-theme i {
  color: var(--clr-theme-1);
}

/*----------------------------------------
02. header CSS
----------------------------------------*/
.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-logo-black {
  display: none;
}
.header-sticky .header-spaces {
  padding-top: 20px;
  padding-bottom: 20px;
}
.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 .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;
}

.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 rgba(0, 0, 0, 0.1098039216);
  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 rgba(255, 255, 255, 0.1803921569);
  color: var(--clr-common-white);
}
.header-search.is-white input:focus-visible {
  border: 1px solid var(--clr-theme-1);
}
.header-search.is-white input::-moz-placeholder {
  color: #A7A7A7;
}
.header-search.is-white input::placeholder {
  color: #A7A7A7;
}
.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-spaces {
  padding-top: 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) {
  .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-logo-normal {
  display: none;
}

.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: 25px 10px 10px;
    /* width: 150px; */
  /* display: flex;
  align-items: center;
  justify-content: center; */
  /* margin-top: -20px; */
  border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
}
@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: 15px 0px;
    clip-path: none;
    margin-top: 0;
    /* width: 110px; */
  }
}

.search-btn-4 a {
  height: 55px;
  border: 1px solid rgba(240, 247, 253, 0.2392156863);
  border-radius: 50px;
  display: inline-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.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: 40px;
  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 only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li a {
    font-size: 25px;
  }
}
@media (max-width: 575px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li a {
    font-size: 22px;
  }
}
.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 only screen and (min-width: 576px) and (max-width: 767px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li ul.sub-menu li a {
    font-size: 20px;
    padding: 12px 5px;
  }
}
@media (max-width: 575px) {
  .sidebar-nav-wrapper .main-nav-js .sidebar-menu-area > ul > li ul.sub-menu li a {
    font-size: 18px;
    padding: 10px 5px;
  }
}
.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: 400px;
  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: 300px;
  }
}
.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 {
  padding-bottom: 30px;
}
.offcanvas__social ul {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: 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: rgba(255, 255, 255, 0.6901960784);
  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::-moz-placeholder {
  color: rgba(255, 255, 255, 0.6901960784);
  text-transform: capitalize;
  font-weight: 300;
}
.bd-search-input input::placeholder {
  color: rgba(255, 255, 255, 0.6901960784);
  text-transform: capitalize;
  font-weight: 300;
}
.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: rgba(255, 255, 255, 0.5411764706);
  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);
}

.cp-bar span {
  width: 30px;
  height: 2px;
  border-radius: 10px;
  display: block;
  margin-bottom: 5px;
  -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;
}
.cp-bar span:last-child {
  width: 20px;
  margin-bottom: 0px;
}
.cp-bar.white-bar span {
  background: #F0F7FD;
  opacity: 0.7;
}
.cp-bar.white-bar:hover span {
  opacity: 1;
}
.cp-bar.white-bar:hover span:last-child {
  width: 30px;
}

.cp-before-line::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  opacity: 0.15;
  background-color: #F0F7FD;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cp-before-line::before {
    display: none;
  }
}

.cp-after-line::after {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 30px;
  opacity: 0.15;
  background-color: #0E202A;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .cp-after-line::after {
    display: none;
  }
}

.cp-header-btn.search-btn-4 a {
  border-color: rgba(240, 247, 253, 0.2117647059);
}
.cp-header-btn.search-btn-4 a:hover {
  border-color: var(--clr-theme-1);
}

.header-sticky .sticky-logo {
  display: block !important;
}
.header-sticky .normal-logo {
  display: none;
}
.header-sticky .cp-bar.white-bar span {
  background: #101010;
  opacity: 0.7;
}
.header-sticky .sticky-btn {
  display: block !important;
}
.header-sticky .normal-btn {
  display: none;
}
.header-sticky .bd-search-open-btn i {
  color: #000;
}

.main-menu2 ul li a {
  color: #0E202A;
}
.main-menu2 ul li.menu-item-has-children > a::after {
  color: #0E202A;
}

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

.header-sticky-black.header-sticky {
  background-color: var(--clr-common-black);
  border-bottom: 1px solid rgba(128, 128, 128, 0.2392156863);
}

.cp-logo3-space {
  padding: 32px 0;
}

.header-sticky .main-menu4 ul li a {
  color: #3c3c3c;
}
.header-sticky .main-menu4 ul li ul li a {
  color: #333333 !important;
}
.header-sticky .main-menu4 ul li ul li:hover > a {
  color: var(--clr-theme-1) !important;
}
.header-sticky .main-menu4 ul li:hover a {
  color: #000;
}
.header-sticky .search-btn-4 a {
  border-color: #D9E1E8;
  color: #000;
}
.header-sticky .search-btn-4 a i {
  color: #000;
}
.header-sticky .search-btn-4 a:hover {
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.header-sticky .search-btn-4 a:hover i {
  color: var(--clr-common-white);
}

.header-sticky-white.header-sticky .bar-icon.is-white span {
  background: #000;
}
.header-sticky-white.header-sticky .main-menu ul li a {
  color: var(--clr-common-black);
}
.header-sticky-white.header-sticky .main-menu ul li.menu-item-has-children > a::after {
  color: #242729;
}
.header-sticky-white.header-sticky .main-menu ul li.menu-item-has-children:hover > a::after {
  color: var(--clr-theme-1);
}
.header-sticky-white.header-sticky .main-menu ul li .submenu li a {
  color: var(--clr-common-white);
}
.header-sticky-white.header-sticky .main-menu ul li .submenu li:hover a {
  color: var(--clr-theme-1);
}
.header-sticky-white.header-sticky .main-menu ul li .mega-menu li ul li a {
  color: var(--clr-common-white);
}
.header-sticky-white.header-sticky .main-menu ul li .mega-menu li ul li:hover a {
  color: var(--clr-theme-1);
}
.header-sticky-white.header-sticky .main-menu ul li .mega-menu li .mega-menu-title {
  color: var(--clr-common-white);
}
.header-sticky-white.header-sticky .main-menu ul li:hover > a {
  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: center;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-height {
    min-height: 800px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height {
    min-height: 700px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-height {
    min-height: 650px;
  }
}
@media (max-width:450px) {
  .slider-height {
    min-height: 700px;
  }
}
.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), only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height-2 {
    min-height: 830px;
    padding-top: 200px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-height-2 {
    min-height: 800px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height-2 {
    min-height: 750px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-height-2 {
    padding-top: 170px;
    padding-bottom: 120px;
    min-height: auto;
  }
}
.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: 1400px) and (max-width: 1599px), only screen and (min-width: 1200px) and (max-width: 1399px) {
  .slider-height-3 {
    min-height: 750px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-height-3 {
    min-height: 600px;
    padding-bottom: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-height-3 {
    min-height: 500px;
    padding-bottom: 40px;
  }
}
@media (max-width:450px) {
  .slider-height-3 {
    padding-bottom: 20px;
  }
}
.slider-height-4 {
  min-height: 620px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
@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: 620px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-height-4 {
    min-height: 550px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .slider-height-4 {
    min-height: 550px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-height-4 {
    min-height: 580px;
  }
}

.single-slide {
  position: relative;
  z-index: 1;
}
.single-slide::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: #0E202A;
  mix-blend-mode: normal;
  opacity: 0.55;
}
.single-slide::after {
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  width: 1057px;
  position: absolute;
  z-index: -1;
  background: linear-gradient(90deg, #0E202A 26.74%, rgba(14, 32, 42, 0) 100%);
  mix-blend-mode: normal;
}

.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: #F0F7FD;
  margin-bottom: 15px;
}
@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: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px) {
  .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-top: 50px;
}
@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) {
  .slider-wrap-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: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--clr-common-paragraph-color);
  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 var(--clr-common-paragraph-color);
  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: 78px;
  font-weight: 400;
  color: #F0F7FC;
  margin-bottom: 27px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .slider-title-2 {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1200px) and (max-width: 1399px), only screen and (min-width: 992px) and (max-width: 1199px) {
  .slider-title-2 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), only screen and (min-width: 768px) and (max-width: 991px), (max-width: 575px) {
  .slider-title-2 {
    font-size: 45px;
  }
}
@media (max-width:450px) {
  .slider-title-2 {
    font-size: 35px;
  }
}
.slider-sub-title-2 {
  font-size: 16px;
  font-weight: 400;
  line-height: 28px;
  color: #B7BCBF;
  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-theme-1);
}

.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: 1400px) and (max-width: 1599px) {
  .slider-title-3 {
    font-size: 60px;
  }
}
@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), 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-wrap-4 {
  /* margin-top: 70px; */
}

.slider-title-4 {
  font-size: 70px;
  font-weight: 600;
  color: #F0F7FD;
  margin-bottom: 20px;
}
@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;
  }
  .f-size-55{
    font-size: 35px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .slider-title-4 {
    font-size: 36px;
  }

  .f-size-55{
    font-size: 27px;
  }
}

@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: 20px;
}

.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: 520px;
  }
}

.cp-slider-title {
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.cp-slider-desc {
  max-width: 682px;
  color: #B7BCBF;
  margin-left: auto;
  margin-right: auto;
}

.slider-wrapper .slider-pagination.cp-slider-pagination .swiper-pagination-bullet {
  margin: 0 10px;
  background-color: #B7BCBF;
  opacity: 1;
}
.slider-wrapper .slider-pagination.cp-slider-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--clr-theme-1);
}
.slider-wrapper .slider-pagination.cp-slider-pagination .swiper-pagination-bullet::before {
  display: none;
}

.cp-slider-nav .slider-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 80px;
  height: 80px;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background-color: transparent;
  left: 60px;
  color: #fff;
  transition: 0.3s;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .cp-slider-nav .slider-button {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
.cp-slider-nav .slider-button.next {
  left: auto;
  right: 60px;
}
.cp-slider-nav .slider-button:hover {
  background-color: #fff;
  color: #000;
}

.slider-title-2 span {
  color: var(--clr-theme-1);
}

.cp-slider-svg svg {
  position: absolute;
  left: 0;
  bottom: -15px;
  width: 100%;
}

.cp-slider-01 .cp-fill:hover {
  color: #000;
}

.slider-pagination-4 {
  bottom: 60px !important;
  right: 0;
  text-align: center;
  z-index: 10000;
}

.cp-banner4-img {
  right: 0;
  top: 0;
  bottom: 0;
}

.cp-banner4-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cp-banner-bottom-bg {
  bottom: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background: linear-gradient(60deg, rgb(0 0 0 / 77%) 1.79%, rgba(14, 32, 42, 0) 97.49%);
  z-index: 1;
}

@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) {
  .cp-slider4-button {
    display: none;
  }
}

.cp-slider-svg span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 177px;
  height: 177px;
  background-color: rgba(0, 182, 122, 0.1607843137);
  filter: blur(200px);
  right: 0;
  margin: auto;
}

/*----------------------------------------
23. Products CSS
----------------------------------------*/
@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 {
  position: absolute;
  left: 0;
  z-index: 1;
  bottom: 0;
}
.bdproduct-thumb-1 img {
  border-radius: 50%;
  animation-name: UpToDown;
  animation-duration: 4.5s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  height: 168px;
  width: 168px;
  padding: 10px;
  background-color: #fff;
}
.bdproduct-thumb-2 img {
  border-radius: 148px;
  animation-name: UpToDown;
  animation-duration: 7s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.bdproduct-thumb-3 img {
  border-radius: 137px;
  animation-name: UpToDown;
  animation-duration: 3s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  padding: 10px;
  background-color: #fff;
}

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

.cp-product-img-wrap {
  display: inline-block;
  padding-left: 120px;
  padding-right: 135px;
}
@media (max-width: 575px) {
  .cp-product-img-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.bdproduct-thumb-3 {
  position: absolute;
  right: 0;
  top: 0;
}

.cp-project-text-title {
  font-size: 24px;
  text-transform: capitalize;
}
@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) {
  .cp-project-text-title {
    font-size: 20px;
  }
}

/*----------------------------------------
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-button:not(.collapsed) {
  color: var(--clr-theme-1);
  background-color: transparent;
  box-shadow: none;
}
.bdaccordion .accordion-button::after {
  position: absolute;
  content: "\f10c";
  font-family: "flaticon_cipro";
  background-image: none;
  top: 28%;
  inset-inline-end: 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);
  color: var(--clr-theme-1);
}
.bdaccordion .accordion-button:focus {
  box-shadow: none;
}
.bdaccordion .accordion-button {
  font-size: 24px;
  padding: 30px 30px 30px 0;
  line-height: 1.5;
}
[dir=rtl] .bdaccordion .accordion-button {
  padding: 30px 0 30px 30px;
}
@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;
  }
  [dir=rtl] .bdaccordion .accordion-button {
    padding: 15px 0 15px 30px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
  .bdaccordion .accordion-button {
    font-size: 18px;
    padding: 15px 30px 15px 0;
  }
  [dir=rtl] .bdaccordion .accordion-button {
    padding: 15px 0 15px 30px;
  }
}
@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;
  }
  [dir=rtl] .bdaccordion .accordion-button {
    padding: 10px 0 10px 30px;
  }
}
@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;
}
[dir=rtl] .bdaccordion .accordion-body {
  padding: 0 0 0 30px;
}
.bdaccordion .accordion-body p {
  text-transform: capitalize;
  margin-bottom: 25px;
  font-size: 16px;
}

.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-bg-6);
}
@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-bg-6);
  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;
  }
}

.cp-feature-thumb {
  position: relative;
}
.cp-feature-thumb ::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(122.6deg, rgba(14, 32, 42, 0.95) 0%, rgba(14, 32, 42, 0) 64.4%);
  width: 1080px;
}

/*----------------------------------------
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-inline-start: 90px;
  position: sticky;
  top: 120px;
}
@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-inline-start: 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;
  }
}

.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, #000 0%, rgba(0, 0, 0, 0.4) 50%, #000 100%);
}

.project-wrapper {
  padding: 30px;
  background: rgba(13, 15, 17, 0.01);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
}
@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-inline-end: 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: 0;
  left: 0;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.15);
}
.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;
}

.cp-pbg {
  background: #F0F7FD;
  opacity: 0.9;
}

.cp-project-item {
  padding: 20px 20px 25px 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;
}
.cp-project-item:hover {
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.cp-project-item .cp-text-btn:hover {
  color: var(--clr-theme-1);
}
.cp-project-item .cp-text-btn:hover i {
  color: var(--clr-theme-1);
}

.cp-project-text-title:hover {
  color: var(--clr-theme-1);
}

.single-project .project-thumb {
  overflow: hidden;
}
.single-project:hover .project-thumb img {
  -webkit-transform: scale(1.05);
  -moz-transform: scale(1.05);
  -ms-transform: scale(1.05);
  transform: scale(1.05);
}

.cp-slider-black.research-animation .swiper-slide {
  color: var(--clr-common-body-text);
}
.cp-slider-black.research-animation .swiper-slide:hover {
  color: var(--clr-theme-1);
}

/*----------------------------------------
10. choose CSS
----------------------------------------*/
.choose-icon i {
  width: 90px;
  height: 90px;
  line-height: 104px;
  display: inline-block;
  background-color: #E3F4FF;
  margin-bottom: 5px;
  color: #059DFF;
  border-radius: 50%;
  font-size: 45px;
  text-align: center;
}

.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: var(--clr-common-paragraph-color);
  text-transform: capitalize;
}

.choose-wrap-grid {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: space-between;
  gap: 40px 20px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .choose-wrap-grid {
    grid-template-columns: auto auto auto;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .choose-wrap-grid {
    grid-template-columns: auto;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .choose-wrap.max-350 {
    max-width: 450px;
  }
}

.cp-progress2-img img {
  max-width: 100%;
}

.cp-choose-icon-bg .choose-wrap:nth-child(1) .choose-icon i {
  background-color: #E3F4FF;
  color: #059DFF;
}
.cp-choose-icon-bg .choose-wrap:nth-child(2) .choose-icon i {
  background-color: #FFEDEC;
  color: #FB5343;
}
.cp-choose-icon-bg .choose-wrap:nth-child(3) .choose-icon i {
  background-color: #FFE4F4;
  color: #E33FA1;
}
.cp-choose-icon-bg .choose-wrap:nth-child(4) .choose-icon i {
  background-color: #ECE9FA;
  color: #6549D5;
}

/*----------------------------------------
22. Process CSS
----------------------------------------*/
.process-item:hover .process-count-title::before {
  -webkit-text-stroke: 1px #F5F5F5;
}
.process-item.active .process-count-title::before {
  -webkit-text-stroke: 1px #F5F5F5;
}
.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: #0E202A;
}
@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 var(--clr-theme-1);
  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: linear-gradient(180deg, var(--clr-theme-1) 0%, #001B12 100%);
  opacity: 0.7;
}
.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;
  }
}

.cp-process-thumb {
  opacity: 0;
}

.process-item.active .cp-process-thumb {
  opacity: 1;
}
.process-item.active .process-count-title {
  color: #fff;
}

.cp-process2 .single-skill:nth-child(1) .progress {
  background-color: #CDEBFF;
}
.cp-process2 .single-skill:nth-child(1) .bd-progress-bar {
  background-color: #059DFF;
}
.cp-process2 .single-skill:nth-child(2) .progress {
  background-color: #FEDDD9;
}
.cp-process2 .single-skill:nth-child(2) .bd-progress-bar {
  background-color: #FB5343;
}
.cp-process2 .single-skill:nth-child(3) .progress {
  background-color: #E7ECFE;
}
.cp-process2 .single-skill:nth-child(3) .bd-progress-bar {
  background-color: #557AFF;
}

.cp-progress2-img {
  position: relative;
}

.cp-progress2-content {
  position: absolute;
  inset-inline-end: 30px;
  bottom: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.21) 0%, rgba(255, 255, 255, 0.045) 100%);
  backdrop-filter: blur(15px);
  padding: 20px 30px;
}
.cp-progress2-content h5 {
  font-weight: 400;
  font-size: 16px;
  color: var(--clr-common-white);
}
.cp-progress2-content h3 {
  font-size: 44px;
  font-weight: 400;
  color: var(--clr-common-white);
}

/*----------------------------------------
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: var(--clr-theme-1);
  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 {
  position: absolute;
  inset-inline-start: 0;
  bottom: 0;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-thumb-shape {
    position: inherit;
  }
}

.about-skill-wrapper {
  margin-inline-end: 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) {
  .about-skill-wrapper {
    margin-inline-end: 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-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%;
  }
}

.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 img {
  animation-name: DownToUp;
  animation-duration: 6s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.about-list ul {
  list-style: none;
}
.about-list ul li {
  color: #B3B3B3;
  position: relative;
  margin-bottom: 15px;
  padding-inline-start: 20px;
}
.about-list ul li:last-child {
  margin-bottom: 0;
}
.about-list ul li::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 50%;
  transform: translateY(-50%);
  inset-inline-start: 0;
  background: var(--clr-theme-1);
  filter: blur(1px);
  border-radius: 6px;
}

.about-wrapper {
  padding: 70px;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-wrapper {
    padding: 40px;
  }
}

.about-tab-title .nav-tabs {
  border-bottom: 1px solid #E7E9EA;
  gap: 0 15px;
}
.about-tab-title .nav-tabs .nav-link.active,
.about-tab-title .nav-tabs .nav-item.show .nav-link {
  background-color: var(--clr-theme-1);
  color: #fff;
}
.about-tab-title .nav-tabs .nav-link {
  background: transparent;
  font-size: 18px;
  text-transform: capitalize;
  font-weight: 600;
  color: #0E202A;
  padding: 0 20px;
  line-height: 38px;
  text-transform: capitalize;
  font-weight: 600;
  height: 50px;
}
.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-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;
}

.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-content span {
  font-size: 16px;
  color: #646464;
  display: block;
}
.bd-contact-wrapper-4 .contact-content a {
  font-size: 20px;
  color: #0E202A;
  font-weight: 600;
}
.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;
}

.single-skill .progress {
  background-color: #C0EAE3;
  border-radius: 0;
}

.bd-contact-wrapper-4 .contact-shape {
  color: var(--clr-common-white);
  width: 96px;
  height: 96px;
  border-radius: 50%;
  line-height: 96px;
  display: inline-block;
  text-align: center;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-contact-wrapper-4 .contact-shape {
    width: 75px;
    height: 75px;
    line-height: 75px;
  }
}

.bd-contact-wrapper-4 .contact-list-wrapper:nth-child(1) .contact-shape {
  background-color: #FEE5E3;
}
.bd-contact-wrapper-4 .contact-list-wrapper:nth-child(2) .contact-shape {
  background-color: #D9F0FF;
}

.cp-about4-bg {
  height: 320px;
  width: 100%;
  z-index: -1;
}

.about-thumb4 {
  padding-bottom: 110px;
  max-width: 690px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-thumb4 {
    padding-bottom: 0;
  }
}
.about-thumb4 .about-thumb-shape img {
  padding: 8px;
  background-color: #fff;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-thumb4 .about-thumb-shape img {
    padding: 0;
    margin-top: 40px;
  }
}

/*----------------------------------------
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%;
  overflow: hidden;
}
.team-wrapper:hover .team-thumb::before {
  opacity: 1;
}
.team-wrapper:hover .team-info {
  opacity: 1;
  visibility: visible;
  bottom: 40px;
}
@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 {
  color: var(--clr-theme-2);
}
.team-title a:hover {
  color: var(--clr-theme-2);
}
.team-info {
  position: absolute;
  bottom: 30px;
  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-theme-2);
}
.team-thumb {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.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;
  color: var(--clr-theme-1);
}
.team-title-2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 30px;
}
@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) {
  .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);
  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);
  }
}
.team-item .team-meta:hover {
  background-color: var(--clr-theme-1);
}
.team-item .team-meta:hover .team-title-2,
.team-item .team-meta:hover .team-title-3,
.team-item .team-meta:hover span {
  color: var(--clr-common-white);
}
.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 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) {
  .team-title-3 {
    font-size: 20px;
  }
}

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

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

.member-name {
  font-weight: 500;
  font-size: 20px;
  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: var(--clr-common-paragraph-color);
}

.team-content {
  background-color: rgba(209, 255, 246, 0.1294117647);
  padding: 30px 20px;
}

.team-social a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid rgba(230, 230, 230, 0.53);
  font-size: 16px;
  color: rgba(14, 32, 42, 0.36);
  display: inline-block;
  margin-inline-end: 5px;
}
.team-social a:hover {
  background-color: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}

.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: 60px;
  padding-top: 60px;
  padding-top: 50px;
}
@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) {
  .bd-member-nav-tabs {
    padding: 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;
  font-size: 20px;
  font-weight: 600;
}
.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;
  font-size: 20px
}
.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: var(--clr-common-paragraph-color);
}

.team-5-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 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: var(--clr-common-paragraph-color);
}
.skills-single-wrapper span {
  font-size: 18px;
  color: var(--clr-common-paragraph-color);
}
.skills-single-wrapper .progress {
  background: #C0EAE3;
  border-radius: 0px;
}
.skills-single-wrapper .progress .progress-bar {
  background-color: var(--clr-theme-1);
}

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

.cp-team-dot .swiper-pagination-bullet {
  background: #B7BCBF;
  opacity: 1;
}
.cp-team-dot .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--clr-theme-1);
}

.cp-team-dot.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px;
}

.team-card {
  text-align: center;
  border: 1px solid rgba(121, 121, 121, 0.14);
  margin-bottom: 30px;
  -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;
}
.team-card:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.team-card .member-designation {
  color: var(--clr-theme-1);
}
.team-card .team-card-thumb img {
  width: 100%;
}
.team-card:hover {
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.team-content-wrap .team-social {
  margin-top: 20px;
}

.cp-team3 {
  -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;
  background-color: rgba(182, 255, 244, 0.1019607843);
}
.cp-team3:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}
.cp-team3 .team-content {
  background-color: transparent;
}
.cp-team3 .member-designation {
  color: var(--clr-theme-1);
}
.cp-team3 .team-card-thumb {
  width: 100px;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}
.cp-team3 .team-card-thumb img {
  width: 100%;
  border-radius: 50%;
}

/*----------------------------------------
26. Service CSS
----------------------------------------*/
.service-meta-thumb {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.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-item {
  background-color: var(--clr-common-white);
  transition: 0.5s;
  padding: 30px;
  text-align: center;
  border-radius: 10px;
}
.service-meta {
  -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: #646464;
}
.service-meta p {
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #646464;
  margin-bottom: 25px;
}
.service-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #0E202A;
}
.service-title a:hover {
  color: var(--clr-theme-1);
}

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

.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.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-white);
  text-transform: capitalize;
  transition: 0.3s;
}
.research-animation .swiper-slide:hover {
  color: var(--clr-common-black);
}
.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: var(--clr-common-paragraph-color);
}

.bd-swiper-fraction-divide {
  margin-right: 6px;
  color: var(--clr-common-paragraph-color);
}

.service-nav {
  top: 10px;
}
.service-nav .swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  background-color: #D9D9D9;
  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-theme-1);
  line-height: 1;
}
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .swiper-pagination-current {
    font-size: 24px;
  }
}

.service-box3 {
  border: 1px solid rgba(240, 247, 253, 0.1882352941);
  padding: 30px 30px 30px 30px;
  display: block;
}
.service-box3-shape {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.service-box3-shape::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
  border-radius: 50%;
  -webkit-transition: all 3s ease-out 0s;
  -moz-transition: all 3s ease-out 0s;
  -ms-transition: all 3s ease-out 0s;
  -o-transition: all 3s ease-out 0s;
  transition: all 3s ease-out 0s;
  z-index: -1;
}
.service-box3-title {
  color: var(--clr-theme-2);
  font-weight: 400;
  line-height: 1.5;
  text-transform: capitalize;
  margin-bottom: 27px;
  font-size: 24px;
  position: relative;
  z-index: 2;
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .service-box3-title {
    font-size: 20px;
  }
}
.service-box3-link {
  color: #646464;
  display: inline-block;
  transform: translateX(-96px);
  position: relative;
  z-index: 2;
}
[dir=rtl] .service-box3-link {
  transform: translate(96px);
}
.service-box3-link i {
  transform: translateY(2px) rotate(45deg);
  display: inline-block;
}
[dir=rtl] .service-box3-link i {
  transform: translateY(0px) rotate(-140deg);
}
.service-box3:hover .service-box3-shape::before {
  background: linear-gradient(180deg, #ffffff, #ffffff);
}
.service-box3:hover .service-box3-bg {
  opacity: 1;
  visibility: visible;
}
.service-box3:hover .service-box3-link {
  transform: translateX(0);
  color: var(--clr-common-white);
}

.service-box3-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -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;
  display: block;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
}
.service-box3-bg img {
  width: 100%;
  height: 100%;
}
.service-box3-bg::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 182, 122, 0.4);
  backdrop-filter: blur(15px);
}

.service-active-nav .swiper-pagination-bullet {
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
  background-color: var(--clr-common-paragraph-color);
  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 var(--clr-common-paragraph-color);
  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 {
  padding: 40px 0 38px 0;
  border-bottom: 1px solid #E7E9EA;
}
@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;
  }
}

.service-title-4 {
  font-size: 32px;
  font-weight: 400;
  line-height: 1.3;
  text-transform: capitalize;
  color: var(--clr-common-paragraph-color);
  transition: 0.4s linear;
  overflow: hidden;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-title-4 {
    font-size: 26px;
  }
}
.service-title-4 i {
  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 {
  object-fit: cover;
  position: absolute;
  inset-inline-end: 5%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s linear;
  z-index: 9;
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .service-img {
    top: 0;
    position: inherit;
    transform: translateY(0%);
    opacity: 1;
    visibility: visible;
    margin-top: 20px;
    padding-bottom: 30px;
  }
}
.service-img .img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-img img {
  max-width: 100%;
}

.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: 28px;
  padding: 27px 30px;
  margin-bottom: 0;
  line-height: 1;
}
@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: 24px;
  }
}

.service-list ul li {
  border-top: 1px solid var(--clr-common-soft-white);
  padding: 20px 30px;
  position: relative;
  z-index: 1;
  list-style: none;
}
.service-list ul li::after {
  background: var(--clr-common-black);
  content: "";
  opacity: 0;
  position: absolute;
  top: 0;
  inset-inline-start: 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;
  inset-inline-end: 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: 20px;
  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: 22px 30px;
  list-style: none;
}
.profile-list ul li a {
  font-weight: 400;
  font-size: 20px;
  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;
  inset-inline-start: 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;
  text-align: center;
  gap: 5px 0;
}
.details-nav-tabs .nav-tabs .nav-item {
  position: relative;
  margin-inline-end: 20px;
  padding-inline-end: 20px;
}
.details-nav-tabs .nav-tabs .nav-item::after {
  content: "";
  position: absolute;
  height: 20px;
  width: 1px;
  top: 50%;
  inset-inline-end: 0;
  background: black;
  transform: translateY(-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: var(--clr-common-paragraph-color);
  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: var(--clr-common-paragraph-color);
  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);
}

.service-btn a {
  color: var(--clr-theme-1);
  font-weight: 600;
}
.service-btn a:hover {
  color: var(--clr-theme-1);
}
.service-btn a i {
  color: var(--clr-theme-1);
}

.service-item:hover {
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
}

.service-thumb-2::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background: #000000;
  opacity: 0.6;
}

.service-active-2 .swiper-slide-active .service-thumb-2::after {
  display: none;
}

.service-slider-arrow > div:hover {
  color: var(--clr-theme-1);
}

.cp-service-box {
  position: relative;
}
.cp-service-box .service-icon {
  margin-bottom: 30px;
}

.single-service-4.active .service-img {
  opacity: 1;
  visibility: visible;
  inset-inline-end: 0;
}
.single-service-4.active .service-title-4 {
  color: var(--clr-theme-1);
}
.single-service-4.active i {
  opacity: 1;
  visibility: visible;
  transform: translate(0px, 6px);
}

.research-animation2 .swiper-slide:hover {
  color: var(--clr-theme-1);
}

.cp-service-box {
  -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;
}
.cp-service-box:hover {
  -webkit-transform: translateY(-5px);
  -moz-transform: translateY(-5px);
  -ms-transform: translateY(-5px);
  transform: translateY(-5px);
}

.cp-el-service-item {
  padding: 30px;
  padding-bottom: 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;
}

.cp-service-icon-bg .col-xl-3:nth-child(1) .cp-el-service-item .choose-icon i {
  background-color: #E3F4FF;
  color: #059DFF;
}
.cp-service-icon-bg .col-xl-3:nth-child(2) .cp-el-service-item .choose-icon i {
  background-color: #FFEDEC;
  color: #FB5343;
}
.cp-service-icon-bg .col-xl-3:nth-child(3) .cp-el-service-item .choose-icon i {
  background-color: #FFE4F4;
  color: #E33FA1;
}
.cp-service-icon-bg .col-xl-3:nth-child(4) .cp-el-service-item .choose-icon i {
  background-color: #ECE9FA;
  color: #6549D5;
}

@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .carousel_04_item_active.pb-50,
  .carousel_03_item_active.pb-50 {
    padding-bottom: 30px;
  }
}

.cp-service-icon-bg > div:nth-child(1) .choose-icon i {
  background-color: #E3F4FF;
  color: #059DFF;
}
.cp-service-icon-bg > div:nth-child(2) .choose-icon i {
  background-color: #FFEDEC;
  color: #FB5343;
}
.cp-service-icon-bg > div:nth-child(3) .choose-icon i {
  background-color: #FFE4F4;
  color: #E33FA1;
}
.cp-service-icon-bg > div:nth-child(4) .choose-icon i {
  background-color: #ECE9FA;
  color: #6549D5;
}

/*----------------------------------------
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: 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) {
  .contact-form-box {
    padding: 40px;
  }
}
@media (max-width: 575px) {
  .contact-form-box {
    padding: 20px;
  }
}
.service-icon img
{
 width: 70px;
}

.contact-form-input input, .contact-form-input textarea {
  width: 100%;
  height: 60px;
  margin-bottom: 15px;
  border: 1px solid rgba(14, 32, 42, 0.1);
  padding: 0 20px;
  line-height: 70px;
  text-transform: capitalize;
}
.contact-form-input input:focus, .contact-form-input textarea:focus {
  outline: none;
  border-color: var(--clr-theme-1);
}
.contact-form-input textarea {
  height: 220px;
  resize: none;
}

.bd-contact-wrap {
  position: relative;
  z-index: 9;
  margin-inline-start: 30px;
}
@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) {
  .bd-contact-wrap {
    margin-inline-start: 0;
  }
}
.bd-contact-wrap .contact-shape {
  font-size: 48px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 75px;
  display: inline-block;
  text-align: center;
  background-color: #E0F6EF;
}
@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: #646464;
  display: block;
  font-weight: 400;
  margin-bottom: 10px;
}
.bd-contact-wrap .contact-content a {
  font-size: 20px;
  font-weight: 600;
  color: #0E202A;
}
.bd-contact-wrap .contact-content:hover a {
  color: var(--clr-theme-1);
}

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

.contact-wrapper {
  gap: 30px 70px;
}

.nice-select.contact-form-input {
  border-radius: 0;
  font-weight: 400;
  font-size: 16px;
  color: var(--clr-common-paragraph-color);
  display: block;
  width: 100%;
  padding: 0 20px;
  height: 70px;
  line-height: 70px;
  border: 1px solid rgba(14, 32, 42, 0.1);
}
.nice-select.contact-form-input .list {
  border-radius: 0;
}
.nice-select.contact-form-input::after {
  border-bottom: 2px solid #4D4D4D;
  border-right: 2px solid #4D4D4D;
  content: "";
  display: block;
  height: 10px;
  pointer-events: none;
  position: absolute;
  right: 20px;
  width: 10px;
}
[dir=rtl] .nice-select.contact-form-input::after {
  right: auto;
  left: 20px;
}
.nice-select.contact-form-input .option.selected {
  font-weight: 600;
  font-size: 15px;
}

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

.nice-select.bd-contact-form-input.open {
  border-color: var(--clr-theme-1);
}

.bd-contact-form-wrapper {
  position: relative;
  z-index: 9;
}
.bd-contact-form-input input, .bd-contact-form-input textarea {
  width: 100%;
  height: 60px;
  border: 1px solid rgba(14, 32, 42, 0.1);
  padding: 0 20px;
  line-height: 60px;
  text-transform: capitalize;
}
.bd-contact-form-input input:focus, .bd-contact-form-input textarea:focus {
  outline: none;
  border-color: var(--clr-theme-1);
}
.bd-contact-form-input input::placeholder, .bd-contact-form-input textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: var(--clr-common-paragraph-color);
}
.bd-contact-form-input textarea {
  height: 200px;
  resize: none;
  padding-top: 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 var(--clr-common-paragraph-color);
  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-color: rgba(14, 32, 42, 0.1);
  font-size: 16px;
  height: 60px;
  line-height: 60px;
  width: 100%;
  color: var(--clr-common-paragraph-color);
  border-radius: 0;
}
.nice-select.bd-contact-form-input .current {
  position: relative;
}
.nice-select.bd-contact-form-input.nice-select {
  float: none;
}
.nice-select.bd-contact-form-input.nice-select .list {
  border-radius: 0;
}
.nice-select.bd-contact-form-input.nice-select::after {
  border-bottom: 1px solid var(--clr-common-paragraph-color);
  border-right: 1px solid var(--clr-common-paragraph-color);
  height: 10px;
  right: 20px;
  width: 10px;
}

.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 var(--clr-common-paragraph-color);
  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: 500px;
}
.location-map iframe {
  height: 100%;
  width: 100%;
  border: 0;
  position: absolute;
  left: 0;
}

.nice-select.contact-form-input.open {
  border-color: var(--clr-theme-1);
}

.contact-wrapper.cp-style2 .contact-content span {
  color: #A7A7A7;
}
.contact-wrapper.cp-style2 .contact-content a {
  color: var(--clr-common-white);
}
.contact-wrapper.cp-style2 .contact-content a:hover {
  color: var(--clr-theme-1);
}

.nice-select .list {
  padding: 10px 0;
}
[dir=rtl] .nice-select {
  text-align: right !important;
}
[dir=rtl] .nice-select .option {
  padding-left: 29px;
  padding-right: 18px;
  text-align: right;
}

.cp-contact-info-item {
  border: 1px solid var(--clr-common-soft-white);
  border-radius: 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;
  padding: 30px 45px;
}
.cp-contact-info-item:hover {
  transform: translateY(-5px);
  border-color: var(--clr-theme-1);
}
@media (max-width: 575px) {
  .cp-contact-info-item {
    padding: 30px 15px;
  }
}
.cp-contact-info-item .contact-shape {
  font-size: 48px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  line-height: 75px;
  display: inline-block;
  text-align: center;
  background-color: rgba(0, 182, 122, 0.1019607843);
}
.cp-contact-info-item .contact-shape i {
  font-size: 33px;
  color: var(--clr-theme-1);
}
.cp-contact-info-item .contact-content span {
  font-size: 16px;
  color: #646464;
  display: block;
  font-weight: 400;
  margin-bottom: 5px;
}
.cp-contact-info-item .contact-content a {
  font-size: 20px;
  font-weight: 600;
  color: #0E202A;
  margin-bottom: 6px;
  display: block;
}
.cp-contact-info-item .contact-content a:hover {
  color: var(--clr-theme-1);
}

/*----------------------------------------
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(rgba(240, 247, 253, 0.6039215686), rgba(240, 247, 253, 0.6039215686)), linear-gradient(rgba(240, 247, 253, 0.6039215686), rgba(240, 247, 253, 0.6039215686));
  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: var(--clr-common-paragraph-color);
  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;
  font-weight: 400;
  text-transform: capitalize;
  font-size: 18px;
}
.postbox__meta-inner {
  display: flex;
  align-items: center;
  gap: 38px;
}
.postbox__meta-inner span {
  color: var(--clr-common-paragraph-color);
  text-transform: capitalize;
  position: relative;
}
.postbox__meta-inner span a {
  font-size: 16px;
  color: var(--clr-common-paragraph-color);
}
.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;
  }
}

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

.bd-blog-meta-3 span {
  color: #888;
  font-size: 16px;
  line-height: 28px;
  text-transform: capitalize;
}
.bd-blog-meta-3 span::after {
  position: absolute;
  content: "";
  width: 7px;
  height: 7px;
  background-color: #888;
  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: #888;
  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 rgba(240, 247, 253, 0.231372549);
  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 rgba(240, 247, 253, 0.231372549);
  padding-bottom: 62px;
}

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

.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%;
}
.bd-blog-thumb-4 img:hover {
  transform: scale(1.05);
}

.bd-blog-meta-4 {
  flex-wrap: wrap;
}
.bd-blog-meta-4 span {
  font-size: 14px;
  font-weight: 400;
  color: var(--clr-common-paragraph-color);
  text-transform: capitalize;
}
.bd-blog-meta-4 span a {
  font-size: 14px;
  margin-inline-start: 10px;
  color: var(--clr-common-paragraph-color);
  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: var(--clr-theme-1);
  border-radius: 50%;
  line-height: 7px;
  transform: translateY(11px);
  margin-inline-start: -20px;
  display: block;
  margin-top: -29px;
}

.bd-blog-content-title-4 {
  font-size: 20px;
  text-transform: capitalize;
  margin-top: 15px;
  line-height: 1.33;
}
.bd-blog-content-title-4:hover {
  color: var(--clr-theme-1);
}

.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: var(--clr-common-paragraph-color);
  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 var(--clr-common-paragraph-color);
  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: 25px;
  text-transform: capitalize;
  color: var(--clr-common-paragraph-color);
  margin-bottom: 5px;
  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: var(--clr-common-paragraph-color);
}

.postbox-btn {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50px;
  padding: 0 30px;
  color: #000;
  transition: 0.3s ease-in-out;
  font-weight: 500;
  height: 55px;
  line-height: 52px;
}
.postbox-btn i {
  font-size: 18px;
  color: var(--clr-common-black);
  transform: translateY(3px) rotate(0);
  display: inline-block;
  margin-inline-start: 4px;
}
.postbox-btn:hover {
  background: var(--clr-theme-1);
  color: var(--clr-common-white);
  border-color: var(--clr-theme-1);
}
.postbox-btn:hover i {
  color: var(--clr-common-white);
  transform: translateY(3px) rotate(43deg);
}

.bd-blog-meta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px 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: 500;
  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: 24px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
  margin-bottom: 25px;
}
.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-1);
}
.bd-sidebar-widget-wrapper .sidebar-search button {
  position: absolute;
  inset-inline-end: 16px;
  top: 13px;
  color: var(--clr-common-paragraph-color);
  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: 400;
  font-size: 16px;
  line-height: 40px;
  color: var(--clr-common-body-text);
  position: relative;
  padding-left: 15px;
}
.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-theme-1);
  top: 50%;
  transform: translateX(-50%);
  inset-inline-start: 0;
}
.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: var(--clr-common-paragraph-color);
}
.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: 16px;
  text-transform: capitalize;
  color: var(--clr-common-paragraph-color);
  border: 1px solid var(--clr-common-soft-white);
  height: 33px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border-radius: 50px;
  line-height: 33px;
}
.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-soft-white);
  font-size: 16px;
  color: rgba(14, 32, 42, 0.7490196078);
}
.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: 500;
  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: var(--clr-common-paragraph-color);
  margin-top: 15px;
  margin-bottom: 0;
}

.bd-form-title {
  font-weight: 400;
  font-size: 30px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
}

.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-soft-white);
  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-soft-white);
  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);
}

.cp-blog2-item {
  padding: 24px;
  border: 1px solid rgba(14, 32, 42, 0.1);
  transition: 0.3s;
}
.cp-blog2-item .cp-blog2-img img {
  max-width: 100%;
}
.cp-blog2-item:hover {
  box-shadow: 0px 20px 40px rgba(0, 0, 0, 0.1);
  border-color: transparent;
}
.cp-blog2-item:hover .cp-blog2-img img {
  transform: scale(1.05);
}

.cp-blog2-cat {
  top: 20px;
  left: 20px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  background-color: #FAF9DF;
  border-radius: 1000px;
  display: inline-block;
  padding: 0 16px;
  color: #646464;
  text-transform: capitalize;
}

.cp-blog2-wrap .col-xl-4:nth-child(2) .cp-blog2-cat {
  background-color: #DFF0FA;
}
.cp-blog2-wrap .col-xl-4:nth-child(3) .cp-blog2-cat {
  background-color: #FFD6D6;
}

.cp-blog2-meta ul li {
  color: #646464;
  font-size: 14px;
  position: relative;
  text-transform: capitalize;
  padding-inline-end: 25px;
  margin-inline-end: 14px;
  list-style: none;
  display: inline-block;
}
.cp-blog2-meta ul li a:hover {
  color: var(--clr-theme-1);
}
.cp-blog2-meta ul li b {
  color: #0E202A;
}
.cp-blog2-meta ul li:last-child {
  padding-inline-end: 0;
  margin-inline-end: 0;
}
.cp-blog2-meta ul li:last-child::before {
  display: none;
}
.cp-blog2-meta ul li::before {
  content: "";
  position: absolute;
  inset-inline-end: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  display: inline-block;
  background: #646464;
  opacity: 0.5;
  border-radius: 50%;
  transform: translateY(-50%);
}

.cp-blog2-title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
}
.cp-blog2-title:hover {
  color: var(--clr-theme-1);
}

.cp-blog2-content .cp-text-btn:hover {
  color: var(--clr-theme-1);
}
.cp-blog2-content .cp-text-btn:hover i {
  color: var(--clr-theme-1);
}

.cp-blog2-auth {
  color: #0E202A;
  margin: 0;
}
.cp-blog2-auth::before {
  display: none;
}

.bd-blog-content-4 {
  padding: 25px 30px;
}
@media (max-width:450px) {
  .bd-blog-content-4 {
    padding: 20px;
  }
}

.related-blog-post .bd-blog-content-4 {
  padding: 0;
}

.blog-active .bd-blog-4 {
  border: 1px solid rgba(189, 189, 189, 0.3);
  padding: 15px;
  padding-bottom: 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;
}
.blog-active .bd-blog-4:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.cp-blog-space-0 {
  border: 1px solid rgba(189, 189, 189, 0.3);
  padding: 15px;
  padding-bottom: 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;
  margin-bottom: 30px;
}
.cp-blog-space-0:hover {
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}
.cp-blog-space-0 .bd-blog-content-4 {
  padding: 0;
}

/*----------------------------------------
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;
  background-attachment: fixed;
}
@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) {
  .video-3-bg {
    min-height: 450px;
  }
}

.video-4-bg {
  padding-top: 80px;
  padding-bottom: 65px;
  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-color: #000;
  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 #D9E1E8;
  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 #D9E1E8;
  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;
  text-align: right;
  display: block;
  padding-top: 70px;
  color: var(--clr-theme-1);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--clr-theme-1);
}
[dir=rtl] .video-time span {
  text-align: left;
}
@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 only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .about-video-area .about-video-link {
    background: var(--clr-theme-1);
    width: 100px;
    height: 100px;
    line-height: 110px;
    font-size: 25px;
  }
}
.about-video-area .about-video-thumb {
  min-height: 585px;
}
@media (max-width: 575px) {
  .about-video-area .about-video-thumb {
    min-height: 450px;
  }
}

.cp-video-btn {
  position: relative;
}
.cp-video-btn i {
  position: absolute;
  left: 50%;
  -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;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: #fff;
  font-weight: 400;
}

/*----------------------------------------
    Testimonial CSS
----------------------------------------*/
.testimonial-thumb {
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
}
.testimonial-thumb img {
  width: 100%;
  border-radius: 0 0 0px 270px;
}
@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: 40px;
  width: 78px;
  height: 78px;
  background: var(--clr-common-white);
  line-height: 78px;
  text-align: center;
  border-radius: 50%;
  transform: translateY(-50%);
}
[dir=rtl] .quote-icon {
  left: auto;
  right: 40px;
}

.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-theme-1);
}

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

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

.testimonial-info-title {
  font-weight: 600;
  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;
}

p.testimonial-info-designation {
  font-size: 14px;
}

.testimonial-thumb::before {
  content: "";
  background: #E6A57F;
  opacity: 0.2;
  border-radius: 177.5px 0px 0px 0px;
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  height: 315px;
  bottom: 0;
  z-index: -1;
}

/*----------------------------------------
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 rgba(240, 247, 253, 0.231372549);
  padding-bottom: 35px;
  border-top: 1px solid rgba(240, 247, 253, 0.231372549);
  padding-top: 35px;
  gap: 0 20px;
}
.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;
}
.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;
  font-size: 18px;
}
.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 rgba(240, 247, 253, 0.231372549);
  padding-bottom: 30px;
  padding-top: 30px;
}
@media (max-width:450px), (max-width: 575px) {
  .mission-nav-tabs .mission-tab-list ul li {
    font-size: 14px;
  }
}

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

.single-counter h5 {
  font-size: 18px;
  font-weight: 500;
}
.single-counter .count-txt {
  font-size: 54px;
  font-weight: 600;
  line-height: 60px;
  display: flex;
  align-items: center;
  letter-spacing: 2px;
  justify-content: center;
  color: var(--clr-theme-1);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--clr-theme-1);
  margin-bottom: 15px;
}

.count-txt2 {
  font-size: 54px;
  font-weight: 600;
  line-height: 60px;
  color: var(--clr-theme-1);
}

.count-txt3 {
  background-color: var(--clr-theme-2);
  font-weight: 600;
  width: 150px;
  height: 150px;
  display: inline-block;
  text-align: center;
  line-height: 150px;
  border-radius: 50%;
  font-size: 44px;
  color: var(--clr-theme-1);
  margin-bottom: 20px;
}

.counter-style3 {
  padding: 10px 30px;
}

/*----------------------------------------
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: 95px 0 95px;
}

.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 only screen and (min-width: 992px) and (max-width: 1199px) {
  .page-title-area {
    padding: 160px 0 120px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 991px), only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .page-title-area {
    padding: 140px 0 100px;
  }
}
.page-title-area::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #d7fcd0, #f0ebe5, #d7fcd0);
  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: 60px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
}
@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .page-title {
    font-size: 50px;
  }
}
@media only screen and (min-width: 992px) and (max-width: 1199px), only screen and (min-width: 768px) and (max-width: 991px) {
  .page-title {
    font-size: 45px;
  }
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .page-title {
    font-size: 35px;
  }
}

.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-img img {
  opacity: 0.5;
}
.brand-img:hover img {
  opacity: 1;
}

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

/*----------------------------------------
21. pricing CSS
----------------------------------------*/
.bd-price {
  position: relative;
  padding: 50px 40px;
  background-color: #F0F7FD;
  overflow: hidden;
}
@media (max-width: 575px) {
  .bd-price {
    padding: 40px 25px;
  }
}
.bd-price.active-price {
  border: 1px solid rgba(0, 182, 122, 0.12);
  background-color: rgba(0, 182, 122, 0.17);
}
.bd-price.active-price .bd-price-btn a {
  background-color: var(--clr-theme-1);
  border-color: var(--clr-theme-1);
  color: var(--clr-common-white);
}
.bd-price.active-price .bd-price-btn a i {
  color: var(--clr-common-white);
}

.bd-price-head-title {
  font-weight: 600;
  font-size: 25px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
  padding-bottom: 10px;
}

.bd-price-tag {
  font-weight: 500;
  font-size: 38px;
  line-height: 30px;
  text-transform: capitalize;
  color: var(--clr-common-body-text);
}
.bd-price-tag span {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-transform: capitalize;
  color: var(--clr-theme-1);
}

.bd-price-feature {
  margin-bottom: 40px;
}
.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;
}
.bd-price-feature ul li i {
  background-color: var(--clr-theme-1);
  height: 23px;
  width: 23px;
  min-width: 23px;
  text-align: center;
  line-height: 23px;
  border-radius: 50%;
  font-size: 12px;
  color: #fff;
  margin-inline-end: 10px;
}
.bd-price-feature ul li.price-feature-disable i {
  background-color: rgba(255, 0, 0, 0.7490196078);
}

.bd-price-btn a {
  display: inline-flex;
  padding: 0 30px;
  transition: 0.3s ease-in-out;
  border: 1.5px solid rgba(14, 32, 42, 0.1);
  font-weight: 600;
  font-size: 16px;
  color: #0E202A;
  height: 50px;
  line-height: 48px;
  border-radius: 27.5px;
}
.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: translateY(1px) rotate(45deg);
}
.bd-price-btn i {
  margin-inline-start: 5px;
  display: inline-block;
  font-size: 18px;
  color: var(--clr-common-body-text);
  transform: translateY(3px);
}

.bd-price-badge {
  position: absolute;
  background: var(--clr-theme-1);
  padding: 13px 60px 10px 60px;
  transform: rotate(45.22deg);
  inset-inline-end: -55px;
  top: 25px;
}
[dir=rtl] .bd-price-badge {
  transform: rotate(-45.22deg);
}
.bd-price-badge span {
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  text-transform: capitalize;
  color: var(--clr-common-white);
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .bd-price-badge span {
    font-size: 16px;
  }
}

.bd-price-head {
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275);
  padding-bottom: 25px;
}

.cp-price1 .cp-price-text {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275);
  padding-bottom: 15px;
  margin-bottom: 33px;
}
.cp-price1 .cp-price-text p {
  margin-bottom: 0;
}

.cp-price2 {
  padding: 0;
  text-align: center;
}
.cp-price2 .bd-price-head {
  background-color: var(--clr-theme-1);
  padding: 25px 10px;
  margin-bottom: 0;
}
.cp-price2 .bd-price-head .bd-price-head-title {
  color: #FFF;
}
.cp-price2 .bd-price-head .bd-price-tag {
  color: #FFF;
}
.cp-price2 .bd-price-head .bd-price-tag span {
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  text-transform: capitalize;
  color: #EEE;
}
.cp-price2 .cp-price-text {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1215686275);
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.cp-price2 .cp-price-content-wrap {
  padding: 40px 40px 30px 40px;
}
@media only screen and (min-width: 992px) and (max-width: 1199px), (max-width: 575px) {
  .cp-price2 .cp-price-content-wrap {
    padding: 40px 20px 30px 20px;
  }
}
.cp-price2 .bd-price-btn {
  background-color: var(--clr-theme-1);
  padding: 20px 10px;
}
.cp-price2 .bd-price-btn a {
  padding: 0 30px;
  border-color: rgba(234, 234, 234, 0.54);
  color: var(--clr-common-white);
}
.cp-price2 .bd-price-btn a i {
  color: var(--clr-common-white);
}
.cp-price2 .bd-price-btn a:hover {
  color: var(--clr-common-white);
  background-color: var(--clr-common-black);
  border-color: var(--clr-common-black);
}
.cp-price2 .bd-price-feature {
  margin-bottom: 0;
}
.cp-price2 .bd-price-feature ul li i {
  background-color: transparent;
  font-size: 16px;
  color: var(--clr-theme-1);
  margin-inline-end: 0px;
}
.cp-price2 .bd-price-feature ul li.price-feature-disable i {
  color: rgba(255, 0, 0, 0.7490196078);
}

.bd-price.active-price.cp-price2 .bd-price-btn a {
  border-color: rgba(234, 234, 234, 0.54);
  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-item:first-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.faq-accordion .accordion-item:last-of-type {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.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: var(--clr-common-paragraph-color);
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}
.faq-accordion .accordion-button {
  padding: 28px 30px 30px 0;
  font-weight: 500;
  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: 20px;
    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%;
}

.cp-faq2.faq-accordion .accordion-item {
  padding-left: 20px;
  padding-right: 20px;
  border-color: transparent;
  margin-bottom: 20px;
  background-color: var(--clr-theme-2);
}
.cp-faq2.faq-accordion .accordion-item .accordion-button {
  background-color: transparent;
}
.cp-faq2.faq-accordion .accordion-item:last-child {
  border-bottom: 1px solid transparent;
}

/*----------------------------------------
16. footer CSS
----------------------------------------*/
.footer-info {
  border-bottom: 1px solid #dfdfdf;
  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;
  font-weight: 400;
  margin-bottom: 0;
}
.footer-info .footer-info-title a:hover {
  color: var(--clr-theme-1);
}
@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;
}
.footer-info:hover.footer-info {
  border-color: #0E202A;
}

.footer-menu-title {
  color: #0E202A;
  font-size: 20px;
  font-weight: 400;
  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 {
  font-weight: 400;
  font-size: 32px;
  color: #0E202A;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget-link-title {
    font-size: 26px;
  }
}
.footer-widget-link-title .footer-message-text {
  color: var(--clr-theme-1);
  font-size: 32px;
}
@media only screen and (min-width: 576px) and (max-width: 767px), (max-width: 575px) {
  .footer-widget-link-title .footer-message-text {
    font-size: 26px;
  }
}

.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: 23px;
  color: #FFF;
  background-color: var(--clr-theme-1);
  padding-top: 6px;
}
.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%;
  font-size: 16px;
  margin-inline-end: 10px;
  color: #a2a2a2;
  display: inline-block;
  border: 1px solid rgba(14, 32, 42, 0.1);
}
@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer-social a {
    margin-inline-end: 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 #26363F;
}

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

.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-inline-start: 26px;
  padding-inline-end: 70px;
  color: var(--clr-common-white);
  font-size: 16px;
  font-weight: 400;
  background: transparent;
  width: 100%;
  height: 64px;
  outline: none;
  border: 1px solid #26363F;
}
.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: #979797;
}

.footer-submit {
  position: absolute;
  top: 0px;
  inset-inline-end: 0;
  background-color: var(--clr-theme-1);
  border-radius: 50%;
  text-align: center;
  line-height: 74px;
  font-size: 24px;
  height: 65px;
  width: 65px;
  bottom: 0;
  color: var(--clr-common-white);
}
.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: 10px 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: #A7A7A7;
  text-transform: capitalize;
}
.copyright-title-2 a {
  color: #d5d5d5;
}
.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: #A7A7A7;
}

.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-color: rgba(240, 247, 253, 0.231372549);
  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: #A7A7A7;
}

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

.footer-menu ul li a {
  color: #8A8A8A;
}
.footer-menu ul li a:hover {
  color: #0E202A;
}

.cp-footer-social2 a {
  border: 1px solid #414141;
}

.copy-right-menu ul li a {
  color: #A7A7A7;
}
.copy-right-menu ul li a:hover {
  color: var(--clr-common-white);
}

.copy-border-top {
  border-top: 1px solid rgba(14, 32, 42, 0.1803921569);
}

.copyright-title a {
  font-weight: 600;
  text-transform: uppercase;
}

.footer-social.cp-footer3-social a {
  border: 1px solid rgba(255, 255, 255, 0.2392156863);
}
.footer-social.cp-footer3-social a:hover {
  border-color: var(--clr-theme-1);
}

.footer-widget-link-title.fs-50 {
  font-size: 50px;
  color: rgba(240, 247, 253, 0.7803921569);
}
.footer-widget-link-title.fs-50 .footer-message-text {
  font-size: 50px;
}
@media only screen and (min-width: 1400px) and (max-width: 1599px) {
  .footer-widget-link-title.fs-50 {
    font-size: 45px;
  }
  .footer-widget-link-title.fs-50 .footer-message-text {
    font-size: 45px;
  }
}
@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) {
  .footer-widget-link-title.fs-50 {
    font-size: 40px;
  }
  .footer-widget-link-title.fs-50 .footer-message-text {
    font-size: 40px;
  }
}
@media (max-width:450px) {
  .footer-widget-link-title.fs-50 {
    font-size: 30px;
  }
  .footer-widget-link-title.fs-50 .footer-message-text {
    font-size: 30px;
  }
}

.copyright-title3 {
  color: #B3B3B3;
}
.copyright-title3 a {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7803921569);
}
.copyright-title3 a:hover {
  color: var(--clr-theme-1);
}

.cp-copyright3 ul li a {
  color: rgba(255, 255, 255, 0.7803921569);
}

.footer-info.cp-footer4-info {
  border-bottom-color: #26363F;
}
.footer-info.cp-footer4-info:hover {
  border-bottom-color: #868F94;
}
.footer-info.cp-footer4-info p {
  color: #a6a6a6;
}
.footer-info.cp-footer4-info .footer-info-title {
  color: rgba(240, 247, 253, 0.7803921569);
}

.cp-footer4-social a {
  border-color: #414141;
  color: rgba(255, 255, 255, 0.5294117647);
}

.footer-menu.txt-white h3 {
  color: rgba(240, 247, 253, 0.7803921569);
}
.footer-menu.txt-white ul li a {
  color: #a6a6a6;
}
.footer-menu.txt-white ul li a:hover {
  color: #F5F5F5;
}

.footer-widget-link-title.txt-white {
  color: rgba(240, 247, 253, 0.7803921569);
}

.copy-border4-top {
  border-top: 1px solid #26363F;
}

.txt-white .copyright-title {
  color: #a6a6a6;
}
.txt-white .copyright-title a {
  color: #F5F5F5;
}

/*----------------------------------------
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 {
  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="#5d9700"] {
  background-color: #5d9700;
}
.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: var(--clr-common-paragraph-color);
  display: inline-block;
}

.error-btn {
  margin-top: 50px;
}
.error-btn a {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.2117647059);
  border-radius: 50px;
  padding: 13px 30px;
  color: var(--clr-common-body-text);
  transition: 0.3s ease-in-out;
  font-weight: 500;
}
.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);
}

.error-btn a i {
  margin-inline-end: 6px;
}

/*----------------------------------------
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 var(--clr-theme-1);
  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;
  }
}
.mouseCursor.cursor-hover {
  display: none;
}

.cursor-inner {
  margin-left: -3px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--clr-theme-1);
  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: var(--clr-common-body-text);
  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: var(--clr-theme-1);
  opacity: 0.3;
}
.cursor-inner.cursor-none {
  opacity: 0;
}



.top1 {
  position: fixed;
  z-index: 999;
  bottom: 15%;
  right: 10px;
  width: 40px;
  height: auto;
}

.top2 {
  position: fixed;
  z-index: 999;
  bottom: 22%;
  right: 10px;
  width: 40px;
  height: auto;
}

.top3 {
  position: fixed;
  z-index: 999;
  bottom: 29%;
  right: 10px;
  width: 40px;
  height: auto;
}

.top4 {
  position: fixed;
  z-index: 999;
  bottom: 36%;
  right: 10px;
  width: 40px;
  height: auto;
}

.top5 {
  position: fixed;
  z-index: 999;
  bottom: 43%;
  right: 10px;
  width: 40px;
  height: auto;
}





.header-logo-clip, .header-logo-normal{
  width: 250px;
}


@media screen and (max-width: 991px) {
  .header-logo-clip, .header-logo-normal{
    width: 150px;
  }
}






.top0 {
  position: fixed;
  z-index: 9999999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top0 img.background {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: -1;
  filter: blur(30px);
  
}

.top0 img.circle {
  display: block;
  margin: 0 auto;
  border-radius: 10px;
  width: 100%;
}

.view-more{
 margin-top: 25px;
}


.f-size-55{
  font-size: 55px;
}


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


.video-sec{
 padding:90px 0px;
}