

/* 01.2 Variables */

:root {
  --body: #0F1F1F;
  --black: #000;
  --white: #fff;
  --theme: #0b3634;
  --theme-2: #e38c43;
  --header: #000;
  --text: #000;
  --border: #49515b4d;
  --bg: #F0F4F5;
  --bg-2: #004F44;
  --box-shadow: 0px 4px 25px 0px rgba(0, 0, 0, 0.06);
}

section{
  padding-bottom: 70px;
  padding-top: 70px;
}

/* 01.3 Buttons */
.theme-btn {
  position: relative;
  z-index: 2;
  overflow: hidden;
  vertical-align: middle;
  display: inline-block;
  border: none;
  text-transform: capitalize;
  text-align: center;
  border-radius: 30px;
  background: var(--theme);
  font-family: "Poppins", sans-serif;
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 6px 6px 6px 32px;
  letter-spacing: -0.18px;
}
.theme-btn i {
  margin-left: 10px;
  transition: all 0.4s ease-in-out;
  width: 44px;
  height: 44px;
  line-height: 44px;
  border-radius: 50%;
  background-color: var(--theme-2);
  color: #000;
}
.disno{
    display: none;
}
.theme-btn::before {
  content: "";
  position: absolute;
  height: 100%;
  bottom: 0;
  left: 0;
  width: 0;
  background-color: var(--theme-2);
  z-index: -1;
  transition: all 0.4s ease-out;
  border-radius: inherit;
}
.theme-btn:hover {
  color: var(--header);
  box-shadow: none;
}
.theme-btn:hover::before {
  width: 100%;
}
.theme-btn:hover i {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 575px) {
  .theme-btn {
    font-size: 14px;
  }
}

.link-btns {
  font-size: 16px;
  font-weight: 600;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  text-transform: capitalize;
  color: var(--theme);
}
.link-btns i {
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
  font-weight: 400;
}
.link-btns:hover i {
  transform: rotate(0);
}

/* 01.4 Typography */
/* --------------------------------------------
    Template Default Fonts & Fonts Styles
 ---------------------------------------------- */
body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  color: var(--text);
  background-color: var(--white);
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

input:focus {
  color: var(--text);
  outline: none;
}

input {
  color: var(--text);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  margin: 0px;
  padding: 0;
  color: var(--header);
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}

h1 {
  font-size: 74px;
  font-weight: 700;
  line-height: 113%;
}
@media (max-width: 1600px) {
  h1 {
    font-size: 64px;
  }
  .bt-hero-content h2{
    font-size: 64px;
  }
}
@media (max-width: 1399px) {
  h1 {
    font-size: 58px;
  }
    .bt-hero-content h2{
    font-size: 58px;
  }
}
@media (max-width: 1199px) {
  h1 {
    font-size: 60px;
  }
    .bt-hero-content h2{
    font-size: 60px;
  }
}
@media (max-width: 991px) {
  h1 {
    font-size: 52px;
  }
    .bt-hero-content h2{
    font-size: 52px;
  }
}
@media (max-width: 767px) {
  h1 {
    font-size: 46px;
  }
  .bt-hero-content h2{
    font-size: 46px;
  }
}
@media (max-width: 575px) {
  h1 {
    font-size: 38px;
  }
  .bt-hero-content h2{
    font-size: 38px;
  }
}
@media (max-width: 470px) {
  h1 {
    font-size: 32px;
  }
  .bt-hero-content h2{
    font-size: 32px;
  }
}

h2 {
  font-size: 50px;
  font-weight: 600;
  line-height: 120%;
}
@media (max-width: 1399px) {
  h2 {
    font-size: 40px;
  }
}
@media (max-width: 1199px) {
  h2 {
    font-size: 33px;
  }
}
@media (max-width: 767px) {
  h2 {
    font-size: 35px;
  }
}
@media (max-width: 575px) {
  h2 {
    font-size: 37px;
  }
}
@media (max-width: 470px) {
  h2 {
    font-size: 25px;
  }
}

h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 142%;
}
@media (max-width: 1399px) {
  h3 {
    font-size: 18px;
  }
}
@media (max-width: 1199px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 991px) {
  h3 {
    font-size: 21px;
  }
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
  }
}
@media (max-width: 575px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 21px;
  font-weight: 600;
}
h2.name {
    font-size: 21px;
}
.content h2 {
  font-size: 21px;
  font-weight: 600;
}
.bt-content h2{
    font-size: 21px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  h4 {
    font-size: 18px;
  }
  .content h2 {
    font-size: 18px;
}
h2.name {
    font-size: 18px;
}
.bt-content h2{
  font-size: 18px;
}
}
@media (max-width: 575px) {
  h4 {
    font-size: 18px;
  }
  .content h2 {
    font-size: 18px;
}
h2.name {
  font-size: 18px;
}
.bt-content h2{
 font-size: 18px;
}
}

h5 {
  font-size: 20px;
  font-weight: 600;
}
@media (max-width: 575px) {
  h5 {
    font-size: 20px;
  }
}

h6 {
  font-size: 16px;
  font-weight: 600;
}

a {
  text-decoration: none;
  outline: none !important;
  cursor: pointer;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}

