/*====================
2. Theme variables
======================*/

:root {
  --body-font: 'Roboto', sans-serif;
  --heading-font: 'Roboto',
    sans-serif;
  --body-text-color: #7386a8;
  --theme-color: #259b9c;
  --theme-bg-light: rgba(2, 171, 253, .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: #e57025;
  --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 .5s ease-in-out;
  --transition2: all .3s ease-in-out;
  --border-info-color: rgba(117, 127, 149, .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;
}

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;
}

.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;
}



/*====================
4. Preloader
======================*/

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: var(--theme-color);
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-ripple {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.loader-ripple div {
  position: absolute;
  border: 4px solid var(--color-white);
  opacity: 1;
  border-radius: 50%;
  animation: loader-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

.loader-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}

@keyframes loader-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }

  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}




/*===================
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: 80px 0;
}

.py-90 {
  padding: 90px 0;
}

.py-100 {
  padding: 100px 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;
  margin-bottom: 40px;
}

.site-heading-inline .site-title {
  font-size: 25px;
}

.site-heading-inline .theme-btn {
  border-radius: 10px;
  padding: 4px 12px;
}

.site-title-tagline {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 20px;
  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: 15%;
  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: 25px;
  color: var(--color-dark);
  margin-top: 10px;
  margin-bottom: 0;
  position: relative;
}

.site-title span {
  color: var(--theme-color);
}

.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: 22px;
  }

  .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 .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: .4;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  .scroll-top.active {
    bottom: 100px;
  }
}


/*============================
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, .8);
  transition: all 1500ms cubic-bezier(0.860, 0.000, 0.070, 1.000);
  transition-timing-function: cubic-bezier(0.860, 0.000, 0.070, 1.000);
}

.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 
======================*/

.main {
  margin-top: -7rem;
}

@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: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  z-index: -1;
}

.hero-single .hero-content {
  height: 100%;
}

.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: var(--color-white);
  font-size: 75px;
  font-weight: 600;
  margin: 20px 0;
  text-transform: capitalize;
  line-height: 1.2;
}

.hero-single .hero-content .hero-title span {
  color: transparent;
  -webkit-text-stroke: 2px var(--color-white);
  -webkit-text-fill-color: transparent;
}

.hero-single .hero-content p {
  color: var(--color-white);
  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: .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-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.platform-img {
  width: 45px;
  height: 45px;
  background: var(--color-white);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-img img {
  width: 24px;
}

.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;
}

.about-experience::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px dashed var(--color-white);
  border-radius: 50%;
}

.about-experience h6 {
  font-size: 25px;
  color: var(--color-white);
}

.about-experience p {
  color: var(--color-white);
  font-weight: 600;
}

.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-left: 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 {
    flex-direction: column;
    align-items: flex-start;
  }
}



/*====================
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;
}

.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: 22px;
  font-weight: 600;
  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: .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);
}

.main-category .category-img {
  margin-top: -25px;
  overflow: hidden;
  border-radius: 14px;
}

.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 h4 {
  font-size: 22px;
  color: var(--color-dark);
  font-weight: 500;
  margin-bottom: 5px;
  transition: var(--transition);
}

.main-category .category-item:hover .category-content h4 {
  color: var(--theme-color);
}

.main-category .category-content span i {
  color: var(--color-danger);
  margin-right: 5px;
}

.main-category .category-content span {
  color: var(--body-text-color);
  font-weight: 500;
}




/* ===================
22. Show css 
====================== */

.show-area {
  position: relative;
}

.show-item {
  background: var(--color-white);
  padding: 15px;
  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-item:hover .show-img img {
  transform: scale(1.1) rotate(1deg);
}

.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;
}

.show-favourite:hover {
  color: var(--color-white);
  background: var(--color-danger);
}

.show-content {
  margin-top: 15px;
}

.show-content h4 a {
  color: var(--color-dark);
  text-transform: capitalize;
}

.show-content h4 a:hover {
  color: var(--theme-color);
}

.show-meta ul {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 6px;
}

.show-meta ul li {
  color: var(--body-text-color);
}

.show-meta ul li i {
  color: var(--color-danger);
}

.show-meta ul li a {
  color: var(--body-text-color);
}

