select.form-control:not([size]):not([multiple])
{
    height: 40px;
    padding: 5px 8px;
}
/* backend Css */

.mb-btn {
  margin-bottom: 4px;
}

.twins-btn .full-w {
  width: 100%;
}
/*.mt-header-dash {*/
/*  padding-top: 90px;*/
/*}*/
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
/*body {*/
/*  font-family: "Open Sans", sans-serif;*/
/*  color: #444444;*/
/*}*/
.form-control:focus {
    background-color: #fff;
    border-color:#24337a;
    box-shadow: 0 0 0 0.2rem rgb(36 51 122);
}
.form-control {
    border: 1px solid #fec52e;
}
.frm-fltr select.form-control {
    padding: 10px 10px;
}
.frm-fltr select.form-control:not([size]):not([multiple]) {
    height: 50px;
}
a {
  color: #24337a;
}
.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 0 rgb(0 123 255 / 25%);
}
a:hover {
  color: #86db9f;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}
.btn-primary
{
  color: #fff;
  background-color: #fea51e;
  border-color: #fea51e;
}
.btn-primary:hover
{
  color: #fff;
  background-color: #24337a;
  border-color: #24337a;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  display: none;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
}

.back-to-top i {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background: #84ba3f;
  color: #fff;
  transition: all 0.4s;
}

.back-to-top i:hover {
  background: #3ac162;
  color: #fff;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/* #preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
} */

/* #preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #84ba3f;
  border-top-color: #fff;
  border-bottom-color: #fff;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
} */

/* @-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

/* @keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
} */

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
/* #header {
  background: #323232;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  box-shadow: 0px 0 18px rgba(55, 66, 59, 0.08);
} */

/* #header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
} */

/* #header .logo a {
  color: #84ba3f;
} */

/* #header .logo img {
  max-height: 40px;
} */

/* @media (max-width: 992px) {
  #header .logo {
    font-size: 28px;
  }
} */

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
/* .nav-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul {
  display: flex;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.nav-menu a {
  display: block;
  position: relative;
  color: #fff;
  transition: 0.3s;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  color: #84ba3f;
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #37423b;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #84ba3f;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
} */

/* Get Startet Button */
/* .get-started-btn {
  margin-left: 22px;
  background: #84ba3f;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
} */

/* .get-started-btn:hover {
  background: #3ac162;
  color: #fff;
} */

/* @media (max-width: 768px) {
  .get-started-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
} */

/* Mobile Navigation */
/* .mobile-nav-toggle {
  position: fixed;
  top: 17px;
  right: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
} */

/* .mobile-nav-toggle i {
  color: #fff;
} */

/* .mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #37423b;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #84ba3f;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(32, 38, 34, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
} */





/*my Cxx*/
.ad-btn-a {
    background: #fec52e;
    border: #fec52e;
    border-radius: 3px;
    margin-bottom: 15px;
}
.ad-btn-a .btn-add-pro {
    color: #fff;
}
.ad-btn-a:hover
{
    background: #363636;
    border: #363636;
}
.cont-tabx {
    display: flex;
    align-items: center;
    border: 0;
}
.cont-tabx li:first-child {
    border-right: 0px;
}
.cont-tabx li {
    text-align: center;
    border: 1px solid #ddd;
    flex: 1 auto;
    flex-wrap: nowrap;
}
.cont-tabx li a {
    color: #626262;
    padding: 10px 0;
    display: block;
    font-size: 16px;
    font-weight: 500;
}
.cont-tabx li a.active {
    background: #fec52e;
    color: white;
}




.paymnts-tlte {
    color: #fff;
    font-weight: 600;
}


.dashboard-bg {
    background: #f9f9f9;
    border-bottom: 1px solid #e0e0e0;
    box-shadow: 0px 1px 10px rgb(0 0 0 / 30%);
}
.btn-theme {
    background: #24337a;
    color: #fff;
    border-radius: 50px;
    padding: 8px 25px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 14px;
    display: inline-block;
}
.btn-theme:hover {
    background: #fdc52e;
    color: #fff;
}
.rows-algn {
    align-items: center;
}
.min-margin {
    margin-top: -100px;
    position: relative;
    z-index: 1;
}
.dash-main {
    display: flex;
    align-items: center;
    width: 100%;
}
.dash-main .profile-img {
    width: 15%;
    margin-right: 10px;
}
.profile-img img {
    border-radius: 50%;
        width: 200px;
    height: 200px;
    object-fit: cover;
    box-shadow: 0px 1px 7px rgb(0 0 0 / 14%);
}
.dash-main .profile-decp {
    width: 85%;
}
.profile-decp {
    text-align: left;
}
.profile-decp h3 {
    font-weight: 600;
    margin-bottom: 10px;
}
.profile-decp hr {
    margin: 0 0;
}
.profile-decp p {
    margin-top: 10px;
}

.chart-feature-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;

}
.chart-info-icon {
    text-align: center;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65px;
    flex: 0 0 65px;
}
.chart-info-content .chart-info-title {
    font-weight: 700;
    margin-bottom: 0;
}
.chart-info-count {
    margin-left: auto;
    text-align: center;
    font-size: 24px;
    padding: 25px 0px;
    border-left: 1px solid white;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 85px;
    flex: 0 0 85px;
}

.pack-boxex {
    margin-bottom: 20px;
}
.pack-boxex:last-child {
    margin-bottom: 0px;
}

