@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap'); 
:root {
    --primary-color: #1b1f22;
    --secondary-color: #FAFAFA;
    --text-color: #727272;
    --accent-color: #F9900A;
    --accent-secondary-color: #F9900A;
    --white-color: #FFFFFF;
    --divider-color: #03221B1A;
    --dark-divider-color: rgb(255 255 255 / 35%);
    --error-color: rgb(230, 87, 87);
    --default-font: "Poppins", sans-serif;
    --accent-font: "Poppins", sans-serif;
}
/************************************/
/*** 	   02. General css		  ***/
/************************************/




.breadcrumb-item + .breadcrumb-item::before {
  content: var(--bs-breadcrumb-divider, "/");
}



body {
  position: relative;
  font-family: var(--default-font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1em;
  color: var(--text-color);
  background: var(--white-color);
}
::-webkit-scrollbar-track {
  background-color: var(--secondary-color);
  border-left: 1px solid var(--secondary-color);
}
::-webkit-scrollbar {
  width: 7px;
  background-color: var(--secondary-color);
}
::-webkit-scrollbar-thumb {
  background: var(--accent-color);
}
::selection {
  color: var(--primary-color);
  background-color: var(--secondary-color);
  filter: invert(1);
}
p {
  line-height: 1.6em;
  margin-bottom: 1.57em;
  font-size: 14px;
  color: #333;
}
h1, h2, h3, h4, h5, h6 { 
  font-family: var(--accent-font);
  font-weight: 600;
  line-height:normal;
  color: var(--primary-color);
}
figure {
  margin: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  outline: 0;
}
a:focus {
  text-decoration: none;
  outline: 0;
}
html, body {
  width: 100%;
  overflow-x: clip;
}
.container {
  max-width: 1300px;
}
.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  z-index: 1;
}
.fact-counter {
    background-color: #084758;
    border-radius: 10px;
    padding: 0rem 2rem;
    margin-top: -54px;
}
tbody, td, tfoot, th, thead, tr {
  font-size: 14px;
}



.image-anime {
  position: relative;
  overflow: hidden;
}
.image-anime:after {
  content: "";
  position: absolute;
  width: 200%;
  height: 0%;
  left: 50%;
  top: 50%;
  background-color: rgba(255, 255, 255, .3);
  transform: translate(-50%, -50%) rotate(-45deg);
  z-index: 1;
}
.image-anime:hover:after {
  height: 250%;
  transition: all 600ms linear;
  background-color: transparent;
}
.reveal {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  visibility: hidden;
  overflow: hidden;
}
.reveal img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transform-origin: left;
  transform-origin: left;
}
.row {
  margin-right: -15px;
  margin-left: -15px;
}
.row > * {
  padding-right: 15px;
  padding-left: 15px;
}
.row.no-gutters {
  margin-right: 0px;
  margin-left: 0px;
}
.row.no-gutters > * {
  padding-right: 0px;
  padding-left: 0px;
}
.btn-default {
  position: relative;
  display: inline-block;
  background: var(--accent-secondary-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--white-color);
  border: none;
  padding: 12px 50px 12px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
  line-height: normal;
}
.btn-default:hover {
  background: transparent;
  color: var(--white-color);
}
.btn-default::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  background-image: url('../images/arrow-white.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-20px, -50%);
  transition: all 0.4s ease-in-out;
}
.btn-default:hover::before {
  transform: translate(-17px, -50%);
}
.btn-default::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--primary-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-default:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.btn-default.btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-default.btn-highlighted:hover::before {
  filter: brightness(1) invert(1);
}
.btn-default.btn-highlighted::after {
  background: var(--white-color);
}













.btn-petition {
  position: relative;
  display: block;
  background: var(--accent-secondary-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--white-color);
  border: none;
  padding: 17px 50px 17px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
}
.btn-petition:hover {
  background: transparent;
  color: var(--white-color);
}
.btn-petition::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  /* background-image: url('../images/arrow-white.svg'); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-128px, -50%);
  transition: all 0.4s ease-in-out;
}
.btn-petition:hover::before {
  transform: translate(-123px, -50%);
}
.btn-petition::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--primary-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-petition:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.btn-petition.btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-petition.btn-highlighted:hover::before {
  filter: brightness(1) invert(1);
}
.btn-petition.btn-highlighted::after {
  background: var(--white-color);
}




















.btn-what-can {
  position: relative;
  display: block;
  background: var(--accent-secondary-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--white-color);
  border: none;
  padding: 17px 50px 17px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
}
.btn-what-can:hover {
  background: transparent;
  color: var(--white-color);
}
.btn-what-can::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  /* background-image: url('../images/arrow-white.svg'); */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-88px, -50%);
  transition: all 0.4s ease-in-out;
}
.btn-what-can:hover::before {
  transform: translate(-78px, -50%);
}
.btn-what-can::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--primary-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-what-can:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.btn-what-can.btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-what-can.btn-highlighted:hover::before {
  filter: brightness(1) invert(1);
}
.btn-what-can.btn-highlighted::after {
  background: var(--white-color);
}

/* gallery */

.grid-container {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
  grid-auto-flow: dense;
}
.grid-container .item {
  background:#8FF;
  display:flex;
}
.grid-container .item a {
  display:flex;
  width:100%;
}
.grid-container .item.portrait {
  grid-row: auto / span 2;
}
.grid-container .item img {
  width:100%;
  height:auto;
  object-fit:cover;
}


.filter-buttons {
  padding:1rem;
  text-align:center;
}
.filter-buttons button {
  background:#ccc;
  border:none;
  font-size:1rem;
  padding:.5rem 1rem;
  margin-bottom:.5rem;
}
.filter-buttons button:focus {
  outline:none;
  background:#eee;
}



.btn-dark-gray {
  position: relative;
  display: inline-block;
  background: #176f87;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: #ffffff;
  border: none;
  padding: 12px 50px 12px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
}
.btn-dark-gray:hover {
  background: transparent;
  color: var(--white-color);
}
.btn-dark-gray::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  
  background-image: url('../images/arrow-white.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  transform: translate(-20px, -50%);
  transition: all 0.4s ease-in-out;
}
.btn-dark-gray:hover::before {
  transform: translate(-17px, -50%);
}
.btn-dark-gray::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--accent-secondary-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-dark-gray:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.btn-dark-gray .btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-dark-gray .btn-highlighted:hover::before {
  filter: brightness(1) invert(1);
}
.btn-dark-gray .btn-highlighted::after {
  background: var(--white-color);
}








.btn-light-button {
  position: relative;
  display: inline-block;
  background: #efefef;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1em;
  text-transform: capitalize;
  color: #444444;
  border: none;
  padding: 17px 20px;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
  margin-left: 1rem;
}
.btn-light-button:hover {
  background: transparent;
  color: var(--white-color);
}
.btn-light-button::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 20px;
  height: 20px;
  transition: all 0.4s ease-in-out;
}
.btn-light-button:hover::before {
  transform: translate(-17px, -50%);
}
.btn-light-button::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--primary-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-light-button:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.btn-light-button.btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-light-button.btn-highlighted:hover::before {
  filter: brightness(1) invert(1);
}
.btn-light-button.btn-highlighted::after {
  background: var(--white-color);
}














.btn-menu {
  position: relative;
  display: inline-block; 
  border: none;
  transition: all 0.5s ease-in-out;
  overflow: hidden;
  z-index: 0;
  border-radius: 3px;
}
.btn-menu:hover {
  background: transparent;
  color: var(--white-color);
}
.btn-menu .nav-link {
  /* padding: 8px 15px !important; */
  border-radius: 5px;
  color: var(--accent-secondary-color);
  font-weight: 600;
}
/* .btn-menu::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--primary-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.btn-menu:hover:after {
  width: 100%;
  transform: skew(0deg);
  left: 0;
} */
.btn-menu.btn-highlighted:hover {
  color: var(--primary-color);
}
.btn-menu.btn-highlighted:hover::before {
  filter: brightness(1) invert(1);
}
.btn-menu.btn-highlighted::after {
  background: var(--white-color);
}
.readmore-btn {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  color: var(--accent-secondary-color);
  padding-right: 30px;
  transition: all 0.4s ease-in-out;
}
.readmore-btn:hover {
  color: var(--primary-color);
}
.readmore-btn::before {
  content: '';
  position: absolute;
  right: 0;
  top: 1px;
  transform: translateX(-3px);
  background: url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position: center center;
  background-size: cover;
  width: 20px;
  height: 20px;
  transition: all 0.4s ease-in-out;
}
.readmore-btn:hover::before {
  filter: brightness(0) invert(0);
  transform: translateX(0px);
}
.cb-cursor:before {
  background: var(--accent-secondary-color);
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: #1b1f22 url('../img/loader-bg.png') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading-container, .loading {
  height: 100px;
  position: relative;
  width: 100px;
  border-radius: 100%;
}
.loading-container {
  margin: 40px auto;
}
.loading {
  border: 1px solid transparent;
  border-color: transparent var(--accent-color) transparent var(--accent-color);
  animation: rotate-loading 1.5s linear 0s infinite normal;
  transform-origin: 50% 50%;
}
.loading-container:hover .loading, .loading-container .loading {
  transition: all 0.5s ease-in-out;
}
#loading-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 66px;
  transform: translate(-50%, -50%);
}
@keyframes rotate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.section-row {
  margin-bottom: 30px;
}
.section-row .section-title {
  margin-bottom: 0;
}
.section-title {
  margin-bottom: 20px;
}
.section-title h3 {
    display: inline-block;
    position: relative;
    font-family: var(--default-font);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.5em;
    
    text-transform: uppercase;
    color: var(--primary-color);
    background-position: left center;
    background-size: 24px auto;
    margin-bottom: 15px;
}
.section-title h2 {
  font-size: 30px;
  font-weight: 600; 
  cursor: none;
}
.section-title h2 span{
  display: block;
  font-size: 30px;
}
.mobile-view-img{
  display: none;
}

.section-title p {
  margin-top: 20px;
  margin-bottom: 0;
  color: #333;
}
.section-title-content p {
  margin: 0;
  color: #333;
}
.section-btn {
  text-align: right;
}
.section-content-btn .section-btn {
  text-align: left;
  margin-top: 30px;
}

.about-us .section-title h2 span {
  font-size: 24px;
  display: block;
}
.our-fact-content .section-title h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 400;
}

.dark-section {
  background: var(--primary-color);
}
.dark-section .section-title-content p, .dark-section .section-title p, .dark-section .section-title h3, .dark-section .section-title h2, .dark-section .section-title h1 {
  color: var(--white-color);
    
}
.help-block.with-errors ul {
  margin: 0;
  text-align: left;
}
.help-block.with-errors ul li {
  color: var(--error-color);
  font-weight: 500;
  font-size: 14px;
}
/************************************/
/**** 	   03. Header css		 ****/
/************************************/
header.main-header {
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 100;
}
header.main-header .header-sticky {
  position: relative;
  top: 0;
  z-index: 100;
}
header.main-header .header-sticky.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
  border-radius: 0;
}
header.main-header .header-sticky.active {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  transform: translateY(0);
  background: var(--primary-color);
  border-bottom: 1px solid var(--dark-divider-color);
}
.hero-content {
    text-align: center;
    padding: 0rem 3rem;
}
.navbar-brand img {
  width: 160px;
}
.navbar {
  padding: 0px 0;
  align-items: center;
}
.main-menu {
  border: 1px solid var(--dark-divider-color);
  border-radius: 1px;
}
.navbar-nav {
  align-items: center;
}

.main-menu .nav-menu-wrapper {
  flex: 1;
  text-align: center;
  margin: 0 0px;
}
.main-menu .nav-menu-wrapper > ul {
  align-items: center;
  display: inline-flex;
}

.main-menu .nav-menu-wrapper > ul .active a {
  color: var(--accent-secondary-color);
  border-bottom: 1px solid var(--accent-secondary-color);
  position: relative;
  top: 1px;
}
.main-menu ul li {
  margin: 0;
  position: relative;
}
.main-menu ul li a {
  font-size: 14px;
  font-weight:500;
  padding: 18px 24px !important;
  color: var(--white-color);
  text-transform: uppercase;
  transition: all 0.3s ease-in-out;
}
.main-menu ul li.submenu > a:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
}
 
