/* =====================================================
Template Name   : Clasad
Description     : Classified Ads and Listing HTML5 Template
Author          : Themesland
Version         : 1.1
=======================================================*/

/* ===================
fonts
====================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap');


/* ===================
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 {
  font-family: 'Roboto', sans-serif;
  font-style: normal;
  font-size: 16px;
  font-weight: normal;
  color: #757F95;
  line-height: 1.8;
}

a {
  color: #394358;
  display: inline-block;
}

a,
a:active,
a:focus,
a:hover {
  outline: none;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

a:hover {
  color: #0049D0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #394358;
  margin: 0px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  line-height: 1.2;
}

h1 {
  font-size: 40px;
}

h2 {
  font-size: 35px;
}

h3 {
  font-size: 28px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

p {
  margin: 0px;
}

.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: #fff;
  text-shadow: none;
}

::-moz-selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

::selection {
  background: #555;
  color: #fff;
  text-shadow: none;
}

*::-moz-placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}

*::placeholder {
  color: #999;
  font-size: 16px;
  opacity: 1;
}




/* ===================
preloader
====================== */

.preloader {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 9999;
}

.loader {
  display: inline-block;
  height: 50px;
  width: 50px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  transform: translate(-50%, -50%);
}

.loader-dot {
  height: 8px;
  width: 8px;
  background: #29BF6C;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: calc(50% - 4px);
  transform-origin: 5px 30px;
  animation: rotate 1.5s infinite;
}

@keyframes rotate {
  from {
    transform: rotateZ(0);
  }
  to {
    transform: rotateZ(360deg);
  }
}

.loader-dot.dot2 {
  animation-delay: 0.1s;
  opacity: .9;
}

.loader-dot.dot3 {
  animation-delay: 0.2s;
  opacity: .8;
}

.loader-dot.dot4 {
  animation-delay: 0.3s;
  opacity: .7;
}

.loader-dot.dot5 {
  animation-delay: 0.4s;
  opacity: .6;
}




/* ===================
theme default css
====================== */

.ovrflow-hidden {
  overflow: hidden;
}

.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-color: #F9F9F9;
}




/* ===================
site title css
====================== */

.site-heading {
  margin-bottom: 50px;
  position: relative;
}

.site-title-tagline {
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: 18px;
  font-weight: 600;
  color: #29BF6C;
  position: relative;
}

.site-title-tagline::before{
  content: "";
  position: absolute;
  background: #29BF6C;
  border-radius: 50px;
  width: 100%;
  height: 100%;
  left: -1px;
  bottom: -10px;
  opacity: .1;
}

.site-title {
  font-weight: 700;
  text-transform: capitalize;
  font-size: 35px;
  color: #394358;
  margin-top: 10px;
  margin-bottom: 0;
}

.site-title span {
  color: #29BF6C;
}

.site-heading p {
  margin-top: 10px;
  font-size: 18px;
}

.heading-divider {
  display: inline-block;
  position: relative;
  height: 3px;
  -webkit-border-radius: 30px;
  -moz-border-radius: 30px;
  border-radius: 30px;
  background-color: #29BF6C;
  width: 90px;
  overflow: hidden;
}

.heading-divider:after {
  content: '';
  position: absolute;
  left: 0;
  top: -1.1px;
  height: 7px;
  width: 8px;
  background-color: #ffffff;
  -webkit-animation: heading-move 5s infinite linear;
  animation: heading-move 5s infinite linear;
}

@-webkit-keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}

@keyframes heading-move {
  0% {
    transform: translateX(-1px);
  }

  50% {
    transform: translateX(85px);
  }

  100% {
    transform: translateX(-1px);
  }
}


@media all and (max-width: 992px) {
  .shadow-title {
    font-size: 100px;
  }
}



/* ===================
margin & padding
====================== */

.pb-140 {
  padding-bottom: 140px;
}

.pd-50 {
  padding: 50px 0;
}

.py-120 {
  padding: 120px 0;
}

.pt-120 {
  padding-top: 120px;
}

.pb-120 {
  padding-bottom: 120px;
}

.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;
}

.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;
}

.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;
}

.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;
}

.mr-300 {
  margin-right: 300px;
}

.ml-300 {
  margin-left: 300px;
}

.pos-rel {
  position: relative;
  z-index: 1;
}

/* ===================
theme button
====================== */

.theme-btn {
  background: #29BF6C;
  color: #fff;
  border: 2px solid transparent;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border: none;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px 0 rgb(106 209 151 / 40%);
  transition: all 0.3s ease-out;
  z-index: 1;
}

.theme-btn:hover {
  background: #F85C70;
  color: #fff;
  box-shadow: 0 10px 30px 0 rgb(248 92 112 / 40%);
}

.theme-border-btn{
  border: 2px solid #29BF6C;
  color: #29BF6C;
  font-size: 16px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 10px;
  position: relative;
  transition: all 0.3s ease-out;
  z-index: 1;
}

.theme-border-btn:hover{
  background: #29BF6C;
  color: #fff;
  box-shadow: 0 10px 30px 0 rgb(106 209 151 / 40%);
}

.theme-border-btn i,
.theme-btn i {
  margin-left: 5px;
}

.theme-border-btn span,
.theme-btn span {
  margin-right: 5px;
}




/* ===================
container
====================== */

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1185px;
  }
}


/* ===================
scroll-top css
====================== */

#scroll-top {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 30px;
  z-index: 99;
  font-size: 25px;
  border: none;
  outline: none;
  border-radius: 8px;
  color: #fff;
  background: #29BF6C;
  cursor: pointer;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  transition: all .5s ease-in-out;
  z-index: 1;
}


@media all and (min-width: 768px) and (max-width: 1199px) {
  #scroll-top {
    bottom: 100px;
  }
}




/* ===================
nav menu css
====================== */

.main {
  margin-top: -6rem;
}

@media all and (min-width: 992px) {
  .navbar .nav-item .nav-link {
    margin-right: 25px;
    padding: 30px 0 30px 0;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    text-transform: capitalize;
  }

  .navbar .nav-item:last-child .nav-link {
    margin-right: 0;
  }

  .navbar .nav-item .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 0;
    padding: 8px;
    border: none;
    left: -15px;
    border-radius: 12px;
    background: #fff;
    width: 220px;
    box-shadow: 0 0 50px 0 rgb(32 32 32 / 15%);
  }

  .navbar .nav-item .dropdown-menu::before {
    content: "\f0d8";
    position: absolute;
    font-family: "Font Awesome 6 Pro";
    color: #fff;
    font-size: 50px;
    font-weight: bold;
    left: 25px;
    top: -45px;
  }

  .navbar .nav-item .dropdown-menu li {
    border-bottom: 1px solid #eee;
  }

  .navbar .nav-item .dropdown-menu li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item {
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0px 10px 20px;
    color: #394358;
    position: relative;
    text-transform: capitalize;
    transition: all .5s ease-in-out;
    z-index: 1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover {
    background: transparent;
    color: #29BF6C;
    padding-left: 30px;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item::before {
    content: "\f111";
    position: absolute;
    font-family: "Font Awesome 6 pro";
    left: 12px;
    top: 20.5px;
    color: #29BF6C;
    font-weight: bold;
    font-size: 6px;
    transform: scale(0, 0);
    transition: all .5s ease-in-out;
    z-index: -1;
  }

  .navbar .nav-item .dropdown-menu .dropdown-item:hover::before {
    transform: scale(1, 1);
  }

  .navbar .nav-item .nav-link {
    position: relative;
  }

  .navbar .nav-item .nav-link.active,
  .navbar .nav-item:hover .nav-link {
    color: #29BF6C;
    position: relative;
  }

  .navbar .nav-item .nav-link.active::before{
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    bottom: -2px;
    left: 0;
    border-radius: 50px;
    background: #29BF6C;
  }

  .navbar .nav-item:hover .dropdown-menu {
    transition: .3s;
    opacity: 1;
    visibility: visible;
    top: 100%;
    transform: rotateX(0deg);
  }

  .navbar .dropdown-menu-end {
    right: 0;
    left: auto;
  }

  .navbar .dropdown-menu.fade-down {
    top: 80%;
    transform: rotateX(-75deg);
    transform-origin: 0% 0%;
  }

  .navbar .dropdown-menu.fade-up {
    top: 140%;
  }

  .header-nav-right {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-left: 40px;
  }

  .header-account-link{
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    margin-right: 10px;
  }

  .header-account-link i{
    margin-right: 5px;
  }

  .header-account-link:hover{
    color: #29BF6C;
  }

  #main_nav {
    justify-content: flex-end;
  }

}


/*bootstrap nav*/
.navbar {
  background: transparent;
  padding-top: 0px;
  padding-bottom: 0px;
  z-index: 999;
}

.navbar .custom-nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.fixed-top {
  background: #fff;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.17);
  animation: slide-down 0.7s;
}

.navbar.fixed-top .nav-item .nav-link {
  color: #394358;
}

.navbar.fixed-top .nav-item .nav-link.active,
.navbar.fixed-top .nav-item:hover .nav-link {
  color: #29BF6C;
}

.navbar.fixed-top .header-account-link {
  color: #394358;
}

.navbar.fixed-top .header-account-link:hover {
  color: #29BF6C;
}




@keyframes slide-down {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0);
  }
}

.navbar .navbar-brand .logo-display {
  display: block;
}

.navbar .navbar-brand .logo-scrolled {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-display {
  display: none;
}

.navbar.fixed-top .navbar-brand .logo-scrolled {
  display: block;
}

button.navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}

.navbar-toggler-btn-icon {
  display: inline-block;
  width: inherit;
  height: inherit;
}

.navbar-brand {
  margin-right: 0;
}

.navbar-brand img {
  width: 190px;
}

/* dropdown toggler */
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 5px;
  vertical-align: baseline;
  font-family: 'Font Awesome 6 Pro';
  content: "\f107";
  font-weight: 600;
  border: none;
  font-size: 14px;
}


