
/*====================1. Google fonts======================*/
@import url("https://fonts.googleapis.com/css2?family=Kanit:wght@300;400;500;600;700;800;900&amp;family=Roboto:wght@100;300;400;500;700;900&amp;display=swap"); /*====================2. Theme variables======================*/
:root {
  --body-font: "Roboto", sans-serif;
  --heading-font: "Open Sans", sans-serif;
  --body-text-color: #7386a8;
  --theme-color: #0071b9;
  --theme-bg-light: rgba(2, 171, 253, 0.08);
  --theme-color-light: rgba(255, 255, 255, 0.6);
  --color-white: #ffffff;
  --color-dark: #000a24;
  --color-success: #10b981;
  --color-primary: #29b6f6;
  --color-info: #8358ff;
  --color-danger: #000000;
  --color-warning: #ffbb55;
  --color-secondary: #e9ecef;
  --box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  --box-shadow2: 0 3px 24px rgb(0 0 0 / 10%);
  --transition: all 0.5s ease-in-out;
  --transition2: all 0.3s ease-in-out;
  --border-info-color: rgba(117, 127, 149, 0.25);
  --border-white-color: rgba(255, 255, 255, 0.08);
  --footer-bg: #000a24;
  --footer-text-color: #f5faff;
}

/*====================3. General css======================*/
*,
*:before,
*:after {
  box-sizing: inherit;
}

* {
  scroll-behavior: inherit !important;
}

html,
body {
  height: auto;
  width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  box-sizing: border-box;
}

body {
  background: var(--body-bg);
  font-family: var(--body-font);
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: var(--body-text-color);
  line-height: 1.8;
  font-family: "Open Sans", sans-serif;
}

a {
  color: var(--color-dark);
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  text-decoration: none;
}

a:hover {
  color: var(--color-blue);
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-dark);
  margin: 0px;
  font-weight: 600;
  font-family: var(--heading-font);
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin-bottom: 10px;
}

.img,
img {
  max-width: 100%;
  -webkit-transition: all 0.3s ease-out 0s;
  -moz-transition: all 0.3s ease-out 0s;
  -ms-transition: all 0.3s ease-out 0s;
  -o-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: auto;
}

label {
  color: #999;
  cursor: pointer;
  font-weight: 400;
}

*::-moz-selection {
  background: #d6b161;
  color: var(--color-white);
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

::selection {
  background: #555;
  color: var(--color-white);
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

/*===================5. Theme default css======================*/
.ovrflow-hidden {
  overflow: hidden;
}

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

.text-right {
  text-align: right;
}

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

.c-pd {
  padding: 0 7rem;
}

.s-pd {
  padding: 0 12rem;
}

.h-100 {
  height: 100%;
}

.h-100vh {
  height: 100vh;
}

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

/*====================6. Margin & padding======================*/
.pt-0 {
  padding-top: 0px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.py-80 {
  padding: 40px 0;
}

.py-90 {
  padding: 90px 0;
}

.py-100 {
  padding: 40px 0;
}

.py-110 {
  padding: 110px 0;
}

.py-120 {
  padding: 120px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.my-80 {
  margin: 80px 0;
}

.my-90 {
  margin: 90px 0;
}

.my-100 {
  margin: 100px 0;
}

.my-110 {
  margin: 110px 0;
}

.my-120 {
  margin: 120px 0;
}

/*====================8. Nice select css======================*/
.nice-select {
  width: 100%;
  height: 50px;
  line-height: 48px;
  border-radius: 10px;
  background: var(--color-white);
  font-size: 16px;
  color: var(--color-dark);
  border-color: var(--border-info-color) !important;
  outline: none;
}

.nice-select::after {
  width: 8px;
  height: 8px;
  margin-top: -6px;
  right: 15px;
}

.nice-select .list {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: var(--color-white);
  border: 1px solid var(--border-info-color);
  box-shadow: none;
}

.nice-select .option {
  border-radius: 10px;
}

.nice-select .option.focus,
.nice-select .option.selected.focus,
.nice-select .option:hover {
  background: var(--theme-color);
  color: var(--theme-dark);
}

/*====================9. Site title css======================*/
.site-heading {
  position: relative;
  margin-bottom: 50px;
  z-index: 1;
}

.site-heading-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  
}

.site-heading-inline .site-title {
}

.site-heading-inline .theme-btn {
  border-radius: 10px;
  padding: 4px 12px;
}

.site-title-tagline {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  padding: 5px 2px 5px 5px;
}

.site-title-tagline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  /* background: var(--theme-color); */
  height: 10px;
  width: 100%;
  z-index: -1;
}

.site-title-tagline i {
  line-height: 0;
  font-size: 20px;
}

.site-title {
  font-weight: 600;
  /* text-transform: capitalize; */
  font-size: 50px;
  color: var(--color-dark);
  margin-top: 0;
  margin-bottom: 20px;
  position: relative;
  text-align: center;
}

.heading-divider {
  position: relative;
}

.heading-divider::before {
  content: "";
  position: absolute;
  height: 3px;
  width: 60px;
  background: var(--theme-color);
  bottom: -12px;
  border-radius: 50px;
}

.heading-divider::after {
  content: "";
  position: absolute;
  background: var(--body-bg);
  top: 0;
  left: 0;
  bottom: -12px;
  width: 8px;
  animation: heading-move 5s infinite linear;
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(52px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@media all and (max-width: 767px) {
  .site-title,
  .site-heading-inline .site-title {
    font-size: 32px;
  }

  .site-heading-inline {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }
}

/*====================10. Theme button======================*/
.theme-btn {
  position: relative;
  font-size: 16px;
  color: var(--color-white);
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 10px;
  border: none;
  text-align: center;
  background: var(--theme-color);
  cursor: pointer;
  overflow: hidden;
  vertical-align: middle;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  z-index: 1;
}

.theme-btn::before {
  content: "";
  position: absolute;
  background: var(--color-danger);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.24s ease-in-out;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.theme-btn:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.theme-btn:hover {
  color: var(--color-white);
}

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

.theme-btn2:hover {
  color: var(--color-white);
}

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

.theme-btn i {
  margin-left: 5px;
}

.theme-btn span {
  margin-right: 5px;
}

/*====================11. Scroll top css======================*/
.scroll-top {
  position: fixed;
  bottom: -20px;
  right: 30px;
  font-size: 20px;
  color: var(--color-white);
  background-color: transparent;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.scroll-top-icon {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--theme-color);
}

.scroll-top-icon:hover {
  color: var(--theme-color);
}

.scroll-top i {
  transform: rotate(-35deg);
  transition: var(--transition2);
}

.scroll-top:hover i {
  transform: rotate(0);
}

.scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

/* scroll progress */
.scroll-progress-circle {
  width: 50px;
  height: 50px;
}

.scroll-progress-bar {
  fill: none;
  stroke: var(--theme-color);
  stroke-width: 5;
  stroke-dasharray: 283;
  stroke-dashoffset: 0;
  transform-origin: center;
  transition: stroke-dashoffset 0.3s ease;
  transform: rotate(-90deg);
}

.scroll-progress-bg {
  fill: transparent;
  stroke: var(--theme-color);
  stroke-width: 5;
  stroke-dasharray: none;
  opacity: 0.4;
}

@media all and (min-width: 768px) and (max-width: 1199px) {
  .scroll-top.active {
    bottom: 100px;
  }
}

/*====================12. Navbar css======================*/
.navbar {
  /* background: transparent; */
  padding-top: 5px;
  padding-bottom: 5px;
  z-index: 999;
}

.navbar.fixed-top {
  background: var(--color-white);
  padding-top: 2px;
  padding-bottom: 2px;
  box-shadow: var(--box-shadow2);
  animation: slide-down 0.7s;
}

@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 160px;
}

.navbar-brand .logo-light-mode {
  display: none;
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

.navbar .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-mobile-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar .dropdown-toggle::after {
  content: "\f107";
  display: inline-block;
  vertical-align: baseline;
  font-family: "Font Awesome 6 Pro";
  font-weight: 600;
  border: none;
  font-size: 14px;
  margin-left: 5px;
}

.navbar .nav-item.live .nav-link i {
  color: var(--color-danger);
  font-size: 12px;
  vertical-align: middle;
  margin-right: 2px;
}

.navbar .color-mode .dark-btn {
  display: none;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 24px;
    padding: 26px 0 26px 0;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-transform: capitalize;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
  }

  .navbar .nav-item .nav-link::before {
    content: "";
    position: absolute;
    background: var(--theme-color);
    width: 0px;
    height: 3px;
    bottom: 20px;
    left: 1px;
    border-radius: 50px;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link.active::before,
  .navbar .nav-item .nav-link:hover::before {
    width: 20px;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    margin-top: 0;
    padding: 15px 12px;
    left: -15px;
    border: none;
    border-radius: 15px;
    background: var(--color-white);
    width: 200px;
    box-shadow: var(--box-shadow);
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-dark);
    position: relative;
    overflow: hidden;
    text-transform: capitalize;
    white-space: wrap;
    transition: all 0.3s ease-in-out;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: var(--theme-color);
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:focus {
    background: transparent !important;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f111";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    left: 2px;
    top: 14px;
    color: var(--theme-color);
    font-size: 6px;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
    visibility: visible;
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar.fixed-top .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 600;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: var(--theme-color);
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: 0.3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .navbar #main_nav {
    justify-content: flex-end;
  }

  .navbar-nav {
    margin: 0 auto;
  }

  .navbar .nav-item.mega-menu .dropdown-menu {
    width: 98%;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* nav right */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
}

.nav-right-link {
  position: relative;
  width: 25px;
  padding: 0px;
  font-size: 25px;
  text-align: center;
  color: #000000;
  background: transparent;
  border: none;
  transition: var(--transition);
}

.nav-right-link:hover {
  color: var(--theme-color) !important;
}

.navbar.fixed-top .nav-right-link {
  color: var(--color-dark);
}

.nav-right-btn .theme-btn {
  padding: 9px 15px;
}

@media all and (min-width: 1199px) and (max-width: 1399px) {
  .navbar .nav-item .nav-link {
    margin-right: 16px;
  }

  .nav-right {
    gap: 10px;
  }
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .navbar-brand img {
    width: 100px;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }
}

@media all and (max-width: 1199px) {
  .nav-right-btn {
    display: none;
  }

  .navbar .mega-menu-img {
    display: none;
  }
}

/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding: 10px 0;
  }

  .navbar .navbar-brand {
    padding: 0px;
  }

  .navbar .navbar-brand img {
    width: 130px;
  }

  .navbar .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background: var(--color-white);
    border-radius: 12px;
    border: 1px solid var(--border-info-color);
  }

  .navbar .dropdown-toggle::after {
    float: right;
    margin-top: 2px;
  }

  .navbar .nav-item .nav-link {
    color: var(--color-dark);
    font-weight: 700;
    transition: var(--transition);
  }

  .navbar .nav-item .nav-link:hover {
    color: var(--theme-color) !important;
  }

  .navbar .navbar-toggler {
    padding: 0;
    border: none;
  }

  .navbar .mega-menu .mega-menu-title {
    margin-left: 16px;
    margin-bottom: 10px;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
    gap: 18px;
  }

  .mobile-menu-right .nav-right-link {
    width: 20px;
    background: transparent;
    border: none;
    font-size: 20px;
    color: var(--color-white);
  }

  .mobile-menu-right .nav-right-link:hover {
    color: var(--theme-color);
  }

  .mobile-menu-right .search-area {
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
  }

  .navbar-toggler-mobile-icon {
    font-size: 25px;
    color: var(--color-white);
    font-weight: 500;
  }

  .navbar.fixed-top .navbar-toggler-mobile-icon {
    color: var(--color-dark);
  }

  .navbar .dropdown-menu {
    background: var(--color-white);
    border-radius: 12px;
  }

  .navbar .dropdown-menu .dropdown-item {
    color: var(--heading-color);
  }

  .nav-right {
    display: none;
  }
}

/*============================13. Multi level dropdown menu==============================*/
.navbar .nav-item .dropdown-submenu {
  position: relative;
}

.navbar .nav-item .dropdown-submenu .dropdown-menu::before {
  display: none;
}

.navbar .nav-item .dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 10px;
  top: 6px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: var(--color-white);
}

.navbar .nav-item .dropdown-submenu .dropdown-menu {
  top: 120%;
  left: 100%;
  opacity: 0;
  visibility: hidden;
}

.navbar .nav-item .dropdown-submenu:hover .dropdown-menu {
  top: 0;
  opacity: 1;
  visibility: visible;
}

@media all and (max-width: 991px) {
  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    background: var(--color-white);
    margin: 0 17px;
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4.8px;
    right: 14px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: var(--theme-color);
  }
}

/*====================14. Search area css ======================*/
.search-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100%;
  z-index: 99999;
  margin-top: -540px;
  transform: translateY(-100%);
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 1500ms cubic-bezier(0.86, 0, 0.07, 1);
  transition-timing-function: cubic-bezier(0.86, 0, 0.07, 1);
}