.main-menu ul li a:hover, .main-menu ul li a:focus {
  color: var(--accent-secondary-color);
  border-bottom: 1px solid var(--accent-secondary-color);
  position: relative;
  top: 1px;
}

.main-menu ul ul {
  visibility: hidden;
  opacity: 0;
  transform: scaleY(0.8);
  transform-origin: top;
  padding: 0;
  margin: 0;
  list-style: none;
  width: 330px;
  border-radius: 5px;
  position: absolute;
  left: 0;
  top: 100%;
  background: #ffffff;
  transition: all 0.3s ease-in-out;
  text-align: left;
  box-shadow: 0px 6px 6px rgb(0 0 0 / 10%);
}
.main-menu ul li.submenu:first-child ul {
  width: 235px;
}
.main-menu ul ul ul {
  left: 100%;
  top: 0;
  text-align: left;
}
.main-menu ul li:hover > ul {
  visibility: visible;
  opacity: 1;
  transform: scaleY(1);
  padding: 12px 0;
}
.main-menu ul li.submenu ul li.submenu > a:after {
  content: '\f105';
  float: right;
}
.main-menu ul ul li {
  margin: 0;
  padding: 0;
}
.main-menu ul ul li a {
  color: #000000 !important;
  transition: all 0.3s ease-in-out;
  color: #000000;
  padding: 7px 12px 7px 18px !important;
  transition: all 0.3s ease-in-out;
  font-size: 14px;
  font-weight: 600;
  border: 0px !important;
}
.main-menu ul ul li a:hover, .main-menu ul ul li a:focus {
  color: var(--accent-secondary-color)!important;
  background-color: transparent;
  padding: 7px 12px 7px 18px !important;
  border-bottom: 0px;
}
.main-menu ul ul ul li {
  margin: 0;
  padding: 0;
}
.main-menu ul ul ul li a {
  color: var(--white-color);
  padding: 8px 20px !important;
  transition: all 0.3s ease-in-out;
}
.main-menu ul ul ul li a:hover, .main-menu ul ul ul li a:focus {
  color: var(--primary-color);
  background-color: transparent;
  padding: 8px 20px 8px 23px !important;
}
.main-menu ul li.highlighted-menu {
  display: none;
}
.responsive-menu, .navbar-toggle {
  display: none;
}
.responsive-menu {
  top: 0;
  position: relative;
}
.slicknav_btn {
  background: #ffffff;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 32px;
  margin: 0;
  border-radius: 3px;
}
.slicknav_icon .slicknav_icon-bar {
  display: block;
  width: 100%;
  height: 2px;
  width: 22px;
  background-color: #595959;
  border-radius: 5px;
  margin: 5px auto !important;
  transition: all 0.1s ease-in-out;
}
.slicknav_icon .slicknav_icon-bar:first-child {
  margin-top: 0 !important;
}
.slicknav_icon .slicknav_icon-bar:last-child {
  margin-bottom: 0 !important;
}
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 5px);
  background-color:#595959;
}
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
  opacity: 0;
}
.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -5px);
  background-color:#595959;
}
.slicknav_menu {
  position: absolute;
  width: 94%;
  padding: 0;
  background: #ffffff;
  margin: auto;
  left: 0px;
  right: 0px;
  border-radius: 5px;
  box-shadow: 0px 6px 6px rgb(0 0 0 / 10%);
}
.slicknav_menu ul {
  margin: 0px 0;
  padding: 1rem;
}
.slicknav_menu ul ul {
  margin: 0;
  padding: 0;
}
.slicknav_nav .slicknav_row, .slicknav_nav li a {
  position: relative;
  font-size: 14px;
  font-weight: 600;
  text-transform: capitalize;
  padding: 8px 34px;
  padding-left: 10px;
  color: #000000;
  line-height: normal;
  margin: 0;
  border-radius: 0 !important;
  transition: all 0.3s ease-in-out;
}
.slicknav_nav a:hover, .slicknav_nav a:focus, .slicknav_nav .slicknav_row:hover {
  background-color: transparent;
  color: var(--primary-color);
}
.slicknav_menu .btn-menu .nav-link {
  padding: 8px 15px !important;
  border-radius: 5px;
  color: var(--accent-secondary-color);
}

.slicknav_menu ul ul li a {
  padding: 8px 20px 8px 30px;
}
.slicknav_arrow {
  font-size: 0 !important;
}
.slicknav_arrow:after {
  content: '\f107';
  font-family: 'FontAwesome';
  font-weight: 900;
  font-size: 12px;
  margin-left: 8px;
  color: #000000;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-out;
}
.slicknav_open > a .slicknav_arrow:after {
  transform: translateY(-50%) rotate(-180deg);
  color: var(--primary-color);
}
/************************************/
/***        04. Hero css	      ***/
/************************************/
.hero {
  position: relative;
  padding: 350px 0 105px;
  height: 90vh;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  /*    background: linear-gradient(360deg, rgba(3, 34, 27, 0) 74.01%, rgb(27 31 34 / 71%) 100%), linear-gradient(270deg, rgba(3, 34, 27, 0) 25.1%, rgb(27 31 34 / 59%) 41.43%, rgb(27 31 34 / 85%) 58.93%);*/
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-video {
    position: absolute;
    right: 0px;
    bottom: -2px;
    width: 324px;
    border-radius: 12px;
    overflow: hidden;
    height: 170px;
    border: 2px solid #ffffff;
}
.hero-video .hero-bg-video {
 
}
.hero-video .hero-bg-video video {
  width: 100%;
  height: 100%;
  /* object-fit: cover;
  -webkit-filter: brightness(50%) contrast(80%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(30%);
  filter: brightness(50%) contrast(80%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(30%); */
  mix-blend-mode: none;
}
.hero.hero-slider-layout {
  background: none;
  padding: 0;
}

/* DUPLICATE */

.hero-video2 {
    position: absolute;
    left: 16px;
    /* bottom: -2px; */
    width: 93%;
    border-radius: 5px;
    overflow: hidden;
    max-height: 228px;
    /* border: 2px solid #ffffff; */
    background: #000;
}

.hero-video2 .hero-bg-video video {
  width: 100%;
  max-height: 245px;
  /* object-fit: cover;
  -webkit-filter: brightness(50%) contrast(80%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(30%);
  filter: brightness(50%) contrast(80%) grayscale(100%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(30%); */
  mix-blend-mode: none;
}









.hero.hero-slider-layout .hero-slide {
  position: relative;
  padding: 250px 0 120px;
  height: 100vh;
  display: flex;
  align-items: center;
}
.hero-btn{
	margin-top: 2rem
}
/*
.hero.hero-slider-layout .hero-slide::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(360deg, rgba(3, 34, 27, 0) 74.01%, rgba(3, 34, 27, 0.9) 100%), linear-gradient(270deg, rgba(3, 34, 27, 0) 25.1%, rgba(3, 34, 27, 0.516) 41.43%, rgba(3, 34, 27, 0.86) 58.93%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
*/
.hero.hero-slider-layout .hero-slide .hero-slider-image {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.hero.hero-slider-layout .hero-slide .hero-slider-image img {
  width: 100%;
  height: 90vh;
  object-fit: cover;
}
.hero.hero-slider-layout .hero-pagination {
    position: absolute;
    bottom: 11%;
    text-align: right;
    padding-right: calc(((100vw - 630px) / 2) + 15px);
    z-index: 2;
}
.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--dark-divider-color);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  margin: 0 5px;
}
.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}
.hero-body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 40px;
  justify-content: center;
}
.hero-review-box {
  display: flex;
  align-items: center;
  gap: 20px;
}
.hero-review-images {
  display: flex;
  align-items: center;
}
.hero-review-image {
  display: inline-block;
  margin-left: -12px;
}
.hero-review-image:first-child {
  margin: 0;
}
.hero-review-image figure {
  display: block;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.hero-review-image img {
  width: 100%;
  border-radius: 50%;
}
.hero-review-content h3 {
  font-size: 20px;
  color: var(--white-color);
  margin-bottom: 5px;
}
.hero-review-content p {
  color: var(--white-color);
  opacity: 80%;
  text-transform: capitalize;
  margin: 0;
}
/************************************/
/*** 05. Our Scrolling Ticker css ***/
/************************************/

.our-feature-content .img-fluid {
    float: left;
    margin-right: 2rem;
    height: 375px;
    border-radius: 10px;
}

.our-scrolling-ticker {
  background: var(--accent-color);
  padding: 20px 0;
}
.scrolling-ticker-box {
  --gap: 20px;
  position: relative;
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  align-items: center;
}
.scrolling-content {
  flex-shrink: 0;
  display: flex;
  gap: var(--gap);
  min-width: 100%;
  animation: scroll 60s linear infinite;
}
@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.scrolling-content span {
  font-family: var(--accent-font);
  display: flex;
  align-items: center;
  font-size: 50px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1em;
  color: var(--white-color);
}
.scrolling-content span img {
  width: 26px;
  margin-right: 20px;
}
/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/
.about-us {
  padding: 40px 0;
}
.about-images {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.about-img-1, .about-img-2 {
  width: calc(50% - 15px);
}
.about-img-1 figure, .about-img-2 figure {
  display: block;
  border-radius: 999px;
}
.about-img-1 img, .about-img-2 img {
  width: 100%;
  aspect-ratio: 1 / 1.9;
  object-fit: cover;
  border-radius: 999px;
}
.about-img-2 {
  margin-top: 70px;
}
.years-experience-box {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 160px;
  height: 160px;
  align-content: center;
  text-align: center;
  background: var(--accent-color);
  border: 10px solid var(--white-color);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.years-experience-box::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.about-images:hover .years-experience-box::before {
  transform: scale(1);
}
.years-experience-box h2, .years-experience-box p {
  position: relative;
  z-index: 1;
}
.years-experience-box h2 {
  font-size: 46px;
  font-weight: 700;
  color: var(--white-color);
  margin-bottom: 2px;
}
.years-experience-box p {
  line-height: normal;
  color: var(--white-color);
  margin-bottom: 0;
}
.about-us-content {
    margin-left: 0px;
    text-align: center;
}
.about-us-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.about-body-item {
  display: flex;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  padding: 20px;
  min-height: 180px;
}
.about-body-item .icon-box {
  position: relative;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
.about-body-item .icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.about-body-item:hover .icon-box::before {
  transform: scale(1);
}
.about-body-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 18px;
  z-index: 1;
}
.about-body-item-title {
  position: relative;
  width: calc(100% - 70px);
  z-index: 1;
}
.about-body-item-title h3 {
  font-size: 14px;
  text-transform: capitalize;
  line-height: 22px;
  font-family: var(--default-font);
  font-weight: 500;
}
.about-us-footer {
  margin-top: 40px;
}
.about-us-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 50px;
  margin-top: 40px;
}
.about-author-box {
  display: flex;
  align-items: center;
}
.about-author-box .author-image {
  display: block;
  border-radius: 50%;
}
.about-author-box .author-image figure {
  display: block;
  border-radius: 50%;
}
.about-author-box .author-image img {
  width: 100%;
  max-width: 60px;
  border-radius: 50%;
}
.about-author-box .author-info h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.about-author-box .author-info p {
  margin-bottom: 0;
}
/************************************/
/*** 	  07. Our Services css	  ***/
/************************************/
.our-services {
  background: #f5f5f5;
  /* background-position: bottom -40px left -60px; */
  background-size: auto;
  padding: 40px 0;
}
.service-item {
  position: relative;
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 500px 500px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.service-item.active::before, .service-item:hover::before {
  height: 100%;
  border-radius: 0;
}
.service-item .icon-box {
  position: relative;
  height: 70px;
  width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-color);
  border-radius: 50%;
  margin-bottom: 60px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.service-item.active .icon-box, .service-item:hover .icon-box {
  background-color: var(--secondary-color);
}
.service-item .icon-box img {
  width: 100%;
  max-width: 40px;
  transition: all 0.5s ease-in-out;
}
.service-item.active .icon-box img, .service-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}
.service-item-content {
  position: relative;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.service-item.active .service-item-content, .service-item:hover .service-item-content {
  border-bottom-color: var(--dark-divider-color);
}
.service-item-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: all 0.3s ease-in-out;
}
.service-item-content h3 a {
  color: inherit;
}
.service-item-content p {
  margin-bottom: 0;
  transition: all 0.3s ease-in-out;
}
.service-readmore-btn {
  position: relative;
  z-index: 1;
}
.service-item.active .service-item-content h3, .service-item:hover .service-item-content h3, .service-item.active .service-item-content p, .service-item:hover .service-item-content p, .service-item.active .service-readmore-btn .readmore-btn, .service-item:hover .service-readmore-btn .readmore-btn {
  color: var(--white-color);
}
.service-item.active .readmore-btn::before, .service-item:hover .readmore-btn::before {
  filter: brightness(0) invert(1);
}
.service-pagination {
  text-align: center;
  margin-top: 20px;
}
.service-pagination .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  background: var(--divider-color);
  opacity: 1;
  margin: 0 2px;
  border-radius: 100px;
  transition: all 0.3s ease-in-out;
}
.service-pagination .swiper-pagination-bullet-active {
  width: 24px;
  background-color: var(--accent-secondary-color);
}


.podcast .project-image figure::before {
  background: none!important;
  }
  .podcast .project-content h3 {
    font-size: 16px;
    color: #1c1b1b;
    min-height: 60px;
    padding: 5px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .podcast .project-body {
    position: relative;
    left: 0!important;
    bottom: 0px;
    right: 0!important;
    transform: translateY(0px);
    transition: all 0.4s ease-in-out;
    z-index: 1;
    background-color: #fff;
    padding: 0px 5px;
}
  .podcast .project-body audio{
  width: 100%!important;
  max-height: 40px;
  }
  .podcast .project-item {
    padding-bottom: 10px;
}


.ul-list {
  margin-top: 1rem;
}
.ul-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ul-list ul li {
  background-image: url('../images/arrow-accent-secondary.svg');
  background-repeat: no-repeat;
  background-position: left top 1px;
  background-size: 20px auto;
  line-height: 1.5em;
  padding-left: 30px;
  font-size: 15px;
  color: #333;
  margin-top: 10px;
  margin-bottom: 0;
  color: #333;
}
.ul-list ul li:last-child {
  margin-bottom: 0;
}




/************************************/
/*** 	 08. Why Choose Us css	  ***/
/************************************/
.why-choose-us {
  padding: 40px 0;
}
.why-choose-list {
  background: var(--secondary-color);
  border-radius: 20px;
  padding: 30px;
}
.why-choose-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.why-choose-list ul li {
  background-image: url('../images/arrow-accent-secondary.svg');
  background-repeat: no-repeat;
  background-position: left top 1px;
  background-size: 20px auto;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 10px;
  font-size: 15px;
  color: #333;
  font-weight: 600;
}
.why-choose-list ul li:last-child {
  margin-bottom: 0;
}

.why-choose-list ul li a {
    background-color: #f9900a;
    color: #fff;
    padding: 1px 6px;
    display: inline-block;
    font-size: 12px;
    border-radius: 5px;
}
.why-choose-list ul li a:hover {
    background-color: #ca770b;
    color: #fff;
}
.why-choose-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.why-choose-images {
  display: block;
}
.why-choose-image-box-1 {
  width: calc(48% - 15px);
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.why-choose-image-box-2 {
  margin-top: 0px;
}
.why-choose-image {
  width: 100%;
  margin: auto;
  float: right;
}
.why-choose-image figure {
  display: block;
  border-radius: 10px;
}
.why-choose-image img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.why-choose-image.why-img-1 {
  aspect-ratio: 1 / 1.065;
}
.why-choose-image.why-img-2 img {
  aspect-ratio: 1 / 0.78;
}


#button {
  display: inline-block;
  background-color: rgb(103 103 103 / 54%);
  width: 40px;
  height: 40px;
  text-align: center;
  border-radius: 4px;
  position: fixed;
  bottom: 80px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#button::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.2em;
  line-height: 43px;
  color: #fff;
}
#button:hover {
  cursor: pointer;
  background-color: #333;
}
#button:active {
  background-color: #555;
}
#button.show {
  opacity: 1;
  visibility: visible;
}