@media all and (max-width: 1199px) {
  .header-nav-right {
    gap: 5px;
    margin-left: 15px;
  }

  .navbar .nav-item .nav-link {
    margin-right: 15px;
  }

  .navbar .header-btn {
    display: none;
  }
}


/* mobile menu */
.mobile-menu-right {
  display: none;
}

@media all and (max-width: 991px) {
  .navbar {
    top: 0;
    right: 0;
    left: 0;
    position: fixed;
  }

  .navbar-bg {
    height: 59px;
  }

  .navbar-bg::before {
    transform: translateY(0px) skew(-15deg);
    left: -8px;
  }

  .navbar-brand {
    padding-left: 10px;
  }

  .navbar-brand img {
    width: 130px;
  }

  .navbar-collapse {
    max-height: 220px;
    overflow: hidden;
    overflow-y: auto;
    padding: 0 20px;
    background-color: #fff;
  }

  .dropdown-toggle::after {
    float: right;
  }

  .navbar .nav-item .nav-link {
    color: #394358;
    font-weight: 700;
    transition: all .5s ease-in-out;
  }

  .navbar .nav-item .nav-link:hover {
    color: #29BF6C !important;
  }

  .navbar-toggler {
    padding: 0;
    border: none;
  }

  .mobile-menu-right {
    display: flex;
    align-items: center;
  }

  .mobile-menu-link {
    font-size: 20px;
    color: #394358;
    font-weight: 500;
    padding-right: 20px;
    margin-bottom: 0px;
    position: relative;
  }

  .mobile-menu-link:hover {
    color: #29BF6C;
  }

  .navbar-toggler-btn-icon {
    font-size: 25px;
    color: #fff;
    font-weight: 500;
  }

  .navbar.fixed-top .mobile-menu-link {
    color: #394358;
  }

  .navbar.fixed-top .navbar-toggler-btn-icon {
    color: #394358;
  }

  .navbar .dropdown-menu {
    border-radius: 8px;
  }

  .header-nav-right {
    display: none;
  }

}



/* ======================
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: 15px;
  top: 12px;
  font-weight: 600;
}

.navbar .nav-item .dropdown-submenu a:hover {
  background: transparent;
  color: #fff;
}

.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 {
    margin: 0 17px;
  }

  .navbar .nav-item .dropdown-submenu .dropdown-menu {
    opacity: unset;
    visibility: unset;
  }

  .navbar .nav-item .dropdown-submenu a::after {
    top: 4px;
  }

  .navbar .nav-item .dropdown-submenu a:hover {
    color: #29BF6C;
  }
}




/* ===================
hero css 
====================== */

.hero-section {
  position: relative;
}

.hero-single {
  padding-top: 200px;
  padding-bottom: 150px;
  background-position: center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-single::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -0.5px;
  top: 0;
  background: rgba(0, 0, 0, .7);
  z-index: -1;
}