.sidenav-bar-visible .search-popup {
  width: 80%;
}

.search-active .search-popup {
  transform: translateY(0%);
  margin-top: 0;
}

.search-popup .close-search {
  position: absolute;
  left: 0;
  right: 0;
  top: 75%;
  border: none;
  margin: 0 auto;
  margin-top: -200px;
  border-radius: 50px;
  text-align: center;
  background: var(--theme-color);
  text-align: center;
  width: 50px;
  height: 50px;
  color: var(--color-white);
  font-size: 20px;
  cursor: pointer;
  box-shadow: var(--box-shadow);
  transition: all 500ms ease;
  opacity: 0;
  visibility: hidden;
}

.search-active .search-popup .close-search {
  visibility: visible;
  opacity: 1;
  top: 50%;
  transition-delay: 1500ms;
}

.search-popup form {
  position: absolute;
  max-width: 700px;
  top: 50%;
  left: 15px;
  right: 15px;
  margin: -35px auto 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: all 300ms ease;
}

.search-active .search-popup form {
  transform: scaleX(1);
  transition-delay: 1200ms;
}

.search-popup .form-group {
  position: relative;
  margin: 0px;
  overflow: hidden;
}

.search-popup .form-group input[type="text"],
.search-popup .form-group input[type="search"] {
  position: relative;
  width: 100%;
  height: 60px;
  outline: none;
  border-radius: 50px;
  border: none;
  padding: 0 70px 0 35px;
  transition: all 500ms ease;
  text-transform: capitalize;
}

.search-popup .form-group input[type="submit"],
.search-popup .form-group button {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  font-size: 20px;
  color: var(--color-white) !important;
  height: 50px;
  width: 50px;
  border: none;
  cursor: pointer;
  transition: all 500ms ease;
}

.search-popup .form-group input[type="submit"]:hover,
.search-popup .form-group button:hover {
  background: var(--theme-color);
}

.search-popup input::placeholder,
.search-popup textarea::placeholder {
  color: var(--color-dark);
}

/*====================15. Sidebar popup css ======================*/
.sidebar-popup {
  position: fixed;
  top: 0;
  left: 0;
  content: "";
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  z-index: 999;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}

.sidebar-popup.open {
  visibility: visible;
  opacity: 1;
}

.sidebar-wrapper {
  position: fixed;
  top: 0;
  right: -100%;
  width: 400px;
  background: var(--color-white);
  visibility: hidden;
  opacity: 0;
  padding: 40px;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  z-index: 9999;
}

.sidebar-wrapper.open {
  right: 0;
  visibility: visible;
  opacity: 1;
}

.sidebar-content {
  position: relative;
  overflow-y: auto;
  height: calc(100vh - 75px);
}

.close-sidebar-popup {
  position: absolute;
  top: 0px;
  right: 1px;
  width: 38px;
  height: 38px;
  line-height: 36px;
  border-radius: 50px;
  text-align: center;
  border: none;
  font-size: 20px;
  background: var(--theme-color);
  color: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.close-sidebar-popup:hover {
  background: var(--color-danger);
}

.close-sidebar-popup i {
  transition: var(--transition2);
}

.close-sidebar-popup:hover i {
  transform: rotate(180deg);
}

.sidebar-logo img {
  width: 150px;
}

.sidebar-about {
  margin-top: 40px;
}

.sidebar-about h4 {
  margin-bottom: 10px;
}

.sidebar-contact {
  margin-top: 20px;
}

.sidebar-contact h4 {
  margin-bottom: 15px;
}

.sidebar-contact li {
  margin: 10px 0;
}

.sidebar-contact li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.sidebar-contact li a:hover {
  color: var(--theme-color);
}

.sidebar-social {
  margin-top: 25px;
}

.sidebar-social h4 {
  margin-bottom: 20px;
}

.sidebar-social a {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50px;
  margin-right: 8px;
  background: var(--theme-color);
  color: var(--color-white);
  box-shadow: var(--box-shadow);
}

.sidebar-social a:hover {
  background: var(--color-dark);
  color: var(--color-white);
}

/*====================16. Main section css ======================*/

@media all and (max-width: 991px) {
  .main {
    margin-top: -3rem;
  }
}

/*====================17. Hero css ======================*/
.hero-section {
  position: relative;
}

.hero-single {
  position: relative;
  padding-top: 200px;
  padding-bottom: 120px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  /* background: rgb(20 78 118 / 48%); */
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-single .hero-content {
  height: 100%;
  background: #0000006b;
  padding: 15px;
  border-radius: 10px;
}

.hero-single .hero-content .hero-sub-title {
  display: inline-block;
  color: var(--color-white);
  font-size: 25px;
  letter-spacing: 6px;
  font-weight: 600;
  position: relative;
  text-transform: uppercase;
  z-index: 1;
}

.hero-single .hero-content .hero-title {
  color: #ffffff;
  font-size: 75px;
  font-weight: 600;
  margin: 0px 0 20px;
  text-transform: capitalize;
  line-height: 56px;
}

.hero-single .hero-content p {
  color: #ffffff;
  line-height: 30px;
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-single .hero-btn {
  display: flex;
  justify-content: start;
  gap: 1rem;
  margin-top: 35px;
}

.hero-single .hero-btn .theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img-ani-1 {
  animation: hero-img-ani-1 7s linear infinite;
}

@keyframes hero-img-ani-1 {
  0%,
  100% {
    transform: translateX(0);
    transition: all 0.3s ease;
  }

  50% {
    transform: translateX(-20px);
    transition: all 0.3s ease;
  }
}

.hero-img-ani-2 {
  animation: hero-img-ani-2 7s linear infinite;
}

@keyframes hero-img-ani-2 {
  0%,
  100% {
    transform: translateY(0);
    transition: all 0.3s ease;
  }

  50% {
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }
}

@media all and (max-width: 1199px) {
  .hero-single .hero-content .hero-title {
    font-size: 32px;
  }
}

@media all and (max-width: 991px) {
  .hero-single .hero-content .hero-sub-title {
    font-size: 22px;
  }

  .hero-single .hero-img {
    margin-top: 70px;
  }
}

@media all and (max-width: 767px) {
  .hero-single .hero-content .hero-btn {
    gap: 0.5rem;
  }

  .hero-single .hero-content .hero-btn .theme-btn {
    padding: 8px 15px;
  }
}

/* hero slider */
.hero-slider.owl-theme .owl-nav button {
  display: inline-block;
  font-size: 35px;
  text-align: center;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  position: absolute;
  height: 55px;
  width: 55px;
  line-height: 55px;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.hero-slider .owl-nav button:hover {
  background: var(--color-white);
  color: var(--theme-color);
}

.hero-slider .owl-nav .owl-prev {
  left: 30px;
}

.hero-slider .owl-nav .owl-next {
  right: 30px;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-slider .owl-dots .owl-dot span {
  background: transparent;
  border: 3px solid var(--color-white);
  margin: 5px;
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50px;
  transition: var(--transition);
}

.hero-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}

@media all and (max-width: 1199px) {
  .hero-slider.owl-theme .owl-nav button {
    top: unset;
    bottom: -10px;
  }

  .hero-slider .owl-nav .owl-prev {
    left: unset;
    right: 65px;
  }

  .hero-slider .owl-nav .owl-next {
    right: 10px;
  }
}

/*====================18. Platform css ======================*/
.platform-content > h4 {
  color: var(--color-white);
  /* letter-spacing: 2px; */
  font-weight: 500;
}

.platform-content ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 15px;
}

.platform-content ul li {
  border: 1px solid #eee;
  padding: 7px;
  display: flex;
  align-items: center;
}

.platform-img img {
  width: 110px;
}

.platform-item h5 {
  color: var(--color-white);
  font-weight: 500;
  transition: var(--transition);
}

.platform-item:hover h5 {
  color: var(--theme-color);
}

/*====================19. About css ======================*/
.about-left {
  position: relative;
}

.about-img {
  position: relative;
}

.about-experience {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: var(--theme-color);
  /*width: 105px;*/
  /*height: 105px;*/
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--box-shadow);
  z-index: 1;
      padding: 27px 20px;
}

.about-experience::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px dashed var(--color-white);
  border-radius: 50%;
}

.about-experience h6 {
  font-size: 21px;
  color: var(--color-white);
}

.about-experience p {
  color: var(--color-white);
  font-weight: 600;
  margin-bottom:0;
  text-align:center;
}

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

.about-img .img-1 {
  position: relative;
  margin-top: 15px;
}

.about-img .img-1::before {
  content: "";
  position: absolute;
  left: -20px;
  bottom: -20px;
  border: 5px solid var(--theme-color);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.about-img .img-2 {
  margin-top: 90px;
}

.about-right {
  position: relative;
  display: block;
  padding-right: 30px;
}

.about-content {
  margin-top: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-info-color);
}

.about-item-wrap {
  margin-top: 10px;
}

.about-item {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.about-item .icon {
  width: 60px;
  height: 60px;
  line-height: 57px;
  background: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  margin-bottom: 15px;
}

.about-item .icon img {
  width: 40px;
  filter: brightness(0) invert(1);
}

.about-item .content {
  flex: 1;
}

.about-item .content h4 {
  font-size: 20px;
  margin-bottom: 5px;
}

.about-list {
  background: var(--color-white);
  border: 15px;
  padding: 15px 20px;
  border-left: 3px solid var(--theme-color);
  box-shadow: var(--box-shadow);
  margin-top: 25px;
}

.about-list li {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
  margin: 6px 0;
}

.about-list li i {
  color: var(--theme-color);
  margin-right: 5px;
}

.about-bottom {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 25px;
}

.about-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.about-phone .icon {
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: var(--color-danger);
  color: var(--color-white);
  border-radius: 50px;
  text-align: center;
  font-size: 22px;
  box-shadow: var(--box-shadow);
}

.about-phone .number {
  line-height: 1;
}

.about-phone .number span {
  color: var(--body-text-color);
  font-weight: 500;
}

.about-phone .number h6 {
  font-size: 20px;
  font-weight: 500;
  margin-top: 8px;
}

.about-phone .number h6 a {
  color: var(--color-danger);
}

@media all and (max-width: 991px) {
  .about-right {
    margin-top: 70px;
    padding-left: 0;
  }
}

@media all and (max-width: 767px) {
  .about-item {
    margin-top: 30px;
  }

  .about-bottom {
    
  }
}

/*====================20. Feature css ======================*/
.feature-area {
  position: relative;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 25px 20px;
  position: relative;
  background: var(--theme-color);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  overflow: hidden;
  z-index: 1;
  height: 100%;
}

.feature-content {
  flex: 1;
}

.feature-item:hover {
  transform: translateY(-10px);
}

.feature-item .count {
  font-size: 50px;
  font-weight: 800;
  -webkit-text-stroke: 2px var(--color-white);
  -webkit-text-fill-color: transparent;
  position: absolute;
  left: 30px;
  bottom: 0;
  z-index: -1;
}

.feature-icon {
  width: 85px;
  height: 85px;
  line-height: 80px;
  background: var(--footer-bg);
  text-align: center;
  border-radius: 50px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.feature-icon img {
  width: 50px;
  filter: brightness(0) invert(1);
}

.feature-item:hover .feature-icon {
  transform: rotateY(360deg);
}

.feature-content h4 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--color-white);
}

.feature-content p {
  color: var(--color-white);
}

.feature-item.active {
  background: var(--footer-bg);
}

.feature-item.active .feature-icon {
  background: var(--theme-color);
}

.feature-shape img {
  position: absolute;
  right: 20px;
  bottom: -10px;
  width: 120px;
  opacity: 0.15;
  z-index: -1;
}

.feature-item.active .feature-shape img {
  filter: brightness(0) invert(1);
}

/* ===================21. Main category css ====================== */
.main-category {
  position: relative;
}

.main-category .category-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  border-radius: 14px;
  padding: 10px;
  background: var(--color-white);
  margin-top: 35px;
  box-shadow: var(--box-shadow);
  margin-bottom: 15px;
}