.show-meta ul li a:hover {
  color: var(--theme-color);
}

.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;
}

.show-host {
  display: flex;
  align-items: center;
  gap: 10px;
}

.show-host .host-img img {
  width: 50px;
  border-radius: 50px;
}

.show-host .host-content h6 {
  color: var(--color-dark);
}

.show-host .host-content p {
  color: var(--body-text-color);
  font-size: 15px;
}

.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 */
.show-slider .show-item {
  box-shadow: none;
}

.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 .5s ease-in-out;
}

.show-slider.owl-theme .owl-nav .owl-prev {
  left: -25px;
  opacity: 0;
}

.show-slider.owl-theme .owl-nav .owl-next {
  right: -25px;
  opacity: 0;
}

.show-slider:hover .owl-nav .owl-prev {
  left: -10px;
  opacity: 1;
}

.show-slider:hover .owl-nav .owl-next {
  right: -10px;
  opacity: 1;
}

.show-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.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);
}

.show-slider .owl-dots .owl-dot.active span {
  background-color: var(--theme-color);
}




/* ===================
23. Show single css 
====================== */

.show-single {
  position: relative;
}

.show-single-img img {
  border-radius: 15px;
  width: 100%;
}

.show-single-meta {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}

.show-single-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.show-single-meta .meta-img img {
  width: 60px;
  border-radius: 50%;
}

.show-single-meta .meta-icon {
  width: 50px;
  height: 50px;
  line-height: 48px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
}

.show-single-meta .player-btn {
  width: 50px;
  height: 50px;
  line-height: 48px;
  background: var(--theme-color);
  color: var(--color-dark);
  font-size: 20px;
  border-radius: 50px;
  border: none;
  box-shadow: var(--box-shadow);
}

.show-single-info {
  margin-top: 30px;
}

.show-single-info .title {
  margin-bottom: 15px;
}

.show-single-more-img img {
  border-radius: 15px;
}

.show-single-list i {
  color: var(--theme-color);
  margin-right: 10px;
}

.show-single .widget {
  background: var(--color-white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  margin-bottom: 25px;
}

.show-single .widget-title {
  position: relative;
  margin-bottom: 35px;
}

.show-single .widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  border-bottom: 3px solid var(--theme-color);
}

.show-single .widget .listen-on {
  display: flex;
  gap: 12px;
}

.show-single .widget .listen-on a {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background: var(--theme-bg-light);
  border-radius: 50px;
  text-align: center;
}

.show-single .widget .listen-on a:hover {
  transform: translateY(-5px);
}

.show-single .widget .listen-on img {
  width: 25px;
}

.show-single .widget .category-list a {
  display: block;
  padding: 10px 0;
  color: var(--body-text-color);
  font-weight: 500;
  border-bottom: 1px dashed var(--border-info-color);
  transition: var(--transition);
}

.show-single .widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.show-single .widget .category-list a:hover {
  color: var(--theme-color);
  padding-left: 5px;
}

.show-single .widget .category-list a i {
  color: var(--theme-color);
  margin-right: 8px;
}

.show-single .widget .category-list a span {
  float: right;
}

.show-single .widget .tag-list a {
  background: var(--theme-bg-light);
  color: var(--body-text-color);
  padding: 5px 12px;
  border-radius: 8px;
  margin-right: 5px;
  margin-bottom: 7px;
}

.show-single .widget .tag-list a:hover {
  background: var(--theme-color);
  color: var(--color-dark);
}

.show-single-list {
  background: var(--color-white);
  margin-top: 30px;
  margin-bottom: 30px;
  padding: 20px;
  box-shadow: var(--box-shadow);
  border-radius: 10px;
}

.show-single-list .title {
  border-bottom: 1px solid var(--border-info-color);
  padding-bottom: 20px;
  margin-bottom: 30px;
}

.show-single-list-img img {
  border-radius: 15px;
}

.show-single-list .show-list-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px dashed var(--border-info-color);
}

.show-single-list .show-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.show-single-list .show-list-item .player-btn {
  width: 35px;
  height: 35px;
  line-height: 35px;
  border-radius: 50px;
  border: none;
  background: var(--theme-bg-light);
  color: var(--theme-color);
  padding-left: 12px;
}