.dash-title-bar {
    border-bottom: 1px solid #ddd;
}
.reclty-pro-tble {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.daxh-vewall .btn-viewall {
    color: #24337a;
    font-weight: 600;
    font-size: 14px;
}
.card-plan {
    background: #323232;
    background-image: linear-gradient(to right top, #57c9ea, #24337a);
    position: relative;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e6ed;
    box-shadow: 0 0.1px 0px rgb(0 0 0 / 0%), 0 0.2px 0px rgb(0 0 0 / 0%), 0 0.4px 0px rgb(0 0 0 / 0%), 0 0.6px 0px rgb(0 0 0 / 0%), 0 0.9px 0px rgb(0 0 0 / 1%), 0 1.2px 0px rgb(0 0 0 / 1%), 0 1.8px 0px rgb(0 0 0 / 1%), 0 2.6px 0px rgb(0 0 0 / 1%), 0 3.9px 0px rgb(0 0 0 / 1%), 0 7px 0px rgb(0 0 0 / 1%);
}
.card-plan .account-box .info {
    display: flex;
    justify-content: space-between;
    /*margin-bottom: 84px;*/
    color: white;
}
.inv-title h5 {
    margin-bottom: 0;
    font-size: 17px;
    font-weight: 600;
    color: #fec52e;
}
.inv-title p {
    color: #fff;
}
.inv-balance-info p {
    margin-bottom: 0;
    font-weight: 600;
    font-size: 14px;
    color: #e1e1e1;
}
.inv-balance-info h5 {
    font-size: 16px;
    margin-bottom: 0;
    color: #fec52e;
}
.acc-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.acc-action a {
    display: inline-block;
    padding: 8px;
    border-radius: 3px;
    color: #ffffff;
    background: #fec52e;
    font-weight: 500;
    box-shadow: 0px 0px 2px 0px #484848;
    font-size: 14px;
    transition: .3s ease-in-out;
}
.acc-action a:hover {
    background: #343a40;
    box-shadow: 0px 0px 2px 0px #343a40;
}
/* .dashbar-nav span {
    display: inline-block;
    width: 30px;
    height: 30px;
} */
/* .dashbar-nav span img {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50%;
} */



.pro-picx {
  color: transparent;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}
.pro-picx input {
  display: none;
}
.pro-picx .-label {
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    color: #fafafa;
    transition: background-color 0.2s ease-in-out;
    border-radius: 100px;
    margin-bottom: 0;
    width: 40px;
    height: 40px;
}

.pro-picx span {
    display: inline-flex;
    padding: 0.2em;
    font-size: 18px;
    background-color: rgb(254 197 46);
    color: #000;
    border-radius: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
}
.pro-mb {
    margin-bottom: 3px;
}
.pro-name input {
    border-color: #fec52e;
}
.pro-decp input {
    border-color: #fec52e;
}
.form-control:focus {
    box-shadow: 0 0 0 0 rgb(0 123 255 / 25%);
}
.pro-frm label {
    font-weight: 600;
    color: #323232;
}
.pro-frm input, .pro-frm select, .pro-frm textarea {
    border-color: #fec52e;
}

span.multiselect-native-select .btn-group {
    width: 100%;
}
.multiselect.dropdown-toggle.custom-select {
    width: 100%;
    color: #323232;
    border: 1px solid #fec52e;
    box-shadow: none;
    background: #f6f7f8 url(data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E) no-repeat right 0.75rem center;
    height: 48px;
    padding: 5px 15px;
    text-align: left !important;
}

.multi-search-checked .dropdown-menu {
    overflow-x: scroll;
    height: 25vh;
}
.multi-search-checked .multiselect-native-select .btn-group.show .dropdown-menu {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 400px;
    z-index: 9999;
    padding: 0 0;
    background: #323337;
    color: #fff;
    border: 0px solid rgba(0,0,0,.15);
}
.multi-search-checked .multiselect-native-select .btn-group.show .dropdown-menu .multiselect-filter {
    border-radius: 0 !important;
}
.multi-search-checked .multiselect-native-select .btn-group.show .dropdown-menu .multiselect-filter input.multiselect-search {
    border-radius: 0;
}
button.multiselect-group.dropdown-item {
    padding-left: 0;
    border-bottom: 1px solid #fff;
}
.multi-search-checked .dropdown-item {
    color: #ffffff !important;
}
.multiselect-container .multiselect-option:hover, .multiselect-container .multiselect-group:hover, .multiselect-container .multiselect-all:hover, .multiselect-container .multiselect-option:focus, .multiselect-container .multiselect-group:focus, .multiselect-container .multiselect-all:focus {
    background-color: #fec52e !important;
    color: #000 !important;
}
.multiselect-container button .form-check-label
{
    color: #ffffff !important;
    font-weight: normal;
}
span.caret-container.dropdown-toggle {
    display: inline-block;
    width: 40px;
    text-align: center;
}
.multiselect-container .multiselect-group .caret-container ~ .form-check {
    margin-left: 0;
}


.btn-save {
    background: #fec52e;
    color: #fff;
    border-radius: 2px;
    padding: 8px 30px;
    white-space: nowrap;
    transition: 0.3s;
    font-size: 16px;
    display: inline-block;
    font-weight: 600;
}
.btn-save:hover {
    background: #343434;
}


.breadcrumbs.heading-title {
    margin-top: 30px;
    padding-bottom: 0;
}
.pricing .pricing-selected .btn-buy {
    background: #323232;
    display: inline-block;
    padding: 8px 35px;
    border-radius: 50px;
    color: #fff;
    transition: none;
    font-size: 14px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-weight: 600;
    transition: 0.3s;
}
.pricing .pricing-selected .btn-buy:hover {
    background: #3ac162;
}
.pricing .box.pricing-selected {
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
    border: 1px solid #84ba3f ;
}


#viewModal .pro-frm p {
    margin-bottom: 0;
}
#viewModal .pro-frm {
    background: whitesmoke;
    padding: 10px 10px;
}
#viewModal .pro-frm label {
    border-bottom: 1px solid #ddd;
    display: block;
}

#stripe-payment .card-header {
    background: #24337a;
}
.paymnts-tlte h5 {
    margin-bottom: 0;
    color: white;
    font-weight: 600;
}
.paymnt-img {
    text-align: right;
}
#stripe-payment .control-label {
    color: #323232;
}