.rts-judges{
  padding: 40px 0;
}

.rts-content {
  background: #084758 url('../img/rts-orphans.jpg') no-repeat center right;
  padding: 3rem 2rem;
  display: flex;
  min-height: 250px;
}
.rts-content .section-title{
  margin: 0;
}
.rts-content .section-title h2 {
  color: #fff;
  font-size: 30px;
}
.rts-content .section-title p {
  color: #fff;
  padding-right: 8em;
  line-height: normal;
  margin-top: 10px;
  font-size: 15px;
}

.rts-content .section-title a {
  color: #fff;
  display: block;
  padding-top: 1rem;
  font-size: 14px;
}
.rts-content .section-title a:hover{
  color: #F9900A;
}
/************************************/
/*** 	 09. Our Projects css	  ***/
/************************************/
.our-projects {
  padding: 40px 0;
}
.project-item {
  position: relative;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  border: 1px solid #d3d3d3;
  border-radius: 5px;
  overflow: hidden;
}
 
.project-image a, .project-image figure {
  display: block;
  cursor: none;
}
/* .project-image figure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(3, 34, 27, 0) 45.62%, rgba(3, 34, 27, 0.8) 76.07%);
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
  z-index: 1;
} */
.project-image img {
  width: 100%;
  aspect-ratio: 1 / 1.24;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.project-item:hover .project-image img {
  transform: scale(1.1);
}
.project-body {
  position: absolute;
  left: 0px;
  bottom: 20px;
  right: 0px;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.4s ease-in-out;
  z-index: 1;
  background-color: rgb(28 68 53 / 92%);
}
.project-item:hover .project-body {

}
.project-content h3 {
  margin-bottom: 0px;
  font-family: var(--default-font);
  line-height: normal;
}
.project-content h3 a {
    color: var(--white-color);
    font-size: 12px;
    line-height: normal;
    display: block;
    padding: 10px 5px;
    text-transform: uppercase;
}
.project-body p {
  color: var(--white-color);
  opacity: 80%;
  margin-bottom: 0;
  line-height: normal;
  font-size: 14px;
  font-weight: 300;
}
.project-readmore-btn {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease-in-out;
}
.project-item:hover .project-readmore-btn {
  margin-top: 20px;
  opacity: 1;
  visibility: visible;
}
.project-readmore-btn .readmore-btn:hover {
  color: var(--white-color);
}
.project-readmore-btn .readmore-btn:hover::before {
  filter: brightness(0) invert(1);
}
.section-footer-text {
  margin-top: 30px;
  text-align: center;
}
.section-footer-text p {
  margin-bottom: 0;
}
.dark-section .section-footer-text p {
  color: var(--white-color);
}
.section-footer-text span {
  font-family: var(--accent-font);
  font-weight: 600;
  background: var(--accent-secondary-color);
  padding: 3px 10px;
  border-radius: 100px;
  margin-right: 10px;
}
.section-footer-text p a {
  font-weight: 700;
  text-transform: capitalize;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--accent-secondary-color);
  transition: all 0.3s ease-in-out;
}
.section-footer-text p a:hover {
  color: var(--accent-color);
}

.box {
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 20px 20px;
  background: #f5f5f5;
  border: 1px solid #ebebeb;
  margin-top: 0px;
  width: 350px;
}

.profile-circle {
  width: 320px;
  border-radius: 10px;
  /* box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1; */
  /* border-radius: 50%; */
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #cfa56a; */
  /* overflow: hidden; */
  margin-top: -403px;
  position: relative;
  z-index: -1;
}



.profile-circle img {

  width: 100%;



}



.profile-info {

  width: 100%;

  margin-top: 1.5rem;

  line-height: 18px;

}



.profile-info h4 {

  font-size: 20px;

  font-weight: 700;

}



.profile-info p {

  color: #000000;

  font-size: 14px;

}



.social-icon {

  width: 70%;

  display: flex;

  justify-content: space-between;

}



.fb,

.insta,

.twitt,

.uTube {

  height: 40px;

  width: 40px;

  border-radius: 50%;

  box-shadow: -3px -3px 7px #ffffff, 3px 3px 5px #ceced1;

  cursor: pointer;

}


.extra-stats {
  text-align: left;
  width: 100%;
  padding: 12px 0px;
  display: inline-block;
  padding-bottom: 0px;
  margin: 0px;
}

.extra-stats>li {

  display: block;

  font-size: 14px;

  color: #000;

  line-height: normal;

  border-bottom: 1px dotted #bbb;

  padding: 13px 0px;

}



.extra-stats>li:last-child {

  border-bottom: 0px;

}



.extra-stats>li>b {

  width: 30%;

  display: inline-block;

  vertical-align: top;

  font-weight: 500;

}



.extra-stats>li>span {

  width: 68%;

  display: inline-block;

  line-height: normal;

  font-weight: 700;

}



.fb,

.insta,

.uTube,

.twitt {

  display: flex;

  justify-content: center;

  align-items: center;

}



.fb:hover,

.insta:hover,

.uTube:hover,

.twitt:hover {

  height: 40px;

  width: 40px;

  border-radius: 50%;

  box-shadow: inset -2px -2px 3px #ffffff, inset 2px 2px 3px #ceced1;

}







/************************************/
/*** 	10. Our Environment css	  ***/
/************************************/
.our-environment {
  padding: 40px 0; 
}
.our-environment-images {
  display: flex;
  align-items: center;
  margin-right: 10px;
}
.environment-img-1, .environment-img-2 {
    border-radius: 10px;
    float: left;
    width: 160px;
    overflow: hidden;
    height: 160px;
}
.environment-img-1 figure, .environment-img-2 figure {

}
.environment-img-1 figure img, .environment-img-2 figure img {

}
.environment-img-1 figure img {

}
.environment-img-2 {

}
.environment-img-2 figure {
 
}
.environment-img-2 figure img {

}
.experience-circle {
  position: relative;
  display: inline-block;
  border: 4px solid var(--white-color);
  border-radius: 50%;
  margin-left: 40px;
  margin-top: -80px;
  z-index: 1;
}
.experience-circle img {
  width: 100%;
  max-width: 180px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}
@keyframes infiniterotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.environment-body {
  border-bottom: 1px solid #1F7C95;
  margin-bottom: 1rem;
}
.environment-body:last-child {
  border-bottom: 0;
}
.environment-body-item {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 40px;
  padding-bottom: 40px;
}
.environment-body-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.environment-body-item .icon-box {
  position: relative;
  height: 34px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: var(--accent-color); */
  /* border-radius: 50%; */
  margin-right: 15px;
}
/* .environment-body-item .icon-box:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--primary-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
} */
.environment-body-item:hover .icon-box::before {
  transform: scale(1);
}
.environment-body-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 20px;
  z-index: 1;
}
.environment-body-item-content {
  width: calc(100% - 70px);
}
.environment-body-item-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 10px;
}
.environment-body-item-content p {
  font-size: 14px;
  color: #fff;
  opacity: 80%;
  font-weight: 400;
}

.our-book {
  padding: 40px 0px;
}

.our-book-image {
    padding-left: 20px;
    text-align: center;
}
.our-book-image figure {
  display: block;
}
.our-book-image img {
  width: 90%;
  object-fit: cover;
}


.book-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 50px;
  list-style: none;
  margin: 0;
  padding: 10px 0px;
}
.book-list ul li {
  width: calc(32% - 0px);
  line-height: 1.5em;
  color: #000000;
  font-size: 25px;
  font-family: var(--accent-font);
  font-weight: 700;
  border-right: 1px solid rgb(116 113 113 / 35%);
}

.book-list ul li:last-child{
  border-right: 0;
}
.book-list ul li span {
  line-height: normal;
  color: #000000;
  display: block;
  font-size: 13px;
  font-family: var(--default-font);
  font-weight: 300;
}
/************************************/
/*** 	   11. Our Facts css	  ***/
/************************************/