.show-single-list .show-list-item img {
  width: 40px;
  border-radius: 5px;
}

.show-single-list .show-list-item h6 {
  flex: 1;
}



/* ===================
24. Episode css 
====================== */

.episode-area {
  position: relative;
}

.episode-item {
  display: flex;
  align-items: center;
  gap: 15px;
  border-radius: 15px;
  padding: 10px 20px 10px 10px;
  border: 1px solid #ddd;
}

.episode-img {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
}

.episode-img img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 15px;
}

.episode-item:hover .episode-img img {
  transform: scale(1.1) rotate(2deg);
}

.episode-favourite {
  position: absolute;
  left: 5px;
  top: 5px;
  width: 30px;
  height: 30px;
  line-height: 32px;
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.episode-favourite:hover {
  background: var(--color-danger);
  color: var(--color-white);
}

.episode-content {
  flex: 1;
}

.episode-content h4 a {
  color: var(--color-dark);
  font-size: 21px;
}

.episode-content h4 a:hover {
  color: var(--theme-color);
}

.storytitles:hover {
  color: var(--theme-color);
}

.episode-meta ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.episode-meta ul li {
  color: var(--body-text-color);
}

.episode-meta ul li a {
  color: var(--body-text-color);
}

.episode-meta ul li i {
  color: var(--color-danger);
}

.episode-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-info-color);
  margin-top: 15px;
  padding-top: 8px;
}

.episode-host h6 i {
  color: var(--color-danger);
  margin-right: 5px;
}

.episode-player .player-btn {
  width: 42px;
  height: 42px;
  background: var(--theme-color);
  color: var(--color-white);
  border: none;
  border-radius: 50px;
  box-shadow: var(--box-shadow);
}

/* episode list */
.episode-list .episode-item {
  gap: 20px;
}

.episode-list .episode-img img {
  width: 200px;
  height: 200px;
}

.video-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;
}

/* episode video */
.episode-video .episode-item {
  flex-direction: column;
  align-items: unset;
  padding: 15px;
}

.episode-video .episode-img img {
  width: 100%;
  height: 200px;
}

.episode-video .episode-img .video-btn {
  position: absolute;
  width: 48px;
  height: 48px;
  line-height: 48px;
  background: var(--theme-color);
  color: var(--color-white);
  border-radius: 50px;
  text-align: center;
  font-size: 20px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--box-shadow);
  z-index: 1;
}

.episode-video .episode-favourite {
  position: unset;
  width: unset;
  height: unset;
  background: transparent;
  font-weight: 600;
  color: var(--color-dark);
  box-shadow: unset;
}

.episode-video .episode-favourite i {
  color: var(--color-danger);
}


@media all and (max-width: 767px) {
  .episode-item {
    align-items: unset;
    flex-direction: column;
  }

  .episode-img img {
    width: 100%;
    height: 200px;
  }

  .episode-list .episode-img img {
    width: 100%;
  }
}




/* ===================
25. Episode single css 
====================== */

.episode-single {
  position: relative;
}

.episode-single-img img {
  border-radius: 15px;
  width: 100%;
}

.episode-single-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 20px;
}

.episode-single-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.episode-single-meta .meta-img img {
  width: 60px;
  border-radius: 50%;
}

.episode-single-meta .meta-icon {
  width: 50px;
  height: 50px;
  line-height: 48px;
  border: 2px solid var(--theme-color);
  color: var(--theme-color);
  border-radius: 50%;
  text-align: center;
  font-size: 22px;
}

.episode-single-meta .player-btn {
  width: 50px;
  height: 50px;
  line-height: 48px;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 20px;
  border-radius: 50px;
  border: none;
  box-shadow: var(--box-shadow);
}

.episode-single-info {
  margin-top: 30px;
}

.episode-single-info .title {
  margin-bottom: 15px;
}

.episode-single-guest {
  margin-top: 30px;
  margin-bottom: 30px;
}

.episode-single-guest .title {
  margin-bottom: 25px;
}

.episode-single-guest .guest-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--color-white);
  border-radius: 15px;
  padding: 20px;
  border: 1px solid var(--border-info-color);
}