.pricing-plan-btn {
    color: #fff;
    background-color: #323232;
    border-color: #323232;
    font-size: 14px;
}
.pricing-plan-btn:hover {
    color: #fff;
    background-color: #565656;
    border-color: #565656;
}


#project-listing {
    padding: 60px 100px;
}
.project-card {
    padding: 15px 0 0px;
    background: #f5f5f5;;
    border-radius: 8px;
    transition: .3s ease-in-out;
    position: relative;
}
.project-card:hover {
    background: #f7f7f7;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}
.cardx-header {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 0 15px;
}
.card-pic {
    margin-right: 10px;
}
.card-pic img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}
.card-namex h5 {
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
    color: #fec52e;
}
.card-namex p {
    margin-bottom: 0;
    font-size: 14px;
}
.card-bodyx {
    margin-bottom: 20px;
    padding: 0 15px;
}
.card-bodyx h5 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 18px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.card-bodyx p {
    margin-bottom: 0;
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-footerx {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 15px;
    margin-bottom: 10px;
}
.fotrx-lft {
    width: 120px;
}
.card-pro-type {
    margin-bottom: 5px;
}
.card-pro-type p, .card-pro-date p {
    margin-bottom: 0;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    line-break: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.card-pro-type p span, .card-pro-date p span {
    color: #24337a;
    margin-right: 6px;
}
.viewx-more .btn-viewmore {
    font-size: 14px;
    font-weight: 600;
    color: #24337a;
    padding: 0;
}
.viewx-more .btn-viewmore:hover {
    color: #323232;
}

.intrested-box {
    padding: 0px 0px;
    text-align: center;
    transition: .3s ease-in-out;
    background: #fec52e;
    border-radius: 0 0 8px 8px;
}
.intrested-box .btn-dark {
    background: #fec52e;
    border-color: #fec52e;
}
.sis-project-card:hover .btn-dark {
    background: #343a40;
    border-color: #343a40;
}
.intrested-box a {
    display: block;
    color: #fff;
}
.intrested-box a span {
    margin-right: 3px;
}
.project-card:hover .intrested-box {
    background: #323232;
    border-radius: 0 0 8px 8px;
}
.project-card:hover .intrested-box a{
    color: #fff;
}


.search-filter {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #fec52e;
    /*position: relative;*/
}
.filter-heading h4 {
    margin-bottom: 0;
    font-weight: 600;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.frm-fltr label {
    font-size: 14px;
    font-weight: 600;
}
.frm-fltr-btn {
    text-align: center;
}
.frm-lst-fld {
    margin-bottom: 5px;
}
.frm-lst-fld span {
    text-align: left ;
    font-size: 12px;
    margin-top: 5px;
    display: flex;
    align-items: baseline;
}
.frm-lst-fld span i {
    margin-right: 5px;
}
.btn-filtr {
    width: 100%;
    background: #24337a;
    color: white;
}
.btn-filtr:hover {
    width: 100%;
    background: #323232;
    color: white;
}
.ads-modl .modal-body {
    padding: 0;
}
.ads-modl .modal-body .close {
    position: absolute;
    right: 5px;
    top: 5px;
    opacity: 1;
    z-index: 1;
}
.ads-modl .modal-body .close span {
    color: #000;
    opacity: 1;
    background: #fff;
    border: 1px solid #fff;
    border-radius: 50%;
    height: 23px;
    width: 23px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
}
.modal-congra {
    text-align: center;
}
.modal-congra img {
    width: 100px;
}
.modal-congra h3 {
    margin-top: 15px;
}
.modal-congra p {
    margin-bottom: 0;
    margin-top: 10px;
    font-size: 16px;
}
#congra .modal-footer {
    padding-top: 10px;
    padding-bottom: 10px;
}
.modl-pro-herder {
    display: flex;
    align-items: center;
    background: #24337a;
    padding: 10px 10px;
    position: relative;
}
.modl-card-pic {
    margin-right: 10px;
}
.modl-card-pic img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #ddd;
}
.modl-card-namex h4 {
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
    color: #ffffff;
}
.modl-card-namex p {
    margin-bottom: 0;
    font-size: 14px;
    color: white;
}



.project-pro-frm {
    background: whitesmoke;
    padding: 10px 10px;
    box-shadow: 0 0 10px rgb(0 0 0 / 13%);
}
.project-pro-frm label {
    font-weight: 600;
    color: #323232;
    border-bottom: 1px solid #ddd;
    display: block;
}
.project-pro-frm p {
    margin-bottom: 0;
}
.xhadow {
    box-shadow: 0 0 10px #00000026;
    padding-top: 15px;
}

.project-pro-btnx .btn-intrested {
    background: #fec52e;
    color: white;
    padding: 8px 20px;
}
.project-pro-btnx .btn-intrested:hover {
    background: #24337a;
}
.project-pro-btnx .btn-intrested span {
    margin-right: 4px;
}

.compny-side {
    padding-left: 15px;
    padding-right: 15px;
}

.compy-box-build {
    text-align: center;
}
.compy-box-build span {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    border: 3px solid #e0e0e0;
    border-radius: 50%;
    background: #24337a;
}
.compy-box-build span i {
    color: white;
    font-size: 50px;
}
.compy-box-build {
    text-align: center;
    margin-bottom: 10px;
}
.compy-nme {
    text-align: center;
}
.compy-nme h5 {
    font-weight: 600;
}
.compy-fld label i {
    margin-right: 5px;
    color: #24337a;
}
.compy-fld label {
    padding-bottom: 5px;
}

.total-inxtrested {
    position: absolute;
    right: 15px;
    bottom: 0;
    color: white;
}
.total-inxtrested p {
    color: #fff;
}


.sis-project-card {
    padding: 15px 0 0;
    background: #f5f5f5;
    border-radius: 8px;
    transition: .3s ease-in-out;
    position: relative;
}
.sis-project-card:hover {
    background: #f7f7f7;
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}
.sis-project-card:hover .intrested-box {
    background: #343a40;
    border-radius: 0 0 8px 8px;
}
.sis-cardx-header {
    margin-bottom: 20px;
    padding: 0 15px;
    text-align: center;
}
.sis-card-pic {
    margin-bottom: 10px;
}
.sis-card-pic img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fff;
}
.sis-card-namex h5 {
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
    color: #24337a;
}
.sis-card-namex p {
    margin-bottom: 0;
    font-size: 14px;
}
.sis-card-namex span {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sis-card-bodyx {
    margin-bottom: 20px;
    padding: 0 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sis-card-bodyx h5 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 14px;
    text-transform: capitalize;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}
.sis-card-bodyx p {
    margin-bottom: 0;
    font-size: 14px;
}
.bookmark {
    position: absolute;
    top: 8px;
    right: 5px;
}
.bookmark a {
    font-size: 24px;
    transition: .3s ease-in-out;
}
.bookmark:hover a {
    color: #323232;
}














/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 80vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}