.our-facts {
  position: relative;
  background: url('../img/Book-bg.jpg');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 30px;
}
.our-facts::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(270deg, rgba(3, 34, 27, 0) -31.52%, rgba(3, 34, 27, 0.96) 45.81%);
  width: 100%;
  height: 100%;
  z-index: 0;
}
.our-facts .container {
  position: relative;
  z-index: 1;
}
.our-fact-content {
  height: calc(100% - 100px);
  align-content: center;
  margin: 50px 0;
}

.hero-wrapper{
  height: 90vh;
}
.btn-amazon {
  display: inline-block;
  position: relative;
  top: -19px;
  margin-right: 2rem;
}
.btn-amazon img {
  height: 60px;
}
.fact-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 50px;
  list-style: none;
  margin: 0;
  padding: 10px 0px;
}
.fact-list ul li {
    width: calc(32% - 0px);
    line-height: 1.5em;
    color: var(--white-color);
    font-size: 22px;
    font-family: var(--accent-font);
    font-weight: 600;
    border-right: 1px solid rgb(255 255 255 / 35%);
}

.fact-list ul li:last-child{
  border-right: 0;
}
.fact-list ul li span {
  line-height: normal;
  color: var(--white-color);
  display: block;
  font-size: 13px;
  font-family: var(--default-font);
  font-weight: 300;
}
.fact-counter-list {
    display: flex;
    gap: 10px 60px;
    padding: 15px 0px;
}
.fact-counter-item {
    position: relative;
    width: calc(20% - 0px);
}
.fact-counter-item:after {
  content: '';
  position: absolute;
  top: 0;
  right: -30px;
  bottom: 0;
  background: var(--dark-divider-color);
  width: 1px;
  height: 100%;
}
.fact-counter-item:last-child:after {
  display: none;
}
.fact-counter-item img {
  width: 100%;
  max-width: 50px;
  margin-bottom: 20px;
}
.fact-counter-item h2 {
  font-size: 38px;
  color: var(--white-color);
  margin-bottom: 0px;
}
.fact-counter-item p {
    color: var(--white-color);
    opacity: 90%;
    margin-bottom: 0;
    font-size: 13px;
    font-weight: 200;
    line-height: normal;
    padding-right: 0rem;
}
.our-fact-image {
  padding-left: 20px;
  margin-top: -50px;
  text-align: center;
}
.our-fact-image figure {
  display: block;
}
.our-fact-image img {
  width: 100%;
  object-fit: cover;
}


.btn-more {
  color: #444444;
  border: 1px solid #e7e7e7;
  padding: 5px 10px;
  font-size: 14px;
  border-radius: 5px;
  float: right;
  position: relative;
  top: 7px;
  right: 10px;
  transition: all 0.5s ease-in-out;
}
.btn-more:hover{
  color: #F9900A;
  border: 1px solid #F9900A;
}