.episode-single-guest .guest-img img {
  width: 90px;
  border-radius: 50%;
}

.episode-single-guest .guest-content {
  flex: 1;
}

.episode-single-guest .guest-content h4 {
  font-size: 20px;
}

.episode-single-guest .guest-content span {
  color: var(--color-danger);
  font-weight: 500;
}

.episode-single-guest .guest-content p {
  margin-top: 5px;
}

.episode-single-guest .guest-social {
  margin-top: 10px;
}

.episode-single-guest .guest-social a {
  margin-right: 15px;
  color: var(--color-dark);
}

.episode-single-guest .guest-social a:hover {
  color: var(--color-danger);
}

.episode-single-more-img img {
  border-radius: 15px;
}

.episode-single-list i {
  color: var(--theme-color);
  margin-right: 10px;
}

.episode-single .widget {
  background: var(--color-white);
  padding: 20px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  margin-bottom: 25px;
}

.episode-single .widget-title {
  position: relative;
  margin-bottom: 35px;
}

.episode-single .widget-title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 35px;
  border-bottom: 3px solid var(--theme-color);
}

.episode-single .widget .listen-on {
  display: flex;
  gap: 12px;
}

.episode-single .widget .listen-on a {
  width: 40px;
  height: 40px;
  line-height: 38px;
  background: var(--theme-bg-light);
  border-radius: 50px;
  text-align: center;
}

.episode-single .widget .listen-on a:hover {
  transform: translateY(-5px);
}

.episode-single .widget .listen-on img {
  width: 25px;
}

.episode-single .widget .category-list a {
  display: block;
  padding: 10px 0;
  color: var(--body-text-color);
  font-weight: 500;
  border-bottom: 1px dashed var(--border-info-color);
  transition: var(--transition);
}

.episode-single .widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.episode-single .widget .category-list a:hover {
  color: var(--theme-color);
  padding-left: 5px;
}

.episode-single .widget .category-list a i {
  color: var(--theme-color);
  margin-right: 8px;
}

.episode-single .widget .category-list a span {
  float: right;
}

.episode-single .widget .tag-list a {
  background: var(--theme-bg-light);
  color: var(--body-text-color);
  padding: 5px 12px;
  border-radius: 8px;
  margin-right: 5px;
  margin-bottom: 7px;
}

.episode-single .widget .tag-list a:hover {
  background: var(--theme-color);
  color: var(--color-dark);
}

@media all and (max-width: 1199px) {
  .episode-single-meta {
    justify-content: flex-start;
    gap: 20px;
  }
}



/* ===================
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 12px;
  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: .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;
  }
}




/* ===================
29. Pricing css 
====================== */

.pricing-area {
  position: relative;
}

.pricing-item {
  position: relative;
  background: var(--color-white);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  overflow: hidden;
  z-index: 1;
}

.pricing-item:hover {
  transform: translateY(-10px);
}

.pricing-shape img {
  position: absolute;
  width: 80%;
  right: 10px;
  bottom: 50px;
  opacity: .1;
  z-index: -1;
}

.pricing-header-wrapper {
  margin-bottom: 30px;
}

.pricing-header {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px dashed var(--theme-color);
}

.pricing-header h5 {
  font-size: 25px;
  font-weight: 600;
  text-transform: capitalize;
  display: inline-block;
  color: var(--color-dark);
}

.pricing-header p {
  color: var(--color-dark);
  font-weight: 500;
}

.pricing-amount {
  margin: 15px 0;
}

.pricing-amount strong {
  font-size: 50px;
  font-weight: 900;
  color: var(--color-dark);
  line-height: 1;
}

.pricing-amount-type {
  color: var(--color-dark);
  font-size: 16px;
  font-weight: 500;
}

.pricing-text {
  color: var(--color-dark);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.pricing-feature {
  padding: 40px 0 0 0;
}

.pricing-feature li {
  margin-bottom: 15px;
}

.pricing-feature li:last-child {
  margin-bottom: 0px;
}

.pricing-feature li i {
  color: var(--theme-color);
  margin-right: 10px;
}

.pricing-btn-wrapper .theme-btn {
  width: 100%;
}

.pricing-item.active {
  outline: 3px solid var(--theme-color);
}

@media all and (max-width: 991px) {
  .pricing-amount strong {
    font-size: 50px;
  }
}



/*====================
30. Donate css 
======================*/

.donate-area {
  position: relative;
}

.donate-img img {
  border-radius: 15px;
  width: 100%;
}

.donate-content h1 {
  margin-bottom: 20px;
}

.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: .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;
}