.main-category .category-img {
  /*margin-top: -25px;*/
  overflow: hidden;
  border-radius: 14px;
  /*width: 85px;*/
}

.main-category .category-img img {
  width: 120px;
  height: 100px;
  object-fit: cover;
  border-radius: 14px;
}

.main-category .category-item:hover .category-img img {
  transform: scale(1.1);
}

.main-category .category-content {
  flex: 1;
}

.main-category .category-content h4 {
  font-size: 20px;
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: 0;
  transition: var(--transition);
}

.main-category .category-item:hover .category-content h4 {
  color: var(--theme-color);
}

/* ===================26. Podcast css ====================== */
.podcast-area {
  position: relative;
}

/* podcast sidebar */
.podcast-sidebar {
  background: var(--color-white);
  padding: 20px 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
  margin-bottom: 30px;
}

.podcast-sidebar .podcast-widget {
  margin-bottom: 25px;
}

.podcast-sidebar .widget-title {
  position: relative;
  font-size: 18px;
  color: var(--color-dark);
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-info-color);
}

.podcast-sidebar .category-list li {
  margin: 8px 0;
}

.podcast-sidebar .category-list a {
  color: var(--body-text-color);
}

.podcast-sidebar .category-list a:hover {
  color: var(--theme-color);
}

.podcast-sidebar .category-list a i {
  color: var(--theme-color);
  margin-right: 10px;
}

.podcast-sidebar .checkbox-list li {
  margin: 8px 0;
}

.podcast-sidebar .checkbox-list .form-check {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.podcast-sidebar .checkbox-list .form-check-input {
  width: 20px;
  height: 20px;
  border-radius: 8px;
  margin: 0;
  padding: 0;
  background-color: var(--color-white);
  border-width: 2px;
  border-color: var(--border-info-color);
  box-shadow: none;
}

.podcast-sidebar .checkbox-list .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.podcast-sidebar .checkbox-list label {
  color: var(--body-text-color);
}

/* podcast search */
.podcast-search-form .form-group {
  position: relative;
}

.podcast-search-form .form-control {
  color: var(--color-dark);
  padding: 10px 45px 10px 15px;
  border-radius: 10px;
  border-color: var(--border-info-color);
  box-shadow: none;
}

.podcast-search-form .form-control:focus {
  border-color: var(--theme-color);
}

.podcast-search-form .form-control::placeholder {
  color: var(--body-text-color);
}

.podcast-search-form button {
  position: absolute;
  right: 0;
  top: 0;
  padding: 4px 15px 6px 15px;
  background: transparent;
  border: none;
  font-size: 20px;
  color: var(--theme-color);
}

/* podcast sort */
.podcast-sort {
  background: var(--color-white);
  padding: 12px 12px 12px 20px;
  margin-bottom: 30px;
  border-radius: 10px;
  box-shadow: var(--box-shadow);
}

.podcast-sort-label {
  white-space: nowrap;
}

.podcast-sort-box {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}

@media all and (max-width: 1199px) {
  .podcast-area .site-heading-inline {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 15px;
  }
}

@media all and (max-width: 767px) {
  .podcast-sort-show {
    margin-bottom: 12px;
  }
}

/* ===================27. Process css ====================== */
.process-area {
  position: relative;
}

.process-item {
  position: relative;
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
}

.process-item span {
  position: absolute;
  top: 0px;
  right: 20px;
  font-weight: 600;
  font-size: 40px;
  color: var(--color-white);
  -webkit-text-stroke: 2px var(--theme-color);
  -webkit-text-fill-color: transparent;
}

.process-icon {
  position: relative;
  height: 80px;
  width: 80px;
  line-height: 80px;
  background: var(--theme-color);
  border-radius: 50px;
  margin: 0 auto 30px auto;
  font-size: 30px;
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.process-icon::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 2px dashed var(--theme-color);
  border-radius: 50px;
}

.process-item:hover .process-icon {
  transform: rotateY(-360deg);
}

.process-icon img {
  width: 45px;
  filter: brightness(0) invert(1);
}

.process-content h4 {
  color: var(--color-dark);
  font-size: 23px;
  margin-bottom: 10px;
}

.process-content p {
  color: var(--body-text-color);
}

/*====================28. Choose css ======================*/
.choose-area {
  position: relative;
}

.choose-content {
  margin-right: 40px;
}

.choose-item-wrap {
  margin-top: 35px;
}

.choose-item {
  position: relative;
  display: flex;
  gap: 20px;
  margin-top: 25px;
}

.choose-item .content {
  flex: 1;
}

.choose-item .icon {
  width: 70px;
  height: 70px;
  line-height: 62px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 40px;
  border-radius: 50px;
  margin-top: 5px;
  margin-bottom: 15px;
  text-align: center;
  position: relative;
  box-shadow: var(--box-shadow);
}

.choose-item .icon::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px dashed var(--theme-color);
  border-radius: 50px;
}

.choose-item .icon img {
  width: 42px;
  filter: brightness(0) invert(1);
}

.choose-item .content h5 {
  color: var(--color-dark);
  font-size: 20px;
  margin-bottom: 5px;
}

.choose-img {
  position: relative;
  margin-left: 45px;
  display: block;
  -webkit-mask-image: url(../../img/shape/02.png);
  mask-image: url(../../img/shape/02.png);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: 100% 100%;
  -webkit-mask-position: center center;
  mask-position: center center;
  overflow: hidden;
}

.choose-img-wrap {
  position: relative;
}

.choose-img-shape {
  position: absolute;
  left: 0;
  bottom: 80px;
  opacity: 0.3;
  z-index: -1;
}

.choose-img-shape img {
  width: 100%;
}

.choose-img-content {
  position: absolute;
  left: 0;
  bottom: 20px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 25px 30px 25px 20px;
  box-shadow: var(--box-shadow);
}

.choose-img-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.choose-img-content ul li {
  color: var(--color-dark);
  font-weight: 500;
}

.choose-img-content ul li i {
  color: var(--theme-color);
  margin-right: 8px;
}

@media all and (max-width: 991px) {
  .choose-content {
    margin-bottom: 60px;
  }

  .choose-img {
    margin-left: 0;
  }
}

@media all and (max-width: 767px) {
  .choose-img-content {
    bottom: -50px;
  }
}

/*====================30. Donate css ======================*/
.donate-area {
  position: relative;
}

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

.donate-content h1 {
  margin-bottom: 20px;
  font-size: 25px;
  color: #0072ba;
}

.donate-form {
  margin-top: 20px;
}

.donate-form h5 {
  color: var(--theme-color);
  margin-bottom: 15px;
}

.donate-form .input-group {
  margin-bottom: 22px;
}

.donate-form .input-group:focus-within {
  outline: 2px solid var(--theme-color);
  border-radius: 50px;
}

.donate-form .input-group.textarea:focus-within {
  border-radius: 30px;
}

.donate-form .input-group .form-control {
  padding: 15px 25px 15px 0px;
  border-radius: 50px;
  border: none;
  box-shadow: none;
  background: var(--theme-bg-light);
}

.donate-form .input-group .form-control::placeholder {
  color: var(--body-text-color);
}

.donate-form .input-group .input-group-text {
  background: var(--theme-bg-light);
  color: var(--theme-color);
  border-radius: 50px;
  padding-left: 20px;
  border: none;
}

.donate-form .form-check {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.donate-form .form-check-input {
  margin: 0;
  box-shadow: none;
  border-radius: 50px;
  border: none;
  width: 20px;
  height: 20px;
  background-color: var(--theme-bg-light);
}

.donate-form .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.donate-form .form-check-label {
  margin-bottom: 0;
  color: var(--body-text-color);
}

/* ========================31. Gallery css =========================== */
.gallery-item {
  position: relative;
  width: 100%;
  text-align: center;
}

.gallery-img {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  transition: all 0.7s ease-in-out;
  transform: translateX(-110%);
}

.gallery-img:hover::before {
  transform: translateX(110%);
}

.gallery-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--theme-color);
  opacity: 0.8;
  transition: all 0.7s ease-in-out;
  transform: translateX(-110%);
}

.gallery-img:hover::after {
  transform: none;
}

.gallery-img img {
  width: 100%;
  border-radius: 15px;
}

.gallery-link {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  font-size: 34px;
  color: var(--theme-color);
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: var(--color-white);
  transition: all 200ms 0ms cubic-bezier(0.6, -0.28, 0.735, 0.045);
  transform: translate(-50%, -50%) scale(0);
  z-index: 1;
}

.gallery-item:hover .gallery-link {
  transform: translate(-50%, -50%) scale(1);
  transition: all 300ms 100ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition-delay: 0.7s;
}

/*====================32. Testimonial css ======================*/
.testimonial-area {
  position: relative;
  overflow: hidden;
  background: #dbdbdb;
}

.testimonial-bg img {
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
}

.testimonial-item {
  position: relative;
  background: var(--color-white);
  padding: 25px 25px;
  margin: 6px;
  border-radius: 20px;
  z-index: 1;
}

.testimonial-item::before {
  content: "";
  position: absolute;
  left: 40px;
  right: 40px;
  bottom: -6px;
  height: 6px;
  background: var(--theme-color);
  border-radius: 0 0 10px 10px;
}

.testimonial-item::after {
  content: "";
  position: absolute;
  top: 15px;
  right: 15px;
  height: 50px;
  width: 50px;
  border-top: 3px solid var(--theme-color);
  border-right: 3px solid var(--theme-color);
  border-top-right-radius: 15px;
  transition: var(--transition);
}

.testimonial-item:hover::after {
  height: 70px;
  width: 70px;
}

.testimonial-quote p {
  color: var(--body-text-color);
  font-size: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-info-color);
}

.testimonial-author .author-info {
  margin: 15px 0 10px 0;
}

.testimonial-author .author-img {
  width: 70px;
  padding: 4px;
  border-radius: 50px;
  border: 2px solid var(--theme-color);
}

.testimonial-author .author-img img {
  border-radius: 50%;
}

.testimonial-author .author-info h4 {
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 2px;
  font-weight: 500;
}

.testimonial-author .author-info p {
  color: var(--theme-color);
  font-weight: 500;
}

.testimonial-item .quote-icon {
  position: absolute;
  right: 30px;
  bottom: 0px;
  color: var(--theme-color);
  font-size: 70px;
  opacity: 0.1;
  z-index: -1;
}

.testimonial-item .quote-icon img {
  width: 140px;
}

.testimonial-rate {
  color: var(--theme-color);
  margin-bottom: 15px;
}

.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid var(--theme-color);
  margin: 5px;
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 50px;
  transition: var(--transition);
}

.testimonial-area .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}

@media all and (max-width: 1199px) {
  .testimonial-bg img {
    width: 55%;
  }
}

@media all and (max-width: 991px) {
  .testimonial-bg {
    display: none;
  }
}

/*===================33. Play btn=====================*/
.play-btn i {
  position: relative;
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white) !important;
  border-radius: 50%;
  z-index: 1;
}

.play-btn i::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: var(--theme-color);
  border-radius: 50px;
  animation: ripple-wave 1s linear infinite;
  -webkit-transform: scale(1);
  transform: scale(1);
  transition: all 0.5s ease-in-out;
}

@keyframes ripple-wave {
  0% {
    opacity: 0.8;
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(2);
    transform: scale(2);
  }
}