.hero-single .hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-single .hero-content .hero-title {
  color: #fff;
  font-size: 65px;
  font-weight: 600;
  margin: 20px 0;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-title span {
  color: #29BF6C;
}

.hero-single .hero-content .hero-sub-title {
  color: #29BF6C;
  font-size: 22px;
  letter-spacing: 5px;
  position: relative;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-single .hero-content p {
  color: #fff;
  font-size: 22px;
  line-height: 30px;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: capitalize;
}

.hero-single .hero-content .hero-btn {
  gap: 1rem;
  display: flex;
  margin-top: 1rem;
  justify-content: start;
}

.hero-slider.owl-theme .owl-nav {
  margin-top: 0px;
}

.hero-slider.owl-theme .owl-nav [class*=owl-] {
  color: #29BF6C;
  font-size: 25px;
  margin: 0;
  padding: 0;
  background: #fff;
  display: inline-block;
  cursor: pointer;
  height: 55px;
  width: 55px;
  border-radius: 50px;
  line-height: 55px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.hero-slider.owl-theme .owl-nav [class*=owl-]:hover {
  background: #29BF6C;
  color: #fff;
}

.hero-slider.owl-theme .owl-nav .owl-prev {
  left: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-next {
  right: 40px;
}

.hero-slider.owl-theme .owl-nav .owl-prev,
.hero-slider.owl-theme .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

@media all and (max-width: 1199px) {

  .hero-single .hero-content .hero-title {
    font-size: 37px;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev,
  .hero-slider.owl-theme .owl-nav .owl-next {
    top: unset;
    bottom: 45px !important;
  }

  .hero-slider.owl-theme .owl-nav .owl-prev {
    left: unset;
    right: 120px;
  }

  .hero-slider.owl-theme .owl-nav .owl-next {
    right: 40px;
  }

}

@media all and (max-width: 991px) {

  .hero-single .hero-content .hero-title {
    font-size: 45px;
  }

  .hero-single .hero-content .hero-btn .theme-btn {
    padding: 12px 15px
  }

}

@media all and (max-width: 767px) {

  .hero-single .hero-content .hero-sub-title {
    font-size: 18px;
  }

  .hero-single .hero-content .theme-btn {
    padding-left: 20px;
  }

}




/* =====================
search css
===================== */

.search-wrapper {
  background: #fff;
  padding: 30px;
  margin-top: 70px;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.search-form {
  position: relative;
}

.search-form .form-group {
  text-align: left;
}

.search-form .form-group-icon{
  position: relative;
}

.search-form .form-group-icon i {
  position: absolute;
  left: 15px;
  top: 20px;
}

.search-form .form-control {
  border-radius: 12px;
  padding: 15px 18px 15px 40px;
  box-shadow: none;
  color: #757F95;
}

.search-form .form-control::placeholder {
  color: #757F95;
}

.search-form .nice-select {
  width: 100%;
  height: 56px;
  line-height: 55px;
  border-radius: 12px;
  padding-left: 40px;
  font-size: 16px;
  border-color: #CED4DA;
  color: #757F95;
}

.search-form .form-control:focus,
.search-form .nice-select:focus {
  border-color: #29BF6C;
}

.search-form .nice-select .list {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px;
  height: 300px;
  overflow-y: auto;
  box-shadow: 0px 0px 50px 0px rgb(32 32 32 / 15%);
}

.search-form .nice-select ::-webkit-scrollbar {
  width: 8px;
}

.search-form .nice-select ::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 0 50px 50px 0;
}
 
.search-form .nice-select ::-webkit-scrollbar-thumb {
  background: #29BF6C; 
  border-radius: 50px;
}

.search-form .nice-select ::-webkit-scrollbar-thumb:hover {
  background: #FF6B6B; 
}

.search-form .nice-select .option.focus,
.search-form .nice-select .option.selected.focus,
.search-form .nice-select .option:hover {
  background: #F6F6F6;
  color: #29BF6C;
  border-radius: 8px;
}

.search-form .nice-select:after {
  width: 8px;
  height: 8px;
  margin-top: -5px;
  right: 15px;
}

.search-form .theme-btn {
  width: 100%;
  padding: 13px 20px;
}

.search-keyword{
  margin-top: 20px;
}

.search-keyword a{
  margin-left: 10px;
  padding: 0px 12px;
  border: 2px solid #29BF6C;
  color: #29BF6C;
  border-radius: 50px;
}

.search-keyword a:hover{
  background: #29BF6C;
  color: #fff;
}

.search-area{
  position: relative;
  margin-top: -150px;
  z-index: 1;
}


@media all and (max-width: 991px) {
  .search-form .form-group,
  .search-form .price-range-slider,
  .search-form .nice-select {
    margin-bottom: 25px;
  }

  .search-keyword a{
    margin: 5px;
  }
}

@media all and (max-width: 767px) {
  .search-area{
    margin-top: -120px;
  }
}




/* =====================
price range slider
===================== */

.ui-slider-handle {
  top: -0.4em !important;
  border-radius: 50px;
  background: #fff !important;
  border: 4px solid #29BF6C !important;
}

.ui-widget.ui-widget-content {
  background: #E6E9EC;
  border: none;
  border-radius: 50px;
  height: 0.4em;
}

.ui-widget-header {
  background: #29BF6C;
}

.priceRange {
  background: transparent;
  border: none;
  font-weight: 500;
  outline: none;
}

.price-range-slider label {
  color: #6C7592;
}




/* =====================
play btn
===================== */

.play-btn {
  display: inline-block;
  padding: 0;
  height: 75px;
  width: 75px;
  line-height: 75px;
  font-size: 20px;
  text-align: center;
  background: #29BF6C;
  color: #fff !important;
  position: absolute;
  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: #29BF6C;
  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);
  }
}



/* ===================
category css
====================== */

.category-area {
  position: relative;
}

.category-wrapper h5{
  color: #fff;
}

.category-item {
  width: 100%;
  text-align: center;
  padding: 20px 15px;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 15px;
  position: relative;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.category-item:hover {
  transform: translateY(-5px);
}

.category-icon {
  line-height: 1;
  font-size: 40px;
  color: #29BF6C;
  margin-bottom: 15px;
}

.category-title {
  margin-bottom: 15px;
  color: #394358;
  font-size: 18px;
}

.category-listing {
  display: inline-block;
  background: #29BF6C;
  color: #fff;
  padding: 0px 15px;
  border-radius: 50px;
  font-weight: 500;
}



/* ===================
product css
====================== */

.product-area{
  position: relative;
}

.product-item{
  background: #fff;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.product-item:hover{
  transform: translateY(-7px);
}

.product-img{
  position: relative;
}

.product-img img{
  border-radius: 10px;
}

.product-favorite{
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 36px;
  border-radius: 50px;
  text-align: center;
  background: #FF6B6B;
  color: #fff;
  right: 8px;
  top: 8px;
  z-index: 1;
}

.product-favorite:hover{
  background: #29BF6C;
  color: #fff;
}

.product-status{
  position: absolute;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  padding: 0px 12px;
  border-radius: 50px;
  left: 10px;
  top: 10px;
  z-index: 1;
}

.product-status.new{
  background: #FF6B6B;
}

.product-status.featured{
  background: #29BF6C;
}

.product-status.trending{
  width: 40px;
  height: 40px;
  left: 0;
  top: 0;
  border-radius: 10px 0 0 0;
  padding: 0;
  padding-left: 8px;
  background: #FF6B6B;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.product-content{
  padding: 10px 10px 5px 10px;
}

.product-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 5px;
}

.product-category{
  display: flex;
  align-items: center;
  gap: 7px;
}

.product-category-icon{
  width: 30px;
  height: 30px;
  line-height: 30px;
  background: #29BF6C;
  color: #fff;
  font-size: 15px;
  border-radius: 50px;
  text-align: center;
}

.product-category-title a:hover{
  color: #29BF6C;
}

.product-rate i{
  color: #FFBA00;
}

.product-rate span{
  font-weight: 500;
}

.product-info{
  margin-top: 15px;
}

.product-info h5 a:hover{
  color: #29BF6C;
}

.product-info p{
  margin-top: 5px;
}

.product-price{
  color: #FF6B6B;
  font-size: 20px;
  font-weight: 600;
  margin-left: 5px;
}

.product-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 6px;
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, .05);
}

.product-text-btn{
  font-weight: 500;
  color: #29BF6C;
}

.product-text-btn:hover{
  color: #FF6B6B;
}

.product-slider .product-item {
  box-shadow: none;
  border: 2px solid rgba(0, 0, 0, .05);
}

.product-slider .product-item:hover {
  transform: none;
}

.product-slider .owl-dots {
  text-align: center;
  margin-top: 10px;
}

.product-slider .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid #29BF6C;
  margin: 5px;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.product-slider .owl-dots .owl-dot.active span {
  background: #29BF6C;
}


/* product sort */
.product-sort{
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  margin-bottom: 25px;
  padding: 10px 10px 10px 15px;
  border-radius: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.product-sort-list-grid a{
  width: 35px;
  height: 35px;
  line-height: 33px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #CED4DA;
  color: #394358;
}

.product-sort-list-grid a.active{
  border-color: #29BF6C;
  color: #29BF6C;
}

.product-sort .nice-select {
  width: 100%;
  height: 46px;
  line-height: 45px;
  border-radius: 8px;
  padding-left: 20px;
  font-size: 16px;
  border-color: #CED4DA;
  color: #757F95;
}

.product-sort .form-control:focus,
.product-sort .nice-select:focus {
  border-color: #29BF6C;
}

.product-sort .nice-select .list {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0px 0px 50px 0px rgb(32 32 32 / 15%);
}

.product-sort .nice-select .option.focus,
.product-sort .nice-select .option.selected.focus,
.product-sort .nice-select .option:hover {
  background: #F6F6F6;
  color: #29BF6C;
  border-radius: 8px;
}

.product-sort .nice-select:after {
  width: 8px;
  height: 8px;
  margin-top: -5px;
  right: 15px;
}


/* product sidebar */
.product-sidebar{
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.product-sidebar .search-form{
  box-shadow: none;
  background: none;
  border-radius: 0;
}

.product-sidebar .form-group{
  margin-bottom: 20px !important;
}

.product-sidebar .search-form div[class*='col-']{
  border-right: 0;
}

.product-sidebar .form-control,
.product-sidebar .nice-select{
  border: 1px solid #CED4DA;
}

.product-sidebar .form-check-input{
  margin-top: 7px;
  box-shadow: none;
}

.product-sidebar .form-check-input:focus{
  border-color: #29BF6C;
}

.product-sidebar .nice-select {
  margin-bottom: 20px;
}

.sidebar-category a{
  margin-bottom: 8px;
  display: block;
  color: #757F95;
}

.sidebar-category a:hover{
  color: #29BF6C;
}

.sidebar-category a i{
  width: 25px;
  color: #29BF6C;
}

.sidebar-category a span{
  float: right;
}

.product-sidebar label{
  color: #757F95;
}


@media all and (min-width: 992px) {
  .product-list .product-item {
    display: flex;
    gap: 15px;
  }

  .product-list .product-img img {
    width: 290px;
  }

  .product-list .product-content {
    flex: 1;
  }
}

@media all and (max-width: 767px) {
  .product-sort{
    flex-direction: column;
    gap: 25px;
    padding: 20px;
  }

  .product-sort-box{
    width: 100%;
  }
}



/* ===================
product single css 
====================== */

.product-single{
  position: relative;
}

.product-single-slider{
  position: relative;
}

.product-single-slider img{
  border-radius: 12px;
}

.product-single .flex-control-thumbs{
  margin-top: 20px;
}

.product-single .flex-control-thumbs li{
  width: 18.6%;
  padding: 0;
  margin-right: 15px;
}

.product-single .flex-control-thumbs li:last-child{
  margin-right: 0;
}

.product-single .flex-control-thumbs img{
  padding: 0;
  border: none;
}

.product-single .flex-direction-nav .flex-next,
.product-single .flex-direction-nav .flex-prev{
  margin-top: -75px;
  line-height: 39px !important;
  border-radius: 50px;
}

.product-single .flex-direction-nav .flex-next{
  right: 20px;
}

.product-single .flex-direction-nav .flex-prev{
  left: 20px;
}

.product-single-top{
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.product-single-title p{
  margin-top: 10px;
}

.product-single-btn a{
  display: inline-block;
  padding: 4px 12px;
  margin-right: 5px;
  border-radius: 10px;
  border: 1px solid rgba(0, 0, 0, .1);
}

.product-single-btn a:hover{
  border-color: #29BF6C;
  color: #29BF6C;
}

.product-single-price{
  font-size: 30px;
  font-weight: 700;
  margin-top: 10px;
  color: #F85C70;
}

.product-single-moreinfo{
  padding-bottom: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.product-single-moreinfo li{
  display: inline-block;
  margin-right: 15px;
}

.product-single-feature-meta li{
  display: inline-block;
  margin-right: 15px;
}

.product-single-feature-meta span{
  font-weight: 500;
  margin-right: 8px;
}

.product-single-feature-list{
  margin-top: 15px;
}

.product-single-feature-list li{
  margin-bottom: 5px;
}

.product-single-feature-list li i{
  margin-right: 5px;
  color: #29BF6C;
}

.product-single-location iframe{
  width: 100%;
  height: 300px;
  border-radius: 12px;
}

.product-single-sidebar-item .title{
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.product-single-author{
  text-align: center;
}

.product-single-author img{
  width: 70px;
  border-radius: 50px;
  margin-bottom: 10px;
}

.product-single-author h6 a:hover{
  color: #29BF6C;
}

.product-single-author-phone{
  background: #F2F2F2;
  border-radius: 10px;
  margin-top: 20px;
  padding: 10px 5px;
  cursor: pointer;
}

.product-single-author-phone span{
  color: #29BF6C;
  font-size: 18px;
  font-weight: 500;
}

.product-single-author-phone p{
  font-size: 14px;
}

.product-single-author .author-reveal-number{
  display: none;
}

.product-single-safety li{
  margin-bottom: 5px;
}

.product-single-safety li i{
  color: #29BF6C;
  margin-right: 5px;
}


/* star rating */
.star-rating-wrapper {
  display: inline-block;
}

.star-rating-box {
  direction: rtl !important;
}

.star-rating-box label {
  display: inline-block;
  color: #D4D4D4;
  cursor: pointer;
  font-size: 38px;
  transition: color 0.2s;
}

.star-rating-box input {
  display: none;
}

.star-rating-box label:hover,
.star-rating-box label:hover ~ label,
.star-rating-box input:checked ~ label {
  color: #F8A611;
}


@media all and (max-width: 1199px) {
  .product-single .flex-control-thumbs li{
    width: 18%;
  }
}

@media all and (max-width: 767px) {
  .product-single .flex-control-thumbs li{
    margin-right: 5px;
  }

  .product-single-top{
    flex-direction: column;
    gap: 15px;
  }
}



/* ===================
about css 
====================== */

.about-area {
  position: relative;
  display: block;
}

.about-left {
  position: relative;
  margin: 0 40px 0 20px;
}

.about-img img {
  border-radius: 12px;
}

.about-img::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border: 20px solid #29BF6C;
  border-radius: 50%;
  left: -50px;
  top: -50px;
  z-index: -1;
}

.about-shape {
  position: absolute;
  right: -20px;
  bottom: -20px;
  z-index: -1;
}

.about-right {
  position: relative;
  display: block;
}

.about-list-wrapper {
  position: relative;
  display: block;
  margin-top: 15px;
  margin-bottom: 35px;
}

.about-list {
  position: relative;
  display: block;
}

.about-list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 5px;
}

.about-list li .about-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.about-list li .about-icon span {
  font-size: 20px;
  color: #29BF6C;
}

.about-bottom {
  display: flex;
  align-items: center;
  gap: 25px;
}



@media all and (max-width: 991px) {
  .about-left {
    margin-bottom: 60px;
  }
}




/* ===================
video css 
====================== */

.video-content {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0px;
}

.video-content::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  border-radius: 0px;
}

.video-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  height: 450px;
  z-index: 100;
}

.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%);
}


@media all and (max-width: 767px) {
  .video-wrapper {
    height: 250px;
  }

  .video-wrapper h1 {
    font-size: 28px;
    margin-top: 25px;
  }
}



/* ===================
step/process css 
====================== */

.process-area {
  position: relative;
}

.process-item {
  position: relative;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 25px;
  background: #F9F9F9;
  transition: all .5s ease-in-out;
}

.process-item:hover{
  transform: translateY(-7px);
}

.process-count {
  position: absolute;
  font-weight: 800;
  font-size: 50px;
  line-height: 1;
  right: 20px;
  top: 20px;
  color: #29BF6C;
  opacity: .1;
}