.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: .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, .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;
}

.counter-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(6, 18, 36, .7);
  z-index: -1;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  gap: 25px;
  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 var(--color-white);
  transition: var(--transition);
  z-index: -1;
}

.counter-box .counter-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.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: 45px;
  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: var(--color-white);
  text-transform: capitalize;
  font-size: 38px;
}

.cta-content p {
  color: var(--color-white);
  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: .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;
}




/*====================
38. Blog css 
======================*/

.blog-area {
  position: relative;
}

.blog-item {
  background: var(--color-white);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 25px;
  box-shadow: var(--box-shadow);
}

.blog-item .blog-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
}

.blog-item .blog-img img {
  border-radius: 15px;
}

.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;
}

.blog-single-content .blog-thumb-img img {
  border-radius: 15px;
}

.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: .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);
}

.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;
}

.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;
  }
}




/*===================
42. Team css 
=====================*/

.team-area {
  position: relative;
  overflow: hidden;
}

.team-item {
  position: relative;
  background: var(--color-white);
  padding: 15px;
  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;
}

.team-item:hover .team-img img {
  transform: scale(1.1);
}

.team-info {
  position: relative;
  background: var(--color-white);
  text-align: center;
  padding: 20px 25px 5px 25px;
  border-radius: 50px;
}

.team-info h5 a {
  color: var(--heading-color);
  font-size: 22px;
  font-weight: 500;
}

.team-info h5 a:hover {
  color: var(--theme-color);
}

.team-info span {
  display: inline-block;
  font-size: 17px;
  color: var(--color-danger);
  font-weight: 500;
  margin-top: 4px;
}

.team-social {
  position: absolute;
  height: 100%;
  right: 0;
  top: 0;
  text-align: center;
  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);
}




/*====================
43. Team single css 
======================*/

.team-single {
  position: relative;
}

.team-sidebar {
  position: relative;
  background: var(--color-white);
  padding: 0 25px 25px 25px;
  box-shadow: var(--box-shadow);
  margin-top: -80px;
  border-radius: 15px;
  z-index: 1;
}

.team-sidebar-img {
  width: 120px;
  margin: auto;
  position: relative;
}

.team-sidebar-img img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 7px solid var(--color-white);
  margin-top: -35px;
}

.team-sidebar-name {
  margin-top: 5px;
  text-align: center;
}

.team-sidebar-name .name {
  margin-bottom: 4px;
}

.team-sidebar-name .name a {
  color: var(--heading-color);
  font-size: 20px;
}

.team-sidebar-name .name a:hover {
  color: var(--theme-color);
}

.team-sidebar-name .username a {
  color: var(--theme-color);
}

.team-sidebar-name .meta {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 12px;
}

.team-sidebar-name .meta b {
  color: var(--theme-color);
}

.team-sidebar-about {
  margin-top: 10px;
}

.team-sidebar-link {
  margin-top: 20px;
}

.team-sidebar-link li {
  margin: 5px 0;
  color: var(--body-text-color);
}

.team-sidebar-link li i {
  color: var(--theme-color);
  width: 22px;
}

.team-sidebar-link li a {
  color: var(--body-text-color);
}

.team-sidebar-link li a:hover {
  color: var(--theme-color);
}

.team-sidebar-social {
  margin-top: 20px;
}

.team-sidebar-social a {
  width: 35px;
  height: 35px;
  line-height: 36px;
  background: var(--theme-color);
  color: var(--color-white);
  text-align: center;
  border-radius: 50px;
  margin-right: 5px;
}

.team-sidebar-social a:hover {
  color: var(--color-white);
  background: var(--color-danger);
}

.team-sidebar-info {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  border-top: 1px solid var(--border-info-color);
  padding-top: 10px;
}