/*====================34. Video css ======================*/
.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 15px;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(0, 10, 36, 0.2);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 15px;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  border-radius: 5px;
  height: 500px;
  z-index: 100;
}

.video-wrapper img {
  border-radius: 12px;
}

.video-area .play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  text-align: center;
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.video-info {
  text-align: center;
  margin-top: 40px;
}

.video-title {
  color: var(--color-white);
  text-transform: capitalize;
  margin-bottom: 10px;
}

.video-info p {
  color: var(--color-white);
}

@media all and (max-width: 1199px) {
  .video-info {
    padding: 15px;
  }

  .video-area .play-btn {
    margin-top: 40px;
  }
}

@media all and (max-width: 767px) {
  .video-area .play-btn {
    margin-top: 80px;
  }
}

/*====================35. Counter css ======================*/
.counter-area {
  position: relative;
  background-image: url(../../img/counter/01.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
  background-attachment: fixed;
}

.counter-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgb(20 78 118 / 48%);
  z-index: -1;
}

.counter-area .grid_sty {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 25px;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 0px;
  position: relative;
  z-index: 1;
}

.counter-box .icon {
  position: relative;
  text-align: center;
  font-size: 45px;
  width: 95px;
  height: 95px;
  line-height: 85px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--theme-color);
}

.counter-box .icon img {
  width: 55px;
  filter: brightness(0) invert(1);
}

.counter-box .icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border-radius: 50%;
  border: 2px dashed #0071b9;
  transition: var(--transition);
  z-index: -1;
}

.counter-box .counter-content {
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  width: 100%;
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  /* color: #444444; */
}

.counter-box .counter-unit {
  color: var(--color-white);
  font-size: 45px;
  font-weight: 600;
  line-height: 1;
}

.counter-box .counter {
  /* display: block; */
  /* line-height: 1; */
  /* color: var(--color-white); */
  font-size: 27px;
  /* font-weight: 600; */
}

.counter-box .title {
  color: var(--color-white);
  margin-top: 8px;
  font-size: 22px;
  font-weight: 500;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-area .counter-box {
    margin: 40px 0;
  }
}

/*====================36. Cta css ======================*/
.cta-area {
  position: relative;
  background: var(--color-dark);
  overflow: hidden;
  z-index: 1;
}

.cta-content h1 {
  color: #ffffff;
  /* text-transform: capitalize; */
  font-size: 38px;
}

.cta-content p {
  color: #ffffff;
  font-size: 20px;
  margin-top: 15px;
  margin-bottom: 25px;
}

.cta-img {
  position: relative;
  text-align: center;
  z-index: 1;
}

.cta-img-shape img {
  position: absolute;
  width: 80%;
  top: 80px;
  right: 0;
  z-index: -1;
}

.cta-shape img {
  position: absolute;
  width: 35%;
  left: 0;
  bottom: 0;
  opacity: 0.07;
  z-index: -1;
}

@media all and (max-width: 1199px) {
  .cta-content p {
    margin-bottom: 15px;
  }
}

@media all and (max-width: 991px) {
  .cta-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .cta-shape img {
    top: 20px;
    bottom: unset;
    width: 50%;
  }
}

/*====================37. Partner css ======================*/
.partner-area {
  position: relative;
  background: #fff;
}

.partner-slider {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.partner-slider img {
  width: 100%;
  height: 90px;
  object-fit: contain;
}

.part_img {
  box-shadow: 0px 0px 10px #e7e7e7;
  height: 110px;
  display: flex;
  align-items: center;
  padding: 10px;
}

/*====================38. Blog css ======================*/
.blog-area {
  position: relative;
}

.blog-area.pb-80 {
  padding-bottom: 40px;
}

.blog-item {
  background: var(--color-white);
  padding: 20px;
  border-radius: 15px;
  /* margin-bottom: 25px; */
  box-shadow: var(--box-shadow);
  height: 100%;
}

.blog-item .blog-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.blog-item .blog-img img {
  object-fit: cover;
  border-radius: 15px;
  height: 210px;
  width: 100%;
}

.blog-item:hover .blog-img img {
  transform: scale(1.1);
}

.blog-item .blog-date {
  position: absolute;
  padding: 2px 10px;
  right: 10px;
  bottom: 10px;
  background: var(--theme-color);
  font-weight: 500;
  color: var(--color-white);
  border-radius: 10px;
  z-index: 2;
}

.blog-item .blog-meta {
  margin-bottom: 15px;
}

.blog-item .blog-meta ul {
  padding: 14px 0;
  border-bottom: 1px solid var(--border-info-color);
  width: 100%;
}

.blog-item .blog-meta ul li {
  position: relative;
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  color: var(--body-text-color);
}

.blog-item .blog-meta ul li i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-item .blog-meta a {
  color: var(--body-text-color);
}

.blog-item .blog-meta a:hover {
  color: var(--theme-color);
}

.blog-item .blog-title a {
  color: var(--heading-color);
  font-weight: 500;
}

.blog-item .blog-title a:hover {
  color: var(--theme-color);
}

.blog-item .blog-info p {
  margin-top: 10px;
}

.blog-item .theme-btn {
  margin-top: 25px;
}

/*========================39. Blog single css==========================*/
.blog-single {
  position: relative;
}

.blog-single-content .blog-thumb-img {
  margin-bottom: 20px;
  width: 100%;
}

.blog-single-content .blog-thumb-img img {
  border-radius: 15px;
  width: 100%;
}

.blog-single-info .blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-single-info .blog-meta ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-single-info .blog-meta ul li {
  font-weight: 500;
}

.blog-single-info .blog-meta i {
  margin-right: 5px;
  color: var(--theme-color);
}

.blog-single-info .blog-meta a {
  color: var(--body-text-color);
  font-weight: 500;
}

.blog-single-info .blog-meta a:hover {
  color: var(--theme-color);
}

.blog-single-info .blog-details-title {
  font-size: 34px;
  color: var(--color-dark);
}

.blog-single-info .blockqoute {
  position: relative;
  background: var(--color-white);
  border-left: 5px solid var(--theme-color);
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 0px;
  box-shadow: var(--box-shadow);
}

.blog-single-info .blockqoute-icon {
  position: absolute;
  right: 120px;
  bottom: 0;
  font-size: 120px;
  color: var(--theme-color);
  line-height: 1;
  opacity: 0.2;
}

.blog-single-info .blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color: var(--color-dark);
}

.blog-single-info .blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: var(--theme-color);
  left: 0;
  top: 10px;
}

.blog-single-info .blog-details img {
  border-radius: 15px;
}

.blog-single-info .blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-single-info .blog-details-tags h5 {
  color: var(--color-dark);
}

.blog-single-info .blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-single-info .blog-details-tags ul li a {
  background: var(--color-white);
  color: var(--body-text-color);
  padding: 5px 15px;
  border-radius: 10px;
  transition: var(--transition);
  border: 1px solid var(--border-info-color);
}

.blog-single-info .blog-details-tags ul li a:hover {
  background: var(--theme-color);
  color: var(--color-dark);
}

.blog-single-info .blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: var(--color-white);
  border-left: 5px solid var(--theme-color);
  margin: 50px 0;
  padding: 20px;
  box-shadow: var(--box-shadow);
}

.blog-single-info .blog-author .author-img {
  width: 320px;
}

.blog-single-info .blog-author .author-img img {
  border-radius: 50%;
  box-shadow: var(--box-shadow);
}

.blog-single-info .blog-author .author-info h6 {
  color: var(--color-dark);
}

.blog-single-info .blog-author .author-name {
  font-size: 22px;
  color: var(--theme-color);
  font-weight: 500;
  margin: 8px 0;
}

.blog-single-info .blog-author .author-info {
  padding: 0 20px;
}

.blog-single-info .blog-author .author-social {
  margin-top: 10px;
}

.blog-single-info .blog-author .author-social a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  border: 2px solid var(--theme-color);
  border-radius: 50px;
  margin-right: 5px;
  color: var(--theme-color);
  transition: var(--transition);
}

.blog-single-info .blog-author .author-social a:hover {
  color: var(--color-dark);
  background: var(--theme-color);
}

.blog-single-comment {
  margin-top: 60px;
}

.blog-single-comment .comment-title {
  color: var(--color-dark);
}

.blog-single-comment .comment-item {
  display: flex;
  gap: 18px;
  background: var(--color-white);
  padding: 25px;
  border-radius: 15px;
  margin: 35px 0;
  box-shadow: var(--box-shadow);
}

.blog-single-comment .comment-reply {
  margin-left: 50px;
}

.blog-single-comment .comment-img {
  width: 60px;
  height: 60px;
}

.blog-single-comment .comment-img img {
  border-radius: 50%;
}

.blog-single-comment .comment-content {
  flex: 1;
}

.blog-single-comment .comment-author {
  display: flex;
  justify-content: space-between;
}

.blog-single-comment .comment-author .author-info h5 {
  color: var(--color-dark);
  margin-bottom: 4px;
}

.blog-single-comment .comment-author .author-info span {
  color: var(--body-text-color);
  font-size: 16px;
}

.blog-single-comment .comment-author .author-info span i {
  margin-right: 5px;
  font-size: 14px;
}

.blog-single-comment .comment-author .author-rating {
  color: var(--body-text-color);
  font-weight: 500;
}

.blog-single-comment .comment-author .author-rating i {
  color: var(--theme-color);
  margin-right: 5px;
}

.blog-single-comment .comment-text {
  padding: 10px 0 18px 0;
}

.blog-single-comment .comment-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-info-color);
  padding-top: 12px;
}

.blog-single-comment .comment-action .reply {
  flex: 1;
}

.blog-single-comment .comment-action .like a {
  margin-left: 12px;
}

.blog-single-comment .comment-action a {
  color: var(--theme-color);
  font-weight: 500;
}

.blog-single-comment .comment-action a:hover {
  color: var(--color-danger);
}

.blog-single-comment .comment-action a i {
  margin-right: 5px;
}

.blog-single-comment .comment-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 15px;
  background: var(--color-white);
  box-shadow: var(--box-shadow);
}

.blog-single-comment .comment-form h4 {
  color: var(--color-dark);
  font-size: 28px;
  margin-bottom: 25px;
}

.blog-single-comment .comment-form .form-group {
  margin-bottom: 20px;
}

.blog-single-comment .comment-form .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  color: var(--color-dark);
  border-color: var(--border-info-color);
  box-shadow: none;
  transition: var(--transition);
}

.blog-single-comment .comment-form .form-control::placeholder {
  color: var(--body-text-color);
}

.blog-single-comment .comment-form .form-control:focus {
  border-color: var(--theme-color);
}

@media all and (max-width: 991px) {
  .blog-single-wrapper {
    margin-bottom: 25px;
  }
}

@media all and (max-width: 767px) {
  .blog-single-info .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-single-info .blog-meta ul {
    gap: 10px;
  }

  .blog-single-info .blog-details-title {
    font-size: 32px;
  }

  .blog-single-info .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-single-info .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .blog-single-info .blog-author .author-info {
    margin-top: 25px;
  }

  .blog-single-comment .comment-item {
    flex-direction: column;
  }

  .blog-single-comment .comment-reply {
    margin-left: 25px;
  }
}

/*=======================40. Widget sidebar css=========================*/
.sidebar {
  position: relative;
}

.sidebar .widget {
  background: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}

.sidebar .widget .widget-title {
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
  font-size: 22px;
  color: var(--color-dark);
}

.sidebar .widget .widget-title::before {
  position: absolute;
  content: "";
  width: 15px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 0;
}

.sidebar .widget .widget-title::after {
  position: absolute;
  content: "";
  width: 30px;
  border-bottom: 3px solid var(--theme-color);
  bottom: 0;
  left: 22px;
}

.sidebar .widget .search-form .form-group {
  position: relative;
}

.sidebar .widget .search-form .form-control {
  padding: 12px 50px 12px 15px;
  border-radius: 10px;
  color: var(--color-dark);
  border-color: var(--border-info-color);
  box-shadow: none;
}

.sidebar .widget .search-form .form-control::placeholder {
  color: var(--body-text-color);
}

.sidebar .widget .search-form .form-control:focus {
  border-color: var(--theme-color);
}