#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .container {
  padding-top: 72px;
}

@media (max-width: 992px) {
  #hero .container {
    padding-top: 62px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
  font-family: "Poppins", sans-serif;
}

#hero h2 {
  color: #eee;
  margin: 10px 0 0 0;
  font-size: 24px;
}

#hero .btn-get-started {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 35px;
  border-radius: 50px;
  transition: 0.5s;
  margin-top: 30px;
  border: 2px solid #fff;
  color: #fff;
}

#hero .btn-get-started:hover {
  background: #84ba3f;
  border: 2px solid #84ba3f;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  /* overflow: hidden; */
}

.section-bg {
  background-color: #f6f7f6;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #9ae1af;
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #37423b;
}

.breadcrumbs {
  /* margin-top: 73px; */
  text-align: center;
  /*background: #84ba3f;*/
  padding: 30px 0;
  /*color: #fff;*/
}


@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 63px;
  }
}

.breadcrumbs h2 {
  font-size: 32px;
  font-weight: 500;
}

.breadcrumbs p {
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 600;
  font-size: 26px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #84ba3f;
}

.about .content .learn-more-btn {
  background: #84ba3f;
  color: #fff;
  border-radius: 50px;
  padding: 8px 25px 9px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
}

.about .content .learn-more-btn:hover {
  background: #3ac162;
  color: #fff;
}

@media (max-width: 768px) {
  .about .content .learn-more-btn {
    margin: 0 48px 0 0;
    padding: 6px 18px;
  }
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding: 30px 0;
}

.counts .counters span {
  font-size: 48px;
  display: block;
  color: #84ba3f;
  font-weight: 700;
}

.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #37423b;
}

/*--------------------------------------------------------------
# Why Us
--------------------------------------------------------------*/
.why-us .content {
  padding: 30px;
  background: #84ba3f;
  border-radius: 4px;
  color: #fff;
}

.why-us .content h3 {
  font-weight: 700;
  font-size: 34px;
  margin-bottom: 30px;
}

.why-us .content p {
  margin-bottom: 30px;
}

.why-us .content .more-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: all ease-in-out 0.4s;
}

.why-us .content .more-btn i {
  font-size: 14px;
}

.why-us .content .more-btn:hover {
  color: #84ba3f;
  background: #fff;
}

.why-us .icon-boxes .icon-box {
  text-align: center;
  background: #fff;
  padding: 40px 30px;
  width: 100%;
  border: 1px solid #eef0ef;
}

.why-us .icon-boxes .icon-box i {
  font-size: 32px;
  padding: 18px;
  color: #84ba3f;
  margin-bottom: 30px;
  background: #ecf9f0;
  border-radius: 50px;
}

.why-us .icon-boxes .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 30px 0;
}

.why-us .icon-boxes .icon-box p {
  font-size: 15px;
  color: #848484;
}

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features {
  padding-top: 0px;
}

.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: 0.3s;
  border: 1px solid #eef0ef;
}

.features .icon-box i {
  font-size: 32px;
  padding-right: 10px;
  line-height: 1;
}

.features .icon-box h3 {
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-size: 16px;
}

.features .icon-box h3 a {
  color: #37423b;
  transition: 0.3s;
}

.features .icon-box:hover {
  border-color: #84ba3f;
}

.features .icon-box:hover h3 a {
  color: #84ba3f;
}

/*--------------------------------------------------------------
# Courses
--------------------------------------------------------------*/
.courses .course-item {
  border-radius: 5px;
  border: 1px solid #eef0ef;
}

.courses .course-content {
  padding: 15px;
}

.courses .course-content h3 {
  font-weight: 700;
  font-size: 20px;
}

.courses .course-content h3 a {
  color: #37423b;
  transition: 0.3s;
}

.courses .course-content h3 a:hover {
  color: #84ba3f;
}

.courses .course-content p {
  font-size: 14px;
  color: #777777;
}

.courses .course-content h4 {
  font-size: 14px;
  background: #84ba3f;
  padding: 7px 14px;
  color: #fff;
  margin: 0;
}

.courses .course-content .price {
  margin: 0;
  font-weight: 700;
  font-size: 18px;
  color: #37423b;
}

.courses .trainer {
  padding-top: 15px;
  border-top: 1px solid #eef0ef;
}

.courses .trainer .trainer-profile img {
  max-width: 50px;
  border-radius: 50px;
}

.courses .trainer .trainer-profile span {
  padding-left: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #5a6c60;
}

.courses .trainer .trainer-rank {
  font-size: 18px;
  color: #657a6d;
}

/*--------------------------------------------------------------
# Trainers
--------------------------------------------------------------*/
.trainers .member {
  text-align: center;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid #eef0ef;
}

.trainers .member img {
  margin: -1px -1px 30px -1px;
}

.trainers .member .member-content {
  padding: 0 20px 30px 20px;
}