.team-sidebar-info .info-item h6 {
  color: var(--theme-color)
}

.team-sidebar-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border-info-color);
}

.team-sidebar-btn .theme-btn {
  padding: 8px 15px;
}

.team-single-content .nav {
  gap: 30px;
  background: var(--color-white);
  border-radius: 12px;
  padding: 0 25px;
  margin-top: 20px;
  box-shadow: var(--box-shadow);
}

.team-single-content .nav .nav-link {
  color: var(--body-text-color);
  font-weight: 500;
  padding: 18px 0;
}

.team-single-content .nav .nav-link:hover {
  border-bottom-color: var(--body-text-color);
}

.team-single-content .nav .nav-link.active {
  color: var(--theme-color);
  border-bottom-color: var(--theme-color);
}

.team-single-content .nav .nav-link i {
  margin-right: 8px;
}


@media all and (max-width: 991px) {
  .team-sidebar {
    margin-top: -45px;
  }

  ;
}

@media all and (max-width: 767px) {
  .team-single-content .nav {
    gap: 15px;
    padding: 20px;
  }

  .team-single-content .nav .nav-link {
    padding: 0;
  }
}




/*====================
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: center !important;
  background-size: cover !important;
  position: relative;
  padding-top: 200px;
  padding-bottom: 100px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  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: .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: .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, .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: .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;
}



/* ===================
51. Instagram css 
====================== */

.instagram-area {
  position: relative;
}

.instagram-item {
  position: relative;
}

.instagram-item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  z-index: 0;
  transition: 0.4s;
}

.instagram-item a {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 50%;
  background: var(--theme-color);
  color: var(--color-white);
  font-size: 20px;
  visibility: hidden;
  opacity: 0;
  text-align: center;
  z-index: 2;
  transition: 0.4s;
  transform: translate(-50%, -50%);
}

.instagram-item:hover::after {
  width: 100%;
  opacity: 1;
}

.instagram-item:hover a {
  visibility: visible;
  opacity: 1;
}



/*====================
52. Footer css 
======================*/

.footer-area {
  position: relative;
  background: var(--footer-bg);
}

.footer-area::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/shape/01.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: .15;
}

.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(--color-white);
  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: .65rem;
}

.footer-list li a {
  position: relative;
  color: var(--footer-text-color);
  transition: var(--transition);
  padding-left: 14px;
}

.footer-list li a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 3px;
  background: var(--theme-color);
  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: var(--theme-color);
}

.footer-widget-box p {
  color: var(--footer-text-color);
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-language {
  margin-top: 30px;
}

.footer-language img {
  width: 20px;
  margin-right: 10px;
}

.footer-language .language {
  color: var(--footer-text-color);
  border: 1px solid var(--border-info-color);
  border-radius: 10px;
  padding: 6px 15px 6px 12px;
}

.footer-language .language:hover {
  border-color: var(--theme-color);
}

.footer-language .language img {
  margin-top: -3.5px;
  margin-right: 5px;
}

.footer-language .dropdown-menu {
  background: var(--color-white);
  border: none;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

.footer-language .dropdown-item {
  color: var(--color-dark);
}

.footer-language .dropdown-item:hover {
  background: transparent;
  color: var(--theme-color);
}

.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: var(--footer-bg);
  color: var(--footer-text-color);
  border: 2px solid var(--color-white);
  box-shadow: none;
}

.subscribe-form .form-control::placeholder {
  color: var(--footer-text-color);
}

.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;
}

.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 var(--border-info-color);
}

.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: var(--footer-text-color);
  transition: var(--transition);
}

.copyright .footer-menu li a:hover {
  color: var(--theme-color);
}

.copyright .copyright-text {
  color: var(--footer-text-color);
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: var(--theme-color);
  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: 150px;
  padding-bottom: 60px;
}

.home-2 .hero-single::before {
  display: none;
}

.home-2 .hero-shape img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  opacity: .2;
  z-index: -1;
}

.home-2 .hero-single .hero-content .hero-title {
  font-size: 65px;
}

.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: 20px;
  letter-spacing: 3px;
  font-weight: 500;
}

.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);
}

.home-2 .platform-img {
  background: var(--theme-bg-light);
}


@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);
  }
}