.sidebar .widget .search-form .form-group button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: var(--theme-color);
}

.sidebar .widget .category-list a {
  display: block;
  padding: 10px 0;
  color: var(--body-text-color);
  font-weight: 500;
  border-bottom: 1px solid var(--border-info-color);
  transition: var(--transition);
}

.sidebar .widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.sidebar .widget .category-list a:hover {
  padding-left: 10px;
  color: var(--theme-color);
}

.sidebar .widget .category-list a i {
  margin-right: 5px;
  color: var(--theme-color);
}

.sidebar .widget .category-list a span {
  float: right;
}

.sidebar .widget .recent-post-item {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.sidebar .widget .recent-post-img {
  margin-right: 20px;
}

.sidebar .widget .recent-post-img img {
  width: 80px;
  border-radius: 10px;
}

.sidebar .widget .recent-post-info {
  flex: 1;
}

.sidebar .widget .recent-post-info h6 a {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 500;
  text-transform: capitalize;
}

.sidebar .widget .recent-post-info h6 a:hover {
  color: var(--theme-color);
}

.sidebar .widget .recent-post-info span {
  font-size: 14px;
  color: var(--theme-color);
  font-weight: 500;
  display: block;
  margin-top: 8px;
}

.sidebar .widget .recent-post-info span i {
  margin-right: 5px;
}

.sidebar .widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: var(--transition);
}

.sidebar .widget .social-share-link a:hover {
  background: var(--theme-color);
  color: var(--color-dark);
}

.sidebar .widget .tag-list a {
  color: var(--body-text-color);
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 10px;
  border: 1px solid var(--border-info-color);
  display: inline-block;
  transition: var(--transition);
}

.sidebar .widget .tag-list a:hover {
  background-color: var(--theme-color);
  color: var(--color-dark);
}

/*===================41. Contact us css =====================*/
.contact-area {
  position: relative;
}

.contact-content {
  margin-bottom: 80px;
}

.contact-content .contact-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 30px 20px;
  position: relative;
  margin-bottom: 25px;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  height: 100%;
}

.contact-content .contact-info::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0px;
  height: 4px;
  background: var(--theme-color);
  border-radius: 10px;
}

.contact-content .contact-info-icon {
  font-size: 38px;
  color: var(--color-white);
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  position: relative;
  border-radius: 50%;
  background: var(--theme-color);
  transition: var(--transition);
}

.contact-content .contact-info:hover .contact-info-icon {
  transform: rotateY(365deg);
}

.contact-content .contact-info h5 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-dark);
}

.contact-content .contact-info p {
  color: var(--body-text-color);
  font-weight: 500;
  font-size: 18px;
}

.contact-form-wrap {
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  /* box-shadow: var(--box-shadow); */
}

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

.contact-form {
  padding: 20px;
  /* box-shadow: var(--box-shadow); */
}

.contact-form .contact-form-header {
  margin-bottom: 30px;
}

.contact-form .contact-form-header h2 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.contact-form .contact-form-header p {
  font-size: 17px;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-control {
  padding: 15px 20px;
  border-radius: 12px;
  color: var(--color-dark);
  box-shadow: none;
  border-color: var(--border-info-color);
  transition: var(--transition);
}

.contact-form .form-control::placeholder {
  color: var(--body-text-color);
}

.contact-form .form-control:focus {
  border-color: var(--theme-color);
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

@media all and (max-width: 768px) {
  .contact-content {
    margin-bottom: 50px;
  }
}

/*====================44. Faq css ======================*/
.faq-area .accordion-item {
  border: none;
  margin-bottom: 20px;
  background: var(--color-white);
  border-radius: 10px !important;
  box-shadow: var(--box-shadow);
}

.faq-area .accordion-item span {
  width: 45px;
  height: 45px;
  margin-right: 15px;
}

.faq-area .accordion-item i {
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50px;
  background: var(--theme-color);
  text-align: center;
  color: var(--color-white);
}

.faq-area .accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 600;
  font-size: 20px;
  color: var(--heading-color);
  box-shadow: none !important;
}

.faq-area .accordion-button:not(.collapsed) {
  color: var(--theme-color);
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.faq-area .accordion-button::after {
  content: "\f107";
  background: none !important;
  color: var(--body-text-color);
  font-family: "Font Awesome 6 pro";
  width: unset;
  height: unset;
  margin-right: 3px;
  font-weight: 400;
}

.faq-area .accordion-button:not(.collapsed)::after {
  content: "\f107";
  transform: rotate(90deg);
}

.faq-area .accordion-body {
  color: var(--body-text-color);
  border-top: 1px solid var(--border-info-color);
}

@media all and (max-width: 991px) {
  .faq-area .faq-right {
    margin-bottom: 50px;
  }

  .faq-area .accordion-button {
    font-size: 16px;
  }
}

/*====================45. Breadcrumb css======================*/
.site-breadcrumb {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-repeat: no-repeat !important;
  background-position: top !important;
  background-size: cover !important;
  position: relative;
  padding-top: 200px;
  padding-bottom: 179px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(0 0 0 / 49%);
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 35px;
  color: var(--color-white);
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu {
  position: relative;
  z-index: 1;
}

.site-breadcrumb .breadcrumb-menu li {
  position: relative;
  display: inline-block;
  margin-left: 25px;
  color: var(--color-white);
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: var(--color-white);
  transition: all 0.5s ease-in-out;
}

.site-breadcrumb .breadcrumb-menu li::before {
  position: absolute;
  content: "\f101";
  font-family: "Font Awesome 6 Pro";
  right: -21px;
  top: 1px;
  text-align: center;
  font-size: 16px;
  color: var(--color-white);
}

.site-breadcrumb .breadcrumb-menu li:first-child {
  margin-left: 0;
}

.site-breadcrumb .breadcrumb-menu li:last-child:before {
  display: none;
}

.site-breadcrumb .breadcrumb-menu li a:hover {
  color: var(--theme-color);
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: var(--theme-color);
}

/*====================46. Pagination css ======================*/
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pagination .page-link {
  background: var(--theme-bg-light);
  color: var(--color-dark);
  padding: 0;
  margin: 0 10px;
  border-radius: 12px !important;
  width: 40px;
  height: 40px;
  line-height: 39px;
  text-align: center;
  font-weight: 500;
  border: none;
  transition: var(--transition);
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--theme-color);
  color: var(--color-white);
}

.pagination .page-link span {
  line-height: 40px;
}

.pagination span.page-link {
  line-height: 27px;
  font-size: 22px;
}

.pagination span.page-link:hover {
  background: var(--theme-bg-light);
  color: var(--body-text-color);
}

/*====================47. Auth css ======================*/
.auth-area {
  position: relative;
}

.auth-wrap {
  position: relative;
  padding: 40px;
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

.auth-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-info-color);
}

.auth-header img {
  width: 170px;
  margin: 0 auto 10px auto;
}

.auth-header h3 {
  color: var(--theme-color);
  margin-bottom: 5px;
  font-weight: 700;
}

.auth-header p {
  font-size: 20px;
  color: var(--body-text-color);
}

.auth-form .form-group {
  margin-bottom: 15px;
}

.auth-form label {
  color: var(--body-text-color);
  margin-bottom: 5px;
}

.auth-form .form-control {
  color: var(--body-text-color);
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
  padding: 12px 18px;
  box-shadow: none;
}

.auth-form .form-control::placeholder {
  color: var(--body-text-color);
}

.auth-form .form-control:focus {
  border-color: var(--theme-color);
}

.auth-form .auth-check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.auth-form .auth-check .form-check,
.auth-form .auth-check .form-check-label {
  margin-bottom: 0;
}

.auth-form .form-check-input {
  width: 1.15em;
  height: 1.15em;
  margin-top: 0.35em;
  border-radius: 6px;
  border-color: var(--border-info-color);
  box-shadow: none;
}

.auth-form .form-check-input:checked {
  background-color: var(--theme-color);
  border-color: var(--theme-color);
}

.auth-form .form-check-input:focus {
  border-color: var(--theme-color);
}

.auth-form .auth-check a {
  color: var(--theme-color);
}

.auth-form .auth-check a:hover {
  color: var(--color-danger);
}

.auth-btn {
  margin-top: 25px;
}

.auth-btn .theme-btn {
  width: 100%;
  padding: 12px 18px;
}

.auth-footer {
  text-align: center;
}

.auth-divider {
  display: block;
  margin: 12px 0;
}

.auth-social-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.auth-social-list a {
  background: var(--theme-color);
  color: var(--color-white);
  padding: 5px 18px;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
}

.auth-social-list a i {
  margin-right: 5px;
}

.auth-social-list a:hover {
  opacity: 0.8;
}

.auth-social-list .auth-fb {
  background: #3b5998;
}

.auth-social-list .auth-gl {
  background: #dd4b39;
}

.auth-social-list .auth-tw {
  background: #1d9bf0;
}

.auth-footer p {
  margin-top: 30px;
  color: var(--body-text-color);
}

.auth-footer p a {
  color: var(--theme-color);
}

.auth-footer p a:hover {
  color: var(--color-danger);
}

/*====================48. Coming soon css ======================*/
.coming-soon {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover !important;
  background-position: center !important;
  min-height: 100vh;
  width: 100%;
  z-index: 1;
}

.coming-soon:before {
  position: absolute;
  content: "";
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.coming-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 75vh;
}

.coming-content {
  text-align: center;
}

.coming-info h1 {
  color: var(--color-white);
  font-weight: 700;
  font-size: 50px;
}

.coming-info p {
  font-size: 18px;
  color: var(--color-white);
  margin-top: 10px;
}

.coming-countdown-wrap {
  margin-top: 30px;
  margin-bottom: 30px;
}

.coming-countdown .time-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.coming-countdown .time {
  background: var(--color-white);
  width: 125px;
  border-radius: 15px;
  padding: 14px 10px;
}

.coming-countdown .time span {
  display: block;
}

.coming-countdown .time span:first-child {
  color: var(--theme-color);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
}

.coming-countdown .time .unit {
  color: var(--body-text-color);
  font-weight: 500;
}

.coming-countdown .divider {
  display: none;
}

.coming-newsletter-form {
  margin-top: 50px;
  margin-bottom: 25px;
}

.coming-newsletter-form .form-group {
  position: relative;
}

.coming-newsletter-form .form-control {
  padding: 17px 150px 17px 20px;
  border-radius: 12px;
  border: none;
  box-shadow: none;
}

.coming-newsletter-form .theme-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  padding: 9px 15px;
}

.coming-social {
  margin-top: 40px;
  text-align: center;
}

.coming-social a {
  display: inline-block;
  background: var(--theme-color);
  color: var(--color-dark);
  margin: 5px;
  width: 42px;
  height: 42px;
  line-height: 42px;
  text-align: center;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: var(--box-shadow2);
}

.coming-social a:hover {
  background: var(--color-danger);
  color: var(--color-white);
}

@media all and (max-width: 767px) {
  .coming-info h1 {
    font-size: 40px;
  }
}

/*====================49. Error css ======================*/
.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: var(--theme-color);
}

.error-wrapper h1 span {
  color: var(--color-dark);
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
  color: var(--color-dark);
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}

@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}

/*====================50. Terms/privacy css ====================== */
.terms-content:not(:last-child) {
  margin-bottom: 54px;
}

.terms-content:first-child {
  margin-top: -3px;
}

.terms-content .terms-list {
  margin-top: 37px;
}

.terms-content h3 {
  color: var(--color-dark);
  margin-bottom: 23px;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}