p {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

span {
  margin: 0px;
  transition: all 0.4s ease-in-out;
}

/*--------------------------------------------------------------
02. TEMPLATE SECTIONS
--------------------------------------------------------------*/
/* 02.1 Preloader */
.preloader {
  align-items: center;
  cursor: default;
  display: flex;
  height: 100%;
  justify-content: center;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 9999999;
  text-align: center;
}
.preloader .animation-preloader {
  z-index: 1000;
}
.preloader .animation-preloader .spinner {
  animation: spinner 1s infinite linear;
  border-radius: 50%;
  border: 3px solid rgba(0, 0, 0, 0.2);
  border-top-color: var(--theme);
  height: 9em;
  margin: 0 auto 3.5em auto;
  width: 9em;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .spinner {
    width: 7.5em;
    height: 7.5em;
    margin: 0 auto 1.5em auto;
  }
}
.preloader .animation-preloader .txt-loading {
  font: bold 5em "Poppins", sans-serif, "Inter", sans-serif;
  text-align: center;
  user-select: none;
}
@media (max-width: 767px) {
  .preloader .animation-preloader .txt-loading {
    font-size: 2.5em;
  }
}
.preloader .animation-preloader .txt-loading .letters-loading {
  color: var(--theme-2);
  position: relative;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(2):before {
  animation-delay: 0.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(3):before {
  animation-delay: 0.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(4):before {
  animation-delay: 0.6s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(5):before {
  animation-delay: 0.8s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(6):before {
  animation-delay: 1s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(7):before {
  animation-delay: 1.2s;
}
.preloader .animation-preloader .txt-loading .letters-loading:nth-child(8):before {
  animation-delay: 1.4s;
}
.preloader .animation-preloader .txt-loading .letters-loading::before {
  animation: letters-loading 4s infinite;
  color: var(--theme);
  content: attr(data-text-preloader);
  left: 0;
  opacity: 0;
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: -3px;
  transform: rotateY(-90deg);
}
.preloader p {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 8px;
  color: var(--theme);
}
.preloader .loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 0;
  z-index: 1;
  pointer-events: none;
}
.preloader .loader .row {
  height: 100%;
}
.preloader .loader .loader-section {
  padding: 0px;
}
.preloader .loader .loader-section .bg {
  background-color: #fff;
  height: 100%;
  left: 0;
  width: 100%;
  transition: all 800ms cubic-bezier(0.77, 0, 0.175, 1);
}
.preloader.loaded .animation-preloader {
  opacity: 0;
  transition: 0.3s ease-out;
}
.preloader.loaded .loader-section .bg {
  width: 0;
  transition: 0.7s 0.3s allcubic-bezier(0.1, 0.1, 0.1, 1);
}

.back-to-top {
  border-radius: 50%;
  background-color: var(--theme);
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: var(--white);
  font-size: 18px;
  position: fixed;
  display: inline-block;
  z-index: 999;
  right: 10px;
  bottom: 30px;
  transition: all 0.4s ease-in-out;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.back-to-top:hover {
  background-color: var(--header);
  color: var(--white);
}
.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}

.cursor-outer {
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--theme);
  background-color: var(--theme);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.34;
  -webkit-transition: all 0.4s ease-out 0s;
  transition: all 0.4s ease-out 0s;
}

.cursor-outer.cursor-hover {
  opacity: 0.14;
}

.cursor-outer.cursor-big {
  opacity: 0;
}

.mouseCursor {
  position: fixed;
  top: 0;
  inset-inline-start: 0;
  inset-inline-end: 0;
  bottom: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
  text-align: center;
}

.mouseCursor.cursor-big {
  width: 20px;
  height: 20px;
  -webkit-margin-start: -12px;
  margin-inline-start: -12px;
  margin-top: -12px;
}

.cursor-inner {
  -webkit-margin-start: -3px;
  margin-inline-start: -3px;
  margin-top: -3px;
  width: 10px;
  height: 10px;
  z-index: 10000001;
  background-color: var(--theme);
  opacity: 1;
  -webkit-transition: all 0.24s ease-out 0s;
  transition: all 0.24s ease-out 0s;
}
.cursor-inner span {
  color: var(--text);
  line-height: 60px;
  opacity: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 12px;
}

.cursor-inner.cursor-big span {
  opacity: 1;
}

.cursor-inner.cursor-hover {
  -webkit-margin-start: -10px;
  margin-inline-start: -10px;
  margin-top: -10px;
  width: 30px;
  height: 30px;
  background-color: var(--theme);
  border: 1px solid #686363;
  opacity: 0;
}

.search-popup {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -2;
  -webkit-transition: all 1s ease;
  -khtml-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}

.search-popup__overlay {
  position: fixed;
  width: 224vw;
  height: 224vw;
  top: calc(90px - 112vw);
  right: calc(50% - 112vw);
  z-index: 3;
  display: block;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -khtml-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transition: transform 0.8s ease-in-out;
  -khtml-transition: transform 0.8s ease-in-out;
  -moz-transition: transform 0.8s ease-in-out;
  -ms-transition: transform 0.8s ease-in-out;
  -o-transition: transform 0.8s ease-in-out;
  transition: transform 0.8s ease-in-out;
  transition-delay: 0s;
  transition-delay: 0.3s;
  -webkit-transition-delay: 0.3s;
  background-color: #000000;
  opacity: 0.3;
  cursor: url(assets/images/close.webp), auto;
}

@media (max-width: 767px) {
  .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(-110%);
  }
}
.search-popup__content {
  position: fixed;
  width: 0;
  max-width: 560px;
  padding: 30px 15px;
  left: 50%;
  top: 50%;
  opacity: 0;
  z-index: 3;
  -webkit-transform: translate(-50%, -50%);
  -khtml-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -khtml-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -moz-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -ms-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  -o-transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition: opacity 0.5s 0s, width 0.8s 0.8s cubic-bezier(0.225, 0.01, 0.475, 1.01), transform 0.2s 0s;
  transition-delay: 0s, 0.8s, 0s;
  transition-delay: 0s, 0.4s, 0s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
}

.search-popup__form {
  position: relative;
}

.search-popup__form input[type=search],
.search-popup__form input[type=text] {
  width: 100%;
  height: 66px;
  border: none;
  outline: none;
  padding-left: 20px;
  background-color: var(--white);
  font-size: 16px;
  font-weight: 400;
  color: var(--text);
  transition: all 500ms ease;
}

.search-popup__form input[type=search]:focus,
.search-popup__form input[type=text]:focus {
  color: var(--header);
}

.search-popup__form .search-btn {
  padding: 0;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: -1px;
  border-radius: 0;
  font-size: 20px;
  color: var(--white);
  background-color: var(--theme);
  transition: all 0.4s ease-in-out;
}
.search-popup__form .search-btn:hover {
  background-color: var(--black);
}

.search-popup__form .eolexi-btn svg {
  width: 1em;
  height: 1em;
  fill: currentColor;
}

.search-popup.active {
  z-index: 9999;
}

.search-popup.active .search-popup__overlay {
  top: auto;
  bottom: calc(90px - 112vw);
  -webkit-transform: scale(1);
  -khtml-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  transition-delay: 0s;
  -webkit-transition-delay: 0s;
  opacity: 0.7;
  -webkit-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -khtml-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -moz-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -ms-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  -o-transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
  transition: transform 1.6s cubic-bezier(0.4, 0, 0, 1);
}

@media (max-width: 767px) {
  .search-popup.active .search-popup__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: none;
    width: 100%;
    height: 100%;
    border-radius: 0;
    transform: translateY(0%);
  }
}
.search-popup.active .search-popup__content {
  width: 100%;
  opacity: 1;
  transition-delay: 0.7s;
  -webkit-transition-delay: 0.7s;
}

.gt-page-nav-wrap ul {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}
.gt-page-nav-wrap ul li {
  display: inline-block;
}
.gt-page-nav-wrap ul li:first-child a {
  color: var(--white);
  background-color: transparent;
  border: 1px none;
}
.gt-page-nav-wrap ul li:last-child a {
  color: var(--white);
  background-color: transparent;
  border: 1px none;
}
.gt-page-nav-wrap ul li .gt-page-numbers {
  display: inline-block;
  width: 54px;
  height: 54px;
  line-height: 54px;
  border-radius: 100%;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  color: var(--text);
  text-align: center;
  background-color: transparent;
}
.gt-page-nav-wrap ul li .gt-page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 991px) {
  .gt-page-nav-wrap ul li .gt-page-numbers {
    margin-top: 10px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
  }
}
@media (max-width: 470px) {
  .gt-page-nav-wrap ul li .gt-page-numbers {
    width: 40px;
    height: 40px;
    line-height: 40px;
  }
}
.gt-page-nav-wrap ul li .gt-page-numbers.active {
  background-color: var(--theme);
  color: var(--white);
}
.gt-page-nav-wrap ul li .gt-page-numbers i {
  margin-top: 2px;
}
.gt-page-nav-wrap ul li .gt-page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}

/* 02.2 Header */
@media (max-width: 1199px) {
  .menu-thumb {
    display: none !important;
  }
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* padding: 10px 0; */
}
.header-main .main-menu ul {
  margin-bottom: 0;
}
.header-main .main-menu ul li {
  position: relative;
  list-style: none;
  display: inline-block;
  margin-inline-end: 30px;
}
.header-main .main-menu ul li:last-child {
  margin-inline-end: 0;
}
.header-main .main-menu ul li a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.34px;
  color: var(--header);
  font-family: "Poppins", sans-serif;
  padding: 18px 0;
  text-align: left;
  position: relative;
  text-transform: capitalize;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li a i {
  margin-left: 4px;
  font-size: 14px;
}
.header-main .main-menu ul li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu {
  position: absolute;
  top: 115%;
  inset-inline-start: 0;
  min-width: 260px;
  padding: 20px 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transform-origin: top center;
  color: var(--header);
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-top: 4px solid var(--theme-2);
  background-color: var(--white);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
.header-main .main-menu ul li .submenu li {
  display: block;
  width: 100%;
  margin: 0;
}
.header-main .main-menu ul li .submenu li a {
  position: relative;
  z-index: 11;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.34px;
  color: var(--header);
  line-height: 38px;
  padding: 0px 0px 0px 32px;
  padding-right: 22px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-main .main-menu ul li .submenu li a::before {
  content: "";
  position: absolute;
  width: 0px;
  height: 2px;
  background: var(--theme);
  left: 14px;
  bottom: 18px;
  transition: all 0.4s ease-in-out;
}
.header-main .main-menu ul li .submenu li a:hover {
  color: var(--theme) !important;
}
.header-main .main-menu ul li .submenu li:last-child a {
  border: none;
}
.header-main .main-menu ul li .submenu li .submenu {
  inset-inline-start: 100%;
  top: 0;
  visibility: hidden;
  opacity: 0;
}
.header-main .main-menu ul li .submenu li:hover > a {
  color: var(--theme) !important;
  margin-left: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::before {
  width: 10px;
}
.header-main .main-menu ul li .submenu li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li .submenu li:hover > .submenu {
  -webkit-transform: translateY(1);
  -moz-transform: translateY(1);
  -ms-transform: translateY(1);
  -o-transform: translateY(1);
  transform: translateY(1);
  visibility: visible;
  opacity: 1;
}
.header-main .main-menu ul li .submenu li.has-dropdown > a::after {
  position: absolute;
  top: 50%;
  inset-inline-end: 25px;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  color: var(--theme);
}
.header-main .main-menu ul li .has-homemenu {
  width: 1300px;
  padding: 30px 30px 10px 30px;
  opacity: 0;
  left: -250px;
  visibility: hidden;
  padding: 30px 30px 10px 30px;
}
@media (max-width: 1399px) {
  .header-main .main-menu ul li .has-homemenu {
    width: 1000px;
  }
}
.header-main .main-menu ul li:hover > a {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > a::after {
  color: var(--theme);
}
.header-main .main-menu ul li:hover > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
.header-main .header-right {
  gap: 30px;
}
@media (max-width: 1399px) {
  .header-main .header-right {
    gap: 20px;
  }
}
.header-main .sidebar__toggle {
  cursor: pointer;
  font-size: 20px;
}

.header-top-section {
  border-bottom: 1px solid rgba(108, 112, 111, 0.3);
  padding: 3px 0;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .header-top-section {
    display: none;
  }
}
.header-top-section .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-top-section .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-top-section .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-top-section .container-fluid {
    padding: 0 30px;
  }
}
.header-top-section .header-top-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-top-section .header-top-wrapper ul {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-top-section .header-top-wrapper ul li {
  color: var(--header);
  font-size: 16px;
}
.header-top-section .header-top-wrapper ul li:not(:last-child) {
  border-right: 1px solid #162726;
  padding-right: 20px;
}
.header-top-section .header-top-wrapper ul li i {
  margin-right: 9px;
}
.header-top-section .header-top-wrapper .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-top-section .header-top-wrapper .social-icon a {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid var(--text);
  text-align: center;
  color: var(--text);
  font-size: 14px;
}
.header-top-section .header-top-wrapper .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
  opacity: 1;
}

.header-1 {
  position: relative;
  z-index: 99999;
}
.header-1 .logo-shape {
  position: absolute;
  left: -90px;
  top: 0;
  bottom: 0;
  z-index: -1;
}

 a.header-logo img {
    max-width: 180px;
    height: auto;
}
a.header-logo2 img {
    max-width: 150px;
    height: auto;
}
@media (max-width: 1399px) {
  .header-1 .header-logo2 {
    display: none;
  }
}
.header-1 .header-logo {
  display: none;
}
@media (max-width: 1399px) {
  .header-1 .header-logo {
    display: block;
  }
}
.header-1 .container-fluid {
  padding: 0 100px;
}
@media (max-width: 1600px) {
  .header-1 .container-fluid {
    padding: 0 50px;
  }
}
@media (max-width: 1399px) {
  .header-1 .container-fluid {
    padding: 0 40px;
  }
}
@media (max-width: 1199px) {
  .header-1 .container-fluid {
    padding: 0 30px;
  }
}
@media (max-width: 470px) {
  .header-1 .container-fluid {
    padding: 0 15px;
  }
}
.header-1 .header-right .search-toggler {
  background-color: transparent;
  border: 1px solid rgba(20, 20, 20, 0.2);
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  border-radius: 50%;
}
.header-1 .header-right .sidebar__toggle {
  color: var(--header);
}
@media (max-width: 1199px) {
  .header-1 .header-right .theme-btn {
    display: none;
  }
}
.header-1 .header-right-items {
  display: flex;
  align-items: center;
  gap: 100px;
}
@media (max-width: 1600px) {
  .header-1 .header-right-items {
    gap: 50px;
  }
}

.header-2 {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 99999;
  width: 100%;
}
@media (max-width: 767px) {
  .header-2 {
    top: 15px;
  }
}
.header-2 .mega-menu-wrapper {
  background-color: var(--white);
  padding-left: 30px;
  padding-right: 30px;
  border-radius: 100px;
}
@media (max-width: 767px) {
  .header-2 .mega-menu-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.header-2 .logo {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header-2 .header-right-items {
  gap: 80px;
}
@media (max-width: 1600px) {
  .header-2 .header-right-items {
    gap: 50px;
  }
}
.header-2 .category-oneadjust {
  border-radius: 30px;
  background: #F2F4F7;
  display: flex;
  align-items: center;
  padding: 10px 18px;
  line-height: 1;
}
@media (max-width: 1399px) {
  .header-2 .category-oneadjust {
    display: none;
  }
}
.header-2 .category-oneadjust .single-select {
  border: none;
  background-color: transparent;
  line-height: initial;
  height: initial;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--header);
  padding-right: 28px;
}
.header-2 .category-oneadjust .single-select::after {
  right: 0;
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
}

.header-3 .logo {
  display: flex;
  align-items: center;
  gap: 50px;
}
.header-3 .category-oneadjust {
  border-radius: 30px;
  background: #F2F4F7;
  display: flex;
  align-items: center;
  padding: 10px 18px;
  line-height: 1;
}
@media (max-width: 1399px) {
  .header-3 .category-oneadjust {
    display: none;
  }
}
.header-3 .category-oneadjust .single-select {
  border: none;
  background-color: transparent;
  line-height: initial;
  height: initial;
  font-size: 16px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  color: var(--header);
  padding-right: 28px;
}
.header-3 .category-oneadjust .single-select::after {
  right: 0;
  border-bottom: 2px solid var(--header);
  border-right: 2px solid var(--header);
  width: 8px;
  height: 8px;
}

.sticky {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999;
  transition: all 0.9s;
  background-color: var(--white);
  -webkit-animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  animation: 500ms ease-in-out 0s normal none 1 running fadeInDown;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.offcanvas__info {
  background: var(--white) none repeat scroll 0 0;
  border-left: 2px solid var(--theme);
  position: fixed;
  right: 0;
  top: 0;
  width: 400px;
  height: 100%;
  -webkit-transform: translateX(calc(100% + 80px));
  -moz-transform: translateX(calc(100% + 80px));
  -ms-transform: translateX(calc(100% + 80px));
  -o-transform: translateX(calc(100% + 80px));
  transform: translateX(calc(100% + 80px));
  -webkit-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  -moz-transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
  z-index: 9999999;
  overflow-y: scroll;
  overscroll-behavior-y: contain;
  scrollbar-width: none;
}

.offcanvas__info.info-open {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

.offcanvas__logo a img {
  width: 150px;
}

.offcanvas__wrapper {
  position: relative;
  height: 100%;
  padding: 30px 30px;
}
.offcanvas__wrapper .offcanvas-title {
  font-size: 28px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content p {
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background-color: var(--theme);
  position: relative;
  z-index: 9;
  cursor: pointer;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__close i {
  color: var(--white);
}
.offcanvas__wrapper .offcanvas__content .social-icon {
  margin-top: 30px;
  gap: 10px;
  margin-bottom: 30px;
}
.offcanvas__wrapper .offcanvas__content .social-icon a {
  width: 52px;
  height: 52px;
  line-height: 52px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--header);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.offcanvas__wrapper .offcanvas__content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact {
  margin-top: 20px;
  margin-bottom: 40px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li:not(:last-child) {
  margin-bottom: 10px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li span {
  font-weight: 600;
  color: var(--header);
  font-size: 18px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .contact-list li a {
  font-size: 16px;
  color: var(--header);
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact span {
  text-transform: initial;
}
.offcanvas__wrapper .offcanvas__content .offcanvas__contact .header-button {
  display: flex;
  align-items: center;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area {
  margin-top: 30px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items:not(:last-child) {
  margin-bottom: 20px;
}
.offcanvas__wrapper .offcanvas__content .offcanvas-gallery-area .offcanvas-gallery-items .offcanvas-image {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 0;
}
.offcanvas__wrapper .offcanvas__content .theme-btn {
  text-align: center;
}

.offcanvas__overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #151515;
  z-index: 900;
  top: 0;
  opacity: 0;
  visibility: hidden;
  right: 0;
}

.offcanvas__overlay.overlay-open {
  opacity: 0.8;
  visibility: visible;
}

@media (max-width: 450px) {
  .offcanvas__info {
    width: 350px;
  }
}
@media (max-width: 575px) {
  .offcanvas__wrapper {
    padding: 20px;
  }
}
.breadcrumb-wrapper {
  position: relative;
  z-index: 9;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper {
    margin-bottom: 0;
  }
}
.breadcrumb-wrapper .bottom-shape {
  height: 72px;
  position: absolute;
  bottom: -30px;
  left: 0;
  right: 0;
  z-index: 12;
}
@media (max-width: 1399px) {
  .breadcrumb-wrapper .bottom-shape {
    display: none;
  }
}
.breadcrumb-wrapper .page-heading {
  position: relative;
  padding: 70px 0 70px;
  z-index: 9;
  text-align: center;
}
@media (max-width: 991px) {
  .breadcrumb-wrapper .page-heading {
    padding: 60px 0 60px;
  }
}
@media (max-width: 767px) {
  .breadcrumb-wrapper .page-heading {
    text-align: center;
  }
}
.breadcrumb-wrapper .page-heading h1 {
  color: var(--white);
  font-size: 50px;
  position: relative;
  text-transform: capitalize;
  z-index: 9;
  font-weight: 700;
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 40px;
  }
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading h1 {
    font-size: 30px;
  }

}
.breadcrumb-wrapper .page-heading .breadcrumb-items {
  display: inline-flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
  border-radius: 30px;
  background: rgb(11 54 52 / 66%);
  padding: 15px 28px;
  line-height: 1;
}
@media (max-width: 575px) {
  .breadcrumb-wrapper .page-heading .breadcrumb-items {
    margin-top: 20px;
  }
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li {
  color: var(--white);
  text-transform: capitalize;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a {
  color: var(--white);
  transition: all 0.4s ease-in-out;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a:hover {
  color: var(--theme-2);
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li a i {
  color: var(--theme);
  margin-right: 5px;
}
.breadcrumb-wrapper .page-heading .breadcrumb-items li i {
  color: var(--white);
}
.breadcrumb-wrapper .breadcrumb-image {
  position: absolute;
  bottom: 0;
  top: 0;
  right: 140px;
}
@media (max-width: 1600px) {
  .breadcrumb-wrapper .breadcrumb-image {
    right: 30px;
  }
}
@media (max-width: 1199px) {
  .breadcrumb-wrapper .breadcrumb-image {
    display: none;
  }
}

.error-items {
  text-align: center;
}
.error-items .thumb {
  max-width: 700px;
  margin: 0 auto;
}
.error-items .thumb img {
  width: 100%;
  height: 100%;
}
.error-items .theme-btn {
  margin-top: 60px;
}
.error-items .theme-btn i {
  transform: rotate(-40deg);
  transition: all 0.4s ease-in-out;
  font-weight: 600;
}

/* slider start theme */
.bt-hero-1 {
  position: relative;
}
@media (max-width: 1199px) {
.bt-hero-1 {
        padding: 80px 0;
    }
}
@media (max-width: 767px) {
  .bt-hero-1 {
    padding: 90px 0;
  }
}
.bt-hero-1 .hero-shape-1 {
  position: absolute;
  top: 8%;
  left: 5%;
}
@media (max-width: 1399px) {
  .bt-hero-1 .hero-shape-1 {
    top: 16%;
    left: 0%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-1 .hero-shape-1 {
    display: none;
  }
}
.bt-hero-1 .hero-shape-2 {
  position: absolute;
  top: 68%;
  left: 40%;
}
@media (max-width: 1399px) {
  .bt-hero-1 .hero-shape-2 {
    top: 69%;
    left: 32%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-1 .hero-shape-2 {
    display: none;
  }
}
.bt-hero-1 .hero-shape-3 {
  position: absolute;
  top: 10%;
  right: 10%;
}
@media (max-width: 1399px) {
  .bt-hero-1 .hero-shape-3 {
    max-width: 100px;
    top: 63%;
  }
  .bt-hero-1 .hero-shape-3 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-1 .hero-shape-3 {
    display: none;
  }
}
.bt-hero-1 .hero-shape-4 {
  position: absolute;
  bottom: 10%;
  right: 10%;
}
@media (max-width: 1199px) {
  .bt-hero-1 .hero-shape-4 {
    display: none;
  }
}
.bt-hero-1 .hero-shape-5 {
  position: absolute;
  bottom: 10%;
  left: 10%;
}
@media (max-width: 1199px) {
  .bt-hero-1 .hero-shape-5 {
    display: none;
  }
}
.bt-hero-1 .bt-hero-content {
  position: relative;
  z-index: 9;
      text-align: left;
}
.bt-hero-1 .bt-hero-content span {
  color: var(--theme);
  padding: 10px 28px;
  line-height: 1;
  border-radius: 30px;
  background: rgba(0, 79, 68, 0.1);
}
.bt-hero-1 .bt-hero-content h1 {
  color: var(--header);
  margin-top: 15px;
}
.bt-hero-1 .bt-hero-content p {
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .bt-hero-1 .bt-hero-content p {
    font-size: 15px;
  }
}
@media (max-width: 575px) {
  .bt-hero-1 .bt-hero-content p {
    font-size: 14px;
  }
}
.bt-hero-1 .bt-hero-content .theme-btn {
  margin-top: 50px;
}
.bt-hero-1 .bt-right-items {
  position: relative;
}
.bt-hero-1 .bt-right-items .client-counter-box {
  display: flex;
  align-items: center;
  gap: 20px;
  border-radius: 77.5px;
  background: var(--white);
  display: inline-flex;
  padding: 25px;
  line-height: 1;
  position: absolute;
  z-index: 9;
  top: 3%;
  right: 45%;
}
@media (max-width: 1199px) {
  .bt-hero-1 .bt-right-items .client-counter-box {
    display: none;
  }
}
.bt-hero-1 .bt-right-items .client-counter-box .content h3 {
  color: #000;
}
.bt-hero-1 .bt-right-items .client-counter-box .content p {
  font-size: 16px;
}
.bt-hero-1 .bt-right-items .counter-box {
  position: absolute;
  bottom: 10%;
  right: -7%;
  border-radius: 77.5px;
  background: var(--white);
  padding: 18px 35px;
  text-align: center;
  line-height: 1;
  z-index: 9;
}
@media (max-width: 1600px) {
  .bt-hero-1 .bt-right-items .counter-box {
    right: 0;
  }
}
@media (max-width: 1199px) {
  .bt-hero-1 .bt-right-items .counter-box {
    display: none;
  }
}
.bt-hero-1 .bt-right-items .counter-box h3 {
  color: var(--theme);
}
.bt-hero-1 .bt-right-items .bt-hero-image {
  max-width: 270px;
  margin-top: 190px;
}
@media (max-width: 1199px) {
  .bt-hero-1 .bt-right-items .bt-hero-image {
    margin-top: 0;
  }
}
.bt-hero-1 .bt-right-items .bt-hero-image img {
  width: 100%;
  height: 100%;
}
.bt-hero-1 .bt-right-items .bt-hero-imag-2 {
  max-width: 342px;
}
.bt-hero-1 .bt-right-items .bt-hero-imag-2 img {
  width: 100%;
  height: 100%;
}

.bt-hero-2 {
  position: relative;
  z-index: 9;
}
.bt-hero-2 .hero-shape-1 {
  position: absolute;
  top: 25%;
  right: 15%;
}
.bt-hero-2 .hero-shape-2 {
  position: absolute;
  top: 62%;
  left: 24%;
}
.pad-test{
  padding-left: 10px;
  padding-right: 10px;
}
@media (max-width: 1399px) {
      .bt-hero-2 .hero-shape-2 {
        position: absolute;
        top: 60%;
        left: 21%;
    }
}
@media (max-width: 1199px) {
  .bt-hero-2 .hero-shape-2 {
    display: none;
  }
}
.bt-hero-2 .hero-shape-3 {
  position: absolute;
  z-index: -1;
  bottom: 35%;
  right: 33%;
}
.bt-hero-2 .line-shape-animation {
  height: 138px;
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  z-index: 12;
}
@media (max-width: 1399px) {
  .bt-hero-2 .line-shape-animation {
    display: none;
  }
}
.bt-hero-2 .bt-hero-shape {
  position: absolute;
  bottom: 0;
  left: 2%;
  z-index: -1;
}
@media (max-width: 1199px) {
  .bt-hero-2 .bt-hero-shape {
    display: none;
  }
}
.bt-hero-2 .container {
  max-width: 1720px;
}
.bt-hero-2 .bt-hero-image {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
}
.bt-hero-2 .bt-hero-image img {
  width: 100%;
  height: 100%;
}
.bt-hero-2 .bt-hero-image.style-2 {
  margin-top: 180px;
}
@media (max-width: 1399px) {
  .bt-hero-2 .bt-hero-image.style-2 {
    margin-top: 120;
  }
}
@media (max-width: 1199px) {
  .bt-hero-2 .bt-hero-image.style-2 {
    margin-top: 0;
  }
}
.bt-hero-2 .bt-hero-content {
  text-align: center;
  position: relative;
  z-index: 9;
}
.bt-hero-2 .bt-hero-content span {
  color: var(--white);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 24px;
  line-height: 1;
}
.bt-hero-2 .bt-hero-content h2 {
  color: var(--white);
  margin-top: 25px;
}
.bt-hero-2 .bt-hero-content p {
  max-width: 600px;
  font-size: 18px;
  color: var(--white);
  margin: 20px auto 0;
}
@media (max-width: 575px) {
  .bt-hero-2 .bt-hero-content p {
    font-size: 16px;
  }
}
.bt-hero-2 .bt-hero-content .theme-btn {
  margin-top: 50px;
  background-color: var(--white);
  color: var(--header);
}
.bt-hero-2 .bt-hero-content .theme-btn i {
  background-color: var(--theme);
  color: var(--white);
}
.bt-hero-2 .bt-hero-content .theme-btn::before {
  background-color: var(--theme-2);
}
.bt-hero-2 .bt-hero-content .theme-btn:hover {
  color: var(--header);
}
.bt-hero-2 .bt-hero-content .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme);
}

.bt-hero-3 {
  padding: 40px 0 0;
  overflow: hidden;
  position: relative;
  background-position: bottom !important;
  overflow: hidden;
}
@media (max-width: 1399px) {
  .bt-hero-3 {
    padding-top: 130px;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 {
    padding-top: 70px !important;
  }
}
.bt-hero-3 .line-top {
  height: 60px;
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  z-index: 12;
}
@media (max-width: 1199px) {
  .bt-hero-3 .line-top {
    display: none;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 {
    padding: 140px 0;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 {
    padding: 140px 0 0;
  }
}
.bt-hero-3 .bt-hero-shape-1 {
  position: absolute;
  left: 0;
  top: 35%;
}
@media (max-width: 1399px) {
  .bt-hero-3 .bt-hero-shape-1 {
    max-width: 120px;
  }
  .bt-hero-3 .bt-hero-shape-1 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 .bt-hero-shape-1 {
    display: none;
  }
}
.bt-hero-3 .bt-hero-shape-2 {
  position: absolute;
  left: 50%;
  top: 15%;
}
@media (max-width: 1399px) {
  .bt-hero-3 .bt-hero-shape-2 {
    left: 37%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 .bt-hero-shape-2 {
    display: none;
  }
}
.bt-hero-3 .bt-hero-shape-3 {
  position: absolute;
  left: 26%;
  bottom: 4%;
}
@media (max-width: 1399px) {
  .bt-hero-3 .bt-hero-shape-3 {
    left: 28%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 .bt-hero-shape-3 {
    display: none;
  }
}
.bt-hero-3 .bt-hero-shape-4 {
  position: absolute;
  right: 13%;
  top: 6%;
}
@media (max-width: 1399px) {
  .bt-hero-3 .bt-hero-shape-4 {
    max-width: 120px;
    right: 10%;
    top: 8%;
  }
  .bt-hero-3 .bt-hero-shape-4 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 .bt-hero-shape-4 {
    display: none;
  }
}
.bt-hero-3 .bt-hero-shape-5 {
  position: absolute;
  right: 8%;
  top: 35%;
}
@media (max-width: 1399px) {
  .bt-hero-3 .bt-hero-shape-5 {
    max-width: 200px;
    top: 38%;
  }
  .bt-hero-3 .bt-hero-shape-5 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 .bt-hero-shape-5 {
    right: 2%;
    top: 41%;
    max-width: 240px;
  }
  .bt-hero-3 .bt-hero-shape-5 img {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 .bt-hero-shape-5 {
    display: none;
  }
}
.bt-hero-3 .bt-hero-shape-6 {
  position: absolute;
  left: 42%;
  bottom: 4%;
}
@media (max-width: 1399px) {
  .bt-hero-3 .bt-hero-shape-6 {
    max-width: 265px;
    left: 44%;
    bottom: 8%;
  }
  .bt-hero-3 .bt-hero-shape-6 img {
    width: 100%;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 .bt-hero-shape-6 {
    display: none;
  }
}
.bt-hero-3 .bt-hero-content {
  position: relative;
  z-index: 99;
  margin-top: -50px;
}
@media (max-width: 1399px) {
  .bt-hero-3 .bt-hero-content {
    margin-top: -130px;
  }
}
@media (max-width: 1199px) {
  .bt-hero-3 .bt-hero-content {
    text-align: center;
    margin-top: 0;
  }
}
.bt-hero-3 .bt-hero-content span {
  color: var(--theme);
  border-radius: 30px;
  background: rgba(0, 79, 68, 0.1);
  padding: 12px 24px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .bt-hero-3 .bt-hero-content span {
    font-size: 14px;
    padding: 9px 20px;
    margin-bottom: 15px;
  }
}
.bt-hero-3 .bt-hero-content h1 {
  color: var(--header);
  margin-top: 15px;
}
.bt-hero-3 .bt-hero-content p {
  margin-top: 20px;
}
@media (max-width: 1399px) {
  .bt-hero-3 .bt-hero-content p br {
    display: none;
  }
}
@media (max-width: 575px) {
  .bt-hero-3 .bt-hero-content p {
    font-size: 14px;
  }
}
.bt-hero-3 .bt-hero-content .theme-btn {
  margin-top: 50px;
}
.bt-hero-3 .bt-hero-image {
  margin-left: -70px;
}
@media (max-width: 1199px) {
  .bt-hero-3 .bt-hero-image {
    margin-left: 0;
    max-width: 800px;
    margin: 0 auto;
  }
  .bt-hero-3 .bt-hero-image img {
    border-radius: 0 !important;
  }
}
.bt-hero-3 .bt-hero-image img {
  width: 100%;
  height: 100%;
  border-bottom-right-radius: 300px;
}

/* About Us start */
.bt-about-wrapper {
    margin-bottom: 43px;
}
@media (max-width: 1199px) {
  .bt-about-wrapper {
    margin-bottom: 0;
  }
}
.bt-about-wrapper .bt-about-image {
  max-width: 600px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .bt-about-wrapper .bt-about-image {
    max-width: initial;
  }
}
.bt-about-wrapper .bt-about-image img {
  width: 100%;
  height: 100%;
  border: 15px solid rgba(0, 79, 68, 0.1);
  border-radius: 14%;
}
.bt-about-wrapper .bt-about-image .bt-about-image-2 {
  max-width: 250px;
  position: absolute;
  top: -10px;
  left: -73px;
}
@media (max-width: 1399px) {
  .bt-about-wrapper .bt-about-image .bt-about-image-2 {
    right: -50px;
  }
}
@media (max-width: 1199px) {
  .bt-about-wrapper .bt-about-image .bt-about-image-2 {
    right: 0;
    top: 0;
    max-width: 200px;
  }
  .bt-about-wrapper .bt-about-image .bt-about-image-2 img {
    width: 100%;
    height: 100%;
  }
}
.bt-about-wrapper .bt-about-image .bt-about-image-2 img {
  border-radius: 50%;
  border: 10px solid var(--white);
}
.bt-about-wrapper .bt-about-image .bt-about-image-3 {
  max-width: 300px;
  position: absolute;
  bottom: -53px;
  right: -40px;
}
@media (max-width: 1199px) {
  .bt-about-wrapper .bt-about-image .bt-about-image-3 {
    right: initial;
    left: 0;
    bottom: 0;
    max-width: 200px;
  }
  .bt-about-wrapper .bt-about-image .bt-about-image-3 img {
    width: 100%;
    height: 100%;
  }
}
.bt-about-wrapper .bt-about-image .bt-about-image-3 img {
  border-radius: 50%;
  border: 10px solid var(--white);
}
.bt-about-wrapper .bt-about-content {
  margin-left: 35px;
}
@media (max-width: 1199px) {
  .bt-about-wrapper .bt-about-content {
    margin-left: 0;
  }
}
.bt-about-wrapper .bt-about-content .about-text {
  margin-top: 10px;
}
.bt-about-wrapper .bt-about-content .bt-counter-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 35px;
}
@media (max-width: 1199px) {
  .bt-about-wrapper .bt-about-content .bt-counter-area {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: start;
  }
}
@media (max-width: 767px) {
  .bt-about-wrapper .bt-about-content .bt-counter-area {
    margin-top: 25px;
  }
}
.bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item {
  border-right: 1px solid rgba(108, 112, 111, 0.3);
  padding-right: 40px;
}
@media (max-width: 1399px) {
  .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item {
    padding-right: 0;
    border-right: none;
  }
}
.bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item.border-none {
  border-right: none;
  padding-right: 0;
}
.bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item h2 {
  font-size: 50px;
  font-weight: 600;
}
@media (max-width: 1399px) {
  .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item h2 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item h2 {
    font-size: 38px;
  }
}
.bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item p {
  font-size: 18px;
  font-weight: 500;
  color: var(--header);
}
@media (max-width: 1399px) {
  .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .bt-about-wrapper .bt-about-content .bt-counter-area .bt-counter-item p {
    font-size: 15px;
  }
}
.bt-about-wrapper .bt-about-content .bt-about-author {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 15px;
}
@media (max-width: 1199px) {
  .bt-about-wrapper .bt-about-content .bt-about-author {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .bt-about-wrapper .bt-about-content .bt-about-author {
    margin-top: 25px;
  }
}
.bt-about-wrapper .bt-about-content .bt-about-author .bt-author-image {
  display: flex;
  align-items: center;
  gap: 15px;
}
.bt-about-wrapper .bt-about-content .bt-about-author .bt-author-image .content h6 {
  font-size: 18px;
  font-weight: 600;
}
.bt-about-wrapper .bt-about-content .bt-about-author .bt-author-image .content p {
  color: var(--text);
  font-weight: 500;
  margin-top: -2px;
}

.bt-about-wrapper-2 .bt-about-image img {
  width: 100%;
  height: 100%;
}
.bt-about-wrapper-2 .bt-about-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .bt-about-wrapper-2 .bt-about-content {
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  .bt-about-wrapper-2 .bt-about-content {
    margin-left: 0;
  }
}
.bt-about-wrapper-2 .bt-about-content .about-text {
  margin-top: 25px;
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
@media (max-width: 1399px) {
  .bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
    gap: 30px;
  }
}
@media (max-width: 991px) {
  .bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
    margin-top: 40px;
    gap: 70px;
  }
}
@media (max-width: 991px) {
  .bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
    gap: 20px;
  }
}
@media (max-width: 575px) {
  .bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px;
  }
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar {
  display: flex;
  align-items: center;
  gap: 10px;
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar span {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar .content h6 {
  display: block;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 135%;
}
@media (max-width: 575px) {
  .bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar .content br {
    display: block;
  }
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar {
  position: relative;
  height: 120px;
  width: 120px;
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div {
  position: absolute;
  height: 100px;
  width: 100px;
  border-radius: 50%;
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar div span {
  position: absolute;
  font-size: 20px;
  line-height: 92px;
  height: 90px;
  width: 90px;
  left: 5px;
  top: 5px;
  font-weight: 600;
  text-align: center;
  border-radius: 50%;
  background-color: var(--bg);
  color: var(--header);
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .background {
  background-color: #DFE2FF !important;
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .rotate {
  clip: rect(0 50px 100px 0);
  background-color: var(--theme) !important;
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .left {
  clip: rect(0 50px 100px 0);
  opacity: 1;
  background-color: var(--bg) !important;
}
.bt-about-wrapper-2 .bt-about-content .circle-progress-bar-wrapper .single-circle-bar .circle-bar .right {
  clip: rect(0 50px 100px 0);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  opacity: 0;
  background-color: var(--theme) !important;
}
.bt-about-wrapper-2 .bt-about-content .list-box {
  display: flex;
  gap: 80px;
  margin-top: 30px;
}
@media (max-width: 1399px) {
  .bt-about-wrapper-2 .bt-about-content .list-box {
    gap: 40px;
  }
}
@media (max-width: 1199px) {
  .bt-about-wrapper-2 .bt-about-content .list-box {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.bt-about-wrapper-2 .bt-about-content .list-box ul li {
  font-size: 18px;
  font-weight: 600;
}
.bt-about-wrapper-2 .bt-about-content .list-box ul li img {
  margin-right: 7px;
}
.bt-about-wrapper-2 .bt-about-content .list-box ul li:not(:last-child) {
  margin-bottom: 15px;
}
.bt-about-wrapper-2 .bt-about-content .theme-btn {
  margin-top: 20px;
}

.bt-about-wrapper-3 .bt-about-content {
  max-width: 635px;
}
.bt-about-wrapper-3 .bt-about-content .about-text {
  margin-top: 25px;
}
.bt-about-wrapper-3 .bt-about-content p {
  margin-top: 15px;
}
@media (max-width: 767px) {
  .bt-about-wrapper-3 .bt-about-content .theme-btn {
    margin-top: 25px !important;
  }
}
.bt-about-wrapper-3 .bt-about-image {
  position: relative;
  max-width: 536px;
  margin-left: 25%;
}
@media (max-width: 1199px) {
  .bt-about-wrapper-3 .bt-about-image {
    margin-left: 0;
  }
}
.bt-about-wrapper-3 .bt-about-image img {
  width: 100%;
  height: 100%;
}
.bt-about-wrapper-3 .bt-about-image .another-image {
  max-width: 360px;
  position: absolute;
  top: 15%;
  left: -32%;
}
@media (max-width: 1199px) {
  .bt-about-wrapper-3 .bt-about-image .another-image {
    left: 0;
    top: 0;
    max-width: 200px;
  }
  .bt-about-wrapper-3 .bt-about-image .another-image img {
    width: 100%;
    height: 100%;
  }
}
.bt-about-wrapper-3 .bt-about-image .another-image img {
  border-radius: 287px;
  border: 10px solid var(--white);
}

/* case study */
.bt-programs-box-items-2 {
  border-radius: 18px;
  background-color: var(--white);
}
.bt-programs-box-items-2 .bt-image {
  padding: 20px;
  padding-bottom: 0;
  background-color: #0b363426;
  border-radius: 5px 30px 0 0;
}
.bt-programs-box-items-2 .bt-image img {
  width: 100%;
  height: 100%;
  border-radius: 5px 20px 5px 5px;
}
.bt-programs-box-items-2 .bt-content {
  padding: 25px 20px;
  background-color: #0b363426;
  border-radius: 0px 0px 5px 30px;
}
.bt-programs-box-items-2 .bt-content p {
  font-size: 16px;
  margin-top: 10px;
}
.bt-programs-box-items-2 .bt-content h4 a:hover {
  color: var(--theme);
}
.bt-programs-box-items-2 .bt-content .theme-btn {
  background-color: var(--white);
  color: var(--header);
  border-radius: 30px;
  border: 1px solid #6C706F;
  margin-top: 25px;
}
.bt-programs-box-items-2 .bt-content .theme-btn i {
  background-color: var(--theme);
  color: var(--white);
}
.bt-programs-box-items-2 .bt-content .theme-btn::before {
  background-color: var(--theme);
}
.bt-programs-box-items-2 .bt-content .theme-btn:hover {
  color: var(--white);
}
.bt-programs-box-items-2 .bt-content .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme);
}
.bt-programs-box-items-2.style-2 {
  background-color: var(--bg);
  border-radius: 18px;
}
.bt-programs-box-items-2.style-2 .bt-content .theme-btn i {
  background-color: var(--theme-2);
  color: var(--header);
}

.bt-programs-section-2 {
  position: relative;
}
.bt-programs-section-2 .line-top {
  position: absolute;
  top: -40px;
  left: 0;
  height: 92px;
}
.bt-programs-section-2 .line-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 138px;
}
.bt-programs-section-2 .bt-program-shape-1 {
  position: absolute;
  z-index: -1;
  top: 10%;
  right: 10%;
}
.bt-programs-section-2 .bt-program-shape-2 {
  position: absolute;
  z-index: -1;
  bottom: 15%;
  left: 10%;
}

.bt-discount-section {
  position: relative;
  z-index: 9;
}
.bt-discount-section::before {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(90deg, #14151936 20.39%, rgba(20, 21, 25, 0) 99.83%);
  position: absolute;
  z-index: -1;
}

.discount-box-items h2 {
  font-size: 40px;
  color: var(--white);
  font-weight: 700;
}
.discount-box-items {
    text-align: center;
}
@media (max-width: 1199px) {
  .discount-box-items h2 {
    font-size: 35px;
  }
}
@media (max-width: 767px) {
  .discount-box-items h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .discount-box-items h2 {
    font-size: 37px;
  }
}
@media (max-width: 470px) {
  .discount-box-items h2 {
    font-size: 30px;
  }
}
.discount-box-items p {
  color: var(--white);
  margin-top: 25px;
}
.discount-box-items .btn-box {
  margin-top: 50px;
  display: flex;
  gap: 30px;
  justify-content: center;
}
@media (max-width: 1199px) {
  .discount-box-items .btn-box {
    flex-wrap: wrap;
    gap: 15px;
  }
}
@media (max-width: 767px) {
  .discount-box-items .btn-box {
    margin-top: 25px;
  }
}
.discount-box-items .btn-box .theme-btn {
  border: 1px solid transparent;
}
.discount-box-items .btn-box .theme-btn:hover {
  color: var(--header);
}
.discount-box-items .btn-box .theme-btn.style-2 {
  background-color: transparent;
  border: 1px solid var(--white);
}
.discount-box-items .btn-box .theme-btn.style-2 i {
  background-color: var(--white);
}
.discount-box-items .btn-box .theme-btn.style-2::before {
  background-color: var(--theme);
}
.discount-box-items .btn-box .theme-btn.style-2:hover {
  border: 1px solid var(--theme);
  color: var(--white);
}
.discount-box-items .btn-box .theme-btn.style-2:hover i {
  color: var(--theme);
}

.bt-choose-us-wrapper {
  margin-bottom: 55px;
  margin-top: 60px;
}
@media (max-width: 1399px) {
  .bt-choose-us-wrapper {
    margin-bottom: -10px;
  }
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper {
    margin-top: -15px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .bt-choose-us-wrapper {
    margin-top: -40px;
  }
}
.bt-choose-us-wrapper .bt-choose-us-content .choose-text {
  margin-top: 25px;
}
.bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 1399px) {
  .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon {
    gap: 20px;
  }
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon {
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon {
    margin-top: 30px;
  }
}
.bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1399px) {
  .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items {
    gap: 15px;
  }
}
.bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items .icon {
  max-width: 90px;
  width: 100%;
  height: 90px;
  line-height: 90px;
  text-align: center;
  border-radius: 50%;
  background: rgba(0, 79, 68, 0.15);
}
@media (max-width: 1399px) {
  .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items .icon {
    max-width: 83px;
    height: 83px;
    line-height: 83px;
  }
  .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items .icon img {
    width: 40px;
    height: 40px;
  }
}
.bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items .icon.style-2 {
  background: rgba(255, 167, 41, 0.15);
}
.bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items .content p {
  font-size: 16px;
}
@media (max-width: 1399px) {
  .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items .content p {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper .bt-choose-us-content .bt-choose-icon .bt-icon-items .content p {
    font-size: 15px;
  }
}
.bt-choose-us-wrapper .bt-choose-image {
  max-width: 600px;
  position: relative;
  z-index: 9;
  margin-left: 80px;
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper .bt-choose-image {
    margin-left: 0;
  }
}
@media (max-width: 1399px) {
  .bt-choose-us-wrapper .bt-choose-image {
    margin-left: 20px;
  }
}
.bt-choose-us-wrapper .bt-choose-image img {
  width: 100%;
  height: 100%;
  border: 15px solid rgba(0, 79, 68, 0.1);
  border-radius: 50%;
}
.bt-choose-us-wrapper .bt-choose-image .bt-counter-item {
  display: flex;
  gap: 20px;
  border-radius: 10px;
  background-color: var(--theme-2);
  color: var(--header);
  position: absolute;
  top: 42%;
  right: -24%;
  padding: 30px 40px;
}
@media (max-width: 1600px) {
  .bt-choose-us-wrapper .bt-choose-image .bt-counter-item {
    padding: 20px 30px;
    right: -5%;
  }
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper .bt-choose-image .bt-counter-item {
    display: none;
  }
}
.bt-choose-us-wrapper .bt-choose-image .bt-counter-item h2 {
  color: var(--header);
}
.bt-choose-us-wrapper .bt-choose-image .bt-counter-item p {
  max-width: 120px;
  color: var(--header);
}
.bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 {
  max-width: 250px;
  position: absolute;
  top: -65px;
  left: -20px;
}
@media (max-width: 1399px) {
  .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 {
    max-width: 250px;
  }
  .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 {
    right: 0;
    left: initial;
    top: 0;
    max-width: 200px;
  }
  .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 img {
    width: 100%;
    height: 100%;
  }
}
.bt-choose-us-wrapper .bt-choose-image .bt-choose-image-2 img {
  border-radius: 50%;
  border: 10px solid var(--white);
}
.bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 {
  max-width: 300px;
  position: absolute;
  bottom: -65px;
  left: -85px;
}
@media (max-width: 1399px) {
  .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 {
    left: -20px;
    max-width: 250px;
  }
  .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 {
    left: 0;
    bottom: 0;
    max-width: 200px;
  }
  .bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 img {
    width: 100%;
    height: 100%;
  }
}
.bt-choose-us-wrapper .bt-choose-image .bt-choose-image-3 img {
  border-radius: 50%;
  border: 10px solid var(--white);
}

.bt-choose-us-section2 {
  position: relative;
  margin-bottom: 30px;
}
.bt-choose-us-section2 .line-bottom {
  position: absolute;
  height: 65px;
  bottom: -30px;
  left: 0;
  right: 0;
  z-index: 12;
}

.bt-pricing-section-3 .section-title .nav {
  border: none;
  margin-top: 30px;
}
.bt-pricing-section-3 .section-title .nav .nav-tabs {
  border-bottom: 0;
  display: flex;
  justify-content: center;
}
.bt-pricing-section-3 .section-title .nav .nav-link {
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
  border: 0;
  border-radius: 0;
  padding: 7px 56px;
  position: relative;
  background: transparent;
  z-index: 2;
  color: var(--text);
  margin-bottom: 0;
}
.bt-pricing-section-3 .section-title .nav .nav-link::before {
  position: absolute;
  content: "";
  right: 0px;
  top: 50%;
  transform: translateY(-50%) translateX(50%);
  background: var(--theme);
  width: 75px;
  height: 32px;
  border-radius: 20px;
  border: 1px solid var(--theme);
}
.bt-pricing-section-3 .section-title .nav .nav-link::after {
  position: absolute;
  content: "";
  right: -33px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  z-index: 1;
}
.bt-pricing-section-3 .section-title .nav .nav-link:first-child {
  padding-left: 0;
}
.bt-pricing-section-3 .section-title .nav .nav-link:last-child {
  padding-right: 0;
}
.bt-pricing-section-3 .section-title .nav .nav-link:last-child::after {
  display: none;
}
.bt-pricing-section-3 .section-title .nav .nav-link:last-child::before {
  display: none;
}
.bt-pricing-section-3 .section-title .nav .nav-link.active {
  color: var(--theme);
}
.bt-pricing-section-3 .section-title .nav .nav-link.active::after {
  right: 8px;
}

.bt-pricing-box-items-3 {
  border-radius: 18px;
  background: var(--bg);
  padding: 40px 36px;
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
  position: relative;
}
.bt-pricing-box-items-3 .popul-text {
  background-color: var(--theme-2);
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  color: var(--header);
  padding: 10px 20px;
  border-radius: 30px;
  position: absolute;
  top: 30px;
  right: 30px;
}
.bt-pricing-box-items-3 .pricing-header h2 {
  font-size: 80px;
  color: var(--theme);
  font-weight: 500;
  margin-top: 20px;
  margin-bottom: 10px;
}
@media (max-width: 1199px) {
  .bt-pricing-box-items-3 .pricing-header h2 {
    font-size: 60px;
  }
}
.bt-pricing-box-items-3 .pricing-header h2 sup {
  font-size: 18px;
  color: var(--text);
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .bt-pricing-box-items-3 .pricing-header h2 sup {
    font-size: 16px;
  }
}
.bt-pricing-box-items-3 .pricing-header .theme-btn {
  margin-top: 20px;
  width: 100%;
  padding: 20px 30px;
  margin-bottom: 40px;
  background-color: var(--header);
}
@media (max-width: 767px) {
  .bt-pricing-box-items-3 .pricing-header .theme-btn {
    margin-top: 25px;
  }
}
.bt-pricing-box-items-3 .pricing-header .theme-btn::before {
  background-color: var(--theme) !important;
}
.bt-pricing-box-items-3 .pricing-header .theme-btn:hover {
  color: var(--white);
}
.bt-pricing-box-items-3 h4 {
  border-top: 1px solid rgba(108, 112, 111, 0.3);
  padding-top: 30px;
  text-transform: uppercase;
}
.bt-pricing-box-items-3 .list-items {
  margin-top: 20px;
}
.bt-pricing-box-items-3 .list-items li {
  font-size: 16px;
  font-weight: 400;
  transition: all 0.4s ease-in-out;
}
.bt-pricing-box-items-3 .list-items li i {
  color: var(--theme-2);
  margin-right: 8px;
  transition: all 0.4s ease-in-out;
}
.bt-pricing-box-items-3 .list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.bt-pricing-box-items-3.active {
  background-color: var(--bg);
  transition: all 0.4s ease-in-out;
}
.bt-pricing-box-items-3.active .pricing-header h2 {
  color: var(--theme-2);
}
.bt-pricing-box-items-3.active .pricing-header h2 sup {
  color: var(--text);
}
.bt-pricing-box-items-3.active .pricing-header p {
  color: var(--text);
}
.bt-pricing-box-items-3.active .pricing-header .theme-btn {
  background-color: var(--theme);
  color: var(--white);
}
.bt-pricing-box-items-3.active .pricing-header .theme-btn::before {
  background-color: var(--header) !important;
}
.bt-pricing-box-items-3.active h4 {
  color: var(--header);
  border-top: 1px solid rgba(39, 40, 44, 0.3);
}
.bt-pricing-box-items-3.active .list-items li {
  color: var(--text);
}
.bt-pricing-box-items-3.active .list-items li i {
  color: var(--theme-2);
}

.bt-choose-us-wrapper-2 {
  margin-top: -30px;
}
@media (max-width: 991px) {
  .bt-choose-us-wrapper-2 {
    margin-top: 0;
  }
}
.bt-choose-us-wrapper-2 .bt-choose-us-content {
  margin-right: 30px;
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper-2 .bt-choose-us-content {
    margin-right: 0;
  }
}
.bt-choose-us-wrapper-2 .bt-choose-us-content .choose-text {
  margin-top: 25px;
}
.bt-choose-us-wrapper-2 .bt-choose-us-content ul {
  margin-top: 30px;
}
.bt-choose-us-wrapper-2 .bt-choose-us-content ul li {
  font-size: 18px;
  font-weight: 600;
  color: var(--header);
  display: flex;
  align-items: center;
  gap: 10px;
}
.bt-choose-us-wrapper-2 .bt-choose-us-content ul li:not(:last-child) {
  margin-bottom: 15px;
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area {
  position: relative;
  z-index: 9;
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area::before {
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--theme);
  content: "";
  width: 600px;
  height: 600px;
  border-radius: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper-2 .bt-icon-box-items-area::before {
    display: none;
  }
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box {
  border-radius: 23.604px;
  background: #fff;
  padding: 50px 30px;
  text-align: center;
  margin-top: 30px;
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box .icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  text-align: center;
  border-radius: 50%;
  background-color: #F0F4F5;
  margin: 0 auto;
  margin-bottom: 40px;
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box.style-2 {
  background-color: var(--white);
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box.style-2 .icon {
  background-color: var(--bg);
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box.style-3 {
  background-color: var(--theme-2);
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box.style-4 {
  background-color: var(--header);
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box.style-4 .bt-counter-item h2 {
  color: var(--white);
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box.style-4 .bt-counter-item p {
  color: var(--white);
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items.style-2 {
  margin-top: 200px;
}
@media (max-width: 1199px) {
  .bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items.style-2 {
    margin-top: 30px;
  }
}

.scrolling-wrap {
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  gap: 20px;
  padding: 15px 0;
}
.scrolling-wrap .comm {
  display: flex;
  align-items: center;
  animation: scroll 60s linear infinite;
  gap: 30px;
  cursor: pointer;
}
.scrolling-wrap .comm .cmn-textslide {
  font-size: 16px;
  font-weight: 500;
  line-height: 32px;
  text-transform: capitalize;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
.scrolling-wrap .comm .cmn-textslide i {
  font-size: 21px;
}
.scrolling-wrap .comm .cmn-textslide.text-color-2 {
  color: var(--white);
}
.scrolling-wrap:hover .comm {
  animation-play-state: paused;
}
@media (max-width: 1399px) {
  .scrolling-wrap .comm {
    gap: 20px;
  }
}
@media (max-width: 991px) {
  .scrolling-wrap {
    gap: 14px;
  }
  .scrolling-wrap .comm {
    gap: 14px;
  }
}
@media (max-width: 575px) {
  .scrolling-wrap .comm {
    gap: 12px;
  }
}

.mycustom-marque {
  background-color: var(--theme);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrolly {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-60%);
  }
}
@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
.bt-choose-us-style-22 {
  margin-top: 30px;
}
.bt-choose-us-style-22 .bt-box-items .bt-box {
  background-color: #F0F4F5 !important;
}
.bt-choose-us-style-22 .bt-box-items .bt-box .icon {
  background-color: var(--white) !important;
}
.bt-choose-us-style-22 .bt-box-items .bt-box.style-3 {
  background-color: var(--theme-2) !important;
}
.bt-choose-us-style-22 .bt-box-items .bt-box.style-4 {
  background-color: #000 !important;
}

/* 02.6 Courses */
.bt-category-box-items {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
  padding: 50px 28px;
  text-align: center;
  margin-top: 30px;
  transition: all 0.4s ease-in-out;
  position: relative;
  z-index: 9;
}

.bt-icon i {
    font-size: 40px;
    color: var(--theme);
}
.bt-category-box-items .bt-icon {
  width: 100px;
  height: 100px;
  line-height: 113px;
  border-radius: 50%;
  text-align: center;
  background-color: #F2F4F7;
  margin: 0 auto;
  margin-bottom: 25px;
}
.bt-category-box-items .bt-content h3 {
  margin-bottom: 10px;
  color: var(--white);
}
.bt-category-box-items .bt-content p {
  font-size: 16px;
  color: var(--bg);
}
.bt-category-box-items .bt-content .theme-btn {
  background-color: transparent;
  color: var(--white);
  border-radius: 30px;
  border: 1px solid var(--white);
  margin-top: 30px;
}
.bt-category-box-items:hover {
  background-color: var(--theme-2);
  transition: all 0.4s ease-in-out;
}
.bt-category-box-items:hover .bt-icon {
  background-color: var(--white);
}
.bt-category-box-items:hover .bt-content h3 {
  color: var(--header);
}
.bt-category-box-items:hover .bt-content p {
  color: var(--header);
}
.bt-category-box-items:hover .bt-content .theme-btn {
  background-color: var(--header);
  border: 1px solid transparent;
}
.bt-category-box-items:hover .bt-content .theme-btn i {
  background-color: var(--theme);
  color: var(--white);
}
.bt-category-box-items:hover .bt-content .theme-btn::before {
  background-color: var(--theme);
}
.bt-category-box-items:hover .bt-content .theme-btn:hover i {
  background-color: var(--theme-2) !important;
  color: var(--theme);
}

.bt-top-category-section {
  position: relative;
  z-index: 9;
}
.bt-top-category-section .category-shape-1 {
  position: absolute;
  top: 10%;
  right: 80px;
  z-index: -1;
}
@media (max-width: 1199px) {
  .bt-top-category-section .category-shape-1 {
    display: none;
  }
}
.bt-top-category-section .array-button {
  position: relative;
}
.bt-top-category-section .array-button::before {
  position: absolute;
  top: 25px;
  left: 0;
  content: "";
  height: 1px;
  width: 620px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
}
@media (max-width: 1399px) {
  .bt-top-category-section .array-button::before {
    width: 450px;
  }
}
@media (max-width: 1199px) {
  .bt-top-category-section .array-button::before {
    display: none;
  }
}
.bt-top-category-section .array-button::after {
  position: absolute;
  top: 25px;
  right: 0;
  content: "";
  height: 1px;
  width: 620px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
@media (max-width: 1399px) {
  .bt-top-category-section .array-button::after {
    width: 450px;
  }
}
@media (max-width: 1199px) {
  .bt-top-category-section .array-button::after {
    display: none;
  }
}
.bt-top-category-section .array-button .array-prev, .bt-top-category-section .array-button .array-next {
  border: 1px solid var(--white);
  color: var(--white);
}
.bt-top-category-section .array-button .array-prev:hover, .bt-top-category-section .array-button .array-next:hover {
  color: var(--header);
}


.bt-courses-details-area .bt-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content {
  margin-top: 30px;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content .list-date {
  display: flex;
  align-items: center;
  gap: 30px;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content .list-date li h6 {
  border-radius: 30px;
  background: #F2F4F7;
  padding: 10px 24px;
  display: inline-block;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content .list-date li {
  color: var(--header);
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content .list-date li i {
  color: var(--theme);
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content h3 {
  font-size: 36px;
  margin-top: 20px;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content p {
  margin-top: 20px;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content .list-items {
  margin-top: 20px;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content .list-items li {
  color: var(--header);
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content .list-items li i {
  color: var(--header);
  margin-right: 8px;
  font-size: 25px;
}
.bt-courses-details-area .bt-courses-details-wrapper .bt-left-content .list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content {
  margin-top: 32px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav {
  display: flex;
  align-items: center;
  background-color: var(--white);
  box-shadow: 10px 4px 30px rgba(168, 168, 168, 0.2);
  border: 1px solid var(--border);
  border-radius: 10px;
  justify-content: center;
  padding: 14px 30px;
  gap: 80px;
  margin-bottom: 50px;
}
@media (max-width: 1600px) {
  .bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav {
    gap: 50px;
  }
}
@media (max-width: 1199px) {
  .bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav {
    gap: 30px;
    flex-wrap: wrap;
  }
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav .nav-item {
  padding: 0;
  position: relative;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav .nav-item .nav-link {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav .nav-item .nav-link::before {
  position: absolute;
  right: -40px;
  top: 20px;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 5px;
  background-color: rgba(0, 91, 255, 0.2);
}
@media (max-width: 1199px) {
  .bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav .nav-item .nav-link::before {
    display: none;
  }
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav .nav-item .nav-link.bb-none::before {
  display: none;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav .nav-item .nav-link.active {
  color: var(--theme);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav .nav-item .nav-link.active::before {
  background-color: var(--theme);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .nav .nav-item .nav-link.active::after {
  position: absolute;
  bottom: -15px;
  left: 0;
  height: 2px;
  width: 100%;
  content: "";
  background: var(--theme);
  transition: 0.3s;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .description-content h3 {
  font-size: 27px;
  margin-bottom: 20px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .description-content .list-item li {
  font-size: 16px;
  font-weight: 500;
  color: var(--header);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .description-content .list-item li i {
  color: var(--theme);
  margin-right: 5px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .description-content .list-item li:not(:last-child) {
  margin-bottom: 10px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items h3 {
  font-size: 27px;
  margin-bottom: 30px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item {
  border: none;
  border-radius: 0px;
  margin-bottom: 15px;
  border: 1px solid var(--border);
  border-radius: 7px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item h2 button {
  font-size: 18px;
  line-height: 1;
  font-weight: 500;
  box-shadow: none;
  border-radius: 0 !important;
  padding: 20px 30px;
  font-family: "Poppins", sans-serif;
  color: var(--header);
  background-color: transparent;
  border-bottom: 1px solid var(--border);
  border-radius: 7px;
}
@media (max-width: 575px) {
  .bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item h2 button {
    font-size: 17px;
  }
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body {
  padding: 0;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 30px;
}
@media (max-width: 1199px) {
  .bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li span {
  font-size: 16px;
  color: var(--text);
  font-weight: 400;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-item .accordion-body ul li span i {
  margin-right: 10px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button {
  background-color: transparent;
  color: var(--header);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button::after {
  display: none;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button::before {
  position: absolute;
  content: "\f078";
  font-family: "Font Awesome 5 Pro";
  font-weight: 700;
  top: 18px;
  right: 30px;
  font-size: 16px;
  text-align: center;
  transition: all 0.4s ease-in-out;
  color: var(--header);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button.collapsed {
  background-color: transparent;
  color: var(--header);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .course-curriculum-items .courses-faq-items .accordion .accordion-button.collapsed::before {
  content: "\f054";
  color: var(--header);
  background-color: transparent;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items h3 {
  margin-bottom: 10px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items .instructors-box-items {
  padding: 40px 50px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background-color: #F4F9FF;
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items .instructors-box-items {
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
  }
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items .instructors-box-items .content {
  max-width: 521px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items .instructors-box-items .content h4 {
  font-size: 22px;
  margin-bottom: 5px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items .instructors-box-items .content p {
  margin-top: 25px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items .instructors-box-items .content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 15px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items .instructors-box-items .content .social-icon a {
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  font-size: 16px;
  display: block;
  background: transparent;
  color: var(--text);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 50%;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items .instructors-box-items .content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .instructors-items .instructors-box-items.style-2 {
  background-color: var(--white);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items h3 {
  font-size: 27px;
  margin-bottom: 30px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box {
  display: flex;
  align-items: center;
  gap: 70px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box .reviews-box {
  padding: 50px 34px;
  text-align: center;
  min-width: 248px;
  box-shadow: 10px 4px 60px rgba(182, 182, 182, 0.2);
  background-color: var(--white);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box .reviews-box h2 {
  font-size: 90px;
  line-height: 1;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .courses-reviews-box .reviews-box .star {
  color: #FFAE5D;
  margin-bottom: 10px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right {
  max-width: 452px;
  width: 100%;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item:not(:last-child) {
  margin-bottom: 15px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .star {
  color: #FFAE5D;
  display: flex;
  align-items: center;
  gap: 7px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .star i.color-2 {
  color: var(--text);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item span {
  font-weight: 500;
  color: var(--header);
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .progress {
  background: rgba(255, 174, 93, 0.3);
  justify-content: flex-start;
  border-radius: 0;
  align-items: center;
  position: relative;
  display: flex;
  height: 5px;
  width: 100%;
  max-width: 244px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: #FFAE5D;
  height: 5px;
  width: 0;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-two {
  animation: load2 3s normal forwards;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-three {
  animation: load3 3s normal forwards;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-four {
  animation: load4 3s normal forwards;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .courses-reviews-box-items .reviews-ratting-right .reviews-ratting-item .style-five {
  animation: load5 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 80%;
  }
}
@keyframes load4 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load5 {
  0% {
    width: 0;
  }
  100% {
    width: 60%;
  }
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .instructors-box-items {
  padding: 40px 30px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .instructors-box-items {
    flex-wrap: wrap;
    gap: 20px;
    padding: 30px;
  }
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .instructors-box-items .content {
  max-width: 540px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .instructors-box-items .content h4 {
  font-size: 22px;
  margin-bottom: 5px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .instructors-box-items .content p {
  margin-top: 15px;
}
.bt-courses-details-area .bt-courses-details-wrapper .courses-details-content .courses-reviews-items .instructors-box-items .content .star {
  color: #FFAE5D;
  margin-top: 15px;
}
.bt-courses-details-area .details-list-area {
  margin-top: -80px;
  margin-right: 20px;
  padding: 30px 40px;
  border-radius: 5px;
  background-color: var(--white);
  box-shadow: var(--box-shadow);
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .bt-courses-details-area .details-list-area {
    margin-right: 30px;
  }
}
@media (max-width: 991px) {
  .bt-courses-details-area .details-list-area {
    margin-top: 30px;
  }
}
.bt-courses-details-area .details-list-area .details-list {
  margin-bottom: 30px;
}
.bt-courses-details-area .details-list-area .details-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.bt-courses-details-area .details-list-area .details-list li:not(:last-child) {
  border-bottom: 1px solid var(--border);
}
.bt-courses-details-area .details-list-area .details-list li span i {
  color: var(--theme);
}
.bt-courses-details-area .details-list-area .theme-btn {
  padding: 20px 35px;
}
.bt-courses-details-area .details-list-area .theme-btn.style-2 {
  background-color: var(--theme-2);
  color: var(--header);
}
.bt-courses-details-area .details-list-area .theme-btn.style-2::before {
  background-color: var(--theme);
}
.bt-courses-details-area .details-list-area .theme-btn.style-2:hover {
  color: var(--white);
}
.bt-courses-details-area .details-list-area .social-icon {
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.bt-courses-details-area .details-list-area .social-icon a {
  color: var(--header);
}
.bt-courses-details-area .details-list-area .social-icon a:hover {
  color: var(--theme-2);
}

.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items {
  border-radius: 18px;
  background: #F2F4F7;
  padding: 40px 36px;
  margin-bottom: 20px;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .wid-title {
  margin-bottom: 15px;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .wid-title h5 {
  font-size: 24px;
  font-weight: 600;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .wid-title.style-2 {
  border: none;
  padding-bottom: 0;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items:not(:last-child) {
  margin-bottom: 30px;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list-box {
  background-color: var(--white);
  padding: 16px;
  line-height: 1;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list-box:not(:last-child) {
  margin-bottom: 10px;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .courses-list-box .star {
  color: #FFA41B;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .bt-search-widget form {
  width: 100%;
  position: relative;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .bt-search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 8px;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .bt-search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 66px;
  border-radius: 8px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .bt-search-widget form button:hover {
  background-color: var(--header);
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .categories-list .checkbox-single {
  position: relative;
  padding-left: 18px;
  cursor: pointer;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .categories-list .checkbox-single input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.bt-courses-wrapper .courses-main-sidebar-area .courses-main-sidebar .courses-sidebar-items .categories-list .checkbox-single .text-color {
  font-weight: 600;
  font-size: 16px;
  color: var(--header);
}

.program-details-wrapper .program-details-items .details-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.program-details-wrapper .program-details-items .details-content .post {
  background-color: var(--theme-2);
  color: var(--white);
  padding: 4px 15px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 20px;
}
.program-details-wrapper .program-details-items .details-content h2 {
  font-size: 24px;
  margin-bottom: 10px;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .program-details-wrapper .program-details-items .details-content h2 {
    font-size: 26px;
  }
}
@media (max-width: 575px) {
  .program-details-wrapper .program-details-items .details-content h2 {
    font-size: 24px;
  }
}
.program-details-wrapper .program-details-items .details-content .details-author-area {
  display: flex;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  margin-bottom: 40px;
  margin-top: 30px;
}
@media (max-width: 575px) {
  .program-details-wrapper .program-details-items .details-content .details-author-area {
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.program-details-wrapper .program-details-items .details-content .details-author-area .author-items {
  display: flex;
  align-items: center;
  gap: 10px;
}
.program-details-wrapper .program-details-items .details-content .details-author-area .class-list {
  display: flex;
  align-items: center;
  gap: 30px;
}
.program-details-wrapper .program-details-items .details-content .details-author-area .class-list li i {
  color: var(--theme-2);
}
.program-details-wrapper .program-details-items .details-content .list-items {
  margin-top: 20px;
}
.program-details-wrapper .program-details-items .details-content .list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.program-details-wrapper .program-details-items .details-content .list-items li i {
  margin-right: 5px;
  color: var(--theme);
}
.program-details-wrapper .details-list-area {
  border-radius: 10px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .program-details-wrapper .details-list-area {
    padding: 30px 20px;
  }
}
@media (max-width: 991px) {
  .program-details-wrapper .details-list-area {
    padding: 30px 40px;
  }
}
.program-details-wrapper .details-list-area h3 {
  font-size: 24px;
  padding-bottom: 20px;
}
@media (max-width: 1199px) {
  .program-details-wrapper .details-list-area {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  .program-details-wrapper .details-list-area {
    margin-top: 0;
  }
}
.program-details-wrapper .details-list-area .details-list {
  margin-bottom: 30px;
}
.program-details-wrapper .details-list-area .details-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
}
.program-details-wrapper .details-list-area .details-list li span {
  font-weight: 600 !important;
  color: var(--header);
}
.program-details-wrapper .details-list-area .details-list li span i {
  color: var(--theme-2);
}
.program-details-wrapper .details-list-area .theme-btn {
  padding: 24px 40px;
}
@media (max-width: 1199px) {
  .program-details-wrapper .details-list-area .theme-btn {
    padding: 19px 25px;
    font-size: 14px;
  }
}
@media (max-width: 991px) {
  .program-details-wrapper .details-list-area .theme-btn {
    padding: 19px 40px;
    font-size: 16px;
  }
}
.program-details-wrapper .details-list-area .theme-btn.border-style {
  border: 1px solid var(--theme-2);
  color: var(--theme-2);
  background-color: transparent;
  padding: 24px 40px;
}
.program-details-wrapper .details-list-area .theme-btn.border-style::after, .program-details-wrapper .details-list-area .theme-btn.border-style::before {
  background-color: var(--theme-2);
}
.program-details-wrapper .details-list-area .theme-btn.border-style:hover {
  color: var(--white);
}
.program-details-wrapper .details-list-area .social-icon {
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}
.program-details-wrapper .details-list-area .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: var(--theme-2);
  transition: all 0.4s ease-in-out;
  text-align: center;
  background-color: transparent;
  border: 1px solid var(--theme-2);
  border-radius: 8px;
}
.program-details-wrapper .details-list-area .social-icon a:hover {
  background-color: var(--theme-2);
  color: var(--white);
  border: 1px solid transparent;
}
.program-details-wrapper .program-author-items {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 30px;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-top: 23px;
}
@media (max-width: 1199px) {
  .program-details-wrapper .program-author-items {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
  }
}
.program-details-wrapper .program-author-items .thumb {
  max-width: 370px;
}
.program-details-wrapper .program-author-items .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.program-details-wrapper .program-author-items .content {
  max-width: 700px;
}
@media (max-width: 1199px) {
  .program-details-wrapper .program-author-items .content {
    margin: 0 auto;
    text-align: center;
  }
}
.program-details-wrapper .program-author-items .content h2 {
  font-size: 30px;
  margin-bottom: 5px;
}
@media (max-width: 575px) {
  .program-details-wrapper .program-author-items .content h2 {
    font-size: 26px;
  }
}
.program-details-wrapper .program-author-items .content span {
  margin-bottom: 20px;
  display: inline-block;
}
@media (max-width: 575px) {
  .program-details-wrapper .program-author-items .content span {
    margin-bottom: 10px;
  }
}
.program-details-wrapper .program-author-items .content ul {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 50px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
@media (max-width: 1199px) {
  .program-details-wrapper .program-author-items .content ul {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 20px;
  }
}
.program-details-wrapper .program-author-items .content ul li {
  color: var(--header);
}
.program-details-wrapper .program-author-items .content ul li i {
  margin-right: 5px;
}
.program-details-wrapper .program-author-items .content ul li .color-star {
  color: var(--theme-2);
}
.program-details-wrapper .program-author-items .content .social-icon {
  margin-top: 40px;
  gap: 15px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .program-details-wrapper .program-author-items .content .social-icon {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 575px) {
  .program-details-wrapper .program-author-items .content .social-icon {
    margin-top: 20px;
  }
}
.program-details-wrapper .program-author-items .content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  font-size: 16px;
  display: block;
  color: var(--theme-2);
  transition: all 0.4s ease-in-out;
  text-align: center;
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid var(--theme-2);
}
.program-details-wrapper .program-author-items .content .social-icon a:hover {
  background-color: var(--theme-2);
  color: var(--white);
  border: 1px solid transparent;
}

/* blog start */
.bt-event-box-items-2 {
  margin-top: 30px;
  display: flex;
  align-items: center;
  border-radius: 18px;
  background-color: #F2F4F7;
}
@media (max-width: 1199px) {
  .bt-event-box-items-2 {
    display: block;
  }
}
.bt-event-box-items-2 .bt-image {
  max-width: 264px;
}
@media (max-width: 1199px) {
  .bt-event-box-items-2 .bt-image {
    max-width: initial;
  }
  .bt-event-box-items-2 .bt-image img {
    border-radius: 12px !important;
  }
}
.bt-event-box-items-2 .bt-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px 0px 0px 18px;
}
.bt-event-box-items-2 .bt-content {
  padding: 0 30px;
  flex-basis: 60%;
}
@media (max-width: 1199px) {
  .bt-event-box-items-2 .bt-content {
    padding: 25px;
  }
}
.bt-event-box-items-2 .bt-content h3 a:hover {
  color: var(--theme);
}
.bt-event-box-items-2 .bt-content .list-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
}
.bt-event-box-items-2 .bt-content .list-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
}
.bt-event-box-items-2 .bt-content .list-box li i {
  color: var(--theme);
}
.bt-event-box-items-2 .bt-content .theme-btn {
  background-color: transparent;
  color: var(--header);
  border-radius: 30px;
  border: 1px solid #6C706F;
  margin-top: 20px;
}
.bt-event-box-items-2 .bt-content .theme-btn i {
  background-color: var(--theme);
  color: var(--white);
  width: 35px;
  height: 35px;
  line-height: 35px;
}
.bt-event-box-items-2 .bt-content .theme-btn::before {
  background-color: var(--theme);
}
.bt-event-box-items-2 .bt-content .theme-btn:hover {
  color: var(--white);
}
.bt-event-box-items-2 .bt-content .theme-btn:hover i {
  background-color: var(--white);
  color: var(--theme);
}


/* team details start */
.bt-team-details-wrapper .bt-team-details-left-image {
  margin-right: 90px;
}
@media (max-width: 1199px) {
  .bt-team-details-wrapper .bt-team-details-left-image {
    margin-right: 0;
  }
}
.bt-team-details-wrapper .bt-team-details-left-image .bt-image {
  position: relative;
}
.bt-team-details-wrapper .bt-team-details-left-image .bt-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.bt-team-details-wrapper .bt-team-details-left-image .bt-image .text-team {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  padding: 22px 30px;
  background-color: var(--theme);
  border-radius: 10px;
  line-height: 1;
  display: inline-block;
  max-height: 410px;
  height: 100%;
  position: absolute;
  text-align: center;
  top: 50%;
  right: -40px;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
}
@media (max-width: 1199px) {
  .bt-team-details-wrapper .bt-team-details-left-image .bt-image .text-team {
    right: 0;
  }
}
.bt-team-details-wrapper .bt-team-details-right-content h4 {
  color: var(--theme);
  margin-bottom: 25px;
  margin-top: 15px;
}
.bt-team-details-wrapper .bt-team-details-right-content ul {
  margin-top: 20px;
}
.bt-team-details-wrapper .bt-team-details-right-content ul li i {
  margin-right: 10px;
  color: var(--theme);
}
.bt-team-details-wrapper .bt-team-details-right-content ul li:not(:last-child) {
  margin-bottom: 10px;
}
.bt-team-details-wrapper .bt-team-details-right-content .social-icon {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}
.bt-team-details-wrapper .bt-team-details-right-content .social-icon a {
  border-radius: 50px;
  padding: 12px;
  display: inline-block;
  width: 44px;
  height: 44px;
  line-height: 25px;
  text-align: center;
}
.bt-team-details-wrapper .bt-team-details-right-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.bt-team-details-wrapper .bt-middle-content {
  margin-top: 60px;
}
@media (max-width: 767px) {
  .bt-team-details-wrapper .bt-middle-content {
    margin-top: 30px;
  }
}
.bt-team-details-wrapper .bt-middle-content h3 {
  font-size: 36px;
  margin-bottom: 15px;
}
.bt-team-details-wrapper .contact-content {
  margin-top: 100px;
  margin-right: 60px;
}
@media (max-width: 1199px) {
  .bt-team-details-wrapper .contact-content {
    margin-right: 0;
    margin-top: 60px;
  }
}
.bt-team-details-wrapper .contact-content .header h3 {
  font-size: 36px;
  margin-bottom: 10px;
}
.bt-team-details-wrapper .contact-content .contact-form-box {
  margin-top: 40px;
}
.bt-team-details-wrapper .contact-content .contact-form-box .form-clt input, .bt-team-details-wrapper .contact-content .contact-form-box .form-clt textarea {
  border-radius: 6px;
  background: #F2F4F7;
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
  border: none;
}
.bt-team-details-wrapper .contact-content .contact-form-box .form-clt textarea {
  padding-bottom: 110px;
}
.bt-team-details-wrapper .bt-pro-items {
  margin-top: 100px;
}
@media (max-width: 1199px) {
  .bt-team-details-wrapper .bt-pro-items {
    margin-top: 60px;
  }
}
.bt-team-details-wrapper .bt-pro-items .header h3 {
  font-size: 36px;
  margin-bottom: 20px;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap {
  margin-top: 30px;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items {
  width: 100%;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items:not(:last-child) {
  margin-bottom: 40px;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .pro-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .pro-head .title {
  color: var(--header);
  font-size: 16px;
  font-weight: 600;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .pro-head .point {
  font-size: 16px;
  color: var(--header);
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .progress {
  background: rgba(6, 78, 164, 0.5);
  border-radius: 2px;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  display: flex;
  height: 10px;
  width: 100%;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .progress-value {
  animation: load 3s normal forwards;
  border-radius: 0;
  background: var(--theme);
  height: 10px;
  width: 0;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .style-two {
  animation: load2 3s normal forwards;
}
.bt-team-details-wrapper .bt-pro-items .progress-wrap .pro-items .style-three {
  animation: load3 3s normal forwards;
}
@keyframes load {
  0% {
    width: 0;
  }
  100% {
    width: 90%;
  }
}
@keyframes load2 {
  0% {
    width: 0;
  }
  100% {
    width: 70%;
  }
}
@keyframes load3 {
  0% {
    width: 0;
  }
  100% {
    width: 55%;
  }
}


/* FAQ start */
.faq-img img {
    width: 100%;
    height: auto;
}
.bt-faq-wrapper-3 .bt-faq-images-items {
  position: relative;
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-counter-item {
  background-color: var(--theme-2);
  color: #fff;
  border-radius: 10px;
  padding: 40px 50px;
  display: inline-block;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-counter-item h2 {
  color:#fff;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 5px;
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 10px solid var(--theme);
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-image-2 {
  margin-bottom: 30px;
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-image-2 img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.bt-faq-wrapper-3 .bt-faq-images-items .bt-image-3 img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.bt-faq-wrapper-3 .faq-content {
  margin-left: 60px;
}
@media (max-width: 1399px) {
  .bt-faq-wrapper-3 .faq-content {
    margin-left: 30px;
  }
}
@media (max-width: 1199px) {
  .bt-faq-wrapper-3 .faq-content {
    margin-left: 0;
  }
}
.bt-faq-wrapper-3 .faq-content .accordion-item {
  border: 0;
  background-color: transparent;
  margin-bottom: 24px;
  margin-top: 25px;
}
.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button {
  font-weight: 500;
  color: var(--white);
  border: 0;
  border-radius: 12px 12px 0px 0px;
  box-shadow: none;
  background-color: var(--header);
  padding: 16px 15px 16px 25px;
  text-transform: capitalize;
  font-size: 20px;
  background-color: var(--theme);
  border: none;
}
@media (max-width: 1199px) {
  .bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
  }
}
.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button::after {
  content: "\f067";
  background: transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  transition: all 0.3s ease-in-out !important;
  color: var(--white);
  width: 39px;
  height: 39px;
  line-height: 39px;
  text-align: center;
  background-color: var(--header);
  border-radius: 50%;
}
.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button:not(.collapsed)::after {
  content: "\f068";
  background: transparent;
  font-family: "Font Awesome 6 Pro";
  font-weight: 500;
  transform: rotate(0);
  color: var(--theme);
  width: 39px;
  height: 39px;
  line-height: 39px;
  text-align: center;
  background-color: var(--white);
  border-radius: 50%;
}
.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-header .accordion-button.collapsed {
  border-radius: 10px;
  border: none;
  background: transparent;
  padding: 16px 15px 16px 25px;
  color: var(--header);
  background-color: var(--white);
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.bt-faq-wrapper-3 .faq-content .accordion-item .accordion-collapse .accordion-body {
  padding-left: 30px;
  padding-top: 15px;
  color: var(--header);
  background-color: var(--white);
  border: none;
}
@media (max-width: 1399px) {
  .bt-faq-wrapper-3 .faq-content .accordion-item .accordion-collapse .accordion-body {
    padding-right: 50px;
  }
}

/* cta start */
.girl-image.style-1 {
    position: relative;
    top: 35px;
}
@media (max-width: 1199px) {
  .bt-cta-class-wrapper {
        padding: 31px 0;
    }
}
.bt-cta-class-wrapper .girl-image {
  margin-bottom: -5px;
}
@media (max-width: 1399px) {
  .bt-cta-class-wrapper .girl-image img {
    width: 100%;
    height: 100%;
  }
}
@media (max-width: 1199px) {
  .bt-cta-class-wrapper .girl-image {
    display: none;
  }
}
@media (max-width: 1899px) {
  .bt-cta-class-wrapper .girl-image.style-2 {
    margin-left: -100px;
  }
}
@media (max-width: 1600px) {
  .bt-cta-class-wrapper .girl-image.style-2 {
    margin-left: -150px;
  }
}
@media (max-width: 1399px) {
  .bt-cta-class-wrapper .girl-image.style-2 {
    margin-left: -75px;
  }
}
@media (max-width: 1399px) {
  .bt-cta-class-wrapper .content {
    margin-top: -30px;
  }
}
@media (max-width: 1399px) {
  .bt-cta-class-wrapper .content {
    margin-top: 0;
  }
}
.bt-cta-class-wrapper .content .theme-btn {
  background-color: var(--white);
  color: var(--header);
  margin-top: 50px;
}
.bt-cta-class-wrapper .content .theme-btn i {
  background-color: var(--theme-2);
  color: var(--theme);
}
.bt-cta-class-wrapper .content .theme-btn::before {
  background-color: var(--theme-2);
}
.bt-cta-class-wrapper .content .theme-btn:hover {
  color: var(--header);
}
.bt-cta-class-wrapper .content .theme-btn:hover i {
  background-color: var(--theme);
  color: var(--white);
}

.bt-cta-clases-section {
  position: relative;
  margin-top: 170px;
}
@media (max-width: 1399px) {
  .bt-cta-clases-section {
    margin-top: 140px;
  }
}
@media (max-width: 1199px) {
  .bt-cta-clases-section {
    margin-top: 120px;
  }
}
@media (max-width: 991px) {
  .bt-cta-clases-section {
    margin-top: 100px;
  }
}

.bt-cta-clases-section .line-top {
  position: absolute;
  top: -129px;
  left: 0;
  height: 145px;
  z-index: 1;
}

.bt-cta-new-wrapper {
  padding: 120px 30px;
  text-align: center;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 1199px) {
  .bt-cta-new-wrapper {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media (max-width: 991px) {
  .bt-cta-new-wrapper {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.bt-cta-new-wrapper h2 {
  font-size: 70px;
  font-weight: 700;
  max-width: 936px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .bt-cta-new-wrapper h2 {
    font-size: 58px;
  }
}
@media (max-width: 767px) {
  .bt-cta-new-wrapper h2 {
    font-size: 42px;
  }
}
@media (max-width: 575px) {
  .bt-cta-new-wrapper h2 {
    font-size: 38px;
  }
}
@media (max-width: 470px) {
  .bt-cta-new-wrapper h2 {
    font-size: 32px;
  }
}
.bt-cta-new-wrapper form {
  max-width: 650px;
  width: 100%;
  position: relative;
  margin: 0 auto;
  margin-top: 50px;
}
@media (max-width: 1199px) {
  .bt-cta-new-wrapper form {
    margin-top: 30px;
  }
}
.bt-cta-new-wrapper form .theme-btn {
  display: inline-block;
  background-color: var(--theme);
  color: var(--white);
  border-radius: 6px;
  padding: 19px 20px;
  position: absolute;
  top: 6px;
  right: 8px;
  line-height: 1;
  font-size: 16px;
  font-weight: 600;
}
.bt-cta-new-wrapper form input {
  width: 100%;
  outline: none;
  border-radius: 10px;
  background-color: var(--white);
  font-size: 15px;
  padding: 24px 20px;
  line-height: 1;
  color: var(--header);
  border: none;
}
.bt-cta-new-wrapper form input::placeholder {
  color: var(--header);
}

.bt-cta-new-wrapper {
  position: relative;
  z-index: 9;
}
.bt-cta-new-wrapper .bt-cta-shape-1 {
  position: absolute;
  z-index: -1;
  bottom: 0;
  left: 0;
}
@media (max-width: 1199px) {
  .bt-cta-new-wrapper .bt-cta-shape-1 {
    display: none;
  }
}
.bt-cta-new-wrapper .bt-cta-shape-2 {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 30px;
}
@media (max-width: 1199px) {
  .bt-cta-new-wrapper .bt-cta-shape-2 {
    display: none;
  }
}
.bt-cta-new-wrapper .bt-cta-shape-3 {
  position: absolute;
  z-index: -1;
  bottom: 22%;
  right: 10%;
}
@media (max-width: 1199px) {
  .bt-cta-new-wrapper .bt-cta-shape-3 {
    display: none;
  }
}

/* 02.12 Project */
.bt-project-wrapper-2 .nav {
  border-radius: 30px;
  border: 1px solid rgba(108, 112, 111, 0.5);
  background: transparent;
  display: flex;
  align-items: center;
  max-width: 805px;
  margin: 30px auto 30px;
}
@media (max-width: 1199px) {
  .bt-project-wrapper-2 .nav {
    flex-wrap: wrap;
    border: none;
    padding: 20px;
    gap: 30px;
    justify-content: center;
    text-align: center;
  }
}
.bt-project-wrapper-2 .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  color: var(--white);
  padding: 20px 32px;
  line-height: 1;
  text-align: center;
}
@media (max-width: 1199px) {
  .bt-project-wrapper-2 .nav .nav-item .nav-link {
    border: 1px solid rgba(108, 112, 111, 0.5);
    border-radius: 30px;
  }
}
.bt-project-wrapper-2 .nav .nav-item .nav-link.active {
  background-color: var(--theme-2);
  border-radius: 30px;
  color: var(--header);
}
.bt-project-wrapper-2 .bt-project-long-image {
  position: relative;
  margin-top: 30px;
  z-index: 9;
}
.bt-project-wrapper-2 .bt-project-long-image .circle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-2);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme);
  opacity: 0;
  visibility: hidden;
}
.bt-project-wrapper-2 .bt-project-long-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.bt-project-wrapper-2 .bt-project-long-image::before {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(180deg, rgba(20, 21, 25, 0) 0%, #141519 100%);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  border-radius: 18px;
}
.bt-project-wrapper-2 .bt-project-long-image .bt-project-content-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.bt-project-wrapper-2 .bt-project-long-image .bt-project-content-items .bt-content h3 a {
  color: var(--white);
}
.bt-project-wrapper-2 .bt-project-long-image:hover::before {
  opacity: 1;
  visibility: visible;
}
.bt-project-wrapper-2 .bt-project-long-image:hover .circle-icon {
  opacity: 1;
  visibility: visible;
}
.bt-project-wrapper-2 .bt-project-long-image:hover .bt-project-content-items {
  opacity: 1;
  visibility: visible;
}
.bt-project-wrapper-2 .bt-project-image {
  position: relative;
  margin-top: 30px;
  z-index: 9;
  height: 380px;
}
@media (max-width: 1399px) {
  .bt-project-wrapper-2 .bt-project-image {
    height: 295px;
  }
}
.bt-project-wrapper-2 .bt-project-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}
.bt-project-wrapper-2 .bt-project-image .circle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--theme-2);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
  color: var(--theme);
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 1399px) {
  .bt-project-wrapper-2 .bt-project-image .circle-icon {
    top: 30%;
  }
}
.bt-project-wrapper-2 .bt-project-image::before {
  width: 100%;
  height: 100%;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  background: linear-gradient(180deg, rgba(20, 21, 25, 0) 0%, #141519 100%);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  border-radius: 18px;
}
.bt-project-wrapper-2 .bt-project-image .bt-project-content-items {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.bt-project-wrapper-2 .bt-project-image .bt-project-content-items .bt-content h3 a {
  color: var(--white);
}
.bt-project-wrapper-2 .bt-project-image .bt-project-content-items .circle-shape {
  background-color: var(--white);
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  border-radius: 50%;
}
.bt-project-wrapper-2 .bt-project-image .bt-project-content-items .circle-shape i {
  color: var(--theme);
}
.bt-project-wrapper-2 .bt-project-image:hover::before {
  opacity: 1;
  visibility: visible;
}
.bt-project-wrapper-2 .bt-project-image:hover .bt-project-content-items {
  opacity: 1;
  visibility: visible;
}
.bt-project-wrapper-2 .bt-project-image:hover .circle-icon {
  opacity: 1;
  visibility: visible;
}

.bt-project-section-2 {
  position: relative;
  margin-top: 15px;
  padding-bottom: 260px !important;
  margin-bottom: -40px;
  padding-top: 120px !important;
}
@media (max-width: 1600px) {
  .bt-project-section-2 {
    padding-top: 120px !important;
  }
}
@media (max-width: 1199px) {
  .bt-project-section-2 {
    padding-top: 120px !important;
    padding-bottom: 240px !important;
  }
}
@media (max-width: 991px) {
  .bt-project-section-2 {
    padding-top: 100px !important;
    padding-bottom: 220px !important;
  }
}
.bt-project-section-2 .line-top {
  position: absolute;
  top: -40px;
  left: 0;
  height: 92px;
}
@media (max-width: 991px) {
  .bt-project-section-2 .line-top {
    top: -13px;
  }
}
.bt-project-section-2 .line-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 138px;
}

/* 02.13 Helping */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px var(--theme);
  border-radius: 5px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: var(--theme);
  border-radius: 10px;
}

.fix {
  overflow: hidden;
}

.ralt {
  position: relative;
}

.ml-50 {
  margin-left: 50px;
}
@media (max-width: 1199px) {
  .ml-50 {
    margin-left: 0;
  }
}

.ripple {
  position: relative;
}
.ripple::before, .ripple::after {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
  -webkit-animation: rippleOne 3s infinite;
  animation: rippleOne 3s infinite;
}
.ripple::before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}
.ripple::after {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
}

@media (max-width: 767px) {
  br {
    display: none;
  }
}

/* breadcrumb background */
.bg-cover {
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  background-position: center;
}
.br-r{
  border-radius: 0 0 0 50px;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.gt-slide-transtion {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.gt-brand-slide-element {
  width: auto;
  display: inline-block;
}

.array-button {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.array-button .array-prev, .array-button .array-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  border: 1px solid var(--header);
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.array-button .array-prev:hover, .array-button .array-next:hover {
  background-color: var(--theme-2);
  border: 1px solid var(--theme-2);
  color: var(--header);
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  border-radius: 100px;
  background: transparent;
  color: var(--black);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
}

.swiper-dot-3 {
  margin-top: 50px;
  z-index: 1;
}
.swiper-dot-3 .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  transition: 0.6s;
  background: var(--header);
  opacity: 1;
  border-radius: 10px;
}
.swiper-dot-3 .swiper-pagination-bullet:not(:last-child) {
  margin-right: 20px;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: rgb(40, 44, 50);
  transition: 0.6s;
  position: relative;
}
.swiper-dot-3 .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  position: absolute;
  width: 14px;
  height: 14px;
  line-height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: var(--theme);
  content: "";
}

.swiper-dot4 {
  text-align: center;
}
.swiper-dot4 .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  transition: 0.6s;
  background-color: var(--theme);
  opacity: 0.25;
  border-radius: 100%;
  position: relative;
}
.swiper-dot4 .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--theme);
  transition: 0.6s;
  position: relative;
  width: 35px;
  height: 10px;
  border-radius: 30px;
  opacity: 1;
}

.sticky-style {
  position: sticky !important;
  top: 100px;
}

.footer-bg {
  background-color: #141519;
}

.footer-bg-2 {
  background-color: #F0F4F5;
}

/*.ml-40 {*/
/*  margin-left: 60px;*/
/*}*/
li.menu-item.menu-cta{
    list-style: none;
}
@media (max-width: 1399px) {
  .ml-40 {
    margin-left: 0;
  }
}

.page-nav-wrap {
  margin-top: 60px;
}
.page-nav-wrap ul li {
  display: inline-block;
}
.page-nav-wrap ul li.active .page-numbers {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers {
  display: inline-block;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
  border-radius: 0;
  background: #F4F4F4;
  color: var(--header);
  font-weight: 400;
  transition: all 0.3s ease-in-out;
  margin: 0 2px;
  border-radius: 50%;
  font-family: "Poppins", sans-serif;
}
.page-nav-wrap ul li .page-numbers.current {
  background-color: var(--theme);
  color: var(--white);
}
@media (max-width: 767px) {
  .page-nav-wrap ul li .page-numbers {
    margin-top: 10px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.page-nav-wrap ul li .page-numbers i {
  margin-top: 2px;
  color: var(--header);
  transition: all 0.4s ease-in-out;
}
.page-nav-wrap ul li .page-numbers:hover {
  background-color: var(--theme);
  color: var(--white);
}
.page-nav-wrap ul li .page-numbers:hover i {
  color: var(--white);
}

/* blog detail */
.recent-thumb img {
    max-width: 100%;
    height: auto;
}
.main-h2-blog{
  font-size: 22px;
  font-weight: 600;
  margin-top: 15px;
  margin-bottom: 10px;
}
.bt-news-details-wrapper .bt-left-content .text {
  margin-top: 20px;
}
.bt-news-details-wrapper .bt-left-content .quote-items {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}
@media (max-width: 1199px) {
  .bt-news-details-wrapper .bt-left-content .quote-items {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.bt-news-details-wrapper .bt-left-content .bt-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
}
.bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap {
    margin-top: 30px;
  }
}
.bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .tagcloud a {
  display: inline-block;
  padding: 12px 24px;
  line-height: 1;
  background: var(--bg);
  margin-right: 8px;
  text-transform: capitalize;
  font-weight: 600;
  font-size: 18px;
  transition: all 0.4s ease-in-out;
  border-radius: 40px;
}
@media (max-width: 1399px) {
  .bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .tagcloud a {
    padding: 10px 18px;
    font-size: 16px;
  }
}
@media (max-width: 1199px) {
  .bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .tagcloud a {
    margin-bottom: 15px;
  }
}
.bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}
.bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .bt-social-share a {
  font-size: 16px;
  color: var(--white);
  display: inline-block;
  width: 52px;
  height: 52px;
  line-height: 52px;
  border-radius: 100%;
  text-align: center;
  background-color: var(--header);
}
@media (max-width: 1399px) {
  .bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .bt-social-share a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
  }
}
.bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .bt-social-share a:not(:last-child) {
  margin-right: 10px;
}
.bt-news-details-wrapper .bt-left-content .bt-tag-share-wrap .bt-social-share a:hover {
  background-color: var(--theme);
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area {
  margin-top: 40px;
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment {
  border-bottom: 1.2px solid rgba(191, 191, 191, 0.24);
}
@media (max-width: 575px) {
  .bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment.bt-style-2 {
  margin-left: 150px;
}
@media (max-width: 1199px) {
  .bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment.bt-style-2 {
    margin-left: 0;
  }
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment .bt-content .head .con h5 {
  margin-bottom: 5px;
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment .bt-content .head .con span {
  font-size: 18px;
  font-weight: 400;
  color: var(--header);
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment .bt-content p {
  color: var(--header);
  font-size: 20px;
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment .bt-content .reply {
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-2);
  transition: all 0.4s ease-in-out;
  text-decoration: underline;
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment .bt-content .reply i {
  margin-left: 8px;
  transform: rotate(-45deg);
}
.bt-news-details-wrapper .bt-left-content .bt-comments-area .bt-blog-single-comment .bt-content .reply:hover {
  color: var(--header);
}
.bt-news-details-wrapper .bt-left-content .comment-form-wrap h2 {
  margin-bottom: 10px;
}
.bt-news-details-wrapper .bt-left-content .comment-form-wrap p {
  margin-bottom: 20px;
}
.bt-news-details-wrapper .bt-left-content .comment-form-wrap .form-clt input, .bt-news-details-wrapper .bt-left-content .comment-form-wrap .form-clt textarea {
  width: 100%;
  outline: none;
  border: none;
  background-color: var(--bg);
  padding-bottom: 20px;
  padding: 16px 20px;
  transition: all 0.4s ease-in-out;
  color: #333;
  font-size: 16px;
  border: 1px solid #0b3634;
  border-radius: 15px;
}
.bt-news-details-wrapper .bt-left-content .comment-form-wrap .form-clt input::placeholder, .bt-news-details-wrapper .bt-left-content .comment-form-wrap .form-clt textarea::placeholder {
  color: #333;
}
.bt-news-details-wrapper .bt-left-content .comment-form-wrap .form-clt textarea {
  padding-bottom: 150px;
  resize: none;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget {
  margin-bottom: 40px;
  background-color: var(--bg);
  padding: 30px;
  border-radius: 18px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .bt-search-widget form {
  width: 100%;
  position: relative;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .bt-search-widget form input {
  background-color: var(--white);
  font-size: 18px;
  font-weight: 400;
  padding: 16px 20px;
  width: 100%;
  border: none;
  color: var(--text);
  border-radius: 8px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .bt-search-widget form button {
  position: absolute;
  right: -2px;
  top: 0;
  width: 66px;
  border-radius: 8px;
  font-size: 18px;
  height: 100%;
  background-color: var(--theme);
  color: var(--white);
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .bt-search-widget form button:hover {
  background-color: var(--header);
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .widget-title {
  border-bottom: 1.5px solid rgba(129, 129, 129, 0.24);
  padding-bottom: 16px;
  margin-bottom: 30px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .category-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 400;
  color: var(--header);
  transition: all 0.4s ease-in-out;
  background-color: var(--white);
  padding: 18px 22px;
  font-family: "Poppins", sans-serif;
  line-height: 1;
  border-radius: 8px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .category-list li a {
  color: var(--header);
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .category-list li:not(:last-child) {
  margin-bottom: 20px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .category-list li span {
  font-weight: 400;
  font-size: 16px;
  color: var(--theme);
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .category-list li:hover {
  background-color: var(--theme);
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .category-list li:hover a {
  color: var(--white);
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .category-list li:hover span {
  color: var(--white);
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .recent-post-area .recent-items {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .bt-news-details-wrapper .main-sideber .single-sideber-widget .recent-post-area .recent-items {
    flex-wrap: wrap;
  }
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .recent-post-area .recent-items:not(:last-child) {
  margin-bottom: 20px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-thumb img {
  border-radius: 10px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h5 {
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 18px;
  line-height: 150%;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content h5 a:hover {
  color: var(--theme);
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .recent-post-area .recent-items .recent-content ul li {
  color: var(--theme-2);
  font-weight: 400;
  font-size: 18px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .tagcloud a {
  display: inline-block;
  padding: 12px 20px;
  line-height: 1;
  font-weight: 400;
  background: var(--white);
  margin-right: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
  border-radius: 6px;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .tagcloud a:last-child {
  margin-right: 0;
}
.bt-news-details-wrapper .main-sideber .single-sideber-widget .tagcloud a:hover {
  background-color: var(--theme);
  color: var(--white);
}

.blog-widget {
    background: #fff;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -o-border-radius: 10px;
    -ms-border-radius: 10px;
    border-radius: 10px;
    padding: 30px 30px;
    margin-bottom: 30px;
    border: 1px solid #E5E7E8;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.widget-title {
    position: relative;
}
.rc-post-item {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.rc-post-thumb {
    width: 100px;
    flex: 0 0 auto;
}
.rc-post-thumb img {
    border-radius: 50px;
    width: 100%;
    height: 100px;
    object-fit: cover;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.rc-post-content .date {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    font-weight: 500;
    margin-bottom: 12px;
    font-size: 16px;
}
.rc-post-content .date i {
    color: var(--primary-color);
    font-size: 16px;
}
.blog_details h3 {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 22px;
    margin-top: 23px;
}
button.btn.btn-custom.with-25 {
    width: 200px;
    text-transform: uppercase;
    margin: auto;
}

.rc-post-content .title {
    font-size: 16px;
    text-transform: capitalize;
    margin-bottom: 0;
    font-weight: 400;
}
h2.sub-h22 {
    font-size: 25px;
    margin-bottom: 20px;
    background-color: var(--theme);
    padding: 15px;
    border-radius: 15px;
    color: #fff;
}
h2.sub-h22:before {
    content: '//';
    font-size: 25px;
    font-weight: 700;
    margin-right: 10px;
    color: #fff;
}
.post-title a{
    color: #000;
}

.cp-news4-item {
    transition: background-color 0.5s ease, transform 0.5s ease;
}

.cp-news4-item:hover {
    transform: translateY(-10px);
   
}
.box-shadow1 {
    background: #ffffff;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
}

/* 02.15 Contact */
.contact-wrapper .bt-contact-content .contact-text {
  margin-top: 25px;
}
.contact-wrapper .bt-contact-content ul {
  margin-top: 30px;
}
.contact-wrapper .bt-contact-content ul li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-wrapper .bt-contact-content ul li .icon {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background-color: var(--theme-2);
  color: var(--header);
  font-size: 24px;
  border-radius: 6px;
}
.contact-wrapper .bt-contact-content ul li .content h5 {
  font-size: 18px;
  margin-bottom: 5px;
}
.contact-wrapper .bt-contact-content ul li .content a {
  color: var(--text);
}
.contact-wrapper .bt-contact-content ul li:not(:last-child) {
  margin-bottom: 30px;
}
.contact-wrapper .bt-contact-items .contact-form-box {
  margin-top: 40px;
  background-color: #F2F4F7;
  padding: 40px;
  border-radius: 18px;
}
.contact-wrapper .bt-contact-items .contact-form-box .form-clt input, .contact-wrapper .bt-contact-items .contact-form-box .form-clt textarea {
  border-radius: 8px;
  border: none;
  background: var(--white);
  line-height: 1;
  padding: 20px 25px;
  width: 100%;
  text-transform: capitalize;
  color: var(--text);
}
.contact-wrapper .bt-contact-items .contact-form-box .form-clt textarea {
  padding-bottom: 110px;
}

.map-area iframe {
  height: 700px;
  width: 100%;
}
@media (max-width: 991px) {
  .map-area iframe {
    height: 650px;
  }
}
@media (max-width: 767px) {
  .map-area iframe {
    height: 530px;
  }
}
@media (max-width: 575px) {
  .map-area iframe {
    height: 430px;
  }
}

/* 02.16 Section (Common Section Title/Spacing) */
.section-title {
  position: relative;
  z-index: 99;
  margin-bottom: 30px;
}
.section-title h6 {
  color: var(--theme);
  border-radius: 30px;
  background: rgba(0, 79, 68, 0.1);
  padding: 10px 24px;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
  line-height: 1;
  margin-bottom: 20px;
}
.section-title h6.style-2 {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}
@media (max-width: 767px) {
  .section-title {
    margin-bottom: 0;
  }
}

.section-title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 9;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .section-title-area {
    margin-bottom: 0;
  }
}
.section-title-area .section-title {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .section-title-area {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.section-title-area p {
  max-width: 532px;
}
.section-title-area .nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1199px) {
  .section-title-area .nav {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.section-title-area .nav .nav-item .nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #6C706F;
}
.section-title-area .nav .nav-item .nav-link.active {
  color: var(--header);
}

.center {
  text-align: center;
  margin: 0 auto;
}

.section-bg {
  background-color: var(--bg);
}

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

.section-bg-3 {
  background: #162726;
}

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

/* 02.17 MeanMenu (Mobile Menu) */
.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(--header);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  text-transform: capitalize;
  border-bottom: 1px solid var(--border) !important;
  border: none;
}
.mean-container .mean-nav ul li a:hover {
  color: var(--theme);
}

.mean-container .mean-nav ul li a:last-child {
  border-bottom: 0;
}

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

.mean-container .mean-nav ul li a.mean-expand {
  margin-top: 5px;
  padding: 0 !important;
}

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

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

.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);
  transition: all 0.4s ease-in-out;
}

.mean-container .mean-nav ul li .mega-menu li a {
  height: 200px;
  width: 100%;
  padding: 0;
  border-top: 0;
  margin-bottom: 20px;
}

/* footer */
.face {
    background-color: #4267b2;
    transition: none;
    transform: none;
}
.twitt{
    background-color: #4ba1f2;
    transition: none;
    transform: none;
}
 .insta {
    background: linear-gradient(45deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
    background-size: 300% 300%;
    animation: gradient 5s ease infinite;
    transition: none;
    transform: none;
}
.link {
    background-color: #3266c2;
    transition: none;
    transform: none;
}
.bt-footer-wrapper {
  padding: 50px 0 65px;
  position: relative;
  z-index: 9;
}
@media (max-width: 1199px) {
  .bt-footer-wrapper {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .bt-footer-wrapper {
        padding: 22px 0 50px;
    }
}
.bt-footer-wrapper .bt-footer-widget-items {
  margin-top: 30px;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-widget-head {
  margin-bottom: 16px;
}
.footer-logo img{
  max-width: 242px;
  height: auto;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-widget-head h3 {
  color: #000;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .footer-input input {
  border: none;
  background-color: var(--white);
  padding: 20px 22px;
  border-radius: 6px;
  width: 100%;
  line-height: 1;
  outline: none;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .footer-input .theme-btn {
  padding: 21px 22px;
  border-radius: 6px;
  width: 100%;
  margin-top: 16px;
  background-color: var(--theme-2);
  color: var(--header);
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .footer-input .theme-btn::before {
  background-color: var(--white);
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .footer-input .theme-btn:hover {
  color: var(--header);
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .payment-save {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .payment-save input {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0;
  color: var(--white);
  background-color: transparent;
  padding-top: 0;
  margin-top: 0;
  outline: none;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .payment-save label {
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
  color: var(--text);
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .payment-save label span {
  text-decoration: underline;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .bt-footer-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
}
.bt-footer-widget-items ul li a {
    color: #000;
    font-size: 16px;
}
.bt-footer-widget-items ul li{
  margin-bottom: 10px;
  color: #000;
    font-size: 16px;
}
@media (max-width: 767px) {
  .bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .bt-footer-btn {
    flex-wrap: wrap;
  }
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .bt-footer-btn .footer-btn {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  border: 1px solid transparent;
  background-color: var(--theme);
  font-family: "Poppins", sans-serif;
  padding: 18px 20px;
  border-radius: 39px;
  line-height: 1;
}
@media (max-width: 1600px) {
  .bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .bt-footer-btn .footer-btn {
    font-size: 13px;
    padding: 16px 14px;
  }
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .bt-footer-btn .footer-btn i {
  margin-right: 8px;
  font-size: 18px;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .bt-footer-btn .footer-btn:hover {
  background-color: var(--theme-2);
  color: var(--header);
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .bt-footer-btn .footer-btn.style-2 {
  border: 1px solid var(--white);
  background-color: transparent;
  color: var(--white);
}
.bt-footer-wrapper .bt-footer-widget-items .bt-footer-content .bt-footer-btn .footer-btn.style-2:hover {
  background-color: var(--theme);
  border: 1px solid var(--theme);
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li {
  font-size: 16px;
  font-weight: 400;
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li:not(:last-child) {
  margin-bottom: 10px;
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li a {
  padding-left: 20px;
  position: relative;
  color: #27282C;
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: #27282C;
  transition: all 0.4s ease-in-out;
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li a:hover {
  color: var(--theme);
}
.bt-footer-wrapper .bt-footer-widget-items .list-items li a:hover::before {
  background-color: var(--theme);
}
.bt-footer-wrapper .bt-footer-widget-items .contact-info li {
  font-size: 16px;
  font-weight: 400;
  color: #27282C;
}
.bt-footer-wrapper .bt-footer-widget-items .contact-info li:not(:last-child) {
  margin-bottom: 10px;
}
.bt-footer-wrapper .bt-footer-widget-items .contact-info li a {
  color: #27282C;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li:not(:last-child) {
  margin-bottom: 28px;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .icon {
  max-width: 56px;
  height: 56px;
  line-height: 56px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  width: 100%;
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content p {
  color: var(--white);
  margin-bottom: 5px;
}
@media (max-width: 1399px) {
  .bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content p {
    font-size: 14px;
  }
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content h4 {
  color: var(--white);
}
@media (max-width: 1399px) {
  .bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content h4 {
    font-size: 16px;
  }
}
.bt-footer-wrapper .bt-footer-widget-items .bt-contact-list li .content h4 a {
  color: var(--white);
}
.bt-footer-wrapper.style-2 {
  padding: 70px 0 85px;
}
@media (max-width: 1199px) {
  .bt-footer-wrapper.style-2 {
    padding: 70px 0 100px;
  }
}
@media (max-width: 991px) {
  .bt-footer-wrapper.style-2 {
    padding: 50px 0 60px;
  }
}
.bt-footer-wrapper.style-2 .bt-footer-widget-items .bt-widget-head h3 {
  color: var(--header);
}
.bt-footer-wrapper.style-2 .bt-footer-widget-items .bt-footer-content .social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
.bt-footer-wrapper.style-2 .bt-footer-widget-items .bt-footer-content .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.8);
  text-align: center;
  color: var(--header);
  opacity: 0.8;
}
.bt-footer-wrapper.style-2 .bt-footer-widget-items .bt-footer-content .social-icon a:hover {
  background-color: var(--theme);
  color: var(--white);
  border: 1px solid var(--theme);
  opacity: 1;
}
.bt-footer-wrapper.style-2 .bt-footer-widget-items .list-items li a {
  color: var(--text);
}
.bt-footer-wrapper.style-2 .bt-footer-widget-items .list-items li a:hover {
  color: var(--theme);
}
footer.bt-footer-section.mt-0.fix.footer-bg.bg-cover {
    background-color: #ffffff;
}
.bt-footer-wrapper.style-new-3 .bt-footer-content p {
  color: #000 !important;
}
.bt-footer-wrapper.style-new-3 .list-items li a {
  color: #000 !important;
}
.bt-footer-wrapper.style-new-3 .list-items li a::before {
  background-color: #000 !important;
  transition: all 0.4s ease-in-out;
}
.bt-footer-wrapper.style-new-3 .list-items li a:hover {
  color: var(--theme-2) !important;
}
.bt-footer-wrapper.style-new-3 .list-items li a:hover::before {
  background-color: var(--theme-2) !important;
}

.bt-footer-section {
  position: relative;
}
.bt-footer-section.style-contact-page {
  margin-top: 0;
}
.bt-footer-section.style-contact-page .bt-footer-wrapper {
  padding: 90px 0 120px;
}
@media (max-width: 1199px) {
  .bt-footer-section.style-contact-page .bt-footer-wrapper {
    padding: 70px 0 10px;
  }
}
@media (max-width: 991px) {
  .bt-footer-section.style-contact-page .bt-footer-wrapper {
    padding: 50px 0 80px;
  }
}
@media (max-width: 1899px) {
  .bt-footer-section.style-contact-page .bt-footer-bg-1 {
    display: none;
  }
}
.bt-footer-section.style-contact-page .bt-footer-bg-1::before {
  top: 0;
}
@media (max-width: 1899px) {
  .bt-footer-section .bt-footer-bg-1 {
    display: none;
  }
}
.bt-footer-section .bt-footer-bg-1::before {
  position: absolute;
  top: 32px;
  bottom: 0;
  left: 12%;
  height: 100%;
  content: "";
  background: #27282C;
  width: 442px;
  height: initial;
}
@media (max-width: 1600px) {
  .bt-footer-section .bt-footer-bg-1::before {
    left: 0;
  }
}

.bt-footer-bottom p {
  color: #000 !important;
}
.bt-footer-bottom .text-color {
  color: #141519 !important;
}
.bt-footer-bottom .text-color-2 {
  color: #27282C !important;
}
.bt-footer-bottom.style-3 {
  background-color: transparent;
  padding: 0;
}
.bt-footer-bottom.style-3 .bt-footer-bottom-wrapper {
  /* border-top: 1px solid rgba(255, 255, 255, 0.3); */
  padding: 18px 0;
}
.bt-footer-bottom.style-3 .bt-footer-bottom-wrapper {
    position: relative;
    padding: 18px 0;
    border-top: none;
}

.bt-footer-bottom.style-3 .bt-footer-bottom-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px; /* Maximum thickness */
background: url("data:image/svg+xml,%3Csvg width='100%25' height='5' viewBox='0 0 100 5' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='borderGradient' x1='0%25' y1='0%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='rgba(0,0,0,0)'/%3E%3Cstop offset='20%25' stop-color='rgba(0,0,0,0.3)'/%3E%3Cstop offset='50%25' stop-color='rgba(0,0,0,0.8)'/%3E%3Cstop offset='80%25' stop-color='rgba(0,0,0,0.3)'/%3E%3Cstop offset='100%25' stop-color='rgba(0,0,0,0)'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='100' height='5' fill='url(%23borderGradient)'/%3E%3C/svg%3E");
}
.bt-widget-head img {
    background-color: var(--theme);
    padding: 15px;
    border-radius: 20px;
}
.bt-footer-bottom .bt-footer-bottom-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .bt-footer-bottom .bt-footer-bottom-wrapper {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0px;
    text-align: center;
  }
}
.bt-footer-bottom .bt-footer-bottom-wrapper p {
  font-size: 16px;
  color: var(--white);
}
.social-icon {
  display: flex;
  align-items: center;
  gap: 10px;
}
 .social-icon a {
  width: 36px;
  height: 36px;
  line-height: 37px;
  text-align: center;
  display: inline-block;
  border-radius: 50%;
  text-align: center;
  color: var(--white);
  opacity: 0.8;
}
.social-icon a:hover {
  background-color: var(--theme-2);
  color: var(--header);
  border: 1px solid var(--theme);
  opacity: 1;
}
.copyright-info.right a{
    color: #000;
    font-size: 16px;
}
.copyright-info.right{
    color: #000;
    font-size: 16px;
}

.bt-footer-section {
  position: relative;
  margin-top: -30px;
}
.bt-footer-section.style-3 {
  margin-top: -30px;
}
.bt-footer-section .line-top {
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  height: 60px;
}

.footer-name {
  margin-bottom: -62px;
}
@media (max-width: 1199px) {
  .footer-name {
    margin-bottom: 0;
  }
}
.footer-name h2 {
  color: var(--theme);
  text-align: center;
  font-size: 450px;
  font-weight: 700;
  letter-spacing: -17.5px;
  line-height: 1;
}
@media (max-width: 1600px) {
  .footer-name h2 {
    letter-spacing: 2px;
  }
}
@media (max-width: 1600px) {
  .footer-name h2 {
    font-size: 400px;
  }
}
@media (max-width: 1399px) {
  .footer-name h2 {
    font-size: 320px;
  }
}
@media (max-width: 1199px) {
  .footer-name h2 {
    font-size: 280px;
  }
}
@media (max-width: 991px) {
  .footer-name h2 {
    font-size: 190px;
  }
}
@media (max-width: 767px) {
  .footer-name h2 {
    font-size: 140px;
  }
}
@media (max-width: 575px) {
  .footer-name h2 {
    font-size: 80px;
    margin-top: 20px;
  }
}

.bt-footer-bottom-wrapper-2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(108, 112, 111, 0.3);
  padding: 20px 0;
}
@media (max-width: 991px) {
  .bt-footer-bottom-wrapper-2 {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    text-align: center;
  }
}
.bt-footer-bottom-wrapper-2 .footer-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.bt-footer-bottom-wrapper-2 .footer-menu a:hover {
  color: var(--theme);
}
@media (max-width: 575px) {
  .bt-footer-bottom-wrapper-2 .footer-menu {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
}

/* 02.19 Animation */
@-webkit-keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes rippleOne {
  70% {
    -webkit-box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 40px rgba(244, 68, 56, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
    box-shadow: 0 0 0 0 rgba(244, 68, 56, 0);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}
@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@keyframes spinner {
  to {
    -webkit-transform: rotateZ(360deg);
    transform: rotateZ(360deg);
  }
}
@-webkit-keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes letters-loading {
  0%, 75%, 100% {
    opacity: 0;
    transform: rotateY(-90deg);
  }
  25%, 50% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes tpswing {
  0% {
    -webkit-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    transform: rotate(20deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes width {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
@-webkit-keyframes loaderspin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes loaderpulse {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(20deg);
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
.float-bob-y {
  -webkit-animation-name: float-bob-y;
  animation-name: float-bob-y;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}
@media (max-width: 1199px) {
  .float-bob-y {
    animation-name: initial;
  }
}

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

@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(0px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  50% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
}
@keyframes bounce-x {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.bounce-x {
  -webkit-animation: bounce-x 7s infinite linear;
  animation: bounce-x 7s infinite linear;
}

@keyframes criss-cross-left {
  0% {
    left: -20px;
  }
  50% {
    left: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    left: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes criss-cross-right {
  0% {
    right: -20px;
  }
  50% {
    right: 50%;
    width: 20px;
    height: 20px;
  }
  100% {
    right: 50%;
    width: 375px;
    height: 375px;
  }
}
@keyframes rotated2 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes wave {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-25%);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*img-animation**********************/
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-right {
  animation: img-anim-right 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-right {
  0% {
    transform: translateX(5%);
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-left {
  animation: img-anim-left 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1) 0.4s;
  opacity: 0;
}

@keyframes img-anim-left {
  0% {
    transform: translateX(-5%);
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-top {
  animation: img-anim-top 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes img-anim-top {
  0% {
    transform: translateY(-5%);
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.img-custom-anim-bottom {
  animation: img-anim-bottom 1.3s forwards cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
}

@keyframes moving {
  0% {
    transform: translatey(0px);
  }
  20% {
    transform: translateX(-50px);
  }
  50% {
    transform: translatey(-40px);
  }
  100% {
    transform: translatey(0px);
  }
}
@keyframes translateX2 {
  0% {
    -webkit-transform: translateX(-30px);
    -moz-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    -o-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    -webkit-transform: translatXY(20px);
    -moz-transform: translateX(20px);
    -ms-transform: translateX(20px);
    -o-transform: translateX(20px);
    transform: translateX(20px);
  }
}
@keyframes translateY2 {
  0% {
    -webkit-transform: translateY(-30px);
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -o-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(20px);
    -moz-transform: translateY(20px);
    -ms-transform: translateY(20px);
    -o-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes arryLeftRight {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
.animation__arryLeftRight {
  animation: arryLeftRight 2s ease infinite alternate;
}

@keyframes shine {
  from {
    -webkit-mask-position: 150%;
  }
  to {
    -webkit-mask-position: -50%;
  }
}
.animation-infinite {
  height: 30px;
  width: 100%;
  background-repeat: repeat;
  overflow: hidden;
}

@keyframes ShapeAnim {
  0% {
    background-position: top left;
  }
  100% {
    background-position: top left 3000px;
  }
}
@keyframes cir36 {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes rounded {
  50% {
    transform: rotate(15deg);
  }
}/*# sourceMappingURL=main.css.map */

/* work process strat */
.work-process {
	counter-reset: workNumber;
	position: relative;
}

.work-process__shape-1 {
	position: absolute;
	top: 0px;
	left: 190px;
	width: 97px;
	height: 133px;
	background-image: url(assets/images/homepage/about-5-s-1.webp);
	background-repeat: no-repeat;
	animation-name: shapeMover;
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.work-process__shape-2 {
	position: absolute;
	bottom: 80px;
	right: 180px;
	width: 158px;
	height: 137px;
	background-image: url(assets/images/homepage/about-5-s-2.webp);
	background-repeat: no-repeat;
	animation-name: shapeMover;
	animation-duration: 4s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}

.work-process__shape-3 {
	position: absolute;
	top: 5px;
	right: 235px;
	width: 83px;
	height: 69px;
	background-image: url(assets/images/homepage/service-h-2.webp);
	background-repeat: no-repeat;
	animation-name: bubbleMover;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-duration: 8s;
}

.work-process .container {
	position: relative;
}

.work-process__item {
	counter-increment: workNumber;
	text-align: center;
}

.work-process__icon {
	width: 150px;
	height: 150px;
	background-color: #fff;
	border: 1px solid var(--theme);
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0px 0px 57px 0px rgba(0, 0, 0, 0.1);
	border-radius: 50%;
	margin-left: auto;
	margin-right: auto;
	color: var(--theme);
	position: relative;
	transition: all 500ms ease;
}

.work-process__icon::after {
	content: counters(workNumber, ".", decimal-leading-zero);
	width: 40px;
	height: 40px;
	background-color: var(--theme);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	position: absolute;
	top: 0px;
	left: 0px;
	font-size: 14px;
	font-weight: bold;
	transition: all 0.5s ease;
}

.work-process__icon i {
	font-size: 61px;
}

.work-process__item:hover .work-process__icon {
	background-color: var(--theme);
	color: #fff;
}

.work-process__item:hover .work-process__icon::after {
	background-color: var(--theme-2);
	color: #fff;
}

[class*=col-]:nth-child(even) .work-process__icon::after {
	bottom: 0;
	right: 0;
	top: auto;
	left: auto;
}

@media (min-width: 992px) {
	.work-process .row {
		background-image: url(assets/images/homepage/work-process-1-1.webp);
		background-repeat: no-repeat;
		background-position: center 10%;
	}
}

@media (min-width: 992px) {
	[class*=col-]:nth-child(2) .work-process__item {
		margin-top: 100px;
	}
}

@media (min-width: 992px) {
	[class*=col-]:nth-child(3) .work-process__item {
		margin-top: 50px;
	}
}

.work-process__title {
	margin: 0;
	font-size: 20px;
	font-weight: bold;
	color: #000;
	margin-top: 26px;
	margin-bottom: 17px;
}

.work-process__title a {
	color: inherit;
	transition: all 500ms ease;
}

.work-process__text {
	margin: 0;
	max-width: 202px;
	margin-left: auto;
	margin-right: auto;
}
li.mat.spe-di {
    display: flex;
    align-items: baseline;
}
li.mat.spe-di i {
    padding-right: 12px;
}
/* section title */
.sec-title-center {
    margin-bottom: 38px;
    text-align: center;
}
.sec-title-center .sec-title__top {
    justify-content: center;
    /* padding-left: 44px; */
    /* clip-path: polygon(15% 0, 85% 0, 100% 50%, 85% 100%, 15% 100%, 0 50%); */
}
.sec-title__top {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    /* margin-bottom: 17px; */
    padding: 13px 0 11px 0;
    /* background-color: #ECF5F4; */
    /* clip-path: polygon(0 0, 85% 0, 100% 50%, 85% 100%, 0 100%); */
    /* box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset; */
}
.sec-title__shape {
    max-width: 100%;
    height: auto;
    position: relative;
    top: 1px;
}
.sec-title__tagline {
    margin: 0px;
    font-size: 18px;
    color: var(--theme);
    font-weight: 600;
    line-height: 1.277;
    text-transform: uppercase;
}
.sec-title{
    margin-bottom: 30px;
}

/* funfact start */
.fun-sec {
    background-color: #ECF0F3;
    position: relative;
    z-index: 1;
}
.fun-sec .bg-shape {
    background: rgb(11 54 52);
    filter: blur(200px);
    width: 300px;
    height: 222px;
    position: absolute;
    left: 138px;
    top: 38%;
    transform: translateY(-50%);
    z-index: -1;
}
.team-counter-wrapper {
    padding-bottom: 40px;
    position: relative;
    z-index: 1;
}
.team-counter-wrapper:before {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.64);
    box-shadow: 0px 4px 30px rgba(25, 38, 48, 0.03);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    border-radius: 15px;
    content: "";
    width: 95%;
    height: 194px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.team-counter-wrap {
    background-color: #fff;
    box-shadow: 0px 15px 37px rgba(11, 32, 30, 0.13);
    border-radius: 15px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 5;
    justify-content: center;
    justify-content: space-between;
    justify-content: space-around;
}
.team-counter-wrap .team-counter:not(:last-of-type) {
    padding-right: 60px;
    border-right: 1px solid #E0E5EB;
}

.team-counter-wrap .team-counter {
    display: grid;
    align-items: center;
    grid-template-columns: 50px 1fr;
    grid-gap: 30px;
    padding: 75px 0;
}
.team-counter-wrap .team-counter .content .title {
    font-size: 30px;
    line-height: 1;
    color: #000;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.team-counter-wrap .team-counter .content .title .odometer-auto-theme {
    line-height: 1;
    font-family: inherit;
}
.odometer.odometer-auto-theme, .odometer.odometer-theme-default {
    display: inline-block;
    vertical-align: middle;
    position: relative;
}
.team-counter-wrap .team-counter .content p {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1;
}
.team-counter-wrapper:after{
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.64);
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
    border-radius: 15px;
    content: "";
    width: 90%;
    height: 194px;
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -2;
}






/* Enable wrapping */
.team-counter-wrap {
    flex-wrap: wrap;
}

/* ===== LARGE SCREENS (DEFAULT) ===== */
/* Already 4 columns — no change needed */


/* ===== MEDIUM SCREENS (TABLET) ===== */
@media (max-width: 991px) {
    .team-counter-wrap .team-counter {
        width: 50%;
        padding: 15px 15px;
    }

    .team-counter-wrap .team-counter:not(:last-of-type) {
        border-right: none;
    }

    .team-counter-wrap .team-counter:nth-child(odd) {
        border-right: 1px solid #E0E5EB;
    }

    .team-counter-wrap .team-counter:nth-child(-n+2) {
        border-bottom: 1px solid #E0E5EB;
    }
    .team-counter-wrap .team-counter .content .title{
    font-size: 25px;
 }
 .team-counter-wrap .team-counter .content p {
    text-transform: lowercase;
 }
}


/* ===== SMALL & XS SCREENS (MOBILE) ===== */
@media (max-width: 567px) {
    .team-counter-wrap {
        padding: 0 20px;
    }

    .team-counter-wrap .team-counter {
        width: 100%; /* single column */
        grid-template-columns: 40px 2fr;
        padding: 35px 0;
        border-right: none !important;
        border-bottom: 1px solid #E0E5EB;
    }

    .team-counter-wrap .team-counter:last-child {
        border-bottom: none;
    }

    .team-counter-wrap .team-counter .content .title {
        font-size: 24px;
    }

    .team-counter-wrap .team-counter .content p {
        font-size: 14px;
    }
}

/* stay Abroad strat */
.about-content-10 {
    position: relative;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}
/* @media (max-width: 1200px) {
    .about-content-8 {
        max-width: 600px;
        padding: 50px 40px;
    }
} */
@media only screen and (max-width: 992px) {
    .about-content-8 {
        position: relative;
        margin-top: 40px;
        box-shadow: inherit;
        padding: 0 15px;
    }
}
.about-section-10 {
    background-color: #F2F4F7;
    position: relative;
    z-index: 1;
}
.about-section-10 .shape-1{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.about-img-wrap-10 {
    position: relative;
    max-width: 592px;
    width: 100%;
    height: 594px;
}
.about-img-wrap-10 .about-img-1 {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 490px;
    width: 100%;
    height: 467px;
}
.about-img-wrap-10 .about-img-1 img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 20px;
}
.about-img-wrap-10 .about-img-2 {
    position: absolute;
    bottom: 0;
    right: 0;
    max-width: 363px;
    width: 100%;
    height: 375px;
    border-radius: 200px 200px 20px 20px;
    border: 5px solid #fff;
    overflow: hidden;
    box-shadow: 0px 4px 35px rgba(10, 27, 25, 0.28);
}
.about-img-wrap-10 .about-img-2 {
    position: absolute;
    bottom: 35px;
    right: 0;
    max-width: 363px;
    width: 100%;
    height: 375px;
    border-radius: 200px 200px 20px 20px;
    border: 5px solid #fff;
    overflow: hidden;
    box-shadow: 0px 4px 35px rgba(10, 27, 25, 0.28);
}
.about-content-10{
    position: relative;
    padding: 0;
    background-color: transparent;
    box-shadow: none;
}

.about-content-8 {
    /* background-color: #fff; */
    /* max-width: 671px; */
    width: 100%;
    /* box-shadow: 0px 4px 80px 2px rgba(15, 21, 33, 0.1); */
    border-radius: 15px;
    /* padding: 73px;
    position: absolute; */
    top: 0;
    right: 0;
}
.about-content-10 .about-tab .nav-tabs {
    background-color: #fff;
    display: inline-flex;
    padding: 10px;
    border-radius: 100px;
    border: 1px solid #E0E5EB;
}
.about-content-8 .about-tab .nav-tabs .nav-item:not(:last-of-type) {
    margin-right: 10px;
}

.about-content-8 .about-tab .nav-tabs .nav-item {
    border: none;
}
.about-content-8 .about-tab .nav-tabs .nav-item .nav-link.active {
    background-color: var(--theme);
    color: #fff;
}

.about-content-10 .about-tab .nav-tabs .nav-item .nav-link {
    background-color: #F2F4F7;
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
    padding: 10px 20px;
    border-color: #E0E5EB;
}
.about-content-8 .about-tab .nav-tabs .nav-item .nav-link {
    background-color: rgba(7, 166, 152, 0.04);
    color: var(--theme);
    font-size: 16px;
    font-weight: 600;
    border: 1px solid rgba(7, 166, 152, 0.16);
    padding: 14px 30px;
    border-radius: 100px;
    line-height: 1;
}

.about-content-8 .about-tab .tab-content {
    margin-top: 30px;
}
/* .about-content-8 .about-tab .tab-content .tab-pane p {
    margin-bottom: 25px;
} */
.about-content-8 .about-tab .tab-content .tab-pane .about-list li:not(:last-of-type) {
    margin-bottom: 10px;
}

.about-content-8 .about-tab .tab-content .tab-pane .about-list li {
    display: flex;
    align-items: center;
    -moz-column-gap: 15px;
    column-gap: 15px;
    font-size: 16px;
    font-weight: 500;
    color: var(--theme);
}
.about-content-10 .about-tab .tab-content .tab-pane .about-list li span {
    background-color: #fff;
    border: 1px solid #E0E5EB;
    box-shadow: 0px 8px 19px rgba(13, 40, 38, 0.15);
}
.about-content-8 .about-tab .tab-content .tab-pane .about-list li span {
    font-size: 16px;
    font-weight: 600;
    color: var(--theme);
    height: 40px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(7, 166, 152, 0.19);
    border-radius: 50%;
}
/* why choose us start */
.choose-us{
    position: relative;
    z-index: 1;
}
.content h2{
    margin-bottom: 12px;
}
.choose-us .bg-shape{
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.choose-us-wrap {
    position: relative;
    z-index: 1;
}

.justify-content-center {
    justify-content: center !important;
}
.choose-us-wrap .line {
    background: linear-gradient(90deg, rgba(7, 166, 152, 0) 0%, #0b3634 50.39%, rgba(7, 166, 152, 0) 99.69%);
    width: 100%;
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
}
.choose-use-item {
    background-color: #ffffff;
    display: flex;
    -moz-column-gap: 20px;
    column-gap: 20px;
    padding: 25px 20px;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
    margin-top: 100px;
    position: relative;
}
.choose-use-item .line-shape {
    background: linear-gradient(360deg, rgba(7, 166, 152, 0) 0%, #0b3634 100%);
    height: 94px;
    width: 4px;
    position: absolute;
    top: -94px;
    left: 50%;
    transform: translateX(-50%);
}
.choose-use-item .line-shape .top-round {
    background-color: #fff;
    height: 20px;
    width: 20px;
    border: 5px solid var(--theme);
    border-radius: 50%;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
}
.choose-use-item .line-shape .bottom-round {
    background-color: transparent;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.3s ease-in-out;
}
.choose-use-item .line-shape .bottom-round:before {
    background-color: var(--theme);
    content: "";
    height: 5px;
    width: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    transition: all 0.3s ease-in-out;
}
.choose-use-item .icon {
    color: var(--theme);
    font-size: 20px;
    transition: all 0.3s ease-in-out;
}
/* get in touch */
.get-quote {
  position: relative;
  display: block;
  background-color: #f5f5f8;
  padding: 120px 0 120px;
  overflow: hidden;
  z-index: 1;
}

.get-quote__img-1 {
  position: absolute;
  top: 50%;
  left: 125px;
  transform: translateY(-50%);
  z-index: -1;
}

.get-quote__img-1 img {
  width: auto;
  border-radius: 50%;
}

.get-quote__img-2 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.get-quote__img-2 img {
  width: auto;
}

.get-quote__shape-4 {
  position: absolute;
  left: -36px;
  top: -52px;
  z-index: -1;
}

.get-quote__shape-4 img {
  width: auto;
}

.get-quote__shape-5 {
  position: absolute;
  left: 20px;
  top: 33px;
  z-index: -1;
}

.get-quote__shape-5 img {
  width: auto;
}

.get-quote__shape-7 {
    position: absolute;
    right: 148px;
    bottom: 9px;
    z-index: 1;
}

.get-quote__shape-7 img {
  width: auto;
}

.get-quote__shape-8 {
  position: absolute;
  left: 807px;
  bottom: 0;
  z-index: 1;
}

.get-quote__shape-8 img {
  width: auto;
}

.get-quote__shape-9 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.get-quote__shape-9 img {
  width: auto;
}

.get-quote__shape-10 {
  position: absolute;
  top: 43px;
  right: 0;
  z-index: 1;
}

.get-quote__shape-10 img {
  width: auto;
}

.get-quote__shape-11 {
  position: absolute;
  bottom: -263px;
  right: 0;
  z-index: 1;
}

.get-quote__shape-11 img {
  width: auto;
}

.get-quote__inner {
  position: relative;
  display: block;
}

.get-quote__left {
  position: relative;
  display: block;
  margin-left: 225px;
  margin-top: 126px;
}

.get-quote__tab-box {
  position: relative;
  display: block;
  z-index: 2;
}

.get-quote__tab-box .tab-buttons {
  position: relative;
  display: block;
}

.get-quote__tab-box .tab-buttons .tab-btn:nth-child(2) {
  margin-left: 30px;
}

.get-quote__tab-box .tab-buttons .tab-btn:nth-child(3) {
  margin-left: 60px;
}

.get-quote__tab-box .tab-buttons .tab-btn:nth-child(4) {
  margin-left: 30px;
}

.get-quote__tab-box .tab-buttons .tab-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: block;
}

.get-quote__tab-box .tab-buttons .tab-btn+.tab-btn {
  margin-top: 20px;
}

.get-quote__tab-btn-content {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.get-quote__tab-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 1;
}

.get-quote__tab-box .tab-buttons .tab-btn.active-btn .get-quote__tab-icon {
  background-color: var(--theme);
}

.get-quote__tab-icon span {
  position: relative;
  display: inline-block;
  font-size: 32px;
  color: var(--theme);
}

.get-quote__tab-box .tab-buttons .tab-btn.active-btn .get-quote__tab-icon span {
  color: var(--theme);
}

.get-quote__tab-text-box {
  position: relative;
  display: block;
  width: 216px;
  padding: 24px 60px 22px;
  padding-right: 20px;
  margin-left: -40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 5px 20px 0px rgba(4, 23, 26, 0.04);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}

.get-quote__tab-text {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  line-height: 34px;
}

.get-quote__tab-box .tab-buttons .tab-btn.active-btn .get-quote__tab-text {
  color: var(--theme);
}

.get-quote__right {
  position: relative;
  display: block;
  margin-left: 40px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0px 0px 60px 0px rgba(4, 23, 26, 0.06);
  padding: 35px 35px 35px;
  border-bottom: 2px solid var(--theme);
  z-index: 1;
}

.get-quote__shape-6 {
  position: absolute;
  right: -5px;
  top: -135px;
  z-index: -1;
}

.get-quote__shape-6 img {
  width: auto;
}

.get-quote__shape-1 {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}

.get-quote__shape-1 img {
  width: auto;
}

.get-quote__shape-2 {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: -1;
}

.get-quote__shape-2 img {
  width: auto;
}

.get-quote__shape-3 {
  position: absolute;
  bottom: -10px;
  right: 0;
  z-index: -1;
}

.get-quote__shape-3 img {
  width: auto;
}

.get-quote__tagline {
  font-size: 16px;
  line-height: 26px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--theme);
}

.get-quote__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -0.018em;
  margin-top: 7px;
  margin-bottom: 33px;
}

.get-quote__right .tabs-content {
  position: relative;
  display: block;
}

.get-quote__right .tabs-content .tab {
  position: relative;
  display: none;
  -webkit-transform: translateY(35px);
  transform: translateY(35px);
  -webkit-transition: all 600ms ease;
  transition: all 600ms ease;
  z-index: 10;
}

.get-quote__right .tabs-content .tab.active-tab {
  display: block;
  margin-top: 0px;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.get-quote__content {
  position: relative;
  display: block;
}

.get-quote__form {
  position: relative;
  display: block;
}

.get-quote__content-box {
  position: relative;
  display: block;
}

.get-quote__input-box {
  position: relative;
  display: block;
  margin-bottom: 20px;
}

.get-quote__input-box input[type="text"],
.get-quote__input-box input[type="email"],
.get-quote__input-box input[type="tel"] {
  height: 58px;
  width: 100%;
  border: 0;
  background-color: #f4f4f4;
  outline: none;
  font-size: 16px;
  color: #000;
  font-weight: 400;
  padding: 0 30px 0;
}

.get-quote__progress {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 40px;
  padding-top: 6px;
}

.get-quote__progress-single {
  position: relative;
  display: block;
}

.get-quote__progress-title {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 14px;
  font-weight: 700;
}

.get-quote__progress .bar {
  position: relative;
  width: 100%;
  height: 10px;
  background-color: var(--theme);
  border: 0;
}

.get-quote__progress .bar-inner {
  position: relative;
  display: block;
  width: 0px;
  height: 4px;
  top: 3px;
  left: 4px;
  background-color: var(--theme);
  -webkit-transition: all 1500ms ease;
  -ms-transition: all 1500ms ease;
  -o-transition: all 1500ms ease;
  -moz-transition: all 1500ms ease;
  transition: all 1500ms ease;
}

.get-quote__progress .count-text {
  position: absolute;
  right: -8px;
  bottom: -2px;
  opacity: 0;
  border-radius: 50%;
  background-color: #000;
  width: 8px;
  height: 8px;
  -webkit-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  transition: all 500ms ease;
}

.get-quote__progress .bar-inner.counted .count-text {
  opacity: 1;
}

.get-quote__balance-box {
  position: absolute;
  top: 0;
  right: 0;
}

.get-quote__balance {
  font-size: 16px;
  color: var(--theme);
  font-weight: 700;
}

.get-quote__content-bottom {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.get-quote__btn {
  border: none;
}

.get-quote__content-bottom-text-box {
  position: relative;
  display: block;
}

.get-quote__count-box {
  position: relative;
  display: flex;
  align-items: center;
}

.get-quote__count {
  position: relative;
  display: flex;
  align-items: center;
}

.get-quote__count h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
}

.get-quote__count span {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
}

.get-quote__count-box p {
  font-size: 14px;
  font-weight: 700;
  line-height: 24px;
  color: #000;
  margin-left: 4px;
}

.get-quote__ratting {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 2px;
}

.get-quote__ratting span {
  position: relative;
  display: inline-block;
  font-size: 15px;
  color: var(--theme);
}

.get-quote__ratting span+span {
  margin-left: 3px;
}


 /*Multi Slider*/
    .slider-container {
        width: 100%;
        position: relative;
        overflow: hidden;
    }

    .slider-wrapper {
        display: flex;
        transition: transform 0.5s ease;
    }

    .slider-slide {
        flex: 0 0 auto;
        text-align: center;
        font-size: 18px;
        box-sizing: border-box;

    }

    /* .slider-slide img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    } */

    .slider-button {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.7);
        border-radius: 50%;
        border: none;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
    }

    .slider-button-next {
        right: 10px;
    }

    .slider-button-prev {
        left: 10px;
    }

    .slider-pagination {
        text-align: center;
        margin-top: 10px;
    }

    .slider-dot {
        display: inline-block;
        width: 10px;
        height: 10px;
        margin: 0 5px;
        background: #ccc;
        border-radius: 50%;
        cursor: pointer;
    }

    .slider-dot.active {
        background: #333;
    }

/* testimonials start */
.testimonials-sec{
  background-color: #ECF0F3;
}
.testi-item-13 .testi-bottom .rating-box .review li i{
  font-size: 13px;
  color: var(--theme-2);
}
.testi-item-13 {
    position: relative;
    z-index: 1;
    border-radius: 15px;
    overflow: hidden;
}
.testi-item-13 .testi-bg-shape{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.testi-item-13 .testi-bg-shape img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.testi-item-13 .testi-author-area {
    background-color: #fff;
    display: grid;
    align-items: center;
    grid-template-columns: 60px 1fr;
    grid-gap: 15px;
    position: absolute;
    bottom: 5px;
    left: 0;
    padding: 10px 49px 10px 20px;
    border-radius: 15px;
}
@media (max-width: 1399px) {
    .testi-item-13 .testi-author-area {
        padding-right: 23px;
    }
}
.testi-item-13 .testi-author-area .author-img {
    height: 60px;
    width: 60px;
}
.testi-item-13 .testi-author-area .author-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
}
.testi-item-13 .testi-author-area .content .name{
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0;
}
.testi-item-13 .testi-author-area .content span {
    font-size: 14px;
    font-weight: 400;
}
.testi-item-13 .testi-top-content {
  padding: 40px 40px 10px 40px;
}
.testi-item-13 .quote {
    margin-bottom: 20px;
}
.testi-item-13 p {
    font-size: 16px;
    color: #000;
    margin-bottom: 0;
}
.testi-item-13 .testi-bottom {
    display: flex;
    align-items: center;
    justify-self: end;
    padding: 0 10px;
    padding-bottom: 10px;
    padding-top: 15px;
}
.testi-item-13 .testi-bottom .rating-box {
    text-align: center;
}
@media (max-width: 1399px) {
    .testi-item-13 .testi-bottom .rating-box span {
        padding: 12px 20px;
    }
}
.testi-item-13 .testi-bottom .rating-box span {
    background-color: #fff;
    color: #000;
    font-size: 15px;
    font-weight: 500;
    padding: 12px 30px;
    line-height: 1;
    display: block;
    border-bottom: 1px solid #E0E5EB;
    border-radius: 10px 10px 0 0;
    border: 1px solid #E0E5EB;
}
@media (max-width: 1399px) {
    .testi-item-13 .testi-bottom .rating-box .review {
        padding: 5px 7px;
    }
}
.testi-item-13 .testi-bottom .rating-box .review {
    background-color: #ECF0F3;
    display: flex;
    align-items: center;
    justify-content: center;
    list-style: none;
    padding: 5px 15px;
    -moz-column-gap: 2px;
    column-gap: 2px;
    border: 1px solid #E0E5EB;
    border-top: none;
    border-radius: 0 0 10px 10px;
}
.testi-item-13 .quote
 {
    margin-bottom: 20px;
}

/* whatsapp icon and call icon */
.cp-floating-action.cp-bg-move-y {
    animation: floatUpDown 2s infinite;
}
.cp-floating-action {
    position: fixed;
    bottom: 88px;
    right: 5px;
    z-index: 100;
    display: inline-block;
    background: #fff;
    box-shadow: rgb(161 198 245 / 4%) 0 50px 100px -20px, rgb(11 54 52) 0 30px 60px -30px, rgb(11 54 52) 0 -2px 6px 0 inset;
    border-radius: 100px;
    padding: 8px 8px 0 8px;
}
.cp-floating-btn{
    display: block;
    text-align: center;
    color: #000;
    width: 42px;
    height: 42px;
    line-height: 43px;
    background: #0b363447;
    border-radius: 50%;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--theme);
    -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;
}
@keyframes floatUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.float-animation {
    animation: floatUpDown 3s ease-in-out infinite;
}

/* team start */
.team-section {
  position: relative;
}
.team-section .sec-title {
  margin-bottom: 25px;
}

.team-block {
  position: relative;
  margin-bottom: 40px;
}
.team-block .inner-box {
  position: relative;
}
.team-block .inner-box:hover .image-box:after {
  border-color: var(--theme-2);
  -webkit-clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
          clip-path: polygon(25% -70%, 75% -70%, 120% 50%, 75% 170%, 25% 170%, -20% 50%);
}
.team-block .inner-box:hover .image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.team-block .inner-box:hover .social-links {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.team-block .inner-box:hover .share-icon {
  background-color: var(--theme-2);
}
.team-block .image-box {
  position: relative;
  height: 275px;
  width: 275px;
  border-radius: 50%;
  padding: 27px 27px;
  margin: 0 auto 10px;
}
.team-block .image-box:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  border: 8px solid #f2f8f8;
  border-top: 0;
  content: "";
  border-radius: 0 0 200px 200px;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.team-block .image-box:after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 20%;
  border: 8px solid #f2f8f8;
  border-top: 0;
  -webkit-clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
          clip-path: polygon(50% 0, 50% 0, 50% 50%, 50% 100%, 50% 100%, 50% 50%);
  content: "";
  border-radius: 0 0 200px 200px;
  -webkit-transition: all 700ms ease;
  transition: all 700ms ease;
}
.team-block .image-box .image {
  position: relative;
  overflow: hidden;
  height: 220px;
  width: 220px;
  border-radius: 10%;
  overflow: hidden;
  margin-bottom: 0;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.team-block .image-box .image img {
  width: 100%;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.team-block .share-icon {
  position: absolute;
  left: 30px;
  top: 20px;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 16px;
  color: var(--theme);
  background-color: #ffffff;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  z-index: 3;
}
.team-block .social-links {
  position: absolute;
  left: 35px;
  top: 28px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ffffff;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  z-index: 3;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  border-radius: 20px;
  overflow: hidden;
  padding: 10px 0;
  -webkit-box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.team-block .social-links a {
  position: relative;
  height: 35px;
  width: 40px;
  display: block;
  font-size: 14px;
  line-height: 35px;
  text-align: center;
  color: var(--theme);
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.team-block .social-links a:hover {
  color: var(--theme);
}
.team-block .info-box {
  position: relative;
  text-align: center;
  background-color: #fff;
  padding: 20px;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  border-radius: 30px 30px 0 0;
}
.team-block .info-box .name {
  z-index: 2;
  margin-bottom: 10px;
}
.team-block .info-box .designation {
  position: relative;
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: var(--theme);
  letter-spacing: 1px;
  z-index: 2;
  line-height: 1em;
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
/* vision and mission */
.vision-sec {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
.service-two__item {
    position: relative;
    border-radius: 10px;
    margin: 0 0 36px;
    box-shadow: 0px 0px 60px 0px rgba(var(--eduact-black2-rgb), 0.07);
}
.service-two__wrapper {
    overflow: hidden;
    padding: 0;
    position: relative;
    z-index: 2;
    background-color: #ffffff;
    border-radius: 10px;
}
.service-two__text.benefit-pad{
    padding: 0 20px 0 20px;
}
.service-two__item svg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 117px;
    transition: 300ms ease;
    fill: #0b36341f;
}
.service-two__icon {
    width: 166px;
    height: 166px;
    background-color: var(--theme-2);
    font-size: 60px;
    line-height: 1;
    position: relative;
    z-index: 3;
    color: #fff;
    margin: -66px auto 35px;
    display: flex;
    align-items: end;
    justify-content: center;
    border-radius: 50%;
    transition: 500ms ease;
    padding: 0 0 22px;
}
.service-two__icon span {
    display: inline-block;
    transition: all 500ms linear;
    transition-delay: 0s;
    transition-delay: 0.1s;
    transform: scale(1);
}
.service-two__title {
    font-size: 22px;
    margin: 0 25px 18px;
}
.service-two__text {
    font-weight: 500;
    max-width: 340px;
    margin: 0 auto 32px;
}
.service-two__item:hover .service-two__icon {
    background-color: var(--theme);
}
.service-two__item:hover .service-two__icon span {
    transform: scale(0.9);
}

/* our journey */
.history-area__inner {
    position: relative;
    z-index: 1;
    background-image: url(assets/images/about/journey-bg.webp);
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
}
.history-area__box__list {
    margin: 0;
    display: flex;
    align-items: start;
    justify-content: start;
    position: relative;
}
.history-area__box__item{
    flex: 25%;
    width: 25%;
    position: relative;
    z-index: 1;
    padding-left: 24px;
}
.history-area__box__item::before {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    content: "";
    border: 1px solid var(--theme);
    counter-increment: historyNumber;
    content: "0" counter(historyNumber);
    color: #000;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-transform: uppercase;
    position: absolute;
    bottom: -50px;
    left: 0;
}
.history-area__box__item .dots {
    display: flex;
    width: 37px;
    height: 37px;
    border-radius: 50%;
    background-color: var(--theme);
    border: 5px solid var(--theme-2);
    margin-left: -18px;
    margin-bottom: 30px;
}
.history-area__box__date {
    display: inline-flex;
    gap: 5px;
    align-items: center;
    color: #fff;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    text-transform: uppercase;
    margin: 0;
    padding: 5px 24px;
    background-color: var(--theme);
    border-radius: 0 50px 50px 0;
    margin-bottom: 19px;
    transition: all 0.4s ease-in-out;
}
.history-area__box__date span {
    width: 12px;
    height: 12px;
    position: relative;
    z-index: 1;
    border: 1px solid var(--theme-2);
    transition: all 0.4s ease-in-out;
}
.history-area__box__date span::after{
    transition: all 0.4s ease-in-out;
    content: "";
    width: 5px;
    height: 5px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color:  var(--theme-2);
}
.history-area__box__text {
    display: flex;
    align-items: start;
    justify-content: start;
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 162.5%;
    text-transform: capitalize;
    margin: 0;
    padding-left: 15px;
    padding-right: 0px;
}
.history-area__box__text i{
    margin-top: 5px;
    font-size: 18px;
    margin-right: 10px;
}
.history-area__box__item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 1px;
    height: 100%;
    background-color: var(--theme);
    z-index: -1;
}
.history-area__box__list::after {
    background-image: url(assets/images/about/arrow-left.webp);
}
.history-area__box__list::after {
    content: "";
    left: -135px;
    right: -135px;
    height: 1px;
    position: absolute;
    top: -5px;
    height: 45px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: bottom left;
    background-image: url(assets/images/about/arrow-left.webp);
}



/* case detail start */

:root {
    --theme: #0b3634;
    --theme-2: #e38c43;
    --theme-light: #0f4542;
    --theme-dark: #082725;
    --accent-light: #f0a864;
    --accent-dark: #d17a32;
    --white: #ffffff;
    --light-gray: #f5f7fa;
    --medium-gray: #e0e6ed;
    --dark-gray: #6b7280;
    --text-color: #333333;
    --shadow: 0 4px 12px rgba(11, 54, 52, 0.1);
    --shadow-lg: 0 8px 24px rgba(11, 54, 52, 0.15);
    --radius: 8px;
    --radius-lg: 12px;
    --transition: all 0.3s ease;
}
.service-sidebar__nav li.current a {
    color: #fff;
}
.service-sidebar__nav li a:hover::after{
    transform: translateX(0%);
}
.service-sidebar__nav li a:hover{
    color: #fff;
}
.case-study-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
}

.case-study-content {
    padding: 0 40px 60px;
}

/* Hero Section - Keep as is */
.case-study-hero {
    position: relative;
    margin-bottom: 60px;
}

.hero-image-container {
    position: relative;
    height: 500px;
    overflow: hidden;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(11, 54, 52, 0.7) 0%, rgb(11 54 52 / 80%) 100%);
}

.hero-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    color: var(--white);
    transform: translateY(50px);
}

.hero-badge {
    display: inline-block;
    background-color: var(--theme-2);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 900px;
    color: #fff;
}

/* Meta Grid - Keep as is */
.meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
    background-color: rgb(0 0 0 / 43%);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-icon {
    width: 48px;
    height: 48px;
    background-color: rgba(227, 140, 67, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--theme-2);
    font-size: 20px;
}

.meta-label {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 4px;
}

.meta-value {
    font-weight: 600;
    font-size: 16px;
}

.result-badge {
   background-color: rgb(11 54 52 / 65%);
    padding: 10px 15px;
    border-radius: var(--radius);
    margin-left: -10px;
}

.result-badge .meta-icon {
    background-color: rgba(76, 175, 80, 0.3);
    color: #4CAF50;
}

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

.section-title {
    font-size: 2rem;
    color: var(--theme);
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--theme-2) 0%, var(--accent-light) 100%);
    border-radius: 2px;
}

/* 3. EduFin's Solution - Stepper Design with Curves */
.solution-section {
    margin-bottom: 80px;
}
.solution-content {
    position: relative;
    padding: 50px;
    background: linear-gradient(145deg, var(--theme-light) 0%, var(--theme) 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.solution-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 800px;
    color: var(--white);
    opacity: 0.9;
}

.outcome-section {
    margin-bottom: 80px;
}

.importance-section {
    margin-bottom: 80px;
}

.importance-card {
    background: var(--white);
    padding: 50px;
    border-radius: var(--radius-lg);
    position: relative;
    box-shadow: var(--shadow);
    border-top: 5px solid var(--theme-2);
}

.importance-card::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50px;
    width: 40px;
    height: 40px;
    background: var(--white);
    transform: rotate(45deg);
    border-top: 5px solid var(--theme-2);
    border-left: 5px solid var(--theme-2);
}

.importance-icon {
    position: absolute;
    top: -30px;
    left: 60px;
    width: 60px;
    height: 60px;
    background: var(--theme-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    z-index: 2;
    box-shadow: var(--shadow);
}

.importance-content h3 {
    color: var(--theme);
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 700;
}

.importance-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.importance-content strong {
    color: var(--theme-2);
    font-weight: 600;
}

/* Outcome Grid - Keep existing good design */
.outcome-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.outcome-card {
    background-color: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid var(--medium-gray);
    transition: var(--transition);
}

.outcome-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.outcome-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #4CAF50;
    font-size: 28px;
}

.outcome-icon.success {
    background-color: rgb(187 199 198);
    color: var(--theme);
}

.outcome-value {
    font-size: 23px;
    font-weight: 700;
    color: var(--theme);
    margin: 10px 0;
}

.outcome-detail {
    color: #000;
    font-size: 16px;
}

/* Timeline Visual - Keep existing good design */
.timeline-visual {
    background-color: var(--light-gray);
    padding: 30px;
    border-radius: var(--radius-lg);
    margin-top: 40px;
}

.timeline-visual h3 {
    color: var(--theme);
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.3rem;
}

.timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 20px 0;
}

.timeline-track::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--theme-2);
    transform: translateY(-50%);
}

.timeline-milestone {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 16%;
}

.milestone-dot {
    width: 20px;
    height: 20px;
    background-color: var(--theme-2);
    border-radius: 50%;
    margin-bottom: 10px;
    border: 4px solid var(--white);
    box-shadow: 0 0 0 3px var(--theme-2);
}

.milestone-label {
    font-weight: 700;
    color: var(--theme);
    margin-bottom: 5px;
}

.milestone-desc {
    font-size: 16px;
    color: #000;
    text-align: center;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.2rem;
    }
    .case-study-content {
        padding: 0 30px 50px;
    }
    .challenges-grid {
        grid-template-columns: 1fr;
    }
    .challenges-grid::before,
    .challenges-grid::after {
        display: none;
    }
    
    .challenge-item:nth-child(odd),
    .challenge-item:nth-child(even) {
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .hero-image-container {
        height: 560px;
    }
    
    .hero-content {
        padding: 30px 20px;
        transform: translateY(30px);
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .meta-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }
    
    .case-study-content {
        padding: 0 20px 40px;
    }
    
    .section-header {
        padding-left: 60px;
    }
    
    .section-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .section-number::after {
        width: 60px;
        height: 60px;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .student-content,
    .challenge-content,
    .solution-content,
    .importance-card,
    .documents-content {
        padding: 30px;
    }
    
    .highlight-card {
        min-width: 100%;
    }
    
    .profile-highlights {
        flex-direction: column;
        align-items: center;
    }
    
    .process-timeline::before {
        left: 25px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
        margin-right: 20px;
    }
    
    .documents-cloud {
        justify-content: flex-start;
    }
    
    .document-tag {
        padding: 12px 20px;
    }
    
    .timeline-track {
        flex-direction: column;
        align-items: flex-start;
        padding: 10px 0;
    }
    
    .timeline-track::before {
        top: 0;
        left: 10px;
        width: 3px;
        height: 100%;
        transform: none;
    }
    
    .timeline-milestone {
        flex-direction: row;
        width: 100%;
        margin-bottom: 30px;
        align-items: center;
    }
    
    .milestone-dot {
        margin-right: 15px;
        margin-bottom: 0;
    }
    
    .milestone-desc {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .hero-image-container {
        height: 802px;
    }
    
    .hero-title {
        font-size: 1.5rem;
    }
    
    .meta-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        padding-left: 0;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .section-number {
        position: relative;
        margin-bottom: 15px;
    }
    
    .outcome-grid,
    .documents-cloud {
        grid-template-columns: 1fr;
    }
    
    .highlight-card,
    .challenge-item {
        min-width: 100%;
    }
    
    .student-content,
    .challenge-content,
    .solution-content,
    .importance-card,
    .documents-content {
        padding: 20px;
    }
    
    .process-timeline::before {
        left: 20px;
    }
}

.service-sidebar__single {
  position: relative;
  z-index: 1;
  padding: 30px;
  background-color: #F5F2EF;
  border-radius: 30px;
  border-top: 4px double;
  border-bottom: 4px double;
}
.service-sidebar__nav {
    margin: 0;
    position: relative;
}
.list-unstyled {
    padding-left: 0;
    list-style: none;
}
.service-sidebar__nav li a{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
    color: #000;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    padding: 11px 20px 11px 20px;
    border-radius: 30px;
    background-color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
}
a, a:hover, a:focus, a:visited {
    text-decoration: none;
}
.service-sidebar__nav li a .icon {
    max-width: 32px;
    width: 100%;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theme);
    font-size: 16px;
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.service-sidebar__nav li a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--theme-2);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
}
.service-sidebar__nav li + li{
    margin-top: 20px;
}
.service-sidebar__nav li.current a::after {
    transform: translateX(0%);
}

.service-sidebar__nav li a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: -1px;
    background-color: var(--theme-2);
    z-index: -1;
    transform: translateX(-100%);
    transition: all 0.5s ease-in-out;
}

/* contact us start */
.contact-top {
    position: relative;
    z-index: 1;
}
.contact-top__item {
    border-radius: 20px;
    border: 1px solid #DDDDDD;
    padding: 30px 25px 20px;
    position: relative;
    background-color: #fff;
    z-index: 1;
    overflow: hidden;
    height: 100%;
}
.contact-top__item__top {
    display: flex;
    align-items: start;
    justify-content: start;
    gap: 14px;
    margin-bottom: 10px;
}
.contact-top__item__icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    font-size: 24px;
    overflow: hidden;
    color: #fff;
    transition: all 0.5s ease-in-out;
}
.contact-top__item__text
 {
    margin: 0;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    transition: all 0.5s ease-in-out;
}
.contact-top__item__text::after {
    content: "";
    height: 2px;
    width: 100px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: transparent;
    border-top: 2px dashed var(--theme);
    transition: all 0.5s ease-in-out;
}
.contact-top__item__content__item {
    display: block;
}
.contact-top__item__content a {
    color: #555;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
    margin: 0;
    display: inline-flex;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}
.contact-top__item__content a {
    color: #000;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 162.5%;
    margin: 0;
    display: inline-flex;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}
.contact-top__item__shape::before {
    content: "";
    width: 53px;
    height: 53px;
    border-radius: 50%;
    position: absolute;
    bottom: -5px;
    right: -5px;
    border: 2px dashed #fff;
    background-color: transparent;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    animation: rotate360 3s ease-in-out infinite;
}
.contact-top__item__shape::after {
    content: "";
    width: 80px;
    height: 80px;
    border-radius: 50%;
    position: absolute;
    bottom: -17px;
    right: -18px;
    border: 6px solid #fff;
    background-color: transparent;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    animation: rotate360 3s ease-in-out infinite;
}
.contact-top__item::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: var(--theme);
    z-index: -1;
    transform: translateY(-100%);
    transition: all 0.5s ease-in-out;
}
.contact-top__item:hover::after {
    transform: translateY(0%);
}
.contact-top__item:hover .contact-top__item__shape::after, .contact-top__item:hover .contact-top__item__shape::before {
    visibility: visible;
    opacity: 1;
}
.contact-top__item:hover .contact-top__item__icon {
    background-color: #fff;
    color: var(--theme);
}
.contact-top__item:hover .contact-top__item__text, .contact-top__item:hover .contact-top__item__content a, .contact-top__item:hover .time {
    color: #fff;
}
.contact-top__item:hover .contact-top__item__text::after {
    background-color: #fff;
}
.contact-top__item:hover .contact-top__item__text, .contact-top__item:hover .contact-top__item__content a, .contact-top__item:hover .time {
    color: #fff;
}
@keyframes rotate360 {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rotate-animation {
    animation: rotate360 2s linear infinite;
}

.md\:h-20.h-14 img {
    max-width: 126px;
    height: auto;
}

/* form */
.contact-page-sec .images-all{
    position: relative;
    height: 536px;
    text-align: end;
}
.contact-page-sec .images-all .image2 {
    position: absolute;
    bottom: 7px;
    left: 11px;
}
.contact-page-sec .images-all .shape {
    position: absolute;
    top: 0;
    left: 100px;
}

.animate3 {
    position: relative;
    animation-name: animate3;
    animation-duration: 4s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}
.details-contact .form-area {
    padding: 32px;
    border-radius: 8px;
    background-color: #F3F5F5;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: relative;
}
.details-contact .form-area .single-input {
    margin-top: 20px;
}
.details-contact .form-area .single-input input, .details-contact .form-area .single-input textarea {
    background-color: #fff;
    padding: 16px;
    border: 1px solid var(--theme);
    width: 100%;
    border-radius: 8px;
}

/* medical education loan */
.what-we-do{
	background: url('assets/images/medical/section-bg-shape-2.webp'), var(--theme);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.what-we-do.dark-section .section-title h2 span{
	-webkit-text-fill-color: transparent;
}

.about-need-help{
	position: relative;
	display: flex;
	align-items: center;
	background: linear-gradient(90deg, var(--accent-color) 0.18%, var(--accent-secondary-color) 100.18%);
	border-radius: 30px;
	padding: 30px;
	margin-right: 50px;
	overflow: hidden;
margin-top: 20px;
}

.about-need-help:after{
	content: '';
    position: absolute;
    top: 0;
    right: calc(100% - 120px);
    bottom: 0;
    width: 100%;
    height: 100%;
    background: var(--white-color);
    z-index: 0;
    transition: all 0.4s ease-in-out;
}

.about-need-help:hover:after{
	right: 0;
}

.about-need-help .icon-box{
	position: relative;
	margin-right: 60px;
	z-index: 1;
}

.about-need-help .icon-box img{
	width: 100%;
	max-width: 60px;
}

.about-need-help .need-help-content{
	position: relative;
	width: calc(100% - 120px);
	z-index: 1;
}

.need-help-content p{
	font-size: 18px;
	text-transform: capitalize;
	color: var(--white);
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.need-help-content h3{
	font-size: 20px;
	color: var(--white);
	transition: all 0.3s ease-in-out;
}

.about-need-help:hover .need-help-content p,
.about-need-help:hover .need-help-content h3{
	color: var(--theme);
}

.need-help-content h3 a{
	color: inherit;
}

.what-we-counter-image{
	position: relative;
	margin-left: 20px;
	padding-left: 140px;
	overflow: hidden;
}

.what-we-counter-box{
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 100%;
	max-width: 200px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	z-index: 1;
}

.what-we-counter-item{
	position: relative;
	width: 100%;
	background: var(--white);
	border-radius: 30px;
	padding: 25px;
	overflow: hidden;
}

.what-we-counter-item:before{
	content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(90deg, var(--theme) 0.18%, var(--theme-2) 100.18%);
	border-radius: 30px;
    transition: all 0.4s ease-in-out;
    z-index: 0;
}

.what-we-counter-item:hover:before{
	top: auto;
    height: 105%;
}

.what-we-counter-item .icon-box{
	position: relative;
	margin-bottom: 10px;
	z-index: 1;
}

.what-we-counter-item .icon-box img{
	max-width: 34px;
	transition: all 0.4s ease-in-out;
}

.what-we-counter-item:hover .icon-box img{
	filter: brightness(0) invert(1);
}

.what-we-counter-item-content{
	position: relative;
	z-index: 1;
}

.what-we-counter-item-content h3{
	font-size: 36px;
	transition: all 0.3s ease-in-out;
}

.what-we-counter-item-content p{
	text-transform: capitalize;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.what-we-counter-item:hover .what-we-counter-item-content p,
.what-we-counter-item:hover .what-we-counter-item-content h3{
	color: var(--white);
}

.what-we-image figure{
	border-radius: 30px;
}

.what-we-image img{
	width: 100%;
	aspect-ratio: 1 / 1.22;
	object-fit: cover;
	border-radius: 30px;
}


/* study start */
.map img {
    width: 100%;
    height: auto;
}
.service-card-two__icon img {
    max-width: 100%;
    height: auto;
    border-radius: 47px;
}
.rr-about-area{
    position: relative;
    background-color: #dde5e73b;
}
/* .rr-about-area:before {
    position: absolute;
    content: "";
    background-image: url(assets/images/homepage/about-shape-1-1.webp);
    height: 163px;
    width: 338px;
    right: 3%;
    animation-name: bounce;
    animation-duration: 5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    background-size: contain;
    bottom: 0;
    background-repeat: no-repeat;
    object-fit: cover;
    filter: grayscale(100%);
} */
.p-relative {
    position: relative;
}
.rr-about-shap {
    position: absolute;
    left: 59px;
    top: -26px;
}
.rr-about-shap-2 {
    position: absolute;
    right: 80px;
    top: 22px;
}
.rr-about-sml-img {
    margin-top: -343px;
    margin-left: -32px;
}
.rr-about-sm-img::before {
    position: absolute;
    top: 10px;
    right: 8px;
    height: 160px;
    width: 160px;
    background-color: rgb(0 0 0 / 28%);
    z-index: 1;
    content: "";
    display: inline-block;
    border-radius: 105px;
}
.rr-about-sm-img img {
    border-radius: 100%;
    border: 10px solid #fff;
}
.rr-slider-2-video-play {
    position: absolute;
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    z-index: 1 !important;
}
.rr-slider-2-video-play a {
    display: inline-block;
    height: 60px;
    width: 60px;
    line-height: 60px;
    text-align: center;
    font-size: 18px;
    border-radius: 50%;
    color: var(--theme-2);
    background-color: #fff;
    position: relative;
}
.rr-slider-2-video-play a::before {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 65%;
    height: 65%;
    background-color: rgba(255, 255, 255, 0.671);
    animation: borderanimate2 2.5s linear infinite;
    z-index: -1;
    border-radius: 50%;
}
.rr-slider-2-video-play a i {
    display: inline-block;
    padding-left: -2px;
    font-size: 61px;
}
.rr-slider-2-video-play a::after {
    position: absolute;
    content: "";
    left: 50%;
    top: 50%;
    width: 70%;
    height: 70%;
    background-color: rgba(255, 255, 255, 0.405);
    animation: borderanimate2 2.3s linear infinite;
    z-index: -1;
    border-radius: 50%;
}
.rr-section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #fff;
    display: inline-block;
    text-transform: uppercase;
    background: var(--theme-2);
    padding: 8px;
    border-radius: 24px;
    margin-bottom: 10px;
}
.rr-section-subtitle img {
    margin-bottom: -4px;
}
.rr-about-sm-img {
    margin-top: -65px;
    margin-right: 62px;
}
.rr-section-subtitle img {
    margin-top: -5px;
}
.rr-about-tag {
    margin-top: 35px;
}
.rr-about-tag:hover .rr-about-icon {
    background-color: var(--theme);
}
.img-ani {
    animation: moveY 2s ease-in-out infinite;
    display: inline-block;
    transition: all 0.3s ease-in-out;
}
.rr-about-icon {
    height: 68px;
    width: 68px;
    background: var(--theme-2);
    text-align: center;
    line-height: 68px;
    display: inline-block;
    margin-top: -10px;
    border-radius: 35px;
}
.ml-20 {
    margin-left: 20px;
}
.rr-about-tag-title {
    font-size: 22px;
    color: #000;
}
.rr-about-text p {
    font-size: 14px;
    color: #000;
    line-height: 22px;
}
/* service start  */
.pbmit-service-style-1 .pbminfotech-post-item {
    margin-bottom: 30px;
  }
  .pbmit-service-style-1 .pbmit-service-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 50px 0 0 0;
  }
  .pbmit-service-style-1 .pbmit-featured-wrapper img, .pbmit-service-style-1 .pbmit-service-icon-wrapper i, .pbmit-service-style-1 .pbminfotech-box-content {
    -webkit-transition: all 0.5s ease 0s;
    -o-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
  }
  .pbmit-service-style-1 .pbminfotech-box-content {
    position: relative;
    padding: 20px 35px;
    margin-top: -35px;
    margin-left: 30px;
    border-radius: 0 0 50px 0;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    background: #fff;
    z-index: 1;
    background-image: url(assets/images/homepage/blog-bg3.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .pbmit-service-style-1 .pbmit-service-title {
    position: relative;
    font-size: 20px;
    line-height: 26px;
    margin: 0px;
    text-transform: uppercase;
    font-weight: 500;
  }
  .pbmit-service-style-1 .pbmit-service-title:after {
    position: absolute;
    content: "";
    top: 50%;
    margin-top: -2px;
    width: 50px;
    height: 4px;
    left: -65px;
    background-color: var(--theme);
  }
  .pbmit-service-style-1 .pbmit-service-icon-wrapper {
    float: right;
  }
  .pbmit-service-style-1 .pbmit-service-icon-wrapper i {
    font-size: 60px;
    line-height: 60px;
    color: var(--theme);
  }
  .pbmit-service-style-1 .pbmit-service-content {
    padding-top: 10px;
  }
  .service-bg-one {
    background-image: url(assets/images/homepage/pattern-bg-1.webp);
    background-color: #dd945736;
    border-radius: 0px 50px 0px 0px;
    background-position: 0% 0%;
    background-repeat: repeat;
    background-size: auto;
    /* height: 462px;
    margin-bottom: 714px; */
  }
  .pbmit-service-style-1:hover  p {
    color: #000;
}
.pbmit-service-style-1  p {
    color: #000;
    margin-top: 10px;
}
  .pbmit-service-title a{
    font-size: 20px;
  }
  .pbminfotech-box-content-inner a {
    color: #000000;
  }
  .pbmit-service-style-1:hover .pbminfotech-box-content {
    background-color: var(--theme-2);
    color: #fff;
  }
  .pbmit-service-style-1:hover .pbmit-service-title a {
    color: var(--theme);
  }
  .pbmit-service-style-1:hover .pbmit-featured-wrapper img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2);
  }
  .main-h2-box{
    margin-bottom: 25px;
  }

/* cuntry wise study */
.service-one {
    position: relative;
    z-index: 1;
}
.service-card-two {
    position: relative;
    z-index: 1;
    margin-top: 58px;
    margin-bottom: 41px;
}
.service-card-two__inner {
    position: relative;
    z-index: 1;
    padding: 1px 8px 8px;
    border-radius: 20px;
    background: #0b363414;
    transition: all 600ms ease-in-out;
}
.service-card-two__icon {
    margin-top: -56px;
    width: 111px;
    height: 111px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--garlon-gray, #F2F2F2);
    border: 7px solid var(--garlon-white, #fff);
    margin-left: auto;
    margin-right: auto;
    font-size: 50px;
    color: #209D2F;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    transition: all 500ms ease-in-out;
}
.service-card-two__icon::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.5s ease-in-out;
    background-color: var(--garlon-base, #209D2F);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    z-index: -1;
    transform: scale(0.1);
    visibility: hidden;
    opacity: 0;
}
.service-card-two__content {
    padding-left: 20px;
    padding-right: 20px;
}
.service-card-two__title {
  font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-transform: capitalize;
    text-align: center;
    margin: 0px;
}
.service-card-two__title a {
    color: inherit;
    background: linear-gradient(to right, currentcolor 0%, currentcolor 100%) 0px 95% / 0px 1px no-repeat;
    transition: all 500ms ease;
}
.service-card-two__text {
    text-align: center;
    margin-bottom: 25px;
    transition: all 600ms ease-in-out;
}
.service-card-two__thumb{
    position: relative;
    overflow: hidden;
    border: 2px solid var(--garlon-white, #fff);
    border-radius: 15px;
}
.service-card-two__thumb img {
    object-fit: cover;
    width: 100%;
}
.service-card-two__thumb img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    visibility: hidden;
    height: 100%;
    width: 0;
    transition: 1s;
    overflow: hidden;
}
.service-card-two__btn {
    margin-top: 8px;
    margin-bottom: -49px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -100%);
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    transition: all 600ms ease;
}
.service-card-two__btn a {
    width: 41px;
    height: 41px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--garlon-base, #209D2F);
    border-radius: 0px 0px 10px 10px;
    color: var(--garlon-white, #fff);
    font-size: 16px;
}
.service-card-two__shape-one {
    position: absolute;
    left: 10px;
    bottom: 50%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.service-card-two__shape-two {
    position: absolute;
    right: 10px;
    bottom: 50%;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease-in-out;
}
.service-card-two:hover .service-card-two__thumb img:nth-child(2) {
    width: 100%;
    visibility: visible;
}
.service-card-two:hover .service-card-two__title, .service-card-two:hover .service-card-two__text {
    color: var(--garlon-white, #fff);
}
.service-card-two:hover .service-card-two__icon::after {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.service-card-two:hover .service-card-two__icon {
    color: var(--garlon-white, #fff);
}
.service-card-two:hover .service-card-two__inner {
    background-color: var(--garlon-text-dark, #222222);
}

/* education start */
.service-two__wrapper.abc {
    background-color: #0b36341a;
}
.about-section-15 {
    background-color: #F2F4F7;
    position: relative;
    z-index: 1;
}
.about-section-15 .shapes .shape-1 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
.about-section-15 .shapes .shape-2 {
    position: absolute;
    top: 0;
    right: 220px;
    z-index: -1;
}
.about-section-15 .shapes .shape-3 {
    position: absolute;
    top: 0;
    right: 40px;
    z-index: -1;
}
.about-section-15 .shapes .shape-4{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    width: 100%;
}
.about-section-15 .shapes .shape-5 {
    position: absolute;
    bottom: 0;
    right: 80px;
    z-index: -1;
}

.about-img-wrap-15 {
    display: flex;
    align-items: center;
    max-width: 742px;
    width: 100%;
    -moz-column-gap: 15px;
    column-gap: 15px;
}
.fade-in-right {
    -webkit-animation-name: fade-in-right;
    animation-name: fade-in-right;
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-fill-mode: both;
}
.about-img-wrap-15 .about-img-1{
    height: 470px;
    max-width: 416px;
    width: 100%;
}
.about-img-wrap-15 .about-img-1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.about-img-wrap-15 .about-img-2{
    height: 395px;
    max-width: 302px;
    width: 100%;
}

/* Features solution start */
.pad-b-50{
    padding-bottom: 40px;
}
.solution-two {
    position: relative;
    background-color:#c1c1c11c;
}
.solution-two__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    mix-blend-mode: difference;
    opacity: .2;
}
.solution-two__box {
    position: relative;
    z-index: 2;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #7f7c7c;
    border-radius: 10px;
    transition: all .4s linear;
    background-color: #fff;
}
.solution-two__box:before {
    right: 0;
    top: 0;
    border-top: 1px solid transparent;
    border-right: 1px solid transparent;
}

.solution-two__box:after, .solution-two__box:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    transition: all .4s linear;
    z-index: -1;
}
.solution-two__box__title {
    display: flex;
    align-items: center;
    font-size: 22px;
    border-bottom: 1px solid  #7f7c7c;
    transition: all .4s ease;
    margin: 0;
    padding: 15px;
}
.solution-two__box__title i {
    display: inline-block;
    color: var(--primary);
    font-size: 50px;
    transition: all .6s ease;
}
.solution-two__box__text {
    margin: 0;
    padding: 15px;
}
.solution-two__box__rm {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 45px;
    height: 45px;
    background-color: var(--secondary);
    border-radius: 0;
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #fff;
    justify-content: center;
    opacity: 0;
    transform: translateY(100px);
}
.solution-two__box:after, .solution-two__box:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    transition: all .4s linear;
    z-index: -1;
}
.solution-two__box:after {
    left: 0;
    bottom: 0;
    border-bottom: 1px solid transparent;
    border-left: 1px solid transparent;
}
.solution-two__box__rm span {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.solution-two__image {
    position: relative;
    display: inline-block;
    border-radius: 50px;
    overflow: hidden;
}
.solution-two__image img {
    max-width: 100%;
    height: auto;
}
.solution-two__image:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 0;
    height: 0;
    background: rgba(var(--tolak-white-rgb,255,255,255),.2);
    border-radius: 0;
    transition: all .5s linear;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.solution-two__box:hover {
    border-color: transparent;
}
.solution-two__box:hover .solution-two__box__title {
    border-color: var(--primary);
}
.solution-two__box:hover .solution-two__box__rm {
    opacity: 1;
    transform: translateY(0);
}
.solution-two__box:hover:after, .solution-two__box:hover:before {
    border-color: var(--primary);
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.solution-two__box:hover .solution-two__box__title i {
    transform: rotateY(180deg);
}



.doc-table-wrapper {
  overflow-x: auto;
  margin-top: 30px;
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.doc-table thead {
  background: #004F44;
}

.doc-table thead th {
  color: #ffffff;
  padding: 16px 18px;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
}

.doc-table tbody td {
  padding: 15px 18px;
  font-size: 16px;
  color: #000;
  border-bottom: 1px solid #eee;
}

.doc-table tbody tr:hover {
  background: #f6f9f8;
}

.doc-table td:nth-child(2),
.doc-table td:nth-child(3),
.doc-table td:nth-child(4) {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.doc-table small {
  color: #262626;
  font-size: 14px;
}

@media (max-width: 768px) {
  .doc-table thead {
    display: none;
  }

  .doc-table tr {
    display: block;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  }

  .doc-table td {
    display: flex;
    justify-content: space-between;
    padding: 14px;
    border-bottom: 1px solid #eee;
  }

  .doc-table td::before {
    content: attr(data-label);
    font-weight: 600;
    color: #004F44;
  }
}

@media (max-width: 567px) {

  .doc-table-wrapper {
    padding: 0 10px;
  }

  .doc-table tr {
    margin-bottom: 15px;
  }

  .doc-table td {
    font-size: 14px;
    padding: 12px;
  }

  .doc-table td::before {
    font-size: 13px;
    flex: 0 0 45%;
  }

  .doc-table small {
    font-size: 12px;
  }
}

/* apply now */
.inq_frm{
    padding: 25px;
    background: var(--theme);
    position: relative;
    left: -28px;
    top: 21px;
    width: 124%;
    border-radius: 10px;
}
.inq_frm .form-control {
    background-color: #ffffff;
}
.contact-form .form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 0;
}
.inq_frm .form-control {
    background-color: #ffffff;
}
.form-control {
    padding: 11px 11px;
}
.form-control {
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-body-color);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid #dee2e6;
    border-radius: 10px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.cargo_inqry_image img {
    border-radius: 50px;
}
.cargo_inqry_image img {
    width: 100%;
    height: auto;
}
#contactForm .theme-btn{
  background-color: #fff;
  color: #000;
}
.discount-box-items .theme-btn{
  background-color: #fff;
  color: #000;
}
@media (min-width: 992px) {
    .ps-lg-5 {
        padding-left: 4rem !important;
    }
}

.history-area__box__item {
    position: relative;
}

.history-count {
    position: absolute;
    bottom: -50px;
    left: 0;

    width: 50px;
    height: 50px;
    border-radius: 50%;

    border: 1px solid var(--theme);
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 20px;
    font-weight: 500;
    color: #000;
    background: #fff;
}
@media (max-width: 1500px) {
  .header-main .main-menu ul li {
    position: relative;
    list-style: none;
    display: inline-block;
    margin-inline-end: 13px;
}
}


/* header new */
    /*Menu*/
    .main-navigation ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .main-navigation li {
        position: relative;
    }

    .main-navigation a {
        display: block;
        padding: 10px 15px;
        text-decoration: none;
        color: #000;
    }

    .main-navigation ul.sub-menu {
        display: none;
        padding-left: 15px;
    }

    .main-navigation ul.sub-menu.depth-0 {
        padding-left: 0;
    }

    .menu-toggle {
        display: none;
    }

    .main-navigation a:hover,
    .main-navigation a:focus {
        background-color: #f5f5f5;
    }

    .main-navigation .current-menu-item>a {
        font-weight: bold;
    }

    /* Mobile styles */
    @media (max-width: 991px) {
        .menu-toggle {
            display: block;
            position: absolute;
            right: 0;
            top: 4px;
            width: 40px;
            height: 40px;
            background: #000;
            border: none;
            cursor: pointer;
            padding: 0;
            font-size: 18px;
            line-height: 24px;
            text-align: center;
            z-index: 1;
            color: #fff;
        }

        .main-navigation li.has-children>a {
            padding-right: 40px;
        }

        .main-navigation ul.sub-menu {
            display: none;
            padding-left: 15px;
            background-color: #f9f9f9;
        }

        .main-navigation ul.sub-menu .sub-menu {
            padding-left: 15px;
        }

        .main-navigation ul.sub-menu li a {
            padding-left: 25px;
        }

        .main-navigation ul.sub-menu li.has-children>a {
            padding-right: 40px;
        }

        .main-navigation ul.sub-menu.active {
            display: block;
        }
    }

    /* Desktop styles */
    @media (min-width: 992px) {
        .main-navigation>ul>li {
            display: inline-block;
        }

        .main-navigation ul.sub-menu {
            position: absolute;
            min-width: 200px;
            background: #fff;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            z-index: 100;
            padding-left: 0;
        }

        .main-navigation ul.sub-menu .sub-menu {
            left: 100%;
            top: 0;
        }

        .main-navigation li.has-children>a {
            padding-right: 30px;
        }

        /* Show submenu on hover (desktop only) */
        .main-navigation li.has-children:hover>ul.sub-menu {
            display: block;
        }
    }

    /* Navbar styles */
    .navbar {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-brand {
        display: inline-block;
        padding-top: 0.3125rem;
        padding-bottom: 0.3125rem;
        margin-right: 1rem;
        font-size: 1.25rem;
        line-height: inherit;
        white-space: nowrap;
    }

    .navbar-collapse {
        flex-basis: 100%;
        flex-grow: 1;
        align-items: center;
    }

    .navbar-nav {
        display: flex;
        flex-direction: column;
        padding-left: 0;
        margin-bottom: 0;
        list-style: none;
    }

    .navbar-toggler {
        padding: 0.25rem 0.75rem;
        font-size: 1.25rem;
        line-height: 1;
        background-color: transparent;
        border: 1px solid transparent;
        border-radius: 0.25rem;
    }

    @media (min-width: 992px) {
        .navbar-expand-lg .navbar-collapse {
            display: flex !important;
            flex-basis: auto;
            justify-content: flex-end;
        }

        .navbar-expand-lg .navbar-nav {
            flex-direction: row;
        }
    }

    button.navbar-toggler {
        background: var(--primary);
        color: #fff
    }
    /*Menu End*/

    /* Sticky Navbar */
    #masthead {
        background-color: #fff;
        transition: .5s ease top;
        top: -105px;

        &.sticky {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: auto;
        }

        .header {
            justify-content: center;

            h1 {
                color: white;
            }
        }

        z-index: 999;
    }
    .logo-shape.new-shape {
    position: absolute;
    left: -35px;
}
.logo img {
    max-width: 180px;
    height: auto;
}
.shape-1 img {
    max-width: 100%;
    height: auto;
}
.desktop992{
  display: block;
}
.mobile992{
  display: none;
}
.desktop{
  display: block;
}
.mobile{
  display: none;
}
button.navbar-toggler {
    background-color: var(--theme);
}
.rr-about-main-img img{
    max-width: 100%;
    height: auto;
}
.shape-4 img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 991px) {
    .main-navigation {
        max-height: 80vh;
        overflow-y: auto;
        overflow-x: hidden;
    }
    .navbar-collapse {
        position: absolute;
        z-index: 9999999;
        background-color: #fff;
        left: 0;
        right: 0;
        border-radius: 10px;
        top: 66px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    }
}

@media (max-width: 1500px) {
.history-area__box__list::after {
    right: 0px;
    height: 1px;
    height: 39px;
}
}

@media (max-width: 1200px) {
  .theme-btn {
    padding: 6px 6px 6px 10px;
  }
  .main-navigation a {
    padding: 10px 5px;
  }
.history-area__box__list::after {
    right: 0px;
    height: 1px;
    height: 39px;
}
.logo-shape.new-shape {
    position: absolute;
    left: -171px;
    top: -12px;
}

.logo img {
    max-width: 133px;
    height: auto;
}
.inq_frm {
    left: 0;
}
.mar-b992{
  margin-bottom: 20px;
}
.case-study-container {
    padding: 15px;
}
.service-sidebar__single{
  padding: 15px;
 }
 .service-sidebar__nav li a {
    font-size: 16px;
 }
}

@media (max-width: 992px) {
  .desktop992{
    display: none;
  }
  .mobile992{
    display: block;
  }
  .bt-about-wrapper .bt-about-image .bt-about-image-2 {
    left: -2px;
  }
  section{
    padding-top: 50px;
    padding-bottom: 50px;
  }
.bt-footer-bottom.style-3 .bt-footer-bottom-wrapper {
    padding: 8px 0;
}

    .get-quote__right {
        margin-left: 0px;
        padding: 30px;
    }
        .history-area__box__list {
        flex-wrap: wrap;
        gap: 70px 0;
    }
        .history-area__box__item {
        flex: 50%;
        width: 50%;
    }
    .history-area__box__list::after {
  display: none;
}
.inq_frm {
  left: 0;
  width: 100%;
  padding: 15px;
}
.contact-top__item {
  padding: 20px;
}
.hero-title{
  font-size: 30px;
}
.meta-grid {
    gap: 10px;
    padding: 13px;
}
.outcome-card{
    padding: 15px;
 }
 .outcome-value {
    font-size: 18px;
    margin: 4px 0;
}
.bt-choose-us-wrapper-2 .bt-icon-box-items-area .bt-box-items .bt-box{
    padding: 20px 20px;
 }
 .sec-slider img {
    display: none;
}
    .navbar-collapse {
        top: 53px;
    }
}
a.theme-btn
 {
    color: #fff;
}
.dis-non{
  display: none;
}
@media (max-width: 767px) {
  .desktop{
    display: none;
  }
  .mobile{
    display: block;
  }
  .work-process__icon {
    width: 115px;
    height: 115px;
  }
  .work-process__icon i {
    font-size: 40px;
}
.work-process__title {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 3px;
}
.work-process__item {
    margin-bottom: 10px;
}
.fun-sec .bg-shape{
    width: 206px;
    height: 186px;
 }
 .bt-cta-class-wrapper .content .theme-btn{
    margin-top: 15px;
}
    .get-quote__left{
        margin-top: 0;
    }
    .get-quote__left {
        margin-top: 0;
    }
    .get-quote {
        padding: 50px 0;
    }
    .bt-about-wrapper-2 .bt-about-content .about-text{
    margin-top: 0px;
}
    .bt-event-box-items-2 .bt-content {
        padding: 15px;
    }
    .bt-content h3 {
    font-size: 18px;
}
.main-sideber .single-sideber-widget {
    padding: 15px !important;
}
/* .rr-about-sm-img {
    margin-top: -95px;
    margin-right: 147px;
} */
.bt-choose-us-style-22 {
    margin-top: 0;
}
}


@media (max-width: 576px) {
    section{
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .bt-about-wrapper .bt-about-image .bt-about-image-2 img{
        width: 57%;
        height: 57%;
    }
    .bt-about-wrapper .bt-about-image .bt-about-image-3 img {
        width: 57%;
        height: 57%;
    }
    .bt-category-box-items {
    padding: 25px 15px;
    }
    .bt-category-box-items .bt-icon{
    width: 80px;
    height: 80px;
    line-height: 97px;
 }
 .history-area__box__item {
        flex: 100%;
        width: 100%;
    }
        .breadcrumb-wrapper .page-heading {
        padding: 30px 0 30px;
    }
      .breadcrumb-wrapper .page-heading .breadcrumb-items{
    padding: 8px 12px;
 }
 .bt-programs-box-items-2 .bt-content {
    padding: 0 15px 15px 15px;
 }
 .bt-programs-box-items-2 .bt-image{
    padding: 15px;
 }
  .hero-title {
    font-size: 24px;
  }
.solution-two__box__title {
    font-size: 18px;
}
    .navbar-collapse {
        top: 51px;
    }
}


/* section 2 medical */
        /* Tab Section */
        .tab-section {
            display: flex;
            background-color: white;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            min-height: 600px;
            flex-wrap: wrap;
        }
        
        /* Left side tabs */
        .tabs-container {
            flex: 0 0 35%;
            background-color: #f0f8ff;
            padding: 40px 25px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        
        .tab-button {
            padding: 20px 25px;
            background-color: white;
            border: none;
            border-radius: 10px;
            text-align: left;
            font-size: 1.1rem;
            font-weight: 600;
            color: #000;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
            position: relative;
            overflow: hidden;
        }
        
        .tab-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
        }
        
        .tab-button.active {
            background-color: var(--theme-2);
            color: white;
            box-shadow: 0 6px 15px rgba(26, 95, 122, 0.3);
        }
        
        .tab-icon {
            margin-right: 15px;
            font-size: 1.3rem;
        }
        
        /* Right side content */
        .content-container {
            flex: 0 0 65%;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .tab-content2 {
            display: none;
            animation: fadeIn 0.5s ease;
        }
        
        .tab-content2.active {
            display: block;
        }
        
        .tab-content2 h2 {
            color: var(--theme);
            font-size: 2rem;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #e6f2ff;
        }
        
        .tab-content2 p {
            margin-bottom: 20px;
            font-size: 1.05rem;
            color: #000;
        }
        
        .features-list {
            list-style-type: none;
            margin: 25px 0;
        }
        
        .features-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            border-bottom: 1px dashed #e0e0e0;
        }
        
        .features-list li:last-child {
            border-bottom: none;
        }
        
        .features-list li i {
            position: absolute;
            left: 0;
            top: 12px;
            color: var(--theme);
            font-size: 1.2rem;
        }
        
        .content-footer {
            background-color: #f0f8ff;
            padding: 20px;
            border-radius: 10px;
            margin-top: 30px;
            display: flex;
            align-items: center;
        }
        
        .content-footer i {
            font-size: 2rem;
            color: var(--theme);
            margin-right: 20px;
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .tabs-container {
                flex: 0 0 40%;
            }
            
            .content-container {
                flex: 0 0 60%;
                padding: 30px;
            }
        }
        
        @media (max-width: 768px) {
            .tab-section {
                flex-direction: column;
            }
            
            .tabs-container {
                flex: 0 0 auto;
                padding: 25px;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 10px;
            }
            
            .tab-button {
                flex: 1;
                min-width: 250px;
                padding: 18px;
            }
            
            .content-container {
                flex: 0 0 auto;
                padding: 30px 25px;
            }
            
            header h1 {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 576px) {
            .tabs-container {
                flex-direction: column;
            }
            
            .tab-button {
                min-width: auto;
                width: 100%;
            }
            
            .content-container {
                padding: 25px 20px;
            }
            
            .tab-content2 h2 {
                font-size: 1.7rem;
            }
            
            header h1 {
                font-size: 1.8rem;
            }
        }
        
        /* Animation */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }


        .bt-icon-box-i img{
          width: 100%;
          height: auto;
        }
p.captcha {
    background: #fff;
    padding: 9px;
    border: 1px solid #000;
    border-radius: 5px;
}
input.captcha-input2 {
    padding: 9px 23px;
}
input.mybtn.btn2.theme-btn {
    background: #fff;
    color: #000;
    padding: 11px 28px;
}
input.mybtn.btn2.theme-btn:hover {
    background: var(--theme-2);
    color: #000;
}
p.captcha.homeinbg {
    background-color: #efeff0;
}

input.mybtn.btn2.theme-btn2 {
    background: var(--theme);
    color: #fff;
    padding: 11px 28px;
}
input.mybtn.btn2.theme-btn2:hover {
    background: var(--theme-2);
    color: #000;
}
section#nav_menu-2{
    padding-bottom: 0;
    padding-top: 0;
}
h2.widget-title {
    color: #000;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 600;
    line-height: 142%;
}

#menu-footer1 li a {
  color: #000 !important;
}
#menu-footer1 li a::before {
  background-color: #000 !important;
  transition: all 0.4s ease-in-out;
}
#menu-footer1 li a:hover {
  color: var(--theme-2) !important;
}
#menu-footer1li a:hover::before {
  background-color: var(--theme-2) !important;
}

#menu-footer1 li:not(:last-child) {
  margin-bottom: 10px;
}
#menu-footer1 li a {
  padding-left: 20px;
  position: relative;
  color: #27282C;
}
#menu-footer1 li a::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  border-radius: 50%;
  background-color: #27282C;
  transition: all 0.4s ease-in-out;
}
#menu-footer1 li a:hover::before{
    background-color: var(--theme-2) !important;
}
h2.cta-h2-h {
    font-size: 40px;
}


textarea.wpcf7-form-control.wpcf7-textarea {
    height: 65px;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: #0b3634;
    color: #fff;
    border-radius: 30px;
    border: none;
    padding: 5px 15px;
}
.form-control input {
    border: none;
    background-color: none;
    background-color: transparent;
}
span.wpcf7-form-control-wrap textarea {
    width: 100%;
}
.form-group input.wpcf7-form-control.wpcf7-submit.has-spinner {
    background-color: #fff;
    color: #000;
    border-radius: 30px;
    border: none;
    padding: 5px 15px;
}
.wpcf7-response-output {
    background-color: #008731;
    border-radius: 15px;
    padding: 5px;
    color: #fff;
    margin-top: 10px;
}
button.refresh-captcha {
    background: var(--theme);
    color: #fff;
    font-size: 15px;
    padding: 9px;
    border-radius: 5px;
    width: 100%;
}
span.captcha-error {
    position: absolute;
    right: 23px;
    bottom: 0px;
}
input.mybtn {
    background: var(--theme);
    color: #fff;
    padding: 6px 24px;
    border-radius: 4px;
    margin-top: 10px;
}
input.captcha-input {
    width: 100%;
}
input.mybtn.btnwhite {
    background: #fff;
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
}
.get-quote__content.form-area {
    padding: 0;
    background: transparent;
    box-shadow: none;
}
input.captcha-input {
    padding: 9px 12px !important;
}