.trainers .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

.trainers .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

.trainers .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}

.trainers .member .social {
  margin-top: 15px;
}

.trainers .member .social a {
  color: #7e9486;
  transition: 0.3s;
}

.trainers .member .social a:hover {
  color: #84ba3f;
}

.trainers .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  border: 1px solid #eef0ef;
  position: relative;
  background: #fff;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 10px;
  border: 6px solid #fff;
  position: absolute;
  left: -45px;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0;
}

.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #c1ecce;
  font-size: 26px;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
}

.testimonials .owl-nav, .testimonials .owl-dots {
  margin-top: 5px;
  text-align: center;
}

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #84ba3f !important;
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }
  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }
  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Cource Details
--------------------------------------------------------------*/
.course-details h3 {
  font-size: 24px;
  margin: 30px 0 15px 0;
  font-weight: 700;
  position: relative;
  padding-bottom: 10px;
}

.course-details h3:before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  background: #eef0ef;
  bottom: 0;
  left: 0;
}

.course-details h3:after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 1px;
  background: #84ba3f;
  bottom: 0;
  left: 0;
}

.course-details .course-info {
  background: #f6f7f6;
  padding: 10px 15px;
  margin-bottom: 15px;
}

.course-details .course-info h5 {
  font-weight: 400;
  font-size: 16px;
  margin: 0;
  font-family: "Poppins", sans-serif;
}

.course-details .course-info p {
  margin: 0;
  font-weight: 600;
}

.course-details .course-info a {
  color: #657a6d;
}

/*--------------------------------------------------------------
# Cource Details Tabs
--------------------------------------------------------------*/
.cource-details-tabs {
  overflow: hidden;
  padding-top: 0;
}

.cource-details-tabs .nav-tabs {
  border: 0;
}

.cource-details-tabs .nav-link {
  border: 0;
  padding: 12px 15px 12px 0;
  transition: 0.3s;
  color: #37423b;
  border-radius: 0;
  border-right: 2px solid #e2e7e4;
  font-weight: 600;
  font-size: 15px;
}

.cource-details-tabs .nav-link:hover {
  color: #84ba3f;
}

.cource-details-tabs .nav-link.active {
  color: #84ba3f;
  border-color: #84ba3f;
}

.cource-details-tabs .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.cource-details-tabs .details h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #37423b;
}

.cource-details-tabs .details p {
  color: #777777;
}

.cource-details-tabs .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 992px) {
  .cource-details-tabs .nav-link {
    border: 0;
    padding: 15px;
  }
  .cource-details-tabs .nav-link.active {
    color: #fff;
    background: #84ba3f;
  }
}

/*--------------------------------------------------------------
# Events
--------------------------------------------------------------*/
.events .card {
  border: 0;
  padding: 0 30px;
  margin-bottom: 60px;
  position: relative;
}

.events .card-img {
  width: calc(100% + 60px);
  margin-left: -30px;
  overflow: hidden;
  z-index: 9;
  border-radius: 0;
}

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

.events .card-body {
  z-index: 10;
  background: #fff;
  border-top: 4px solid #fff;
  padding: 30px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  margin-top: -60px;
  transition: 0.3s;
}

.events .card-title {
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.events .card-title a {
  color: #37423b;
  transition: 0.3s;
}

.events .card-text {
  color: #5e5e5e;
}

.events .read-more a {
  color: #777777;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
  transition: 0.3s;
}

.events .read-more a:hover {
  color: #84ba3f;
}

.events .card:hover img {
  transform: scale(1.1);
}

.events .card:hover .card-body {
  border-color: #84ba3f;
}

.events .card:hover .card-body .card-title a {
  color: #84ba3f;
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
#pricing .box.featured select {
    height: 50px;
}
.pricing .box {
    margin-bottom: 15px;
  padding: 20px;
  background: #fff;
  text-align: center;
  border: 1px solid #eef0ef;
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transition: .3s ease-in-out;
}
.pricing .box:hover {
    box-shadow: 0 0 10px rgb(0 0 0 / 30%);
}

.pricing h3 {
  font-weight: 400;
  margin: -20px -20px 20px -20px;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  color: #777777;
  background: #f8f8f8;
}

.pricing h4 {
  font-size: 36px;
  color: #24337a;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}

.pricing h4 sup {
  font-size: 20px;
  top: -15px;
  left: -3px;
}

.pricing h4 span {
  color: #bababa;
  font-size: 16px;
  font-weight: 300;
}
#pricing .box.featured ul::-webkit-scrollbar
{
    width: 3px;
}
#pricing .box.featured ul::-webkit-scrollbar-track
{
    background: #f1f1f1;
}
#pricing .box.featured ul::-webkit-scrollbar-thumb
{
    background: #fec52e; 
}
#pricing .box.featured ul {
    /* height: auto;
    overflow-y: unset; */
}
.pricing ul {
  padding: 0 5px;
  list-style: none;
  color: #444444;
  text-align: center;
  line-height: 20px;
  font-size: 14px;
}

.pricing ul li {
  padding-bottom: 16px;
}

.pricing ul i {
  color: #84ba3f;
  font-size: 18px;
  padding-right: 4px;
}

.pricing ul .na {
  color: #ccc;
  text-decoration: line-through;
}

.pricing .btn-wrap {
  margin: 20px -20px -20px -20px;
  padding: 20px 15px;
  background: #fff;
  text-align: center;
}

.pricing .btn-buy {
        cursor: pointer;
    border: 1px solid #24337a;
  background: #24337a;
  display: inline-block;
  padding: 8px 35px;
  border-radius: 50px;
  color: #fff;
  transition: none;
  font-size: 14px;
  font-weight: 400;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  transition: 0.3s;
}

.tableee{
  overflow-x: scroll;
}
#listtable_length label {
    font-weight: 300;
    color: #000;
}
/*.tableee #listtable_length {*/
/*    width: 50%;*/
/*    display: inline-block;*/
/*    float: left;*/
/*}*/
.tableee #listtable_filter {
    display: inline-block;
    width: 50%;
    float: right;
}
.tableee #listtable_filter label {
    display: flex;
    align-items: center;
    justify-content: end;
}
.tableee #listtable_length label select {
    border: 1px solid #fec52e;
    border-radius: 3px;
    /*padding: 5px 0;*/
}
.tableee #listtable_filter label input {
    height: 40px;
    border: 1px solid #fec52e;
    border-radius: 4px;
    padding: 10px 10px;
}
.pricing .featured h3 {
  color: #fff;
  background: #fec52e;
}