/*====================52. Footer css ======================*/
.footer-area {
  position: relative;
  background-image: url(../../img/ftr.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.footer-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #e3e3e3a1;
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 160px;
  margin-bottom: 10px;
}

.footer-logo .logo-light-mode {
  display: none;
}

.footer-widget-title {
  color: var(--theme-color);
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 20px;
  height: 3px;
  background: var(--theme-color);
  border-radius: 50px;
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: "";
  z-index: -1;
  width: 10px;
  height: 3px;
  background: var(--theme-color);
  border-radius: 50px;
  bottom: 0;
  left: 25px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-list li a {
  position: relative;
  color: #000000;
  transition: var(--transition);
  padding-left: 14px;
  font-size: 14px;
}

.footer-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 3px;
  background: #000000;
  border-radius: 50px;
  transform: translateY(-50%);
  transition: var(--transition);
}

.footer-list li a:hover::before {
  width: 10px;
}

.footer-list li a:hover {
  padding-left: 20px;
  color: #000000;
}

.footer-widget-box p {
  color: #000000;
  padding-right: 18px;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: flex-start;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: var(--theme-color);
  color: var(--color-white);
}

.footer-social li a i:hover {
  background: var(--theme-color);
  color: var(--color-white);
  transition: var(--transition);
}

.subscribe-form .form-control {
  padding: 14px 20px;
  border-radius: 12px;
  background: #00000021;
  color: #000000;
  border: 2px solid var(--theme-color);
  box-shadow: none;
}

.subscribe-form .form-control::placeholder {
  color: #000;
}

.subscribe-form .form-control:focus {
  border-color: var(--theme-color);
}

.subscribe-form .theme-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  margin-top: 20px;
  background: var(--theme-color);
}

.footer-top-link {
  margin-top: 30px;
}

.footer-top-link a {
  border: 1px solid var(--border-info-color);
  color: var(--body-text-color);
  font-size: 15px;
  padding: 2px 15px;
  border-radius: 50px;
  margin: 5px 5px 5px 0px;
}

.footer-top-link a:hover {
  border-color: var(--theme-color);
  color: var(--theme-color);
}

.footer-download .download-btn {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-download a {
  background: var(--color-white);
  padding: 0px 8px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--border-info-color);
}

.footer-download a .icon {
  font-size: 28px;
  color: var(--theme-color);
}

.footer-download .info p {
  font-size: 13px;
  font-weight: 500;
  color: var(--body-text-color);
  margin-bottom: 0;
  line-height: 1;
}

.footer-download .info h5 {
  font-size: 17px;
  font-weight: 700;
}

.copyright {
  position: relative;
  padding: 20px 0;
  border-top: 1px solid rgb(120 120 120 / 25%);
}

.copyright .footer-menu {
  margin: 0;
  padding: 0;
  text-align: right;
}

.copyright .footer-menu li {
  display: inline-block;
  margin-left: 25px;
  font-size: 16px;
}

.copyright .footer-menu li a {
  color: #000000;
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright .copyright-text {
  color: #000000;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: #000;
  font-weight: 500;
}

@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }

  .footer-social {
    gap: 8px;
  }
}

@media all and (max-width: 991px) {
  .footer-top-link {
    margin-top: 0;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 14px;
  }
}

@media all and (max-width: 767px) {
  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .copyright .copyright-text a {
    color: var(--theme-color);
  }

  .copyright .footer-menu {
    text-align: left;
  }
}

/*====================53. Home 2 css ======================*/
.home-2 .hero-single {
  background: var(--footer-bg);
  padding-top: 136px;
  padding-bottom: 115px;
  background: url("../../img/bg.jpg");
}

.home-2 .hero-shape img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: 0.2;
  z-index: -1;
  display: none;
}

.home-2 .hero-single .hero-content .hero-title {
  font-size: 39px;
}

.home-2 .hero-single .hero-content .hero-sub-title {
  background: var(--theme-color);
  color: var(--color-white);
  padding: 4px 10px;
  border-radius: 50px;
  font-size: 18px;
  letter-spacing: 0;
  font-weight: 400;
}

.home-2 .hero-img {
  position: relative;
}

.home-2 .hero-img .img-1 img {
  border-radius: 50% 50% 0px 50%;
}

.home-2 .hero-img .img-2 img {
  border-radius: 50% 50% 50% 0px;
}

.home-2 .hero-img .img-3 img {
  border-radius: 50% 0px 50% 50%;
}

.home-2 .hero-img .img-4 img {
  border-radius: 0px 50% 50% 50%;
}

.home-2 .hero-img .player-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: var(--theme-color);
  text-align: center;
  border-radius: 50px;
  border: 10px solid var(--footer-bg);
  margin-top: 10px;
}

.home-2 .hero-img .player-btn i {
  width: 100px;
  color: var(--color-white) !important;
  font-size: 30px;
}

.home-2 .hero-img .hero-img-text {
  position: absolute;
  left: -150px;
  top: 50px;
  background: var(--color-white);
  color: var(--color-dark);
  text-align: center;
  font-weight: 500;
  padding: 10px;
  width: 230px;
  border-radius: 20px 20px 0px 20px;
  box-shadow: var(--box-shadow);
}

.home-2 .platform {
  position: relative;
  /* margin-top: -80px; */
  z-index: 1;
}

.home-2 .platform-content {
  width: fit-content;
  padding: 10px 50px 10px 20px;
}

.home-2 .platform-content > h4 {
  color: var(--color-dark);
}

.home-2 .platform .platform-content {
  background: var(--color-white);
  border-radius: 0 50px 0 0;
}

.home-2 .platform-item h5 {
  color: var(--color-dark);
}

@media all and (min-width: 992px) and (max-width: 1199px) {
  .home-2 .hero-img .hero-img-text {
    top: -10px;
    left: -50px;
  }

  .home-2 .platform {
    margin-top: -30px;
  }
}

@media all and (max-width: 991px) {
  .home-2 .hero-img .hero-img-text {
    left: 0;
    top: 0;
  }

  .home-2 .platform {
    margin-top: -50px;
  }
}

@media all and (max-width: 767px) {
  .home-2 .hero-single {
    padding-top: 200px;
    padding-bottom: 60px;
  }

  .home-2 .hero-single .hero-content .hero-title {
    font-size: 50px;
  }

  .home-2 .hero-img .hero-img-text {
    left: unset;
    right: 50px;
    top: 0px;
  }
}

/*====================54. Home 3 css ======================*/
.home-3 .navbar {
  background: var(--color-white);
  padding-top: 5px;
  padding-bottom: 5px;
  border-top: 10px solid var(--theme-color);
}

.home-3 .navbar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5%;
  background: var(--theme-color);
  clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
}

.home-3 .nav-right-link {
  color: var(--color-dark);
}

.home-3 .main {
  margin-top: 0;
}

.home-3 .navbar-toggler-mobile-icon {
  color: var(--color-dark);
}

.home-3 .hero-single {
  padding-top: 150px;
  padding-bottom: 150px;
}

.home-3 .platform-content {
  text-align: center;
}

.home-3 .platform-content > h4 {
  color: var(--color-dark);
}

.home-3 .platform-content ul {
  justify-content: center;
  margin-top: 25px;
}

.home-3 .platform-item h5 {
  color: var(--color-dark);
}

.home-3 .footer-area::before {
  display: none;
}

.home-3 .footer-area::before {
  display: none;
}

.home-3 .audio-player {
  bottom: -121px;
}

.home-3 .audio-player.show {
  bottom: 30px;
}

.home-3 .audio-player .audio-player-hide {
  top: -20px;
  box-shadow: var(--box-shadow2);
}

.home-3 .audio-player.show .audio-player-hide {
  top: 2px;
  box-shadow: none;
}

@media all and (min-width: 992px) {
  .home-3 .navbar .nav-item .nav-link {
    color: var(--color-dark);
  }

  .home-3 .navbar .nav-item .dropdown-menu {
    border-radius: 0;
    border-top: 3px solid var(--theme-color);
  }
}

.map_sec {
  background: #f5f5f5;
  padding: 60px 0;
}

.map_sec .map_div {
  /* box-shadow: 0px 0px 10px #bdbdbd; */
  /* padding: 20px; */
  /* background: #fff; */
  position: relative;
}

.map_sec .side_name h3 {
  margin-bottom: 30px;
}

.map_sec .side_name ul {
  background: var(--color-white);
  border: 15px;
  padding: 15px 20px;
  border-left: 3px solid var(--theme-color);
  box-shadow: var(--box-shadow);
  margin-top: 25px;
  display: none;
}

.map_sec .side_name ul li {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-dark);
  margin: 6px 0;
  position: relative;
  border-bottom: 1px solid #eee;
  text-transform: capitalize;
}

.map_sec .side_name ul li:last-child {
  margin-bottom: 0;
  border-bottom: 0;
}

.map_sec .side_name ul li:before {
  content: "\f058";
  font-family: "Font Awesome 5 Pro";
}

.show-slider .show-item {
  box-shadow: none;
}

.show-item {
  /* background: var(--color-white); */
  /* padding: 7px; */
  border-radius: 15px;
  /* box-shadow: var(--box-shadow); */
}

.show-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.show-img img {
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.show-content {
  margin-top: 15px;
}

.show-content h4 a {
  color: var(--color-dark);
  text-transform: capitalize;
}

header.header {
  position: relative;
  background: #fff;
  z-index: 9;
}

.site-heading.our_main h2.site-title {
  /* background: var(--theme-color); */
  /* width: fit-content; */
  /* margin: 0 auto; */
  /* color: #fff; */
  /* padding: 10px 25px; */
  /* border-radius: 6px; */
  /* text-align: center; */
  font-size: 50px;
}

.platform-item {
  padding: 15px;
}

.platform-item .platform-img {
  box-shadow: 0px 0px 10px #adadad;
  height: 129px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  background: #fff;
}

.platform-item .platform-img img {
  height: 100%;
  object-fit: contain;
}

.location {
  position: absolute;
}

.location.first {
  top: 150px;
  left: 500px;
}

.location.sec {
  top: 134px;
  left: 436px;
}

.location.three {
  top: 128px;
  left: 338px;
}

.location.four {
  top: 118px;
  left: 456px;
}

.location.five {
  top: 157px;
  left: 516px;
}

.location.six {
  top: 137px;
  left: 460px;
}

.location:hover .desc {
  display: flex;
}

.location .desc {
  background: #fff;
  box-shadow: 0px 0px 10px #b1b1b1;
  padding: 7px;
  width: 212px;
  display: flex;
  align-items: center;
  gap: 17px;
  display: none;
  z-index: 12;
  position: relative;
}

.location .desc h3 {
  font-size: 20px;
  text-transform: capitalize;
}

.location .desc img {
  width: 60px;
  border-radius: 5px;
  margin-bottom: 8px;
}

.show-content h4 {
  text-align: center;
}

.show-item:hover .show-img img {
  transform: scale(1.2);
}

.show-img img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.show-item:hover .show-content h4 a {
  color: #0071b9;
}

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  position: relative;
  background: var(--color-white);
  margin-bottom: 25px;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

.team-item::before {
  content: "";
  position: absolute;
  left: 50px;
  right: 50px;
  bottom: 0;
  height: 3px;
  background: var(--theme-color);
  border-radius: 5px;
}

.team-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}

.team-img img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.team-item:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  position: relative;
  background: var(--color-white);
  text-align: center;
  padding: 15px 6px 10px 6px;
  border-radius: 50px;
}

.team-info h5 a {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 500;
}

.team-info h5 a:hover {
  color: var(--theme-color);
}

.team-info span {
  display: inline-block;
  font-size: 14px;
  color: #0071b9;
  font-weight: 500;
  line-height: 20px;
  margin-top: 4px;
}

.team-social {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  text-align: center;
  display: none;
  z-index: 1;
}

.team-social::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 20%;
  bottom: 0;
  right: 27px;
  background: var(--color-white);
  border-radius: 5px 5px 0 0;
  transition: var(--transition2);
  z-index: -1;
}

.team-item:hover .team-social::before {
  height: 38%;
}

.team-social a {
  display: block;
  color: var(--color-white);
  width: 38px;
  height: 38px;
  line-height: 39px;
  margin: 10px;
  border-radius: 50px;
  text-align: center;
  background: var(--theme-color);
}

.team-social a:hover {
  color: var(--color-white);
  background: var(--color-danger);
}

.ser-ico {
  width: 115px;
  height: 115px;
  padding: 19px;
  border-radius: 50%;
  background: #0071b9;
  margin: auto;
  margin-top: -67px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  margin-bottom: 8px;
}

.ser-ico img {
  filter: invert(1);
  transition: all 0.3s ease-in-out 0s;
}

.ser-item {
  background: #fff;
  /* box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px; */
  padding: 18px 21px;
  margin-top: 50px;
  margin-bottom: 52px;
  height: 100%;
}