.process-icon{
  height: 70px;
  width: 70px;
  line-height: 70px;
  border-radius: 50px;
  font-size: 35px;
  color: #fff;
  text-align: center;
  background: #29BF6C;
  margin-bottom: 20px;
}

.process-content h5{
  margin-bottom: 5px;
  font-size: 20px;
}




/* ===================
feature css 
====================== */

.feature-area {
  position: relative;
}

.feature-item {
  padding: 50px 20px;
  background: #fff;
  text-align: center;
  overflow: hidden;
  margin-bottom: 25px;
  border-radius: 15px;
  transition: all .5s ease-in-out;
}

.feature-item:hover {
  transform: translateY(-5px);
}

.feature-icon {
  width: 75px;
  height: 75px;
  color: #29BF6C;
  font-size: 60px;
  line-height: 1;
  margin: 0 auto 20px auto;
  position: relative;
}

.feature-icon::before{
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(14, 198, 198, .1);
  left: -15px;
  top: -20px;
}

.feature-title {
  margin-bottom: 10px;
  font-size: 20px;
}



/* ===================
location css 
====================== */

.location-area{
  position: relative;
}

.location-item {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

.location-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  border-radius: 15px;
  transition: all 0.3s;
  background: rgba(0, 0, 0, .4);
}

.location-item img {
  border-radius: 15px;
  width: 100%;
  transition: all 0.5s;
}

.location-item:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.location-info {
  position: absolute;
  bottom: 20px;
  left: 20px;
  transition: all .3s ease-in-out;
  z-index: 1;
}

.location-info h4 {
  color: #fff;
  font-size: 20px;
  margin-bottom: 10px;
}

.location-info span{
  display: inline-block;
  color: #fff;
  background: #29BF6C;
  padding: 0px 10px;
  border-radius: 50px;
}

.location-slider .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.location-slider .owl-dots .owl-dot span {
  background: transparent;
  border: 2px solid #29BF6C;
  margin: 5px;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.location-slider .owl-dots .owl-dot.active span {
  background: #29BF6C;
}


@media all and (max-width: 1399px) {
  .location-info h4 {
    font-size: 23px;
  }
  .location-more-info ul li{
    font-size: 15px;
  }
}

@media all and (max-width: 767px) {
  .location-item img {
    height: 400px;
  }
}




/* ===================
testimonial css 
====================== */

.testimonial-area {
  position: relative;
}

.testimonial-item {
  background: #fff;
  border-radius: 18px;
  padding: 20px 20px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, .1);
  transition: all .5s ease-in-out;
  z-index: 1;
}

.testimonial-item:hover{
  border-color: #29BF6C;
}

.testimonial-quote p {
  color: #394358;
}