.pricing .advanced {
  width: 200px;
  position: absolute;
  top: 18px;
  right: -68px;
  transform: rotate(45deg);
  z-index: 1;
  font-size: 14px;
  padding: 1px 0 3px 0;
  background: #84ba3f;
  color: #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-top: 5px;
}

.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info i {
  font-size: 20px;
  color: #84ba3f;
  float: left;
  width: 44px;
  height: 44px;
  background: #ecf9f0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #37423b;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #657a6d;
}

.contact .info .email, .contact .info .phone {
  margin-top: 40px;
}

.contact .info .email:hover i, .contact .info .address:hover i, .contact .info .phone:hover i {
  background: #84ba3f;
  color: #fff;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
}

.contact .php-email-form .form-group {
  padding-bottom: 8px;
}

.contact .php-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 4px;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus, .contact .php-email-form textarea:focus {
  border-color: #84ba3f;
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type="submit"] {
  background: #84ba3f;
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: #3ac162;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

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

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #37423b;
  font-size: 14px;
  background: #212121;
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #323232;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h3 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #84ba3f;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #84ba3f;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #84ba3f;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #84ba3f;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #84ba3f;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-newsletter p {
    color: #fff;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 1px solid #e0e5e2;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -1px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px 2px 20px;
  background: #84ba3f;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #3ac162;
}


#footer .copyright {
    color: #ffffff;
}
#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #fff;
}

#footer .credits a {
  color: #84ba3f;
  transition: 0.3s;
}

#footer .credits a:hover {
  color: #84ba3f;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #84ba3f;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #3ac162;
  color: #fff;
  text-decoration: none;
}




.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show>.btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0 rgb(130 138 145 / 50%);
}
.tableee .page-item.active .page-link {
    background-color: #fec52e;
    border-color: #fec52e;
    color: #fff;
}
.tableee .page-item .page-link {
    color: #fec52e;
}
.tableee .btn_tble_box {
    text-align: center;
}
.tableee .btn_tble_box .btn-style span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #24337a;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    color: white;
    transition: .3s ease-in-out;
}
.btn_tble_box .btn-style:hover span {
    background: #84ba3f;
}
.tableee .btn_tble_box {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.tableee .btn_tble_box .btn-style {
    margin: 0 3px;
}
.tableee table thead tr th {
    font-size: 14px;
}
.tableee table tbody tr td {
    font-size: 14px;
}
.tableee input {
    border-color: #84ba3f;
}
.tableee select {
    border-color: #84ba3f;
}

/*Modal Cxx*/

.modl-style .modal-header {
    background: #323232;
    justify-content: center;
}
.modl-style .modal-header h5 {
    color: white;
}
.modl-style .modal-footer {
    background: #323232;
    border-top: 1px solid #323232;
}

.delte-icon span {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #84ba3f;
    color: white;
    box-shadow: 0 0 10px rgb(132 186 63 / 50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    font-size: 20px;
}
.delte-decption h4 {
    margin-bottom: 0;
}
#delteModal .modal-footer {
    justify-content: center;
    background: none;
    border-top: 1px solid #e8e8e8;
}
.modal {
    z-index: 9999;
}




.zip_code_box .card {
    border: 1px solid rgb(254 197 46);
}
.zip_code_box .card .card-header {
    background: #fec52e;
}
.ad_zip_box {
    display: flex;
    border: 1px solid #fec52e;
    border-radius: 5px;
}
.zip_fld label {
    font-weight: 600;
    font-family: inherit;
    color: #626262;
}
.ad_zip_box input {
    border: 0;
}
.btn-gren {
    background: #fec52e;
    color: #fff !important;
    border-radius: 0;
    padding: 0.375rem 30px;
    display: flex;
    align-items: center;
}
.btn-gren:hover {
    background: #323232;
    color: white;
}
.totl-zip_fld {
    border: 1px solid #fec52e;
    border-radius: 5px;
    padding: 15px;
}
.ad_zipp {
    position: relative;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
}
.ad_zipp:last-child {
    margin-bottom: 0px;
}
.ad_zipp p {
    margin-bottom: 0;
    font-weight: 600;
}
.ad_zipp .close_zip {
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background: #24337a;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s ease-in-out;
    c
}
.ad_zipp .close_zip:hover {
    background: #323232;
}
.ad_zipp .close_zip a {
    color: #fff;
    display: block;
    width: 100%;
    text-align: center;
}
.ad_zipp .close_zip a:hover {
    color: #fff;
}
.totl-zip_price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #fec52e;
    border-radius: 5px;
    padding: 15px;
}
.totle_zip-title h5 {
    font-weight: 600;
    margin-bottom: 0;
}
.totle_zip-rate p {
    margin-bottom: 0;
    color: #24337a;
    font-weight: 600;
    font-size: 18px;
}
.btn-zip {
    width: 100%;
    background: #fec52e;
    color: white;
    padding: 10px 10px;
}

.btn-zip:hover {
    background: #323232;
    color: white;
}

.side-mail-no {
    position: absolute;
    right: 15px;
    bottom: 15px;
}
.side-mail-no p {
    color: white;
    margin-bottom: 0;
}
.side-mail-no p i {
    margin-right: 5px;
}