.ser-cap h5 a {
  color: #0071b9;
  font-size: 25px;
  margin-bottom: 6px;
  margin-top: 11px;
}

.ser-item:hover {
  color: #fff !important;
  background: #0071b9;
}

.ser-item:hover .ser-cap h5 a {
  color: #fff;
}

.ser-item:hover .ser-icon {
  transform: rotateY(360deg);
}

section.ser-sec {
  background: #f5f5f5;
}

.mtys {
  margin-top: 91px;
}

.ser-item.hts {
/*  height: 331px;*/
}

.ser-item.avs {
  height: 487px;
  /* height: 100%; */
  border-radius: 8px;
}

section.bds_v.pro_j ul li {
  list-style: circle;
  color: #403d3d;
}

h1.tes {
  font-size: 26px;
  margin-bottom: 42px;
  font-weight: 700;
  color: #0071b9;
}

.ulo ul {
  display: flex;
  flex-wrap: wrap;
  /* justify-content: space-around; */
  gap: 13px;
  justify-content: center;
}

.ulo ul li {
  width: 10%;
  padding: 10px;
  background: #fff;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 30px;
  border: 2px dashed #e9e9e9;
  border-radius: 9px;
}

.ulo ul li img {
  width: 100%;
  object-fit: contain;
  height: 118px;
}

section.clien {
  padding: 75px 0px;
}

.wrp_ab span {
  font-size: 35px;
  font-weight: 600;
  color: #0071b9;
}

.wrp_ab {
  padding: 26px 44px;
  border-radius: 5px;
}

section.mi_vis {
  padding: 60px 0px;
  background: #fcfcfc;
}

.icv {
  width: 116px;
  border-radius: 50%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  padding: 13px;
  margin-bottom: 11px;
  display: block;
  border: 5px solid #c5dafc;
}

.owl-nav span {
  background: #0071b9;
  color: #ffffff;
  padding: 0px 13px;
  font-size: 27px;
}

.owl-nav {
  position: absolute;
  top: 39%;
  width: 100%;
}

button.owl-prev {
  left: -36px;
  position: absolute;
}

button.owl-next {
  right: -36px;
  position: absolute;
}

.owl-dots {
  display: none;
}

.img-1.hyts img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}

.tabs {
  display: flex;
  /* border-bottom: 2px solid #ddd; */
  margin-bottom: 20px;
}

.tab {
  padding: 9px 29px;
  cursor: pointer;
  border: none;
  background: none;
  font-size: 16px;
  border-bottom: 2px solid transparent;
  transition: 0.3s;
  background: #f3f3f3 !important;
  margin: 6px 6px;
}

.tab.active {
  /* border-bottom: 2px solid #007bff; */
  color: #ffffff;
  background: #0071b9 !important;
  border-radius: 6px !important;
  font-weight: 600;
}

.tab:hover {
  color: #0056b3;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tby_wrap h1 {
  font-size: 22px;
}

.donate-content ul li {
  font-size: 15px;
  /* font-weight: 600; */
  list-style-type: disc;
}

.donate-content ul {
  padding-left: 13px;
}

.csd_cy {
  background: #ffff;
  padding: 16px;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 10px;
  height: 100%;
  margin: 8px;
}

.cvd .col-md-6 {
  margin-top: 20px;
}

section.tby {
  padding: 54px 0px;
}

.sec_t h2 {
  color: #0071b9;
  text-align: center;
  font-weight: 700;
}

.show-area {
  position: relative;
}

.pro_vb .show-item {
  /* background: var(--color-white); */
  padding: 15px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  /* height: 100%; */
}

.pro_vb .show-img {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.pro_vb .show-img img {
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.pro_vb .show-item:hover .show-img img {
  transform: scale(1.1) rotate(1deg);
}

.pro_vb .show-favourite {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 38px;
  height: 38px;
  line-height: 40px;
  text-align: center;
  color: var(--color-danger);
  font-size: 18px;
  background: var(--color-white);
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.pro_vb .show-favourite:hover {
  color: var(--color-white);
  background: var(--color-danger);
}

.pro_vb .show-content {
  margin-top: 15px;
}

.pro_vb .show-content h4 a {
  color: var(--color-dark);
  text-transform: capitalize;
}

.pro_vb .show-content h4 a:hover {
  color: var(--theme-color);
}

.pro_vb .show-meta ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.pro_vb .show-meta ul li {
  color: var(--body-text-color);
}

.pro_vb .show-meta ul li i {
  color: var(--color-danger);
}

.pro_vb .show-meta ul li a {
  color: var(--body-text-color);
}

.pro_vb .show-meta ul li a:hover {
  color: var(--theme-color);
}

.pro_vb .show-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-info-color);
  margin-top: 15px;
  padding-top: 15px;
}

.pro_vb .show-host {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pro_vb .show-host .host-img img {
  width: 50px;
  border-radius: 50px;
}

.pro_vb .show-host .host-content h6 {
  color: var(--color-dark);
}

.pro_vb .show-host .host-content p {
  color: var(--body-text-color);
  font-size: 15px;
}

.pro_vb .show-player .player-btn {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 18px;
  border-radius: 50px;
  border: none;
  box-shadow: var(--box-shadow);
}

/* show slider */
.pro_vb .show-slider .show-item {
  box-shadow: none;
}

.pro_vb .show-slider.owl-theme .owl-nav button {
  color: var(--color-white);
  font-size: 25px;
  background: var(--theme-color);
  height: 42px;
  width: 42px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s ease-in-out;
}

.pro_vb .show-slider.owl-theme .owl-nav .owl-prev {
  left: -25px;
  opacity: 0;
}

.pro_vb .show-slider.owl-theme .owl-nav .owl-next {
  right: -25px;
  opacity: 0;
}

.pro_vb .show-slider:hover .owl-nav .owl-prev {
  left: -10px;
  opacity: 1;
}

.pro_vb .show-slider:hover .owl-nav .owl-next {
  right: -10px;
  opacity: 1;
}

.pro_vb .show-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.pro_vb .show-slider .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid var(--theme-color);
  margin: 5px;
  width: 20px;
  height: 10px;
  display: inline-block;
  border-radius: 50px;
  transition: var(--transition);
}

.pro_vb .show-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}

.show-slider_ns .show-item {
  background: #fff;
}

.show-slider_bl.owl-theme .owl-nav button {
  color: var(--color-white);
  font-size: 25px;
  background: var(--theme-color);
  height: 42px;
  width: 42px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s ease-in-out;
}

.show-slider_bl.owl-theme .owl-nav .owl-prev {
  left: -25px;
  opacity: 0;
}

.show-slider_bl.owl-theme .owl-nav .owl-next {
  right: -25px;
  opacity: 0;
}

.show-slider_bl:hover .owl-nav .owl-prev {
  left: -10px;
  opacity: 1;
}

.show-slider_bl:hover .owl-nav .owl-next {
  right: -10px;
  opacity: 1;
}

.show-slider_bl .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.show-slider_bl .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid var(--theme-color);
  margin: 5px;
  width: 20px;
  height: 10px;
  display: inline-block;
  border-radius: 50px;
  transition: var(--transition);
}

.show-slider_bl .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}

.show-slider_tl.owl-theme .owl-nav button {
  color: var(--color-white);
  font-size: 25px;
  background: var(--theme-color);
  height: 42px;
  width: 42px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  margin-top: -20px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  transition: all 0.5s ease-in-out;
}

.show-slider_tl.owl-theme .owl-nav .owl-prev {
  left: -25px;
  opacity: 0;
}

.show-slider_tl.owl-theme .owl-nav .owl-next {
  right: -25px;
  opacity: 0;
}

.show-slider_tl:hover .owl-nav .owl-prev {
  left: -10px;
  opacity: 1;
}

.show-slider_tl:hover .owl-nav .owl-next {
  right: -10px;
  opacity: 1;
}

.show-slider_tl .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.show-slider_tl .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid var(--theme-color);
  margin: 5px;
  width: 20px;
  height: 10px;
  display: inline-block;
  border-radius: 50px;
  transition: var(--transition);
}

.show-slider_tl .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}