.testimonial-content{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.testimonial-author-img {
  width: 60px;
}

.testimonial-author-img img {
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 20px;
  color: #394358;
}

.testimonial-author-info p {
  color: #29BF6C;
  font-weight: 500;
}

.testimonial-quote-icon {
  position: absolute;
  right: 35px;
  bottom: -5px;
  font-size: 120px;
  line-height: 1;
  color: #29BF6C;
  opacity: .1;
  z-index: -1;
}

.testimonial-rate {
  color: #29BF6C;
  margin-top: 10px;
}

.testimonial-area .owl-dots {
  text-align: center;
  margin-top: 30px;
}

.testimonial-area .owl-dots .owl-dot span {
  background: transparent;
  margin: 5px;
  border: 2px solid #29BF6C;
  border-radius: 50px;
  width: 12px;
  height: 12px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.testimonial-area .owl-dots .owl-dot.active span {
  background: #29BF6C;
}



/* ===================
counter css 
====================== */

.counter-area {
  position: relative;
}

.counter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.counter-icon {
  position: relative;
  font-size: 35px;
  width: 80px;
  height: 80px;
  line-height: 78px;
  text-align: center;
  background: #29BF6C;
  border-radius: 25px;
  color: #fff;
}

.counter-icon img {
  width: 65px;
}

.counter-box .counter {
  display: block;
  line-height: 1;
  color: #394358;
  font-size: 35px;
  font-weight: 600;
}

.counter-number{
  display: flex;
  align-items: center;
}

.counter-sign{
  font-size: 30px;
  color: #29BF6C;
  line-height: 1;
}

.counter-title {
  color: #394358;
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
  text-transform: capitalize;
}

@media all and (max-width: 991px) {
  .counter-box {
    margin: 40px 0;
    align-items: flex-start;
    justify-content: flex-start;
  }
}




/* ===================
cta-area css 
====================== */

.cta-area {
  position: relative;
  background-image: url(../img/cta/01.jpg);
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  padding-top: 80px;
  padding-bottom: 80px;
  z-index: 1;
}

.cta-area::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  left: 0;
  top: 0;
  z-index: -1;
}

.cta-text h1 {
  color: #fff;
  font-size: 45px;
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 15px;
}

.cta-text span {
  color: #29BF6C;
}

.cta-text p {
  color: #fff;
  font-size: 18px;
}




/* ========================
service css 
=========================== */

.service-area{
  position: relative;
}

.service-item{
  background: #fff;
  border-radius: 15px;
  margin-bottom: 25px;
  padding: 30px 20px;
  display: flex;
  gap: 15px;
  transition: all .5s ease-in-out;
}

.service-item:hover{
  transform: translateY(-7px);
}

.service-icon{
  font-size: 45px;
  line-height: 1;
  color: #29BF6C;
  margin-top: 4px;
}

.service-content .theme-border-btn{
  padding: 6px 12px;
  margin-top: 14px;
}


/* ====================
service single
==================== */

.service-single-wrapper .widget-title {
  font-weight: 700;
}

.service-single-list i {
  color: #29BF6C;
  margin-right: 10px;
}

.service-download a {
  border: 2px solid #29BF6C;
  padding: 10px 20px;
  color: #394358;
  display: block;
  margin-bottom: 20px;
  font-weight: 600;
  border-radius: 12px;
  transition: all .5s ease-in-out;
}

.service-download a i {
  margin-right: 10px;
}

.service-download a:hover {
  background-color: #29BF6C;
  color: #fff;
}

.service-details h3 {
  color: #394358;
  font-weight: 700;
}

.service-details img {
  border-radius: 12px;
}


/* ========================
store css 
=========================== */

.store-area{
  position: relative;
}

.store-item{
  width: 100%;
  margin-bottom: 25px;
  text-align: center;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 1px 80px 12px rgb(26 40 68 / 6%);
  transition: all .5s ease-in-out;
}

.store-item:hover{
  transform: translateY(-7px);
}

.store-img img{
  border-radius: 50%;
  width: 80px;
  margin-bottom: 12px;
}

.store-content span{
  color: #29BF6C;
}


/* ========================
store single css 
=========================== */

.store-single{
  position: relative;
}

.store-banner{
  position: relative;
}

.store-banner-img img{
  border-radius: 20px;
}

.store-banner-content{
  display: flex;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 20px;
  left: 18px;
  background: #fff;
  padding: 5px 30px 5px 5px;
  border-radius: 50px;
  box-shadow: 0 1px 80px 12px rgb(26 40 68 / 6%);
}

.store-banner-logo{
  width: 70px;
}

.store-banner-logo img{
  border-radius: 50%;
}

.store-banner-info span{
  font-weight: 500;
} 


@media all and (max-width: 767px) {
  .store-banner-img img{
    height: 180px;
  }

  .store-banner-content{
    bottom: -30px;
  }

}



/* ========================
choose css 
=========================== */

.choose-area{
  position: relative;
}

.choose-img{
  width: 93%;
}

.choose-text{
  margin-bottom: 15px;
}

.choose-list li{
  margin-bottom: 10px;
}

.choose-list li i{
  color: #29BF6C;
  margin-right: 5px;
}

.choose-right .theme-btn{
  margin-top: 20px;
}


@media all and (max-width: 991px) {
  .choose-img{
    margin-bottom: 40px;
  }
}




/* ===================
blog css 
====================== */

.blog-item {
  margin-bottom: 25px;
  background-color: #fff;
  padding: 10px;
  border-radius: 15px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
  transition: all .5s ease-in-out;
}

.blog-item-img {
  overflow: hidden;
  border-radius: 15px;
}

.blog-item-img img {
  border-radius: 15px;
}

.blog-item:hover .blog-item-img img {
  transform: scale(1.1);
}

.blog-item-info {
  padding: 15px 12px 2px 12px;
}

.blog-item-meta ul {
  margin: 0;
  padding: 0;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e6e8eb;
}

.blog-item-meta ul li {
  display: inline-block;
  margin-right: 15px;
  font-weight: 500;
  position: relative;
  color: #394358;
}

.blog-item-meta ul li i {
  margin-right: 5px;
  color: #29BF6C;
}

.blog-item-meta a:hover {
  color: #29BF6C;
}

.blog-title {
  font-size: 22px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.blog-item-info p {
  margin-bottom: 16px;
}

.blog-item-info h4{
  color: #394358;
  font-size: 20px;
}

.blog-item-info h4 a:hover {
  color: #29BF6C;
}

.blog-item .theme-btn{
  padding: 8px 16px;
}



/* ===========================
blog single css
=========================== */

.blog-thumb-img {
  margin-bottom: 20px;
}

.blog-single-content img {
  border-radius: 10px;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.blog-meta .blog-meta-left ul {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-meta .blog-meta-left ul li {
  font-weight: 500;
}

.blog-meta i {
  margin-right: 5px;
  color: #29BF6C;
}

.blog-meta a {
  color: #66788a;
  font-weight: 500;
}

.blog-meta a:hover {
  color: #29BF6C;
}

.blog-details-title {
  font-size: 34px;
  color: #394358;
}

.blockqoute {
  background: #F9F9F9;
  border-left: 4px solid #29BF6C;
  padding: 30px;
  font-size: 17px;
  font-style: italic;
  margin: 20px 0;
  border-radius: 10px;
}

.blockqoute-author {
  margin-top: 20px;
  padding-left: 60px;
  position: relative;
  color: #394358;
}

.blockqoute-author::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 40px;
  background: #29BF6C;
  left: 0;
  top: 10px;
}

.blog-details-tags {
  display: flex;
  align-items: center;
  gap: 20px;
}

.blog-details-tags h5 {
  color: #394358;
  font-weight: 700;
}

.blog-details-tags ul {
  display: flex;
  align-items: center;
  gap: 15px;
}

.blog-details-tags ul a {
  background: #F9F9F9;
  color: #394358;
  padding: 6px 18px;
  border-radius: 8px;
  transition: all .5s ease-in-out;
}

.blog-details-tags ul a:hover {
  background: #29BF6C;
  color: #fff;
}

.blog-author {
  display: flex;
  justify-content: start;
  align-items: center;
  background: #F9F9F9;
  border-radius: 10px;
  margin: 50px 0;
  padding: 20px;
}

.blog-author-img {
  width: 320px;
  position: relative;
}

.blog-author-img::before {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  top: -10px;
  bottom: -10px;
  border-radius: 50%;
}

.blog-author-img img {
  border-radius: 10px;
}

.author-name {
  font-size: 22px;
  color: #29BF6C;
  margin: 8px 0;
}

.author-info {
  padding: 0 20px 0 30px;
}

.author-social {
  margin-top: 10px;
}

.author-social a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  text-align: center;
  border: 2px solid #29BF6C;
  border-radius: 50px;
  margin-right: 5px;
  color: #29BF6C;
  transition: all .5s ease-in-out;
}

.author-social a:hover {
  color: #fff;
  background: #29BF6C;
}

.blog-comments {
  margin-bottom: 50px;
}

.blog-comments h3 {
  color: #394358;
  font-weight: 700;
}

.blog-comments-wrapper {
  margin: 30px 0;
}

.blog-comments-single {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  margin-top: 50px;
}

.blog-comments-img {
  margin-top: 3px;
}

.blog-comments-single img {
  border-radius: 50%;
  width: 120px;
}

.blog-comments-content {
  padding: 0 0 0 20px;
}

.blog-comments-content span {
  font-size: 14px;
  color: #29BF6C;
  font-weight: 500;
}

.blog-comments-content a {
  font-weight: 500;
  margin-top: 5px;
  color: #29BF6C;
}

.blog-comments-content a:hover {
  color: #F85C70;
}

.blog-comments-content h5 {
  color: #394358;
  font-weight: 700;
  font-size: 20px;
}

.blog-comments-reply {
  margin-left: 50px;
}

.blog-comments-form {
  padding: 30px;
  margin-top: 50px;
  border-radius: 10px;
  background: #F9F9F9;
}

.blog-comments-form h3 {
  margin-bottom: 20px;
}

.blog-comments-form .form-group {
  margin-bottom: 20px;
}

.blog-comments-form .form-control {
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: none;
  transition: all .5s ease-in-out;
}

.blog-comments-form .form-control:focus {
  border-color: #29BF6C;
}



@media all and (max-width: 767px) {
  .blog-meta {
    flex-direction: column;
    font-size: 15px;
  }

  .blog-meta .blog-meta-left ul {
    gap: 10px;
  }

  .blog-details-tags {
    flex-direction: column;
    align-items: flex-start;
  }

  .blog-author {
    flex-direction: column;
    text-align: center;
    padding: 25px 0 0 0;
  }

  .blog-comments-single {
    flex-direction: column;
    text-align: center;
    padding: 30px 0px;
    box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
    margin-bottom: 30px;
    border-radius: 10px;
  }

  .blog-comments-img {
    width: 100%;
  }

  .blog-comments-content {
    padding: 20px;
  }

  .blog-comments-reply {
    margin-left: 0px;
  }
}


/* =========================
sidebar css
========================= */

.widget {
  background: #F9F9F9;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 10px;
}

.widget .widget-title {
  padding-bottom: 10px;
  margin-bottom: 30px;
  position: relative;
  font-size: 22px;
  color: #394358;
}

.widget .widget-title::before {
  position: absolute;
  content: '';
  width: 15px;
  border-bottom: 3px solid #29BF6C;
  bottom: 0;
  left: 0;
}

.widget .widget-title::after {
  position: absolute;
  content: '';
  width: 30px;
  border-bottom: 3px solid #29BF6C;
  bottom: 0;
  left: 22px;
}

.widget .blog-search-form .form-control {
  padding: 12px 15px 12px 15px;
  border-radius: 10px;
  box-shadow: none;
}

.widget .blog-search-form {
  position: relative;
}

.widget .blog-search-form .form-control:focus {
  border-color: #29BF6C;
}

.widget .blog-search-form button {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 18px;
  padding: 8px 18px 6px 18px;
  background: transparent;
  border: none;
  color: #29BF6C;
}

.widget .category-list a {
  display: block;
  padding: 10px 0;
  font-weight: 500;
  border-bottom: 1px solid #ced4da;
  transition: all .5s ease-in-out;
}

.widget .category-list a:last-child {
  margin-bottom: 0px;
  border-bottom: none;
}

.widget .category-list a:hover {
  padding-left: 10px;
  color: #29BF6C;
}

.widget .category-list a i {
  margin-right: 5px;
  color: #29BF6C;
}

.widget .category-list a span {
  float: right;
}

.widget .recent-post-single {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-bottom: 20px;
}

.widget .recent-post-img {
  margin-right: 20px;
}

.widget .recent-post-img img {
  width: 120px;
  border-radius: 10px;
}

.widget .recent-post-bio h6 {
  font-size: 17px;
}

.widget .recent-post-bio span {
  font-size: 14px;
  color: #29BF6C;
  font-weight: 500;
}

.widget .recent-post-bio span i {
  margin-right: 5px;
}

.widget .recent-post-bio h6 a:hover {
  color: #29BF6C;
}

.widget .social-share-link a {
  width: 35px;
  height: 35px;
  line-height: 32px;
  border: 2px solid #29BF6C;
  color: #29BF6C;
  text-align: center;
  margin-right: 5px;
  border-radius: 50px;
  transition: all .5s ease-in-out;
}

.widget .social-share-link a:hover {
  background: #29BF6C;
  color: #fff;
}

.widget .tag-list a {
  background: #fff;
  color: #394358;
  padding: 5px 15px;
  margin-bottom: 10px;
  margin-right: 10px;
  border-radius: 8px;
  display: inline-block;
  transition: all .5s ease-in-out;
}

.widget .tag-list a:hover {
  background-color: #29BF6C;
  color: #fff;
}


/* =========================
partner css
========================= */

.partner-area{
  position: relative;
}



/* ===================
contact us css 
====================== */

.contact-wrapper {
  position: relative;
}

.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 30px 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-form-header {
  margin-bottom: 30px;
}

.contact-form-header h2 {
  font-size: 28px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #394358;
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form .form-group .form-control {
  padding: 15px 18px;
  border-radius: 10px;
  box-shadow: none;
  transition: all .5s ease-in-out;
}

.contact-form .form-group .form-control:focus {
  border-color: #29BF6C;
}

.contact-map {
  margin-bottom: -9px;
}

.contact-map iframe {
  width: 100%;
  height: 450px;
}

.contact-content {
  margin-bottom: 50px;
  background: #fff;
  border-radius: 12px;
  padding: 20px 20px;
  position: relative;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 0, 0, .1);
  transition: all .5s ease-in-out;
}

.contact-info:hover{
  border-color: #29BF6C;
}

.contact-info:last-child{
  margin-bottom: 0;
}

.contact-info-icon i {
  font-size: 25px;
  color: #fff;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 50px;
  background: #29BF6C;
}

.contact-info h5 {
  font-size: 20px;
  margin-bottom: 5px;
  color: #394358;
}

.contact-info p {
  font-weight: 500;
}


@media all and (max-width: 768px) {
  .contact-content {
    margin-bottom: 50px;
  }
}




/* ===================
team css 
====================== */

.team-area {
  position: relative;
}

.team-item {
  margin-bottom: 75px;
  position: relative;
  transition: all .5s ease-in-out;
  z-index: 1;
}

.team-item:hover{
  transform: translateY(-7px);
}

.team-img {
  border-radius: 10px;
}

.team-img img {
  border-radius: 10px;
}

.team-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -50px;
  padding: 15px 20px 0px 20px;
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.team-bio h5 {
  font-size: 20px;
  text-transform: capitalize;
}

.team-bio h5 a {
  color: #394358;
}

.team-bio span {
  color: #29BF6C;
  font-size: 16px;
  font-weight: 500;
  text-transform: capitalize;
}

.team-bio h5 a:hover {
  color: #29BF6C;
}

.team-social{
  display: inline-block;
  background: #29BF6C;
  padding: 2px 10px;
  border-radius: 20px 20px 0 0;
  margin-top: 8px;
}

.team-social a{
  width: 25px;
  color: #fff;
}

.team-social a:hover{
  color: #F85C70;
}




/* ===================
pricing css 
====================== */

.pricing-area{
 position: relative;
}

.pricing-item{
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 25px;
  position: relative;
  border: 1px solid rgba(0, 0, 0, .1);
  transition: all .5s ease-in-out;
}

.pricing-item:hover{
  transform: translateY(-7px);
  border-color: #29BF6C;
}

.pricing-badge{
  position: absolute;
  right: 10px;
  top: 10px;
  background: #F85C70;
  color: #fff;
  border-radius: 50px;
  padding: 0 15px;
  box-shadow: 0 10px 30px 0 rgb(248 92 112 / 40%);
}

.pricing-header h4 {
  margin-bottom: 15px;
  color: #29BF6C;
}

.pricing-amount {
  color: #394358;
  font-weight: 700;
}

.pricing-amount span{
  font-weight: 500;
  font-size: 16px;
  color: #757F95;
}

.pricing-feature {
  margin-top: 20px;
}

.pricing-feature ul {
  margin-top: 35px;
  margin-bottom: 35px;
}

.pricing-feature ul li {
  position: relative;
  margin: 10px 0;
  padding-left: 25px;
}

.pricing-feature ul li::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  border: 3px solid #29BF6C;
  border-radius: 50px;
  left: 0;
  top: 8px;
}

.pricing-feature .theme-btn{
  padding: 8px 16px;
}




/* ===================
download css 
====================== */

.download-area{
  background: rgba(14, 198, 198, .05);
  overflow: hidden;
  position: relative;
}

.download-area::before {
  content: "";
  position: absolute;
  bottom: -130px;
  right: 50px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  margin: 0 auto;
  border: 50px solid#29BF6C;
  z-index: -1;
}

.download-btn a:first-child{
  margin-right: 8px;
}

.download-btn img{
  width: 170px;
  border-radius: 12px;
}

.download-left{
  position: relative;
}

.download-img{
  text-align: center;
}

.download-img img{
  width: 80%;
}

@media all and (max-width: 991px) {
  .download-img{
    margin-bottom: 40px;
  }
}

@media all and (max-width: 767px) {
  .download-img img{
    width: 100%;
  }

  .download-btn img{
    width: 150px;
  }
}




/* ===================
faq css 
====================== */

.faq-area .accordion-item {
  border: none;
  margin-bottom: 25px;
  background: #fff;
  border-radius: 8px !important;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.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: #29BF6C;
  text-align: center;
  color: #fff;
}

.faq-area .accordion-button:not(.collapsed) {
  color: #29BF6C;
  background: transparent;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

.accordion-button {
  border-radius: 0px !important;
  background: transparent;
  font-weight: 700;
  font-size: 18px;
  color: #394358;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  border-bottom: 1px dashed #29BF6C;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media all and (max-width: 991px) {
  .faq-right {
    margin-top: 50px;
  }

  .accordion-button {
    font-size: 16px;
  }
}



/* ===================
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: 230px;
  padding-bottom: 120px;
  z-index: 1;
}

.site-breadcrumb::before {
  content: "";
  position: absolute;
  background: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.site-breadcrumb .breadcrumb-title {
  font-size: 40px;
  color: #fff;
  font-weight: 700;
  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: #fff;
  font-weight: 500;
  text-transform: capitalize;
}

.site-breadcrumb .breadcrumb-menu li a {
  color: #fff;
  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: #fff;
}

.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: #29BF6C;
}

.site-breadcrumb .breadcrumb-menu li.active {
  color: #29BF6C;
}

@media (max-width: 991px) {
  .site-breadcrumb {
    padding-top: 270px;
  }
}




/* ===================
pagination css 
====================== */

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.pagination .page-link {
  border: none;
  background: #394358;
  color: #fff;
  margin: 0 10px;
  border-radius: 50px !important;
  width: 40px;
  height: 40px;
  line-height: 28px;
  text-align: center;
  transition: all .5s ease-in-out;
}

.pagination .page-link:hover,
.pagination .page-item.active .page-link {
  background: #29BF6C;
  color: #fff;
}




/* ===================
auth css 
====================== */

.login-form {
  padding: 30px 40px;
  background: #fff;
  border-radius: 7px;
  position: relative;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.login-form .login-header {
  text-align: center;
  margin-bottom: 30px;
}

.login-form .login-header img {
  width: 200px;
  margin-bottom: 10px;
}

.login-form .login-header h3 {
  color: #29BF6C;
  margin-bottom: 5px;
  font-weight: 800;
}

.login-form .login-header p {
  font-size: 20px;
}

.login-form .login-footer {
  margin-top: 25px;
}

.login-form .login-footer p {
  text-align: center;
}

.login-form .login-footer a {
  color: #29BF6C;
  transition: .5s;
}

.login-form .login-footer a:hover {
  color: #29BF6C;
}

.login-form .form-group {
  margin-bottom: 15px;
  position: relative;
}

.login-form .form-group i {
  position: absolute;
  bottom: 17px;
  left: 18px;
}

.login-form label {
  color: #394358;
  margin-bottom: 5px;
}

.login-form .form-group .form-control {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  padding: 12px 18px 12px 47px;
  box-shadow: none;
  transition: .5s;
}

.login-form .form-group .form-control:focus {
  border-color: #29BF6C;
}

.login-form .form-check-input {
  box-shadow: none;
}

.login-form .forgot-pass {
  color: #29BF6C;
  transition: .5s;
}

.login-form .forgot-pass:hover {
  color: #29BF6C;
}

.login-form .theme-btn {
  width: 100%;
}

.login-form .theme-btn i {
  margin-right: 5px;
}

.login-form .form-check-input {
  margin-top: 6.3px;
}

.login-form .form-check-label a {
  color: #29BF6C;
  transition: .5s;
}

.login-form .form-check-label a:hover {
  color: #29BF6C;
}

.form-check-input:checked {
  background-color: #29BF6C;
  border-color: #29BF6C;
}

.login-divider {
  position: relative;
  margin: 15px 0;
  text-align: center;
}

.login-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  border-bottom: 1px solid #E8E8E8;
}

.login-divider span {
  position: relative;
  background: #fff;
  padding: 0 20px;
}

.social-login a {
  display: block;
  margin-bottom: 15px;
  padding: 10px 20px;
  border-radius: 12px;
  text-align: center;
}

.social-login a i {
  float: left;
  margin-top: 7px;
}

.btn-fb {
  border: 1px solid #506DAB;
  color: #506DAB !important;
}

.btn-fb:hover {
  background: #506DAB;
  color: #fff !important;
}

.btn-gl {
  border: 1px solid #DD4B39;
  color: #DD4B39 !important;
}

.btn-gl:hover {
  background: #DD4B39;
  color: #fff !important;
}


@media only screen and (max-width: 991px) {
  .login-form {
    padding: 40px 20px;
  }
}



/* ===================
user profile css 
====================== */

.header-account img {
  width: 50px;
  border-radius: 50%;
  padding: 3px;
  border: 3px solid #29BF6C;
  cursor: pointer;
}

.header-account .dropdown-menu {
  border: none;
  min-width: 200px;
  border-radius: 10px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.header-account .dropdown-menu li a i {
  margin-right: 5px;
}

.header-account .dropdown-menu .dropdown-item {
  padding: 8px 20px;
}

.header-account .dropdown-menu .dropdown-item:hover {
  background: transparent;
  color: #29BF6C;
  padding-left: 25px;
}

.mobile-menu-right {
  gap: 20px;
}

.mobile-menu-right .header-account img {
  width: 35px;
  padding: 0;
  border: none;
}

.user-profile-sidebar {
  background: #fff;
  border-radius: 10px;
  margin-bottom: 25px;
  padding: 20px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.user-profile-sidebar-top {
  text-align: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-img {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 15px auto;
  border-radius: 50px;
}

.user-profile-img img {
  border-radius: 50%;
}

.profile-img-file {
  display: none;
}

.user-profile-img button {
  position: absolute;
  border-radius: 50px;
  background: #29BF6C;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 28px;
  text-align: center;
  border: none;
  right: 0;
  bottom: 0;
}

.user-profile-sidebar-list li {
  margin: 5px 0;
}

.user-profile-sidebar-list li a {
  color: #394358;
  padding: 6px 6px 6px 15px;
  display: block;
  transition: all .5s ease-in-out;
}

.user-profile-sidebar-list li a:hover {
  padding-left: 20px;
}

.user-profile-sidebar-list li a i {
  margin-right: 5px;
  color: #29BF6C;
}

.user-profile-sidebar-list .active i {
  color: #fff;
}

.user-profile-sidebar-list .active {
  background: #29BF6C;
  color: #fff;
  border-radius: 8px;
}

.user-profile-card {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 25px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 5%);
}

.user-profile-card-title {
  color: #394358;
  font-size: 20px;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-card .text-success {
  color: #29BF6C !important;
}

.user-profile-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.user-profile-card-header .user-profile-card-title {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.user-profile-card-header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.user-profile-search .form-group {
  position: relative;
}

.user-profile-search .form-control {
  padding: 10px 12px 10px 35px;
  box-shadow: none;
  border-radius: 10px;
}

.user-profile-search .form-control:focus {
  border-color: #29BF6C;
}

.user-profile-search i {
  position: absolute;
  left: 12px;
  top: 15px;
}

.user-profile-card-header .theme-btn {
  padding: 8px 15px;
}

.profile-info-list li {
  margin: 12px 0;
  font-weight: 500;
}

.profile-info-list li span {
  float: right;
  font-weight: normal;
}

.user-profile-form .form-group {
  margin-bottom: 20px;
}

.user-profile-form .form-group label {
  color: #394358;
  margin-bottom: 5px;
}

.user-profile-form .form-control {
  height: 55px;
  padding-left: 15px;
  padding-right: 15px;
  border-radius: 12px;
  box-shadow: none;
}

.user-profile-form .form-control:focus {
  border-color: #29BF6C;
}

.user-profile-form .theme-btn {
  width: unset;
}

.user-profile .badge-success{
  background: #DCFCE7;
  color: #22C79C;
}

.user-profile .badge-info{
  background: #F3E8FF;
  color: #A855F7;
}

.user-profile .badge-primary{
  background: #DBF7FD;
  color: #0DCAF0;
}

.user-profile .badge-danger{
  background: #FEE2E2;
  color: #EF4444;
}



/* dashboard */
.dashboard-widget {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px 20px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 0 40px 5px rgb(0 0 0 / 3%);
}

.dashboard-widget-info span {
  font-weight: 500;
}

.dashboard-widget-info h1 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 5px;
}

.dashboard-widget-icon {
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  border-radius: 50px;
}

.dashboard-widget-color-1 {
  background: rgba(98, 89, 202, 0.15);
  color: #6259CA;
}

.dashboard-widget-color-1 h1 {
  color: #6259CA;
}

.dashboard-widget-color-1 .dashboard-widget-icon {
  background: #6259CA;
  color: #fff;
}

.dashboard-widget-color-2 {
  background: rgba(14, 198, 198, .15);
  color: #29BF6C;
}

.dashboard-widget-color-2 h1 {
  color: #29BF6C;
}

.dashboard-widget-color-2 .dashboard-widget-icon {
  background: #29BF6C;
  color: #fff;
}

.dashboard-widget-color-3 {
  background: rgba(251, 107, 37, 0.15);
  color: #FB6B25;
}

.dashboard-widget-color-3 h1 {
  color: #FB6B25;
}

.dashboard-widget-color-3 .dashboard-widget-icon {
  background: #FB6B25;
  color: #fff;
}

.table-ad-info a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-ad-info h6 {
  transition: all .5s ease-in-out;
}

.table-ad-info p{
  color: #394358;
}

.table-ad-info:hover h6 {
  color: #29BF6C;
}

.table-ad-info span{
  color: #394358;
}

.table-ad-info img {
  width: 80px;
  border-radius: 8px;
}

.user-profile-card .table>:not(caption)>*>* {
  vertical-align: middle;
  padding: 0.8rem 0.8rem;
}


/* profile store */
.profile-store .store-file{
  display: none;
}

.profile-store .store-logo-preview{
  margin-bottom: 30px;
}

.profile-store .store-logo-preview img{
  width: 100px;
  border-radius: 50px;
}

.profile-store .store-banner-preview{
  margin-top: 50px;
  margin-bottom: 30px;
}

.profile-store .store-banner-preview img{
  border-radius: 12px;
}


/* post ads */
.post-ad-form .form-group {
  margin-bottom: 15px;
}

.post-ad-form .form-group label {
  margin-bottom: 5px;
  color: #757F95;
}

.post-ad-form .form-control {
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: none;
  color: #757F95;
}

.post-ad-form .form-control::placeholder {
  color: #757F95;
}

.post-ad-form .nice-select {
  width: 100%;
  height: 56px;
  line-height: 55px;
  border-radius: 12px;
  padding-left: 20px;
  font-size: 16px;
  border-color: #CED4DA;
  color: #757F95;
  margin-bottom: 15px;
}

.post-ad-form .form-control:focus,
.post-ad-form .nice-select:focus {
  border-color: #29BF6C;
}

.post-ad-form .nice-select .list {
  width: 100%;
  border: none;
  border-radius: 12px;
  padding: 10px;
  height: 300px;
  overflow-y: auto;
  box-shadow: 0px 0px 50px 0px rgb(32 32 32 / 15%);
}

.post-ad-form .nice-select ::-webkit-scrollbar {
  width: 8px;
}

.post-ad-form .nice-select ::-webkit-scrollbar-track {
  background: #f1f1f1; 
  border-radius: 0 50px 50px 0;
}
 
.post-ad-form .nice-select ::-webkit-scrollbar-thumb {
  background: #29BF6C; 
  border-radius: 50px;
}

.post-ad-form .nice-select ::-webkit-scrollbar-thumb:hover {
  background: #FF6B6B; 
}

.post-ad-form .nice-select .option.focus,
.post-ad-form .nice-select .option.selected.focus,
.post-ad-form .nice-select .option:hover {
  background: #F6F6F6;
  color: #29BF6C;
  border-radius: 8px;
}

.post-ad-form .nice-select:after {
  width: 8px;
  height: 8px;
  margin-top: -5px;
  right: 15px;
}

.post-ad-form .product-img-upload {
  width: 100%;
  height: 140px;
  border: 2px dashed rgba(0, 0, 0, .1);
  border-radius: 10px;
  cursor: pointer;
}

.post-ad-form .product-img-file {
  display: none;
}

.post-ad-form .product-img-upload span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.post-ad-form .product-img-upload span i {
  margin-right: 5px;
}

.post-ad-form .form-check {
  margin-bottom: 15px;
}

.post-ad-form .form-check-input {
  margin-top: 6.5px;
  box-shadow: none;
}

.post-ad-form .form-check-input:focus {
  border-color: #29BF6C;
}

.post-ad-form .form-check label {
  color: #757F95;
}


/* profile ad setting */
.profile-ad-result li{
  margin-bottom: 8px;
}

.profile-ad-result li i{
  margin-right: 5px;
  color: #29BF6C;
}

.profile-ad-setting .nice-select .list{
  height: auto;
}

.profile-ad-setting .nice-select.location .list{
  height: 300px;
}


/* profile favorite */
.profile-favorite .product-item {
  box-shadow: none;
  border: 2px solid rgba(0, 0, 0, .05);
}


/* profile payment */
.profile-payment .form-check-input{
  margin-top: 6px;
  box-shadow: none;
}


/* profile setting */
.profile-setting .form-check{
  margin-bottom: 10px;
}

.profile-setting .form-check-input{
  margin-top: 6.5px;
  box-shadow: none;
}


/* profile message */
.profile-message-wrapper {
  display: flex;
}

.profile-message-inbox {
  max-width: 340px;
  border: 1px solid #EDF1F9;
  border-radius: 10px;
}

.profile-message-inbox {
  overflow: hidden;
}

.message-content {
  padding-left: 30px;
  position: relative;
  overflow: hidden;
}

.message-content-info {
  max-height: 750px;
  overflow-y: scroll;
  margin-right: -50px;
  padding-right: 50px;
}

.profile-message-inbox,
.message-content {
  flex: 1;
}

.profile-message-inbox ul {
  max-height: 950px;
  overflow-y: scroll;
  width: 357px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.profile-message-inbox ul li.message-active {
  border-left: 3px solid #29BF6C;
}

.profile-message-inbox ul li {
  border-bottom: 1px solid #EDF1F9;
  transition: .2s;
  list-style: none;
}

.profile-message-inbox ul li:last-child {
  border-bottom: none;
}

.message-by-content h5 {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
}

.profile-message-inbox ul li a {
  position: relative;
  display: block;
  padding: 30px;
}

.profile-message-inbox .message-avatar {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.message-avatar img {
  display: inline-block;
  width: 54px;
  height: 54px;
  border-radius: 50%;
}

.message-avatar img {
  width: 50px;
  height: 50px;
}

.profile-message-inbox .message-by {
  margin-left: 50px;
}

.message-by-content h5 i {
  background: #F98F14;
  padding: 3px 8px;
  border-radius: 50px;
  color: #fff;
  font-size: 13px;
}

.message-by-content span {
  font-size: 13px;
  position: absolute;
  top: 25.5px;
  right: 25px;
  float: right;
  color: #888888;
}

.profile-message-inbox .message-by p {
  height: 26px;
  max-width: 205px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  font-size: 14px;
  margin: 0;
  padding: 0;
  color: #6B747D;
  line-height: 27px;
}

.message-item {
  display: block;
  position: relative;
  margin-bottom: 25px;
}

.message-item .message-avatar {
  position: absolute;
  left: 0;
  top: 0;
}

.message-item .message-avatar img {
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
}

.message-item .message-description {
  margin-left: 70px;
  background: #F4F5F7;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.message-item .message-description::before {
  position: absolute;
  top: 0px;
  left: -9px;
  content: "\f0d9";
  font-family: "Font Awesome 6 Pro";
  font-weight: bold;
  font-size: 31px;
  color: #F4F5F7;
}

.message-item .message-description p {
  font-size: 15px;
  padding: 0;
  margin: 0;
  line-height: 27px;
}

.message-item.me .message-avatar {
  left: auto;
  right: 0;
  position: absolute;
  top: 0;
}

.message-item.me .message-description {
  color: #29BF6C;
  background-color: rgba(9, 195, 152, 0.1);
  margin-left: 0;
  margin-right: 70px;
  border-radius: 12px;
  padding: 20px;
  position: relative;
}

.message-item.me .message-description::before {
  content: "\f0da";
  left: auto;
  right: -11px;
  color: #E6F9F4;
}

.message-reply {
  margin-top: 15px;
  position: absolute;
  bottom: 0;
  left: 30px;
  right: 15px;
}

.message-reply .form-control {
  padding: 15px 20px;
  box-shadow: none;
  border-radius: 10px;
}

.message-reply .form-control:focus {
  border-color: #29BF6C;
}

.message-reply .theme-btn {
  margin-top: 15px;
}

.message-status {
  width: 12px;
  height: 12px;
  background: #252629;
  display: flex;
  border-radius: 50%;
  border: 3px solid #ffffff;
  position: absolute;
  right: -5px;
  top: 50%;
}

.message-status.online {
  background: #29BF6C;
}

.message-status.offline {
  background: #DD4B39;
}

.message-status.busy {
  background: #F6B500;
}

.profile-message .header-account img {
  width: 45px;
}



@media all and (max-width: 991px) {
  .message-by-content span {
    right: 65px;
  }

  .message-reply {
    right: 0;
  }
}

@media all and (max-width: 767px) {
  .table-listing-info a {
    display: block;
  }

  .table-listing-info h6 {
    margin-top: 10px;
  }

  .user-profile-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .user-profile-card-header-right {
    flex-direction: column-reverse;
    align-items: flex-start;
  }

  .profile-message .profile-message-wrapper {
    flex-direction: column;
    gap: 50px;
  }

  .profile-message .user-profile-card-header {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .profile-message .message-content {
    padding-left: 0;
    padding-bottom: 200px;
  }

  .message-reply {
    left: 0;
  }

}



/* ===================
coming soon css 
====================== */

.coming-soon {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  position: relative;
}

.coming-soon .container {
  position: relative;
}

.coming-soon:before {
  position: absolute;
  content: '';
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.coming-soon .newsletter-form {
  position: relative;
  margin-top: 30px;
}

.coming-soon .newsletter-form .input-newsletter {
  height: 55px;
  display: block;
  width: 100%;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 25px;
  box-shadow: none;
}

.coming-soon .newsletter-form button {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  height: auto;
  border: none;
  border-radius: 50px;
  background: #29BF6C;
  display: inline-block;
  color: #fff;
  padding-left: 30px;
  padding-right: 30px;
  font-weight: 500;
  transition: .5s;
}

.coming-soon .newsletter-form button:hover {
  background-color: #29BF6C;
  color: #fff;
}

.coming-social {
  margin-top: 30px;
  text-align: center;
}

.coming-social a {
  color: #fff;
  margin: 5px;
  width: 40px;
  height: 40px;
  line-height: 36px;
  text-align: center;
  border-radius: 50px;
  border: 2px solid #fff;
  display: inline-block;
  transition: .5s;
}

.coming-social a:hover {
  background: #29BF6C;
  border-color: #29BF6C;
}

.countdown-wrap {
  margin-top: 30px;
}

.countdown-single {
  background: #29BF6C;
  padding: 20px;
  margin: 10px;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
  box-shadow: 0 3px 24px rgb(0 0 0 / 10%);
}

.countdown-single h2 {
  color: #fff;
}

.countdown-single h5 {
  color: #fff;
}




/* ===================
error css 
====================== */

.error-wrapper {
  text-align: center;
}

.error-wrapper h1 {
  font-size: 250px;
  letter-spacing: 5px;
  font-weight: bold;
  color: #29BF6C;
  line-height: 1;
}

.error-wrapper h1 span {
  color: #394358;
}

.error-wrapper h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.error-wrapper img {
  width: 100%;
}

.error-wrapper .theme-btn {
  margin-top: 30px;
}


@media all and (max-width: 767px) {
  .error-wrapper h1 {
    font-size: 160px;
  }
}



/* ===================
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 {
  margin-bottom: 23px;
  position: relative;
  font-weight: 700;
}

.terms-content p:not(:last-child) {
  margin-bottom: 26px;
}

.terms-list li:not(:last-child) {
  margin-bottom: 16px;
}




/* ===================
footer css 
====================== */

.footer-area {
  background: #191A1A;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.footer-area::before{
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(36, 192, 108, .05);
  top: 50px;
  left: -100px;
  transform: rotate(50deg);
}

.footer-area::after{
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 30px solid rgba(36, 192, 108, .05);
  bottom: 100px;
  right: -100px;
  transform: rotate(50deg);
}

.footer-widget-box {
  margin-bottom: 20px;
}

.footer-widget {
  position: relative;
  z-index: 1;
}

.footer-logo img {
  width: 200px;
  margin-bottom: 30px;
}

.copyright {
  padding: 20px 0;
  background: #131313;
}

.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: #f5faff;
  transition: all .5s ease-in-out;
}

.copyright .footer-menu li a:hover {
  color: #29BF6C;
}

.copyright .copyright-text {
  color: #808996;
  margin-bottom: 0px;
  font-size: 16px;
}

.copyright .copyright-text a {
  color: #29BF6C;
  font-weight: 500;
}

.footer-widget-title {
  color: #fff;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
  font-size: 20px;
  z-index: 1;
}

.footer-widget-title::before {
  position: absolute;
  content: '';
  z-index: -1;
  width: 30px;
  height: 3px;
  background: #29BF6C;
  border-radius: 50px;
  bottom: 0;
  left: 0;
}

.footer-widget-title::after {
  position: absolute;
  content: '';
  z-index: -1;
  width: 10px;
  height: 3px;
  background: #29BF6C;
  border-radius: 50px;
  bottom: 0;
  left: 35px;
}

.footer-list {
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.footer-list li a {
  color: #808996;
  transition: all .5s ease-in-out;
}

.footer-list li a i {
  margin-right: 5px;
  color: #29BF6C;
  font-weight: 400;
  font-size: 14px;
}

.footer-list li a:hover {
  padding-left: 10px;
  color: #29BF6C;
}

.footer-widget-box p {
  color: #808996;
  padding-right: 18px;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 15px;
  justify-content: end;
}

.footer-social li a i {
  height: 38px;
  width: 38px;
  line-height: 38px;
  text-align: center;
  border-radius: 50px;
  background: rgba(255, 255, 255, .04);
  color: #29BF6C;
  transition: all .5s ease-in-out;
}

.footer-social li a i:hover {
  background: #29BF6C;
  color: #fff;
}

.footer-contact li {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;
  color: #808996;
  font-size: 16px;
  margin-bottom: 15px;
}

.footer-contact li a {
  color: #808996;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.footer-contact li i {
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 16px;
  margin-right: 15px;
  border-radius: 8px;
  background: #29BF6C;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: #fff;
}

.subscribe-form .form-control {
  padding: 18px 70px 18px 45px;
  border-radius: 10px;
  box-shadow: none;
  border: none;
}

.subscribe-form .form-group-icon{
  position: relative;
}

.subscribe-form .form-group-icon i{
  position: absolute;
  top: 21px;
  left: 15px;
  font-size: 18px;
}

.subscribe-form .theme-btn {
  position: absolute;
  right: 0;
  bottom: 6.5px;
  right: 7.5px;
  padding: 9px 17px;
}

.subscribe-form .theme-btn span{
  margin-right: 0;
}

.footer-payment-method{
  margin-top: 25px;
}

.footer-payment-method h6{
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  margin-bottom: 12px;
}

.payment-method-img img{
  width: 45px;
  margin: 2px;
  border-radius: 4px;
}


@media all and (max-width: 1199px) {
  .footer-widget-box {
    margin-bottom: 50px;
  }
}

@media all and (max-width: 991px) {

  .footer-area::before {
    display: none;
  }

  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .copyright .footer-menu {
    float: left;
    margin-top: 20px;
    text-align: left;
  }

  .copyright .footer-menu li {
    margin-left: 0;
    margin-right: 15px;
  }

}

@media all and (max-width: 767px) {
  .footer-widget-wrapper {
    padding-bottom: 0px;
  }

  .footer-social {
    justify-content: flex-start;
    margin-top: 20px;
  }
}



/* ======================
home 2
====================== */

.home-2 .main{
  margin-top: 0;
}

.home-2 .navbar{
  background: #fff;
}

.home-2 .navbar-toggler-btn-icon{
  color: #394358;
}

.home-2 .hero-single{
  padding-top: 140px;
  padding-bottom: 150px;
}


@media (min-width: 992px){
  .home-2 .navbar .nav-item .nav-link{
    color: #394358;
  }

  .home-2 .navbar .nav-item .nav-link.active,
  .home-2 .navbar .nav-item:hover .nav-link{
    color: #29BF6C;
  }

  .home-2 .header-account-link{
    color: #394358;
  }

  .home-2 .header-account-link:hover{
    color: #29BF6C;
  }

}


/* ======================
home 3
====================== */

.home-3 .main{
  margin-top: 0;
}

.home-3 .navbar{
  background: #fff;
}

.home-3 .navbar-toggler-btn-icon{
  color: #394358;
}

.home-3 .hero-single{
  padding-top: 100px;
  padding-bottom: 110px;
}

.home-3 .search-form .form-group,
.home-3 .search-form .nice-select{
  margin-bottom: 20px;
}

.home-3 .search-keyword a{
  margin: 10px 15px 0 0;
}

.home-3 .search-keyword span{
  display: block;
}

.home-3 .category-item{
  box-shadow: none;
  border: 1px solid rgba(0, 0, 0, .08);
}


@media (min-width: 992px){
  .home-3 .navbar .nav-item .nav-link{
    color: #394358;
  }

  .home-3 .navbar .nav-item .nav-link.active,
  .home-3 .navbar .nav-item:hover .nav-link{
    color: #29BF6C;
  }

  .home-3 .header-account-link{
    color: #394358;
  }

  .home-3 .header-account-link:hover{
    color: #29BF6C;
  }

}



/* ======================
home 5
====================== */

.home-5 .main{
  margin-top: 0;
}

.home-5 .navbar{
  background: #fff;
}

.home-5 .navbar-toggler-btn-icon{
  color: #394358;
}

.home-5 .hero-single{
  padding-top: 90px;
  padding-bottom: 130px;
  background: #F6F6F6;
  position: relative;
}

.home-5 .hero-single::before{
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: transparent;
  border: 40px solid #FF81A7;
  border-radius: 50%;
  left: -100px;
  top: -100px;
  z-index: -1;
  opacity: .2;
}

.home-5 .hero-single::after{
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: transparent;
  border: 40px solid #F4B16D;
  border-radius: 50%;
  right: -150px;
  bottom: 50px;
  z-index: -1;
  opacity: .2;
}

.home-5 .hero-single .hero-content p,
.home-5 .hero-single .hero-content .hero-title{
  color: #394358;
}

.home-5 .search-area{
  margin-top: -130px;
}

.home-5 .footer-area{
  background: #F6F6F6;
}

.home-5 .footer-widget-title{
  color: #394358;
}

.home-5 .footer-payment-method h6{
  color: #394358;
}

.home-5 .copyright{
  border-top: 1px solid rgba(0, 0, 0, .05);
  background: transparent;
}

.home-5 .footer-social li a i{
  background: #fff;
  color: #29BF6C;
}

.home-5 .footer-social li a i:hover {
  background: #29BF6C;
  color: #fff;
}

@media (max-width: 991px){
  .home-5 .hero-img{
    margin-top: 40px;
  }
}

@media (min-width: 992px){
  .home-5 .navbar .nav-item .nav-link{
    color: #394358;
  }

  .home-5 .navbar .nav-item .nav-link.active,
  .home-5 .navbar .nav-item:hover .nav-link{
    color: #29BF6C;
  }

  .home-5 .header-account-link{
    color: #394358;
  }

  .home-5 .header-account-link:hover{
    color: #29BF6C;
  }
}