.sis-profle-box {
    text-align: center;
    overflow: hidden;
    margin-bottom: 10px;
}
.sis-profle-box img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #84ba3f;
}
.sis_pro-nme {
    text-align: center;
}
.sis_pro-nme h4 {
    font-weight: 600;
    margin-bottom: 0;
}
.references_side-box {
    position: relative;
}
.references_tltle {
    background: #84ba3f;
    padding: 10px 10px;
    margin-bottom: 30px;
}
.references_tltle h4 {
    font-weight: 600;
    margin-bottom: 0;
    text-transform: capitalize;
    color: #ffffff;
    text-align: center;
}

/*==================*/
.timeline-box {
    position: relative;
}
.timeline-box .project-title {
    font-weight: 600;
    color: #84ba3f;
}
.references-timeline {
    position: relative;
}
.references-timeline:before {
    content: '';
    position: absolute;
    left: 20px;
    width: 2px;
    top: 5px;
    bottom: 5px;
    height: calc(100% - 5px);
    background-color: #eeeeee;
}
.references-timeline .references-timeline-item {
    display: table;
    position: relative;
    margin-bottom: 20px;
    width: 100%;
}
.references-timeline .references-timeline-item .references-timeline-cricle {
    border-radius: 50%;
    border: 12px solid white;
    z-index: 1;
    top: 5px;
    left: 9px;
    position: absolute;
}
.references-timeline .references-timeline-item .references-timeline-cricle:before {
    content: '';
    position: absolute;
    left: 12px;
    width: 20px;
    top: -1px;
    bottom: 5px;
    height: 2px;
    background-color: #eeeeee;
}
.references-timeline .references-timeline-item .references-timeline-cricle>i {
    font-size: 15px;
    top: -8px;
    left: -7px;
    position: absolute;
    color: #84ba3f;
}
.references-timeline .references-timeline-item .references-timeline-info {
    display: table-cell;
    vertical-align: top;
    padding: 5px 0 0 70px;
}
.references-timeline .references-timeline-item .references-timeline-info span {
    color: #001935;
    font-size: 13px;
    font-weight: 500;
}
.references-timeline .references-timeline-item .references-timeline-info h6 {
    color: #323232;
    margin: 5px 0 0px;
    font-size: 14px;
}


.add_refer_box {
    border: 2px solid #eeeeee;
    padding: 20px;
    margin-bottom: 30px;
}
.references_title_box {
    margin-bottom: 20px;
}
.references_title_box h4 {
    margin-bottom: 0;
    font-weight: 600;
    color: #84ba3f;
}
.references_field_box {
    background: #f6f6f6;
}
.refer-fld {
    padding: 15px;
}
.refer-fld label {
    font-weight: 600;
}
.refer-add_btnx {
    padding: 15px;
}
.btn-add_ref {
    background: #84ba3f;
    color: white;
    padding: 10px 20px;
    font-weight: 600;
}
.btn-add_ref:hover {
    background: #6d9b33;
    color: white;
}

.references_field_edit_box {
    position: relative;
}
.references_field_edit_box:before {
    content: '';
    position: absolute;
    left: 20px;
    width: 2px;
    top: 5px;
    bottom: 5px;
    height: calc(100% - 5px);
    background-color: #eeeeee;
}
.references_field_edit_box .references-edit-inner .refer-edt-timeline-cricle {
    border-radius: 50%;
    border: 12px solid white;
    z-index: 1;
    top: 5px;
    left: 9px;
    position: absolute;
}
.references_field_edit_box .references-edit-inner .refer-edt-timeline-cricle:before {
    content: '';
    position: absolute;
    left: 12px;
    width: 20px;
    top: -1px;
    bottom: 5px;
    height: 2px;
    background-color: #eeeeee;
}
.references_field_edit_box .references-edit-inner .refer-edt-timeline-cricle>i {
    font-size: 15px;
    top: -8px;
    left: -7px;
    position: absolute;
    color: #84ba3f;
}
.refer-edt-timeline-info {
    padding: 5px 60px;
}
.btn-add_ref-black {
    background: #5e5e5e;
    color: white;
    padding: 10px 20px;
    font-weight: 600;
}
.btn-add_ref-black:hover {
    background: #323232;
    color: white;
}

/*==============new Css=====================*/
.bg-1 {
    background: #292929;
}
.bg-2 {
    background: #e83875;
}
.bg-3 {
    background: #60b764;
}
.bg-4 {
    background: #257fea;
}
.counter-wapper {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 4px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    position: relative;
}
.counterTop {
    display: flex;
    align-items: self-start;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px;
}
.iconCounter {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: #fff;
    box-shadow: 1px 1px 4px #0000005c;
    font-size: 30px;
    position: relative;
    top: -30px;
}
.titleCounter {
    text-align: right;
}
.titleCounter h5 {
    font-weight: 100;
}
.titleCounter h2 {
    font-weight: 500;
    font-family: 'Poppins';
}
.counterBottom p {
    margin-bottom: 0;
}
.counterBottom p span {
    color: #fea51e;
}


.chartDashboard {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 4px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    position: relative;
}
.chartWapprBox {
    margin-bottom: 15px;
}
.chartTitle h4 {
    font-size: 22px;
    font-family: 'Poppins';
    font-weight: 400;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.chartTitle p {
    margin-bottom: 0;
}


.alldashBtn {
    /*display: flex;*/
    /*align-items: center;*/
    /*justify-content: space-between;*/
    gap: 30px;
    column-count: 4;
}
.dashBtn {
    /* flex: 1; */
    width: 100%;
    height: 150px;
    background: #f0f0f0;
    padding: 15px;
    border-radius: 4px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    position: relative;
    transition: .5s ease-in-out;
}
.dashBtn:hover {
    background: #f2f2f2;
}
.dashBtn a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    font-size: 20px;
    line-height: 1.3;
    text-wrap: wrap;
    color: #000;
    transition: .5s ease-in-out;
}
.dashBtn:hover a {
    color: #fea51e;
}
.dashBtn a span {
    width: 50px;
    height: 50px;
    background: #fea51e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 4px;
    box-shadow: 0 1px 4px #00000042;
    margin-bottom: 10px;
    font-size: 30px;
    transition: .5s ease-in-out;
}
.dashBtn:hover a span {
    transform: scale(1.1);
}