.amin {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.amin {
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
}

.box_d {
  width: 152px;
  /* height: 100%; */
  background: #0071b9;
  color: #fff;
  border-radius: 6px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box_d span {
  color: #fff;
  text-align: center;
  font-size: 16px;
  /* font-weight: 700; */
  line-height: 23px !important;
  padding: 15px 0px;
  display: block;
}

.wse {
  position: relative;
}

.wse:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #d5d5d5;
  top: 68px;
  z-index: -1;
}

.wrp-img {
  width: 100%;
  overflow: hidden;
  height: 300px;
  margin-top: 62px;
  border-radius: 9px;
}

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

ul.lyst {
  display: flex;
  justify-content: space-between;
}

ul.lyst li {
  background: #0071b9;
  padding: 6px 25px;
  color: #fff;
  font-size: 20px;
}

.mid {
  padding-top: 120px;
  padding-bottom: 120px;
  position: relative;
}

.grd span {
  font-size: 21px;
  font-weight: 400;
  line-height: 10px !important;
}

.grd {
  padding: 14px 15px;
  text-align: center;
}

.fsd1 {
  position: absolute;
  content: "";
  width: 36px;
  height: 114px;
  background: url("../../assets/img/sp.png");
  top: 0;
  left: 202px;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
}

.fsd2 {
  position: absolute;
  content: "";
  width: 36px;
  height: 114px;
  background: url("../../assets/img/sp.png");
  top: 0;
  left: 41%;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
}

.fsd3 {
  position: absolute;
  content: "";
  width: 36px;
  height: 114px;
  background: url("../../assets/img/sp.png");
  top: 0;
  right: 31%;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
}

.fsd4 {
  position: absolute;
  content: "";
  width: 36px;
  height: 114px;
  background: url("../../assets/img/sp.png");
  top: 0;
  right: 6%;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
}

.fsd5 {
  position: absolute;
  content: "";
  width: 36px;
  height: 114px;
  background: url("../../assets/img/sp.png");
  bottom: 0;
  left: 24%;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
}

.fsd6 {
  position: absolute;
  content: "";
  width: 36px;
  height: 114px;
  background: url("../../assets/img/sp.png");
  bottom: 0;
  left: 49%;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
}

.fsd7 {
  position: absolute;
  content: "";
  width: 36px;
  height: 114px;
  background: url("../../assets/img/sp.png");
  bottom: 0;
  right: 23%;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
}

section.mile {
  padding: 50px 0px;
}

.icn {
  width: 100px;
  background: #0071b9;
  padding: 15px;
  border-radius: 50%;
  margin: auto;
}

.icn img {
  filter: invert(1);
}

.icy span {
  text-align: center;
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: #3c3c3f;
  margin-top: 9px;
  margin-bottom: 8px;
}

.icy {
  padding: 10px 11px;
  background: #fff;
  height: 100%;
  border-radius: 5px;
}

.blog-area.bgy {
  background: #f2f2f2;
  padding: 50px 0px;
}

section.wht {
  padding: 50px 0px;
}

section.wht {
  background: #fafafa;
}

@media only screen and (max-width: 768px) {
  .grd span {
    font-size: 15px;
    line-height: 1px !important;
  }

  ul.lyst li {
    padding: 6px 15px;
    font-size: 11px;
  }

  .amin {
    flex-wrap: wrap;
  }

  .box_d span {
    font-size: 12px;
  }

  .box_d {
    height: 60px;
  }

  .icy span {
    font-size: 12px;
    line-height: 15px;
  }

  .wrp_ab {
    padding: 15px 15px;
  }
}

@media only screen and (max-width: 480px) {
  .img-1.hyts img {
    height: 382px;
    object-fit: cover;
  }

  .site-title,
  .site-heading-inline .site-title {
    font-size: 29px;
  }

  .mid {
    display: none;
  }

  .amin {
    justify-content: space-around;
  }

  .frt {
    margin: auto;
  }

  .site-heading.our_main h2.site-title {
    text-align: center;
    font-size: 37px;
  }

  .site-breadcrumb {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .home-2 .hero-single .hero-content .hero-title {
    font-size: 23px;
    line-height: 34px;
  }

  .theme-btn {
    position: relative;
    font-size: 10px;
  }

  .counter-area .grid_sty {
    grid-template-columns: 1fr 1fr;
  }

  .counter-area .counter-box {
    margin: 10px 0;
  }

  button.owl-prev {
    left: 3px;
  }

  button.owl-next {
    right: 3px;
  }

  .copyright {
    padding-bottom: 20px;
  }

  .tabs {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 415px) {
  .img-1.hyts img {
    height: 382px;
    object-fit: cover;
  }

  .site-title,
  .site-heading-inline .site-title {
    font-size: 29px;
  }

  .mid {
    display: none;
  }

  .amin {
    justify-content: space-around;
  }

  .frt {
    margin: auto;
  }

  .site-heading.our_main h2.site-title {
    text-align: center;
    font-size: 37px;
  }

  .site-breadcrumb {
    padding-top: 200px;
    padding-bottom: 100px;
  }

  .home-2 .hero-single .hero-content .hero-title {
    font-size: 23px;
    line-height: 34px;
  }

  
  .counter-area .grid_sty {
    grid-template-columns: 1fr 1fr;
  }

  .counter-area .counter-box {
    margin: 10px 0;
  }

  button.owl-prev {
    left: 3px;
  }

  button.owl-next {
    right: 3px;
  }

  .copyright {
    padding-bottom: 82px;
  }

  .tabs {
    justify-content: center;
  }
}

.wrp_t table {
  width: 100%;
  border-collapse: collapse;
  margin: 0px 0;
  font-size: 18px;
  text-align: left;
}

.wrp_t th,
td {
  padding: 10px;
  border: 1px solid #ffffff;
}

.wrp_t tr,
td {
  font-size: 14px;
}

.wrp_t th {
  background: #f3f3f3;
  color: #000;
  text-align: center;
  font-weight: 400;
  font-size: 16px;
}

.wrp_t tr:nth-child(odd) {
  background: #fff;
}

.wrp_t tr:nth-child(even) {
  background: #f2f2f2;
}

.wrp_t tr td:nth-child(1) {
  width: 20%;
}

.lo img {
  width: 74px;
  text-align: center;
  margin: auto;
  display: block;
}

section.tra {
  padding: 50px 0px;
  background: #f7f7f7;
}

.but_1 button {
  border: 1px solid #0071b9;
  padding: 10px 24px;
  border-radius: 8px;
  text-align: center;
  margin: auto;
  display: block;
  background: #0071b9;
  color: #fff;
}

.but_2 a {
  background: #31b131;
  padding: 11px 22px;
  color: #fff;
  border-radius: 8px;
  text-align: center;
  margin: auto;
  display: block;
}

.sdp span {
  background: #000;
  color: #fff;
  padding: 3px 7px;
  font-size: 11px;
}

.wrp_t {
  border: 1px solid #ececec;
}

/* Ã¢Å“â€¦ Dropdown Styles */
.cal .dropdown {
  position: relative;
  display: inline-block;
}

.cal .dropdown button {
  padding: 5px 20px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cal .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 160px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  z-index: 10;
}

.cal .dropdown-menu a {
  display: block;
  padding: 10px;
  text-decoration: none;
  color: black;
}

.cal .dropdown-menu a:hover {
  background-color: #f1f1f1;
}

.cal .dropdown.active .dropdown-menu {
  display: block;
}

.sdc h4 {
  margin-top: 14px;
  margin-bottom: 5px;
}

.sdc ul li {
  list-style-type: inherit;
}

.sdc ul {
  padding-left: 18px;
  margin-bottom: 29px;
  display: block;
}

.modal-dialog.width_m {
  max-width: 100% !important;
  width: 873px !important;
}

.sdc {
  padding: 26px 40px;
}

button.btn-close.tra {
  float: right;
  text-align: right;
  margin-left: auto;
  display: block;
  margin-right: 12px;
  margin-top: 11px;
}

.tes img {
  width: 100%;
  height: 350px;
  object-fit: contain;
  border-radius: 14px;
}

ul.des_li li {
  list-style-type: disc;
  margin-top: 7px;
}

ul.des_li {
  padding-left: 17px;
  padding-top: 11px;
  margin-top: 13px;
}

section.ser_why {
  padding: 50px 0px;
}

ul.des_li li {
  font-size: 15px;
  font-weight: 400;
}

span.ady_s {
  color: #0071b9 !important;
  font-size: 18px;
  font-weight: 500;
  margin-top: 12px;
  display: block;
}

ul.dis_li li {
  list-style-type: disc;
}

ul.dis_li {
  padding-left: 17px;
  padding-top: 10px;
  padding-bottom: 12px;
}

section.abou_y.pty {
  padding-bottom: 60px;
}

.ser-cap ul li {
  list-style-type: disc;
}

.ser-cap ul {
  padding-left: 18px;
}

button.btn-close.tra {
  float: right;
  text-align: right;
  margin-left: auto;
  display: block;
  margin-right: 12px;
  margin-top: 11px;
}

.wer_sd {
  display: flex;
  gap: 19px;
  align-items: center;
}

.imh_y {
  width: 138px;
  height: 138px;
  background: #cacaca;
  border-radius: 5px;
}

.imh_y img {
  width: 100%;
  height: 100%;
  padding: 10px;
  object-fit: contain;
  /* border-radius: 9px; */
}

.imh_tyu h2 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 10px;
}

.imh_tyu p b {
  color: #000a24;
}

.imh_tyu h2 {
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 10px;
}

.imh_tyu p b {
  color: #000a24;
}

.byt_wrp {
  gap: 15px;
  display: flex;
  justify-content: center;
}

.align-iten-center_c {
  align-items: center;
}

.main_df {
  border: 1px solid #e0e0e0;
  border-radius: 5px;
  padding: 30px 30px;
  margin-bottom: 30px;
  background: #fff;
}

.ddjfh_sd {}
.ddjfh_sd h2{
    margin-bottom: 20px;
    font-size: 25px;
    color: #0072ba;
}
.ddjfh_sd .donate-img{
    float: right;
    width: 35%;
    box-shadow: 0px 0px 10px #7b7b7b;
    border-radius: 15px;
    padding: 7px;
}

.project_slider button {
  position: absolute;
  top:50%;
  transform:translate(-0 -50%);
}
.project_slider button.owl-prev {
    left: 0px;

}
.project_slider button.owl-next {
    right: 0px;
}
.project_slider span {
    background: inherit;
    color: #ffffff;
    padding: 0px 13px;
    font-size: 60px;
    line-height: 60px;
}
.project_slider {
    border-radius: 11px;
    overflow: hidden;
}

.project-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.donate-img {
    border-radius: 11px;
    overflow: hidden;
}
.project-item .donate-img {
    border-radius: 0px;
    overflow: hidden;
}

.donate-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pl-30 {
    padding-left: 30px;
}
.blog-area.bgy .col-md-3.col-sm-6.col-6 {
    margin-bottom: 20px;
    display: block;
}



@media only screen and (max-width: 580px) {
  .counter-area .grid_sty {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0px 0px;
  }

  .home-2 .hero-single .hero-content .hero-title {
     font-size: 25px;
     line-height: 30px;
  }
  .show-content {
    margin-top: 12px;
    padding-bottom: 12px;
  }
  .locations img {
    width: 20px;
  }
  .location.first {
    top: 33%;
    left: 58%;
  }
  .location.sec {
    top: 28%;
    left: 51%;
  }
  .location.three {
    top: 28%;
    left: 40%;
  }
  .location.four {
    top: 26%;
    left: 54%;
  }
  .location.five {
    top: 35%;
    left: 62%;
  }
  .location.six {
    top: 30%;
    left: 55%;
  }

  .blog-item .blog-title a {
    font-size: 18px;
    line-height: 23px;
  }
  .blog-area.bgy .col-md-3.col-sm-6.col-6 {
    margin-bottom: 20px;
    display: block;
   }
   
  .icy span {
    font-size: 14px;
    line-height: 18px;
  }
  .theme-btn {
    font-size: 14px;
    padding: 7px 10px;
   }

  .counter-box .counter-content { font-size: 13px;}
  .navbar { background: #fff; }
  .navbar-toggler-mobile-icon {color:#000;}
  .mobile-menu-right .nav-right-link {color:#000;}
  .hero-single .hero-content {margin: 0 40px;}
  .show-slider_ns .show-item {margin-bottom: 20px;}
  .about-experience {display: block;}
  .about-right {margin-top: 30px;}
  .site-title, .site-heading-inline .site-title {font-size: 25px;}
  .about-content {padding-bottom: 10px;}
  .main-category .category-content h4 { font-size: 18px;}
  .blog-item .blog-date {font-size: 14px;}
  .main-category .category-img { margin-top: 0px;}
  .tabs {flex-wrap: wrap;}
  .ddjfh_sd .donate-img {width: 50%;margin-left: 10px;}
  .owl-nav button {overflow: hidden;}
  .owl-nav span {line-height: 27px;}
  .footer-widget-wrapper.pt-80.pb-50 {padding-bottom: 0px;}
  .blog-area .col-md-6.col-lg-4 { margin-bottom: 30px;}
  .py-80 {padding: 25px 0;}
  .site-heading-inline {margin-bottom: 0px;}
  .site-heading {margin-bottom: 20px;}
  .home-2 .hero-single {height:460px;}
  .feature-content p {font-size: 14px;}
  .feature-content h4 {font-size: 18px;}
  .site-heading.our_main h2.site-title {font-size: 35px;}
  .img-1.hyts img {height: 385px;}
  .location .desc {width: auto;gap: 6px;}
  .location .desc img {margin-bottom: 0px;width: 35px;}
  .location .desc h3 {font-size: 14px;}
  
  
}

@media only screen and (max-width: 425px) {
    .counter-box .icon {
    width: 80px;
    height: 80px;
    line-height: 68px;
    margin-bottom: 6px;
    }
  .counter-box .icon img {width: 45px;}
  .counter-box .counter-content {font-size: 14px;}
  .counter-box .counter {font-size: 20px;}
  .testimonial-quote p {font-size: 16px;}
  .tab {font-size: 12px;}
  .footer-widget-wrapper.pt-80.pb-50 {padding-bottom: 0px;}
  .blog-area .col-md-6.col-lg-4 { margin-bottom: 30px;}
  .py-80 {padding: 25px 0;}
  .site-heading {margin-bottom: 20px;}
  .home-2 .hero-single {height:460px;}
  .main-category .category-img img { height: 80px;}
  .main-category .category-item {margin-top: 20px;}
  .locations img {width: 15px;}
    .footer-social {margin-top: 10px;}
  
  
}

@media only screen and (max-width: 380px) {
  .counter-area .grid_sty {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0px 0px;
  }
  .feature-content h4 {font-size: 16px;}
  .main-category .category-content h4 {
    font-size: 16px;
  }
  .platform-item .platform-img img {
    height: 106px;
    width: 158px;
  }
  .about-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .home-2 .hero-single .hero-content .hero-title {
    font-size: 18px;
  }

  .site-title,
  .site-heading-inline .site-title {
    font-size: 24px;
  }

  .scroll-top.active {
    bottom: 98px;
  }

  .copyright {
    padding-bottom: 0px;
  }

  .copyright .copyright-text {
    font-size: 11px;
  }

  h4 {
    font-size: 18px;
  }

  .site-heading {
    margin-bottom: 17px;
  }

  .testimonial-author .author-info h4 {
    font-size: 15px;
  }

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

  .site-heading.our_main h2.site-title {
    font-size: 26px;
  }

  h2 {
    font-size: 26px;
  }

  .donate-content h1 {
    font-size: 26px;
  }

  .ser-cap h5 a {
    font-size: 21px;
  }

  .ser-cap ul li {
    font-size: 14px;
  }

  .ser-item.hts {
    height: auto;
  }

  .ser-item.avs {
    height: auto;
  }

  h1.tes {
    font-size: 22px;
  }

  .auth-wrap {
    padding: 29px;
  }

  .copyright .footer-menu {
    text-align: center;
  }

  .copyright .footer-menu li {
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1260px;
    }
}