/************************************/
/*** 	  12. What We Do css	  ***/
/************************************/
.what-we-do {
  padding: 100px 0;
}
.What-we-do-content {
  position: sticky;
  top: 20px;
  margin-right: 20px;
}
.what-we-do-list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.what-we-do-list ul li {
  background-image: url('../images/arrow-accent-secondary.svg');
  background-repeat: no-repeat;
  background-position: left top 1px;
  background-size: 20px auto;
  line-height: 1.5em;
  padding-left: 30px;
  margin-bottom: 20px;
}
.what-we-do-list ul li:last-child {
  margin-bottom: 0;
}
.what-we-do-btn {
  margin-top: 40px;
}
.what-do-item-list {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.what-we-do-item {
  position: relative;
  width: calc(50% - 15px);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}
.what-we-do-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 500px 500px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.what-we-do-item.active::before, .what-we-do-item:hover::before {
  height: 100%;
  border-radius: 0;
}
.what-we-do-item .icon-box {
  position: relative;
  margin-bottom: 40px;
  z-index: 1;
}
.what-we-do-item .icon-box img {
  width: 100%;
  max-width: 60px;
  transition: all 0.4s ease-in-out;
}
.what-we-do-item.active .icon-box img, .what-we-do-item:hover .icon-box img {
  filter: brightness(0) invert(1);
}
.what-do-item-content h3, .what-do-item-content p {
  position: relative;
  z-index: 1;
}
.what-do-item-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}
.what-do-item-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.what-we-do-item.active .what-do-item-content h3, .what-we-do-item:hover .what-do-item-content h3, .what-we-do-item.active .what-do-item-content p, .what-we-do-item:hover .what-do-item-content p {
  color: var(--white-color);
}
.what-we-do-box .section-footer-text {
  margin-top: 40px;
}
/************************************/
/*** 	 13. How It Work css	  ***/
/************************************/
.how-it-work {
  background: url('../images/section-bg-3.png'), var(--secondary-color);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
  padding: 100px 0 0;
  margin-bottom: 220px;
}
.work-step-item-list {
 
}
.work-step-item {
  background-color: #1F7C95;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 10px;
  overflow: hidden;
}
.work-step-image {
  margin-bottom: 0px;
}
.work-step-image figure {
  display: block;
  height: 170px;
}
.work-step-image img {
  width: 100%;
  aspect-ratio: 1 / 0.746;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.work-step-item:hover .work-step-image img {
  transform: scale(1.1);
}

.orphans-step-image {
  margin-bottom: 0px;
}
.orphans-step-image figure {
  display: block;
  height: 510px;
  border: 1px solid #e5e2e2;
  border-radius: 10px;
}
.orphans-step-image img {
  width: 100%; 
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}


hr {
  margin: 0rem 0;
  margin-bottom: 10px;
  color: inherit;
  border: 0;
  border-top: 1px solid #ccc;
  opacity: .25;
}
.btn-view {
  font-size: 12px;
  line-height: normal;
  color: #ffffff !important;
  float: right;
  position: relative;
  margin-top: -4px;
}
.btn-view:hover{
  color: #f9900a;
}
.work-step-content {
  position: relative;
  display: inline-block;
  width: 100%;
  padding: 1rem 1rem;
}
.work-step-content ul{
  display: flex;
  margin: 0px;
  padding: 0px;
  float: left;
}
.work-step-content ul li {
  font-size: 10px;
  line-height: normal;
  list-style: none;
  padding: 0px 10px;
  margin: 0px;
  border-right: 1px solid #ccc;
  color: #fff;
}

.work-step-content ul li:first-child {
  padding-left: 0px;
}
.work-step-content ul li:last-child {
  border-right: 0
}
.work-step-content h2 {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 90px;
  font-weight: 700;
  line-height: 0.9em;
  color: var(--secondary-color);
  background: var(--divider-color);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-stroke: 2px transparent;
  transition: all 0.4s ease-in-out;
}
.work-step-item:hover .work-step-content h2 {
  color: transparent;
}
.work-step-content h3, .work-step-content p {
  position: relative;
  z-index: 1;
}
.work-step-content h3 {
  font-size: 20px;
  margin-bottom: 20px;
  color: #fff;
}
.work-step-content p {
  margin-bottom: 0;
}
.donate-box {
  display: flex;
  gap: 30px 60px;
  flex-wrap: wrap;
  border-radius: 20px;
  padding: 80px;
  margin-top: 80px;
  margin-bottom: -220px;
}
.donate-box .section-title {
  width: calc(40% - 30px);
  margin-bottom: 0;
}
.donate-form {
  width: calc(60% - 30px);
}
.donate-form .form-control {
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 700;
  background-color: transparent;
  color: var(--white-color);
  border: 1px solid var(--dark-divider-color);
  border-radius: 10px;
  box-shadow: none;
  outline: none;
  padding: 17px 20px;
}
.donate-form .form-control::placeholder {
  color: var(--white-color);
}
.donate-value-box {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}
.donate-form .donate-value {
  width: calc(33.33% - 6.66px);
}
.donate-value-box .donate-value input {
  position: absolute;
  left: -9999px;
}
.donate-value-box .donate-value label {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  line-height: 1.5em;
  background-color: transparent;
  border: 1px solid var(--dark-divider-color);
  color: var(--white-color);
  border-radius: 10px;
  padding: 17px;
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  overflow: hidden;
}
.donate-value-box .donate-value input[type="radio"]:hover + label, .donate-value-box .donate-value input[type="radio"]:focus + label, .donate-value-box .donate-value input[type="radio"]:checked + label {
  background: var(--accent-secondary-color);
  border-color: var(--accent-secondary-color);
  color: var(--white-color);
}
.donate-form .form-group-btn .btn-default.btn-highlighted {
  width: 100%;
  display: block;
  text-align: center;
  padding: 18px;
}
.donate-form .form-group-btn .btn-default.btn-highlighted::before {
  display: none;
}
/************************************/
/*** 	   14. Our FAQs css 	  ***/
/************************************/
.our-faqs {
  padding: 100px 0;
}
.faq-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  display: block;
}
.faq-image figure {
  display: block;
}
.faq-image figure::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgb(3 34 27 / 15%) 66.02%, rgb(3 34 27 / 95%) 100%);
  width: 100%;
  height: 100%;
  z-index: 1;
}
.faq-image img {
  width: 100%;
  object-fit: cover;
}
.client-review-content {
  position: absolute;
  text-align: center;
  bottom: 10px;
  right: 5px;
  left: 5px;
  z-index: 1;
  text-align: center;
}
.client-review-content p {
  font-size: 16px;
  color: var(--white-color);
  font-weight: 600;
  margin-bottom: 0px;
}
.client-review-content ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.client-review-content ul li {
  display: inline-block;
}
.client-review-content ul li i {
  color: var(--accent-secondary-color);
}
.faq-accordion .accordion-item {
  position: relative;
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 10px;
  margin-bottom: 30px;
  padding: 0;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
}
.faq-accordion .accordion-item:last-child {
  margin-bottom: 0;
}
.faq-accordion .accordion-header .accordion-button {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.1em;
  background: transparent;
  padding: 18px 50px 18px 20px;
  color: var(--primary-color);
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-header .accordion-button.collapsed {
  color: var(--primary-color);
  background: transparent;
}
.faq-accordion .accordion-item .accordion-button::after, .faq-accordion .accordion-item .accordion-button.collapsed::after {
  content: '\f054';
  font-family: "FontAwesome";
  position: absolute;
  right: 20px;
  top: 50%;
  bottom: auto;
  transform: translateY(-50%) rotate(90deg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  color: var(--white-color);
  background-color: var(--accent-secondary-color);
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}
.faq-accordion .accordion-item .accordion-button.collapsed::after {
  transform: translateY(-50%) rotate(0);
}
.faq-accordion .accordion-item .accordion-body {
  background: transparent;
  border-top: 1px solid var(--divider-color);
  padding: 18px 50px 18px 20px;
}
.faq-accordion .accordion-item .accordion-body p {
  margin: 0;
}
/************************************/
/*** 	15. Our Testimonial css	  ***/
/************************************/
.our-testimonials {
  background-image: url('../images/testimonials-bg.png');
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 0;
}
.review-box {
  display: flex;
  align-items: center;
  justify-content: end;
}
.review-image {
  border-right: 1px solid var(--dark-divider-color);
  margin-right: 25px;
  padding-right: 25px;
}
.review-image img {
  width: 100%;
  max-width: 150px;
}
.review-content ul {
  list-style: none;
  margin-bottom: 10px;
  padding: 0;
}
.review-content ul li {
  display: inline-block;
}
.review-content ul li i {
  color: var(--accent-secondary-color);
}
.review-content p {
  color: var(--white-color);
  margin-bottom: 0;
}
.testimonial-image figure {
  display: block;
  border-radius: 20px;
}
.testimonial-image img {
  width: 100%;
  aspect-ratio: 1 / 0.79;
  object-fit: cover;
  border-radius: 20px;
}
.testimonial-slider {
  position: relative;
  margin-left: 20px;
}
.testimonial-slider .swiper-wrapper {
  cursor: none;
}
.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 10px;
}
.testimonial-company-logo img {
  width: 100%;
  max-width: 50px;
}
.testimonial-quote img {
  width: 100%;
  max-width: 40px;
}

.testimonial-item {
  background-color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 15px;
  border: 1px solid #e5e2e2;
}
.testimonial-content {
  margin-bottom: 18px;
}
.testimonial-content p {
  font-size: 14px;
  font-weight: 400;
  color: #0a0a0a !important;
  margin: 0;
  line-height: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
}

.available-left-data {
  padding: 12px 0px;
}
.available-left-data span {
  font-size: 26px;
  color: #fff;
  font-weight: 600;
  margin-right: 0px;
  display: block;
}
.available-left-data img {
  height: 40px;
}
.available-box {
  background: #13677E url('../img/available-amazon.jpg') repeat center;
  padding: 2rem 3rem;
  border-radius: 10px;
  margin-top: 2rem;
  text-align: center;
}



.author-image {
  margin-right: 15px;
}
.author-image figure {
  display: block;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  border: 1px solid #ccc;
}
.author-image img {
  width: 100%;
  border-radius: 50%;
}
.author-content h3 {
  font-size: 20px;
  text-transform: capitalize;
  color: #000;
  margin-bottom: 5px;
}
.author-content p {
  font-size: 15px;
  color: #333;
  margin-bottom: 0;
  line-height: normal;
}
.testimonial-pagination {
  position: absolute;
  right: 0;
  display: flex;
  bottom: 0;
  align-items: center;
  justify-content: right;
  z-index: 2;
  display: none !important;
}
.testimonial-pagination .swiper-pagination-bullet {
  height: 8px;
  width: 8px;
  background: var(--dark-divider-color);
  border-radius: 100px;
  opacity: 1;
  margin: 0 3px;
  transition: all 0.4s ease-in-out;
}
.testimonial-pagination .swiper-pagination-bullet-active {
  background: var(--white-color);
  width: 26px;
  border-radius: 100px;
}
.testimonial-company-slider {
  border-top: 1px solid var(--dark-divider-color);
  margin-top: 80px;
  padding-top: 80px;
}
.testimonial-company-slider .company-logo {
  text-align: center;
}
.testimonial-company-slider .company-logo img {
  width: 100%;
  max-width: 175px;
  max-height: 40px;
}
/************************************/
/*** 	  16. Our Blog css  	  ***/
/************************************/
.our-blog {
  padding: 100px 0;
}
.post-item {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}
.post-item:last-child {
  margin-bottom: 0;
}
.post-featured-image {
  width: 47%;
}
.post-item-body {
  width: 53%;
  align-content: center;
  padding: 30px;
}
.post-featured-image a {
  height: 100%;
  display: block;
  overflow: hidden;
  cursor: none;
}
.post-featured-image figure {
  height: 100%;
}
.post-featured-image img {
  height: 100%;
  width: 100%;
  aspect-ratio: 1 / 0.861;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.post-item:hover .post-featured-image img {
  transform: scale(1.1);
}
.post-item-content {
  margin-bottom: 20px;
}
.post-item-content h2 {
  color: var(--primary-color);
  font-size: 22px;
  line-height: 1.3em;
  margin-bottom: 15px;
}
.post-item-content h2 a {
  color: inherit;
}
.post-item-content p:last-child {
  margin: 0;
}
.post-item.highlighted-post-item .post-featured-image, .post-item.highlighted-post-item .post-item-body {
  width: 100%;
}
.post-item.highlighted-post-item .post-featured-image img {
  aspect-ratio: 1 / 0.557;
}
/************************************/
/*** 	 	17. Footer css		  ***/
/************************************/
.main-footer {
  position: relative;
  background-size: cover;
  padding: 60px 0px 0px;
}
.main-footer:after {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #03221B;
  /* opacity: 97%; */
}
.main-footer-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* border-bottom: 1px solid var(--dark-divider-color); */
  margin-bottom: 20px;
  /* padding-bottom: 60px; */
}
.footer-logo {
  
}
.footer-logo img {
  width: 100%;
}
.footer-contact-details {

}
.footer-contact-item {
  display: flex;
  /* align-items: center; */
}
.footer-contact-item .icon-box {
  position: relative;
  width: 35px;
  height: 35px;
  background-color: #084758;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
}
.footer-contact-item .icon-box:before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  height: 100%;
  width: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.footer-contact-item:hover .icon-box::before {
  transform: scale(1);
}
.footer-contact-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 15px;
  z-index: 1;
}
.footer-contact-item-content {
  width: calc(100% - 80px);
  display: flex;
  align-items: center;
  min-height: 54px;
}
.footer-contact-item-content h3 {
  color: var(--white-color);
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 3px;
}
.footer-contact-item-content p {
  color: var(--white-color);
  margin: 0;
}
.footer-contact-item-content p a {
  color: inherit;
  transition: all 0.3s ease-in-out;
}
.footer-contact-item-content p a:hover {
  color: var(--accent-secondary-color);
}
.about-footer {
  padding-right: 60px;
}
.footer-links p {
  color: var(--white-color);
  margin: 0;
  font-size: 13px;
}
.footer-social-links {
  margin-top: 20px;
}
.footer-social-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-social-links ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 5px;
}
.footer-social-links ul li:last-child {
  margin-right: 0;
}
.footer-social-links ul li a {
  background: #084758;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.footer-social-links ul li:hover a {
  background: var(--white-color);
  color: #084758;
}
.footer-social-links ul li a i {
  font-size: 12px;
}
.footer-links h3 {
  color: #8cdff5;
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 30px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  float: left;
    width: 50%;
}
.footer-links ul li {
  color: var(--white-color);
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 15px;
  transition: all 0.3s ease-in-out;
}
.footer-links ul li:last-child {
  margin-bottom: 0;
}
.footer-links ul li:hover {
  color: var(--accent-color);
}
.footer-links ul li a {
  color: inherit;
  display: inline-block;
  font-size: 13px;
}
.newsletter-form {
  padding-left: 50px;
}
.newsletter-form p {
  margin-bottom: 18px;
}
.newsletter-form .form-group {
  display: flex;
}
.newsletter-form .form-group .form-control {
  width: 68%;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4em;
  color: var(--white-color);
  background-color: transparent;
  border: 1px solid var(--dark-divider-color);
  border-right: none;
  border-radius: 10px 0 0 10px;
  outline: none;
  box-shadow: none;
  padding: 12px 20px;
}
.newsletter-form .form-group .form-control::placeholder {
  color: var(--text-color);
}
.newsletter-form .form-group .btn-default.btn-highlighted {
  width: 32%;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 0 10px 10px 0;
  padding: 17px 12px;
  line-height: 1em;
}
.newsletter-form .form-group .btn-default::before {
  display: none;
}
.footer-copyright {
  position: relative;
  border-top: 1px solid rgb(255 255 255 / 13%);
  padding: 20px 0;
  margin-top: 20px;
  z-index: 1;
}
.footer-copyright-text p {
  color: var(--white-color);
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 200;
}
.footer-privacy-policy {
  text-align: right;
}
.footer-privacy-policy ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-privacy-policy ul li {
  position: relative;
  display: inline-block;
  color: var(--white-color);
  text-transform: capitalize;
  line-height: 1.6em;
  margin-right: 30px;
  transition: all 0.3s ease-in-out;
  font-size: 12px;
  font-weight: 200;
}
.footer-privacy-policy ul li a:hover {
  color: var(--accent-color);
}
.footer-privacy-policy ul li:last-child {
  margin-right: 0;
}
.footer-privacy-policy ul li:before {
  content: '/';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -18px;
  color: var(--white-color);
}
.footer-privacy-policy ul li:last-child::before {
  display: none;
}
.footer-privacy-policy ul li a {
  color: inherit;
}
/************************************/
/*** 	 18. About Us Page css	  ***/
/************************************/
.page-header {
    position: relative;
    background: url('../images/page-header-bg.jpg');
    background-repeat: no-repeat;
    background-position: inherit !important;
    background-size: cover;
    padding: 240px 0 0px;
    background-attachment: inherit !important;
}
.page-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
/*  background: linear-gradient(360deg, rgba(3, 34, 27, 0) 74.01%, rgba(3, 34, 27, 0.9) 100%), linear-gradient(270deg, rgba(3, 34, 27, 0) 25.1%, rgba(3, 34, 27, 0.516) 41.43%, rgba(3, 34, 27, 0.86) 58.93%);*/
  width: 100%;
  height: 100%;
}
.page-header-box {
  position: relative;
  text-align: center;
  z-index: 1;
}
.page-header-box h1 {
  display: inline-block;
  font-size: 35px;
  font-weight: 600;
  color: var(--white-color);
  margin-bottom: 10px;
  cursor: none;
  padding-top: 0px;
  line-height: 1.2em;
}

 
.page-header-box ol {
  margin: 0;
  padding: 0;
  justify-content: center;
  margin-bottom: 1rem;
}
.page-header-box ol li.breadcrumb-item {
  font-size: 16px;
  text-transform: capitalize;
  color: var(--white-color);
}
.page-header-box ol li.breadcrumb-item a {
  color: inherit;
}
.page-header-box ol .breadcrumb-item + .breadcrumb-item::before {
  color: var(--white-color);
}
.our-scrolling-ticker.subpages-scrolling-ticker {
  padding: 15px 0;
}
.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-ticker-box {
  --gap: 15px;
}
.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span {
  font-size: 40px;
}
.our-scrolling-ticker.subpages-scrolling-ticker .scrolling-content span img {
  width: 20px;
  margin-right: 15px;
}
.our-approach {
  background: var(--secondary-color) url('../images/section-bg-2.png') no-repeat;
  background-position: bottom left;
  background-size: 290px auto;
  padding: 100px 0;
}
.our-approach-content {
  position: sticky;
  top: 20px;
  margin-right: 20px;
}
.our-approach-nav {
  margin-bottom: 40px;
}
.our-approach-nav .nav-tabs {
  padding: 0;
  margin: 0;
  list-style: none;
  background: var(--white-color);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  border: none;
  overflow: hidden;
}
.our-approach-nav ul li {
  width: 33.33%;
}
.our-approach-nav ul li .nav-link {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--accent-font);
  font-size: 22px;
  font-weight: 600;
  line-height: 1em;
  text-transform: capitalize;
  color: var(--primary-color);
  background: transparent;
  border-radius: 0;
  border: none;
  border-right: 1px solid var(--divider-color);
  padding: 30px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.our-approach-nav ul li .nav-link.active, .our-approach-nav ul li .nav-link:focus, .our-approach-nav ul li .nav-link:hover {
  background: transparent;
  color: var(--white-color);
}
.our-approach-nav ul li:last-child .nav-link {
  border-right: none;
}
.our-approach-nav ul li .nav-link:before {
  content: "";
  position: absolute;
  top: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--accent-secondary-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.our-approach-nav ul li .nav-link.active::before, .our-approach-nav ul li .nav-link:focus::before, .our-approach-nav ul li .nav-link:hover::before {
  top: 0;
}
.our-approach-nav ul li .nav-link span {
  background: var(--accent-secondary-color);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
}
.our-approach-nav ul li .nav-link.active span, .our-approach-nav ul li .nav-link:focus span, .our-approach-nav ul li .nav-link:hover span {
  background: var(--white-color);
}
.our-approach-nav ul li .nav-link span img {
  max-width: 36px;
  transition: all 0.4s ease-in-out;
}
.our-approach-nav ul li .nav-link.active span img, .our-approach-nav ul li .nav-link:focus span img, .our-approach-nav ul li .nav-link:hover span img {
  filter: brightness(0) invert(0);
}
.approach-tab-list-image {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
}
.approach-tab-image, .approach-tab-list {
  width: calc(50% - 15px);
}
.approach-tab-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.approach-tab-list ul li {
  position: relative;
  line-height: 1.5em;
  text-transform: capitalize;
  background: url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position: left center;
  background-size: 20px auto;
  padding-left: 30px;
  margin-bottom: 15px;
}
.approach-tab-list ul li:last-child {
  margin-bottom: 0;
}
.approach-tab-image figure {
  display: block;
  border-radius: 20px;
}
.approach-tab-image img {
  width: 100%;
  aspect-ratio: 1 / 0.556;
  object-fit: cover;
  border-radius: 20px;
}
.our-solutions {
  padding: 100px 0;
}
.our-solution-content {
  margin-right: 15px;
}
.our-solution-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.our-solution-list ul li {
  position: relative;
  background: url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position: left center;
  background-size: 20px auto;
  width: calc(50% - 15px);
  line-height: 1.5em;
  text-transform: capitalize;
  padding-left: 30px;
}
.our-solution-images {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.solution-image-box {
  width: calc(50% - 15px);
}
.solution-support-box {
  position: relative;
  background: var(--accent-color);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 30px;
  overflow: hidden;
}
.solution-support-box::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 500px 500px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.solution-support-box:hover::before {
  height: 100%;
  border-radius: 0;
}
.solution-support-title {
  position: relative;
  margin-bottom: 30px;
  z-index: 1;
}
.solution-support-title h2 {
  font-size: 46px;
  color: var(--white-color);
}
.solution-support-body {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  z-index: 1;
}
.solution-support-body p {
  width: calc(100% - 50px);
  color: var(--white-color);
  margin: 0;
}
.solution-support-body a {
  display: block;
  background: var(--white-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.solution-support-body a img {
  max-width: 20px;
}
.solution-image-2 figure, .solution-image-1 figure {
  display: block;
  border-radius: 20px;
}
.solution-image-2 img, .solution-image-1 img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.solution-image-1 img {
  aspect-ratio: 1 / 0.682;
}
.solution-image-2 img {
  aspect-ratio: 1 / 1.365;
}
.our-team {
  padding: 100px 0 70px;
}
.team-item {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}
.team-image {
  position: relative;
}
.team-image a {
  display: block;
  cursor: none;
}
.team-image img {
  width: 100%;
  aspect-ratio: 1 / 1.093;
  object-fit: cover;
  transition: all 0.4s ease-in-out;
}
.team-item:hover .team-image img {
  transform: scale(1.1);
}
.team-social-icon {
  position: absolute;
  right: 30px;
  bottom: 0;
  left: 30px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.team-item:hover .team-social-icon {
  bottom: 30px;
  opacity: 1;
  visibility: visible;
}
.team-social-icon ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}
.team-social-icon ul li a {
  width: 40px;
  height: 40px;
  color: var(--white-color);
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
.team-social-icon ul li a:hover {
  background: var(--accent-secondary-color);
}
.team-social-icon ul li a i {
  color: inherit;
  font-size: 18px;
}
.team-content {
  position: relative;
  text-align: center;
  padding: 20px;
  overflow: hidden;
}
.team-content::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.team-item:hover .team-content::before {
  height: 100%;
}
.team-content h2 {
  position: relative;
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.team-content h2 a {
  color: inherit;
}
.team-content p {
  position: relative;
  text-transform: capitalize;
  margin: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}
.team-item:hover .team-content p, .team-item:hover .team-content h2 {
  color: var(--white-color);
}



.rightbox {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  padding: 5px 20px;
  background: #f5f5f5;
  border: 1px solid #ebebeb;
  width: 100%;
  margin-top: 1rem;
  transition: .5s;
  position: relative;
  z-index: 1;
}

.rightbox > img{

  width: 100%;

  transition: .5s;

}

.rightbox:hover img{

  transform: scale(1.15);

}






.our-feature {
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 100% auto;
  padding: 40px 0;
}
.feature-item-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.feature-item {
  width: calc(50% - 15px);
}
.feature-item .icon-box {
  position: relative;
  width: 70px;
  height: 70px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
}
.feature-item .icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 50%;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.feature-item:hover .icon-box::before {
  transform: scale(1);
}
.feature-item .icon-box img {
  position: relative;
  width: 100%;
  max-width: 40px;
  z-index: 1;
}
.feature-item-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 15px;
}
.feature-item-content p {
  margin: 0;
}
.feature-list {
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}
.feature-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.feature-list ul li {
  background: url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position: left center;
  background-size: 20px auto;
  width: calc(50% - 15px);
  line-height: 1.5em;
  text-transform: capitalize;
  padding-left: 30px;
}
.feature-images {
  position: relative;
  display: flex;
  margin-left: 15px;
}
.feature-images {
  position: relative;
  display: flex;
  margin-left: 15px;
  bottom: 0px;
}
.feature-image-1 {
  position: relative;
  width: 100%;
  max-width: 330px;
  margin-right: -137px;
  z-index: 1;
}
.feature-image-2 {
  width: 100%;
  padding-top: 100px;
}
.feature-image-1 figure, .feature-image-2 figure {
  display: block;
  width: 100%;
  border-radius: 20px;
}
.feature-image-1 img, .feature-image-2 img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.feature-image-1 img {
  aspect-ratio: 1 / 1.02;
}
.feature-image-2 img {
  aspect-ratio: 1 / 1.169;
}
.feature-experience-circle {
  position: absolute;
  left: 25px;
  bottom: 50px;
}
.feature-experience-circle img {
  max-width: 140px;
  border-radius: 50%;
  animation: infiniterotate 20s infinite linear;
}
/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/
.page-services {
  padding: 100px 0;
}
.page-services .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.page-services .service-item {
  width: calc(25% - 22.5px);
}
/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/
.page-service-single {
  padding: 30px 0;
}
.page-single-sidebar {
  position: sticky;
  top: 30px;
  margin-right: 20px;
}
.page-catagery-list {
  background-color: var(--secondary-color);
  border-radius: 20px;
  margin-bottom: 60px;
  overflow: hidden;
}
.page-catagery-list h3 {
  font-size: 22px;
  text-transform: capitalize;
  border-bottom: 1px solid var(--divider-color);
  padding: 30px;
}
.page-catagery-list ul {
  list-style: none;
  margin: 0;
  padding: 30px;
}
.page-catagery-list ul li {
  margin-bottom: 20px;
}
.page-catagery-list ul li:last-child {
  margin: 0;
}
.page-catagery-list ul li a {
  position: relative;
  display: block;
  line-height: 1.5em;
  text-transform: capitalize;
  color: var(--text-color);
  background-color: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 12px;
  padding: 12px 50px 12px 20px;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
  z-index: 1;
}
.page-catagery-list ul li:hover a {
  color: var(--white-color);
}
.page-catagery-list ul li a::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translate(0px, -50%);
  background: url('../images/arrow-text.svg');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 20px;
  height: 20px;
  transition: all 0.3s ease-in-out;
}
.page-catagery-list ul li a:hover::before {
  filter: brightness(0) invert(1);
}
.page-catagery-list ul li a::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--accent-color);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.page-catagery-list ul li:hover a::after {
  top: 0;
  height: 100%;
}
.sidebar-cta-box {
  position: relative;
  background: url('../images/sidebar-cta-bg.jpg') no-repeat;
  background-position: center center;
  background-size: cover;
  text-align: center;
  border-radius: 20px;
  padding: 65px 50px;
  overflow: hidden;
}
.sidebar-cta-box:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--primary-color);
  opacity: 80%;
  width: 100%;
  height: 100%;
}
.sidebar-cta-content, .sidebar-cta-contact {
  position: relative;
  z-index: 1;
}
.sidebar-cta-content {
  margin-bottom: 30px;
}
.sidebar-cta-content img {
  width: 100%;
  max-width: 176px;
  margin-bottom: 40px;
}
.sidebar-cta-content h3 {
  font-size: 22px;
  color: var(--white-color);
}
.sidebar-cta-contact ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.sidebar-cta-contact ul li {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}
.sidebar-cta-contact ul li:last-child {
  margin-bottom: 0;
}
.sidebar-cta-contact ul li a {
  position: relative;
  color: var(--white-color);
  line-height: normal;
  border: 1px solid var(--dark-divider-color);
  border-radius: 10px;
  padding: 9px 24px;
  overflow: hidden;
}
.sidebar-cta-contact ul li a::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -15%;
  right: 0;
  width: 0;
  height: 106%;
  background: var(--accent-color);
  transform: skew(45deg);
  transition: all 0.4s ease-in-out;
  z-index: -1;
}
.sidebar-cta-contact ul li a:hover::before {
  width: 100%;
  transform: skew(0deg);
  left: 0;
}
.page-single-image {
  margin-bottom: 40px;
}
.page-single-image figure {
  display: block;
  border-radius: 20px;
}
.page-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.574;
  object-fit: cover;
  border-radius: 20px;
}
.service-entry {
  margin-bottom: 60px;
}
.service-entry p {
  margin-bottom: 20px;
}
.service-entry p:last-child {
  margin-bottom: 0;
}
.service-entry h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}
.service-entry ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.service-entry ul li {
  line-height: 1.5em;
  background-image: url('../images/arrow-accent-secondary.svg');
  background-repeat: no-repeat;
  background-position: left top 1px;
  background-size: 20px auto;
  padding-left: 30px;
  margin-bottom: 15px;
}
.service-entry ul li:last-child {
  margin-bottom: 0;
}
.service-solutions-box, .service-driving-box {
  margin-top: 60px;
}
.service-solutions-box ul {
  margin: 30px 0;
}
.service-solution-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.solution-step-item {
  position: relative;
  width: calc(50% - 15px);
  background-color: var(--secondary-color);
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  padding: 30px;
  overflow: hidden;
}
.solution-step-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary-color);
  border-radius: 500px 500px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.solution-step-item:hover::before {
  height: 100%;
  border-radius: 0;
}
.solution-item-header, .solution-item-content {
  position: relative;
  z-index: 1;
}
.solution-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.solution-step-item .icon-box {
  height: 70px;
  width: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--accent-color);
  border-radius: 50%;
  transition: all 0.4s ease-in-out;
}
.solution-step-item:hover .icon-box {
  background-color: var(--white-color);
}
.solution-step-item .icon-box img {
  width: 100%;
  max-width: 40px;
  transition: all 0.4s ease-in-out;
}
.solution-step-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}
.solution-step-no h2 {
  font-size: 46px;
  font-weight: 700;
  opacity: 5%;
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.solution-step-item:hover .solution-step-no h2 {
  color: var(--white-color);
}
.solution-item-content h3 {
  font-size: 22px;
  margin-bottom: 15px;
  transition: all 0.4s ease-in-out;
}
.solution-item-content p {
  margin-bottom: 0;
  transition: all 0.4s ease-in-out;
}
.solution-step-item:hover .solution-item-content h3, .solution-step-item:hover .solution-item-content p {
  color: var(--white-color);
}
.service-driving-box {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}
.service-driving-image-box, .service-driving-item-list {
  width: calc(50% - 15px);
}
.service-driving-image-box figure {
  display: block;
  border-radius: 20px;
  margin-top: 40px;
}
.service-driving-image-box figure img {
  width: 100%;
  aspect-ratio: 1 / 0.683;
  object-fit: cover;
  border-radius: 20px;
}
.service-driving-item-list .environment-body-item {
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.service-driving-item-list .environment-body-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}
/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/
.page-blog {
  padding: 100px 0;
}
.page-blog .post-item {
  display: block;
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.page-blog .post-item .post-featured-image, .page-blog .post-item .post-item-body {
  width: 100%;
}
.page-blog .post-item .post-featured-image img {
  aspect-ratio: 1 / 0.673;
}
.page-pagination {
  margin-top: 30px;
  text-align: center;
}
.page-pagination ul {
  justify-content: center;
  padding: 0;
  margin: 0;
}
.page-pagination ul li a, .page-pagination ul li span {
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  font-weight: 700;
  line-height: 1em;
  transition: all 0.3s ease-in-out;
}
.page-pagination ul li.active a, .page-pagination ul li a:hover {
  background: var(--accent-color);
}
/************************************/
/*** 	 22. Blog Single css	  ***/
/************************************/
.page-single-post {
  padding: 100px 0;
}
.post-single-meta ol li {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 15px;
}
.post-single-meta ol li:last-child {
  margin-right: 0;
}
.post-single-meta ol li i {
  font-size: 18px;
  color: var(--white-color);
  margin-right: 5px;
}
.post-image {
  position: relative;
  margin-bottom: 30px;
}
.post-image figure {
  display: block;
  border-radius: 20px;
  overflow: hidden;
}
.post-image img {
  width: 100%;
  aspect-ratio: 1 / 0.50;
  object-fit: cover;
  border-radius: 20px;
}
.post-content {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.post-entry {
  border-bottom: 1px solid var(--divider-color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.post-entry:after {
  content: '';
  display: block;
  clear: both;
}
.post-entry a {
  color: var(--accent-color);
}
.post-entry h1, .post-entry h2, .post-entry h3, .post-entry h4, .post-entry h5, .post-entry h6 {
  font-weight: 700;
  line-height: 1.1em;
  margin: 0 0 0.435em;
}
.post-entry h1 {
  font-size: 75px;
}
.post-entry h2 {
  font-size: 46px;
}
.post-entry h3 {
  font-size: 40px;
}
.post-entry h4 {
  font-size: 30px;
}
.post-entry h5 {
  font-size: 24px;
}
.post-entry h6 {
  font-size: 20px;
}
.post-entry p {
  margin-bottom: 20px;
}
.post-entry p:last-child {
  margin-bottom: 0;
}
.post-entry p strong {
  color: var(--primary-color);
  font-size: 18px;
  font-weight: 600;
}
.post-entry ol {
  margin: 0 0 30px;
}
.post-entry ul {
  padding: 0;
  margin: 20px 0 20px;
  padding-left: 20px;
}
.post-entry ol li, .post-entry ul li {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
  color: var(--text-color);
  margin-bottom: 15px;
}
.post-entry ul li:last-child {
  margin-bottom: 0;
}
.post-entry ul ul, .post-entry ul ol, .post-entry ol ol, .post-entry ol ul {
  margin-top: 20px;
  margin-bottom: 0;
}
.post-entry ul ul li:last-child, .post-entry ul ol li:last-child, .post-entry ol ol li:last-child, .post-entry ol ul li:last-child {
  margin-bottom: 0;
}
.post-entry blockquote {
  background: url('../images/icon-blockquote.svg'), var(--primary-color);
  background-repeat: no-repeat;
  background-position: 30px 30px;
  background-size: 45px;
  border-radius: 12px;
  padding: 30px 30px 30px 90px;
  margin-bottom: 30px;
}
.post-entry blockquote p {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.5em;
  color: var(--white-color);
}
.post-entry blockquote p:last-child {
  margin-bottom: 0;
}
.tag-links {
  font-size: 22px;
  font-weight: 600;
  text-transform: capitalize;
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.post-tags .tag-links a {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: 1em;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 10px;
  padding: 12px 20px;
  transition: all 0.3s ease-in-out;
}
.post-tags .tag-links a:hover {
  background: var(--primary-color);
}
.post-social-sharing {
  text-align: right;
}
.post-social-sharing ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-social-sharing ul li {
  display: inline-block;
  margin-right: 10px;
}
.post-social-sharing ul li:last-child {
  margin-right: 0;
}
.post-social-sharing ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-color);
  color: var(--white-color);
  border-radius: 10px;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease-in-out;
}
.post-social-sharing ul li:hover a {
  background: var(--primary-color);
}
.post-social-sharing ul li a i {
  font-size: 18px;
  color: inherit;
}
/************************************/
/*** 	 23. Projects Page css	  ***/
/************************************/
.page-projects {
  padding: 100px 0 70px;
}
/************************************/
/*** 	 24. Project Single css	  ***/
/************************************/
.page-project-single {
  padding: 100px 0;
}
.project-category-list {
  background: var(--secondary-color);
  border-radius: 20px;
  margin-bottom: 60px;
  overflow: hidden;
}
.project-category-list h3 {
  font-size: 22px;
  color: var(--white-color);
  text-transform: capitalize;
  background-color: var(--primary-color);
  padding: 30px;
}
.project-category-list ul {
  margin: 0;
  padding: 30px;
  list-style: none;
}
.project-category-list ul li {
  font-size: 20px;
  font-weight: 600;
  text-transform: capitalize;
  line-height: normal;
  color: var(--primary-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.project-category-list ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.project-category-list ul li span {
  width: 65%;
  font-size: 16px;
  font-weight: 400;
  color: var(--text-color);
}
.project-entry {
  margin-bottom: 60px;
}
.project-entry p {
  margin-bottom: 20px;
}
.project-entry p:last-child {
  margin-bottom: 0;
}
.project-entry h2 {
  font-size: 46px;
  font-weight: 700;
  margin-bottom: 20px;
}
.project-entry ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}
.project-entry ul li {
  line-height: 1.5em;
  background-image: url('../images/arrow-accent-secondary.svg');
  background-repeat: no-repeat;
  background-position: left top 1px;
  background-size: 20px auto;
  padding-left: 30px;
  margin-bottom: 15px;
}
.project-entry ul li:last-child {
  margin-bottom: 0;
}
.project-innovation-box, .project-challenge-box {
  margin-top: 60px;
}
.project-innovation-image-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 30px;
  margin-top: 40px;
}
.project-innovation-image, .project-innovation-list {
  width: calc(50% - 15px);
}
.project-innovation-image figure {
  display: block;
  border-radius: 20px;
}
.project-innovation-image img {
  width: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
  border-radius: 20px;
}
.project-challenge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 40px;
}
.project-challenge-list .environment-body-item {
  width: calc(50% - 15px);
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.project-challenge-video-box {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.project-challenge-image, .project-challenge-video {
  width: calc(50% - 15px);
}
.project-challenge-image figure {
  display: block;
  border-radius: 20px;
}
.project-challenge-image img {
  width: 100%;
  aspect-ratio: 1 / 0.881;
  object-fit: cover;
  border-radius: 20px;
}
.challenge-image-video {
  position: relative;
}
.challenge-image-video figure {
  display: block;
  border-radius: 20px;
}
.challenge-image-video img {
  width: 100%;
  aspect-ratio: 1 / 0.634;
  object-fit: cover;
  border-radius: 20px;
}
.challenge-image-video .video-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.video-play-button a {
  height: 85px;
  width: 85px;
  background-color: var(--accent-secondary-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: none;
  transition: all 0.4s ease-in-out;
}
.video-play-button a:hover {
  background-color: var(--primary-color);
}
.video-play-button a:before {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--white-color);
  opacity: 70%;
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
}
.video-play-button a:after {
  content: '';
  position: absolute;
  top: -30%;
  left: -30%;
  width: 160%;
  height: 160%;
  border: 50px solid var(--white-color);
  opacity: 70%;
  border-radius: 50%;
  transform: scale(0.6);
  z-index: -1;
  animation: border-zooming 1.2s infinite linear;
  animation-delay: .3s;
}
@keyframes border-zooming {
  100% {
    transform: scale(1);
    opacity: 0;
  }
}
.video-play-button a i {
  font-size: 30px;
  color: var(--white-color);
  margin-left: 2px;
  transition: all 0.4s ease-in-out;
}
.video-play-button a:hover i {
  color: var(--accent-secondary-color);
}
.project-challenge-video ul {
  margin: 30px 0 0;
}
/************************************/
/*** 	   25. Team Page css	  ***/
/************************************/
.page-team {
  padding: 100px 0 70px;
}
/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/
.page-team-single {
  position: relative;
  padding: 100px 0;
}
.team-about-box, .team-expertise-experience {
  margin-bottom: 80px;
}
.team-about-box, .team-expertise-experience, .team-skills-form {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px 60px;
}
.team-single-image, .team-about-content {
  width: calc(50% - 30px);
}
.team-single-image figure {
  display: block;
  border-radius: 20px;
}
.team-single-image img {
  width: 100%;
  aspect-ratio: 1 / 0.933;
  object-fit: cover;
  border-radius: 20px;
}
.team-contact-info-box {
  background-color: var(--secondary-color);
  border-radius: 20px;
  padding: 30px;
}
.team-contact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.team-contact-box {
  width: calc(50% - 15px);
  display: flex;
  align-items: center;
}
.team-contact-box .icon-box {
  position: relative;
  width: 50px;
  height: 50px;
  background: var(--accent-secondary-color);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  overflow: hidden;
}
.team-contact-box .icon-box::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  left: 0;
  background: var(--primary-color);
  border-radius: 5px;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.team-contact-box:hover .icon-box::before {
  transform: scale(1);
}
.team-contact-box .icon-box img {
  position: relative;
  width: 100%;
  max-width: 30px;
  z-index: 1;
}
.team-contact-content {
  width: calc(100% - 65px);
}
.team-contact-content h3 {
  font-size: 22px;
  text-transform: capitalize;
  margin-bottom: 5px;
}
.team-contact-content p {
  margin: 0;
}
.member-social-list {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--divider-color);
  margin-top: 40px;
  padding-top: 40px;
}
.member-social-list h3 {
  font-size: 22px;
  text-transform: capitalize;
}
.member-social-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.member-social-list ul li {
  display: inline-block;
  border-radius: 50%;
  margin-right: 10px;
}
.member-social-list ul li:last-child {
  margin-right: 0;
}
.member-social-list ul li a {
  background-color: var(--accent-secondary-color);
  color: var(--white-color);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease-in-out;
}
.member-social-list ul li:hover a {
  background-color: var(--accent-color);
}
.member-social-list ul li a i {
  color: inherit;
  font-size: 18px;
}
.team-expertise-experience {
  align-items: start;
}
.team-expertise-box, .team-experience-box {
  width: calc(50% - 30px);
}
.team-expertise-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.team-expertise-list ul li {
  position: relative;
  line-height: 1.5em;
  text-transform: capitalize;
  background: url('../images/arrow-accent-secondary.svg') no-repeat;
  background-position: left top 1px;
  background-size: 20px auto;
  padding-left: 30px;
  margin-bottom: 15px;
}
.team-expertise-list ul li:last-child {
  margin-bottom: 0;
}
.team-experience-info-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.team-experience-info-item:last-child {
  margin-bottom: 0;
}
.team-experience-content {
  width: calc(70% - 10px);
}
.team-experience-content h3 {
  font-size: 22px;
  margin-bottom: 5px;
}
.team-experience-content p, .team-experience-year p {
  margin-bottom: 0;
}
.team-experience-year {
  width: calc(30% - 10px);
  text-align: end;
}
.team-skills-box, .team-member-form {
  width: calc(50% - 30px);
}
.skills-progress-bar {
  margin-bottom: 30px;
}
.skills-progress-bar:last-child {
  margin-bottom: 0px;
}
.skills-progress-bar .skill-data {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.skills-progress-bar .skillbar .skill-progress {
  position: relative;
  width: 100%;
  height: 16px;
  background: var(--secondary-color);
  border-radius: 100px;
  overflow: hidden;
}
.skills-progress-bar .skillbar .skill-progress .count-bar {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  background: var(--accent-secondary-color);
  border-radius: 100px;
}
.team-member-form {
  border-radius: 20px;
}
/************************************/
/***   27. Testimonials Page css  ***/
/************************************/
.page-testimonials {
  padding: 40px 0 0px;
}
.page-testimonials .testimonial-item {
  border: 1px solid var(--divider-color);
  border-radius: 20px;
  height: calc(100% - 30px);
  margin-bottom: 30px;
  padding: 30px;
}
.page-testimonials .testimonial-item .testimonial-header {
  margin-bottom: 20px;
}
.page-testimonials .testimonial-item .testimonial-header .review-content ul {
  margin: 0;
}
.page-testimonials .testimonial-item .testimonial-content {
  border-color: var(--divider-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.page-testimonials .testimonial-item .author-content p, .page-testimonials .testimonial-item .testimonial-content p {
  color: var(--text-color);
}
.page-testimonials .testimonial-item .author-content h3 {
  color: var(--primary-color);
}
/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/
.page-gallery {
  padding: 0px 0 0px;
}
.page-gallery-box .photo-gallery {
  height: calc(100% - 30px);
  margin-bottom: 30px;
}
.page-gallery-box .photo-gallery h3 {
    font-size: 14px;
    padding-top: 1rem;
    position: absolute;
    left: 0px;
    bottom: 20px;
    right: 0px;
    text-align: center;
    transform: translateY(20px);
    transition: all 0.4s ease-in-out;
    z-index: 1;
    background-color: rgb(28 68 53 / 92%);
    color: #fff;
    font-family: var(--default-font);
    padding: 11px;
    text-transform: uppercase;
}

.page-gallery-box .photo-gallery h3 b {
    font-size: 12px;
    font-weight: 300;
    display: block;
    text-transform: none;
    margin-top: 5px;
}
.page-gallery-box .photo-gallery a {
    cursor: none;
    position: relative;
}
.page-gallery-box .photo-gallery figure {
  display: block;
  border-radius: 20px;
}
.page-gallery-box .photo-gallery img {
  width: 100%;
  aspect-ratio: 1 / 0.83;
  object-fit: cover;
  border-radius: 20px;
  transition: all 0.4s ease-in-out;
}
.page-gallery-box .photo-gallery:hover img {
    transform: scale(1.1);
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/
.page-video-gallery {
  padding: 100px 0 70px;
}
.video-gallery-image {
  height: calc(100% - 30px);
  margin-bottom: 30px;
  overflow: hidden;
}
.video-gallery-image a {
  position: relative;
  display: block;
  cursor: none;
}
.video-gallery-image a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  border-radius: 20px;
  opacity: 0%;
  visibility: hidden;
  width: 100%;
  height: 100%;
  z-index: 1;
  transform: scale(0);
  transition: all 0.4s ease-in-out;
}
.video-gallery-image:hover a::before {
  opacity: 40%;
  visibility: visible;
  transform: scale(1);
}
.video-gallery-image a::after {
  content: '\f04b';
  font-family: 'FontAwesome';
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translate(-50%, -50%);
  font-size: 20px;
  background: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  height: 60px;
  width: 60px;
  cursor: none;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease-in-out;
  z-index: 1;
}
.video-gallery-image:hover a::after {
  opacity: 1;
  visibility: visible;
}
.video-gallery-image img {
  width: 100%;
  aspect-ratio: 1 / 0.83;
  object-fit: cover;
  border-radius: 5px;
}
/************************************/
/*** 	   30. FAQs Page css	  ***/
/************************************/
.page-faqs {
  padding: 100px 0;
}
.page-faqs-catagery .page-faq-accordion {
  margin-bottom: 60px;
}
.page-faqs-catagery .page-faq-accordion:last-child {
  margin-bottom: 0px;
}
/************************************/
/*** 	31. Contact Us Page css	  ***/
/************************************/
.contact-info-box {
    padding: 50px 0 50px;
}
.contact-info-item {
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 30px;
  overflow: hidden;
  display: flex;
}
.contact-info-item::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  border-radius: 500px 500px 0 0;
  height: 0;
  width: 100%;
  transition: all 0.4s ease-in-out;
  z-index: 0;
}
.contact-info-item:hover::before {
  height: 100%;
  border-radius: 0;
}
.contact-info-item .icon-box, .contact-info-content {
  position: relative;
  z-index: 1;
  width: 80%;
}
.contact-info-item .icon-box {
  height: 50px;
  width: 50px;
  background-color: var(--accent-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0px;
  transition: all 0.5s ease-in-out;
  margin-right: 20px;
}
.contact-info-item:hover .icon-box {
  background: var(--white-color);
}
.contact-info-item .icon-box img {
  width: 100%;
  max-width: 28px;
  transition: all 0.5s ease-in-out;
}
.contact-info-item:hover .icon-box img {
  filter: brightness(0) invert(0);
}
.contact-info-content h3 {
  font-size: 22px;
  margin-bottom: 10px;
  transition: all 0.4s ease-in-out;
}
.contact-info-content p {
  margin: 0;
  transition: all 0.4s ease-in-out;
  font-size: 14px;
  color: #333;
}
.contact-info-content p a {
  color: inherit;
}
.contact-info-item:hover .contact-info-content h3, .contact-info-item:hover .contact-info-content p {
  color: var(--white-color);
}
.page-contact-us {
  padding: 50px 0 100px;
}
.contact-us-box {
  display: flex;
  flex-wrap: wrap;
  border-radius: 20px;
  overflow: hidden;
}
.contact-us-image, .contact-us-box .contact-form {
  width: 50%;
}
.contact-us-image figure {
  display: block;
  height: 100%;
}
.contact-us-image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1.11;
  object-fit: cover;
}
.contact-us-box .contact-form {
  align-content: center;
}
.contact-form {
    background-color: var(--secondary-color);
    padding: 40px;
    border-radius: 5px;
    display: inline-block;
    position: relative;
    min-height: 100%;
}

.contact-form .form-group {
  margin-bottom: 2rem;
}
.contact-form .form-control {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--text-color);
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 8px;
  padding: 15px 15px;
  box-shadow: none;
  outline: none;
}
.contact-form .form-control::placeholder {
  color: var(--text-color);
}
.google-map .container-fluid {
  padding: 0;
}
.google-map-iframe, .google-map-iframe iframe {
  height: 400px;
  width: 100%;
}
.google-map-iframe iframe {
  filter: grayscale(1);
  transition: all 0.4s ease-in-out;
}
.google-map-iframe iframe:hover {
  filter: grayscale(0);
}
/************************************/
/*** 	 32. Donation Page css	  ***/
/************************************/
.page-donation {
  padding: 100px 0;
}
.donation-box {
  background: var(--white-color);
  border: 1px solid var(--divider-color);
  border-radius: 30px;
  padding: 100px;
}
.donate-form.donate-form-box {
  width: 100%;
}
.donate-form-box .form-control {
  border-color: var(--divider-color);
  color: var(--text-color);
}
.donate-form-box .form-control::placeholder {
  color: var(--text-color);
  font-weight: 400;
}
.donate-form-box .donate-value-box {
  gap: 15px;
  margin-bottom: 80px;
}
.donate-form-box .donate-value {
  width: calc(16.66% - 12.5px);
}
.donate-value-box .donate-value label {
  background: var(--secondary-color);
  color: var(--text-color);
}
.donate-payment-method {
  margin-bottom: 80px;
}
.donar-personal-info {
  background: var(--secondary-color);
  border-radius: 20px;
}
.donate-payment-method .section-title {
  border-bottom: 1px solid var(--divider-color);
  margin-bottom: 30px;
  padding-bottom: 30px;
}
.donate-payment-type {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
}
.donate-payment-type .payment-method {
  display: flex;
  align-items: center;
}
.donate-payment-type .payment-method input {
  height: 24px;
  width: 24px;
}
.payment-method label {
  text-transform: capitalize;
  padding-left: 10px;
}
/************************************/
/*** 	 33. 404 Error Page css	  ***/
/************************************/
.error-page {
  padding: 100px 0;
}
.error-page-image {
  text-align: center;
  margin-bottom: 30px;
}
.error-page-image img {
  width: 100%;
  max-width: 50%;
}
.error-page-content {
  text-align: center;
}
.error-page-content .section-title {
  margin-bottom: 15px;
}

#community-menu li.active a {
  color: #fff;
  background-color: #f9900a;
}


.page-catagery-list ul li.active a::before {
  background: url('../images/arrow-white.svg')!important;
  
}


.project-image img, .video-gallery-image img  {
  aspect-ratio: inherit!important;
  
}

.interviewplay .video-gallery-image {
  max-height: 245px;
}

.page-gallery-box .photo-gallery img {
  aspect-ratio: inherit!important;
  border-radius: 5px!important;
  border: 1px solid #eee!important;
}

.page-gallery-box .photo-gallery figure {
    border-radius: 7px;
max-height: 280px;
    border: 1px solid #ccc;
}
.page-catagery-list {
  background-color: #e9e9e9!important;
  border-radius: 7px!important;
  margin-bottom: 60px;
  overflow: hidden;
}

.page-catagery-list ul li a {
   border-radius: 7px!important;
}

.page-catagery-list ul li {
  margin-bottom: 10px!important;
}

.project-image figure::before {
  background: linear-gradient(180deg, rgba(3, 34, 27, 0) 88%, rgba(3, 34, 27, 0.8) 76.07%)!important;
}
 
.ratio>* {
  position: absolute;
  top: 0;
  left: 0;
  width: 125%;
  height: 100%;
  min-height: 275px!important;
}

.pro-nav-tabs {
  padding-top: 20px;
  border: 0px;
  justify-content: center;
}
.pro-nav-tabs .nav-item {
  margin-right: 5px;
}
.pro-nav-tabs .nav-link {
  padding: 14px 40px;
  color: #fff;
  font-weight: 600;
  background-color: #f9900a;
  margin-bottom: 0px;
  font-size: 16px;
}
.pro-nav-tabs .nav-link:focus, .pro-nav-tabs .nav-link:hover {
  isolation: isolate;
  border-color: transparent;
  background-color: #ffffff;
  color: #000000;
}


.tab-content{
  margin-bottom: 1rem;
}
.tab-content .accordion-button:not(.collapsed) {
  color: #101010 !important;
  background-color: #f5f5f5 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
}

.tab-content .tab-pane{
  border: 0px;
}
.tab-pane .accordion-body {
  padding: var(--bs-accordion-body-padding-y) var(--bs-accordion-body-padding-x);
  padding: 0px;
}

.accordion-button:focus{
  box-shadow: none !important;
  outline: none !important;
  border-color: transparent !important;
}

.payment-grid {
    padding-top: 1rem;
    text-align: center;
    border-top: 1px solid #e3e3e3;
    padding-left: 0rem;
    display: inline-block;
    width: 100%;
    margin-top: 1rem;
    position: relative;
}
.payment-grid p {
    font-size: 16px;
    margin: 0px;
    line-height: normal;
}
.or {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fafafa;
    height: 24px;
    width: 24px;
    line-height: normal;
    /* border-radius: 100px; */
    right: 0px;
    left: 0px;
    margin: auto;
    top: -13px;
    font-size: 15px;
    font-weight: 500;
    /* border: 1px solid #ccc; */
    color: #9f9c9c;
}

.qr-code {
    height: 160px;
    background-color: #fff;
    padding: 9px;
    border: 1px solid #e7e7e7;
    float: left;
    margin-right: 10px;
}

.lang-switcher-li {
    position: absolute;
    right: 10px;
    top: -80px;
    display: inline-flex;
    align-items: center;
    z-index: 1001;
    list-style: none;
}

        .lang-toggle-btn {
            background: rgba(255, 255, 255, 0.15); 
            padding: 10px !important;
            border-radius: 5px; 
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 255, 255, 0.3); 
            text-decoration: none;
            backdrop-filter: blur(8px); 
            box-shadow: 0 4px 15px rgba(0,0,0,0.05);
            cursor: pointer;
        }

        .lang-toggle-btn:hover {
            background: rgba(255, 255, 255, 0.25); 
        }

        .lang-toggle-btn img {
            width: 20px; 
            height: auto;
            filter: brightness(0) invert(1); /* आइकन हमेशा सफेद रहेगा */
            display: block;
        }

        /* Dropdown Menu - Corrected Position */
        .lang-switcher-li .dropdown-menu { 
            min-width: 100px; 
            border-radius: 12px; 
            border: none;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            margin-top: 10px !important;      
            display: none; 
            position: absolute;
            background: #ffffff;
            z-index: 9999;
            right: 0;            
            top: 100%; /* आइकन के ठीक नीचे */
            left: auto;          
            padding: 6px 0;
        }

        .lang-switcher-li .dropdown-menu.show { 
            display: block; 
            animation: fadeIn 0.3s ease;
        }
 @keyframes fadeIn {
            from { opacity: 0; transform: translateY(-5px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .lang-switcher-li .dropdown-item {
            font-size: 14px;
            padding: 8px 20px;
            color: #333;
            font-weight: 500;
        }

        .lang-switcher-li .dropdown-item:hover {
            background-color: #f8f9fa;
        }

        .lang-switcher-li .dropdown-item.active {
            background-color: transparent; 
            color: #e02a2a; 
            font-weight: 700;
        }

       