.tableListBox {
    background: #f0f0f0;
    padding: 15px;
    border-radius: 4px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    position: relative;
}
.tableListBox h5 {
    font-family: 'Poppins';
    font-weight: 400;
    font-size: 22px;
    margin-bottom: 20px;
}
.pro-frm select.form-control {
    height: 50px !important;
}


.profileCover-sec {
    padding: 0;
    position: relative;
}
.profileCover-sec:before {
    background: rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}
.profileCover-sec .preview {
    width: 100%;
    height: 300px;
}

.profileCover-sec .preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.coverImgBtn {
    position: absolute;
    right: 30px;
    bottom: 10px;
    z-index: 1;
    text-align: center;
    color: #fff;
}
.coverImgBtn .icon-upload {
    background-color: #fec52e;
    color: black;
    border-radius: 100px;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.coverImgBtn .icon-upload:hover {
    background-color: #24337a;
    color: #ffffff;
}

.profileCover-sec .preview .container, .profileCover-sec .preview .container .row {
    height: 100%;
    position: relative;
    z-index: 1;
}
.profileCover-sec .titlePage {
    height: 100%;
    align-content: center;
}
.profileCover-sec .titlePage h1 {
    color: #ffffff;
    margin-bottom: 0;
}
.profileBtnBox {
    text-align: center;
}
.bg-lights {
    background: #fafafa;
}



.showProfileCover-sec {
    padding: 0 0;
    position: relative;
}
.showProfileCoverImg {
    height: 300px;
    width: 100%;
}
.showProfileCoverImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.showProfileCover-sec:before {
    background: rgba(0, 0, 0, 0.6);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 0;
}



.profileShow-sec {
    padding: 0 0 20px 0;
    position: relative;
    background: #fcfcfc;
}
.sideProfile {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-top: -100px;
}
.sideProfile .leftProfile {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}
.showProfileImg img {
    width: 200px;
    height: 200px;
    border-radius: 100px;
    box-shadow: 0 1px 5px #00000042;
}
.sideProfile .rightProfile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.rightProfile p span {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 100px;
}
.greenDot {
    background: #02c902;
}
.grayDot {
    background: #acacac;
}
.rightProfile p {
    margin-bottom: 0;
}
.chatIcon {
    width: 40px;
    height: 40px;
    background: #fec52e;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    font-size: 24px;
    box-shadow: 0px 1px 4px #0000006e;
}

.profileAbout {
    background: #fcfcfc;
    padding: 30px;
    border-radius: 4px;
    position: relative;
}

.profileAbout h4 {
    font-family: 'Poppins';
    font-weight: 500;
    text-decoration: underline;
    margin-bottom: 30px;
}
.abtProBox {
    display: flex;
    align-items: baseline;
    gap: 10px;
    border-bottom: 1px solid #f1f1f1;
    padding-bottom: 15px;
}
.abtProBox label {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 500;
}
.abtProBox p {
    margin-bottom: 0;
}
.abtProBox label i {
    width: 30px;
}

/*==============new Css End=====================*/

@media (max-width: 991px) {
  .tble-responsive {
      display: block;
      width: 100%;
      overflow-x: auto;
      -webkit-overflow-scrolling: touch;
  }
}


@media (max-width: 767px) {

}


@media (max-width: 600px) {
    .counter-wapper {
        margin-bottom: 25px;
    }
    .chartDashboard {
        margin-bottom: 20px;
    }
    .alldashBtn {
        column-count: 1;
    }
    .dashBtn {
        margin-bottom: 20px;
    }
    .tableListBox {
        margin-bottom: 20px;
    }
  .twins-btn {
    margin-top: 10px;
}
.dash-main .profile-img {
    width: auto;
}
#project-listing {
    padding: 60px 0px;
}
.total-inxtrested {
    bottom: 0;
    right: 0;
    position: unset;
    margin-top: 10px;
}
.total-inxtrested p {
    margin-bottom: 0;
}
.paymnts-tlte {
    text-align: center;
    margin-bottom: 10px;
}
.paymnt-img {
    text-align: center;
}
.mob-rever {
    flex-direction: column-reverse;
}
.modl-pro-herder {
    display: block;
    text-align: center;
}
.modl-card-pic {
    margin-right: 0;
    margin-bottom: 10px;
}
.side-mail-no {
    position: unset;
    right: 0;
    bottom: 0;
    margin-top: 10px;
}
.references_field_edit_box:before {
    left: 0;
}
.references_field_edit_box .references-edit-inner .refer-edt-timeline-cricle {
    left: -11px;
}
.references_field_edit_box .references-edit-inner .refer-edt-timeline-cricle:before {
    left: 0;
}
.refer-edt-timeline-info {
    padding: 5px 0px 5px 25px;
}
.tableee #listtable_length {
    width: 100%;
    display: block;
    float: none;
        text-align: left;
}
.tableee #listtable_filter {
    display: block;
    width: 100%;
    float: none;
    text-align: left;
}
.tableee #listtable_filter label {
    display: inline-flex;
        width: 100%;
}
.tableee #listtable_filter label input {
    width: 100%;
}
.sign-nav.dropdown.show .dropdown-menu.show {
    transform: translate3d(0px, 55px, 0px) !important;
}
.mt-header-dash {
    padding-top: 0;
}
.dash-title-bar h4 {
    font-size: 22px;
}
.dashbord-change-password {
    padding-top: 40px;
}
#search-form {
    width: 100%;
}
.profile-btn {
    margin-top: 15px;
}

}
