/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Corinthia:wght@700&family=Poppins:wght@400;700&display=swap");

:root {
  --theme: #2eca6a;
  --dark-theme: #25a154;
  --black: #000;
  --white: #fff;
  --gray: #bbb;
  --dark-gray: #555555;
  --red: #fd0101fd;
  --dark-red: #c00808;
  --green: var(--theme);
  --dark-green: var(--dark-theme);

  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --success-gradient: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  --warning-gradient: linear-gradient(135deg, #fcb045 0%, #fd1d1d 100%);

  /**
     * colors
     */

  --dark-jungle-green: hsl(188, 63%, 7%);
  --raisin-black-1: hsl(227, 29%, 13%);
  --raisin-black-2: hsl(229, 17%, 19%);
  --prussian-blue: hsl(200, 69%, 14%);
  --yellow-green: hsl(89, 72%, 45%);
  --orange-soda: hsl(9, 100%, 62%);
  --cultured-1: hsl(0, 0%, 93%);
  --cultured-2: hsl(192, 24%, 96%);
  --misty-rose: hsl(7, 56%, 91%);
  --alice-blue: hsl(210, 100%, 97%);
  --seashell: hsl(8, 100%, 97%);
  --cadet: hsl(200, 15%, 43%);
  --white: hsl(0, 0%, 100%);
  --black: hsl(0, 0%, 0%);
  --blue: hsl(233, 87%, 51%);
  --opal: hsl(180, 20%, 62%);

  /**
     * typography
     */

  --ff-nunito-sans: "Nunito Sans", sans-serif;
  --ff-poppins: "Poppins", sans-serif;

  --fs-1: 1.875rem;
  --fs-2: 1.5rem;
  --fs-3: 1.375rem;
  --fs-4: 1.125rem;
  --fs-5: 0.875rem;
  --fs-6: 0.813rem;
  --fs-7: 0.75rem;

  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;

  /**
     * transition
     */

  --transition: 0.25s ease;

  /**
     * spacing
     */

  --section-padding: 100px;

  /**
     * shadow
     */

  --shadow-1: 0 5px 20px 0 hsla(219, 56%, 21%, 0.1);
  --shadow-2: 0 16px 32px hsla(188, 63%, 7%, 0.1);
  --shadow-3: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

/*--------------------------------------------------------------
# Color style
--------------------------------------------------------------*/
.color-b {
  color: var(--theme) !important;
}

.theme-color {
  color: var(--theme) !important;
}

.theme-bg {
  background: var(--theme) !important;
}

.theme-color:hover {
  color: var(--dark-theme) !important;
}

/*--------------------------------------------------------------
# Loader
--------------------------------------------------------------*/

.loader {
  pointer-events: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border-top-color: var(--theme) !important;
  border: 2px solid white;
  animation: animate-loading 1s linear infinite;
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Button style
--------------------------------------------------------------*/
.btn.btn-blue {
  background-color: #1d61d6;
  color: #ffffff;
  border-radius: 20px;
  transition: 0.4s;
}

.btn.btn-blue:hover {
  background-color: #174596;
  color: #ffffff;
}

.btn.btn-orange {
  background-color: var(--theme);
  color: #ffffff;
  border-radius: 20px;
  transition: 0.4s;
}

.btn.btn-orange:hover {
  background-color: var(--dark-theme);
  color: #ffffff;
}

.btn.btn-red {
  background-color: #e21313;
  color: #ffffff;
  border-radius: 20px;
  transition: 0.4s;
}

.btn.btn-red:hover {
  background-color: #b81313;
  color: #ffffff;
}

.btn.btn-yellow {
  background-color: #f0ec09;
  color: #ffffff;
  border-radius: 20px;
  transition: 0.4s;
}

.btn.btn-yellow:hover {
  background-color: #afad0e;
  color: #ffffff;
}

.btn.btn-green {
  background-color: var(--green);
  color: #fff;
  border-radius: 20px;
  transition: 0.4s;
}

.btn.btn-green:hover {
  background-color: var(--dark-green);
  color: #ffffff;
}

.btn.btn-gray {
  background-color: var(--dark-gray);
  color: #fff;
  border-radius: 20px;
  transition: 0.4s;
}

.btn.btn-print {
  height: 50px;
  position: absolute;
  right: 0;
  top: 8%;
  font-size: 22px;
}

.btn.btn-filter {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.25);
  color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  transition: 0.5s;
}

.btn.btn-filter:hover {
  background-color: rgba(0, 0, 0, 0.25);
  color: #fff;
}

body {
  font-family: "Poppins", sans-serif;
  color: #555555;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: #000000;
}

button {
  border: none;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transform: var(--transition);
}

.border-rigth-radius {
  border-radius: 0 5px 5px 0 !important;
}

a {
  color: #000000;
  text-decoration: none;
  transition: all 0.5s ease;
}

a:hover {
  color: var(--theme);
  text-decoration: none;
}

.link-two {
  color: #000000;
  transition: all 0.5s ease;
}

.link-two:hover {
  text-decoration: underline;
  color: #000000;
}

.link-one {
  color: #000000;
  transition: all 0.5s ease;
}

.link-one:hover {
  color: #000000;
  text-decoration: none;
}

.link-icon {
  color: #000000;
  font-weight: 500;
}

.link-icon span {
  font-size: 14px;
  padding-left: 4px;
  vertical-align: middle;
}

.link-a {
  text-decoration: none;
  color: #ffffff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .link-a {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .link-a {
    font-size: 1rem;
  }
}

.link-a:hover {
  color: #ffffff;
  text-decoration: none;
}

.link-a span {
  font-size: 18px;
  vertical-align: middle;
  margin-left: 5px;
}

@media (min-width: 768px) {
  .link-a span {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .link-a span {
    font-size: 18px;
  }
}

.text-brand {
  color: #000000;
  font-size: 2rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .text-brand {
    font-size: 1.6rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .text-brand {
    font-size: 1.8rem;
  }
}

.color-a {
  text-decoration: none;
  color: #000000;
}

.color-b {
  color: var(--theme);
}

.color-d {
  color: #adadad;
}

.color-text-a {
  text-decoration: none;
  color: #555555;
}

.no-margin {
  margin: 0;
}

/*------/ Nav Pills  /------*/
.nav-pills-a {
  text-decoration: none;
}

.nav-pills-a.nav-pills .nav-link {
  color: #000000;
  position: relative;
  font-weight: 600;
}

.nav-pills-a.nav-pills .nav-link.active {
  background-color: transparent;
}

.nav-pills-a.nav-pills .nav-link.active:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 2px;
  background-color: var(--theme);
  z-index: 2;
}

/*------/ Bg Image /------*/
.bg-image {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: center center;
}

/*------/ List a /------*/
.list-a {
  text-decoration: none;
  display: inline-block;
  line-height: 2;
  padding: 0;
  list-style: none;
}

.list-a li {
  position: relative;
  width: 50%;
  float: left;
  padding-left: 25px;
  padding-right: 5px;
}

.list-a li:before {
  content: "";
  width: 10px;
  height: 2px;
  position: absolute;
  background-color: #313131;
  top: 15px;
  left: 0;
}

/*------/ Pagination-a /------*/
.pagination-a {
  text-decoration: none;
}

.pagination-a .pagination .page-item {
  box-shadow: none;
}

.pagination-a .pagination .page-link {
  margin: 0 0.2rem;
  border-color: transparent;
  padding: 0.5rem 0.8rem;
  color: #000000;
}

.pagination-a .pagination .page-link:hover,
.pagination-a .pagination .page-link:active,
.pagination-a .pagination .page-link:focus {
  background-color: var(--theme);
}

.pagination-a .pagination .page-link span {
  font-size: 1.2rem;
}

.pagination-a .pagination .next .page-link,
.pagination-a .pagination .preview .page-link {
  padding: 0.4rem 0.9rem;
}

.pagination-a .pagination .page-item:last-child .page-link {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.pagination-a .pagination .page-item:first-child .page-link {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.pagination-a .pagination .page-item.disabled .page-link {
  padding: 0.4rem 0.9rem;
  color: #555555;
}

.pagination-a .pagination .page-item.active .page-link {
  background-color: var(--theme);
}

.a {
  text-decoration: none;
  color: var(--theme);
  font-size: 1.3rem;
}

/*------/ Icon Box /------*/
.icon-box .icon-box-icon {
  display: table-cell;
  vertical-align: top;
  font-size: 36px;
  color: #000000;
  width: 50px;
  padding-top: 8px;
}

.icon-box .icon-box-content {
  padding-top: 18px;
}

/*------/ Space Padding /------*/
.section-t8 {
  padding-top: 8rem;
}

@media (max-width: 767px) {
  .section-t8 {
    padding-top: 4rem;
  }
}

.section-t4 {
  padding-top: 4rem;
}

@media (max-width: 767px) {
  .section-t4 {
    padding-top: 2rem;
  }
}

.section-t3 {
  padding-top: 3rem;
}

@media (max-width: 767px) {
  .section-md-t3 {
    padding-top: 2rem;
  }
}

.section-b2 {
  padding-bottom: 2rem;
}

.section-tb85 {
  padding: 8rem 0 5rem 0;
}

@media (max-width: 767px) {
  .section-tb85 {
    padding: 4rem 0 2.5rem 0;
  }
}

/*------/ Title /------*/
.title-wrap {
  padding-bottom: 2rem;
}

@media (max-width: 767px) {
  .title-wrap {
    padding-bottom: 1.3rem;
  }
}

.title-a {
  text-decoration: none;
  font-size: 2.6rem;
  font-weight: 600;
}

.title-link {
  font-size: 1.2rem;
  font-weight: 300;
  padding-top: 1.2rem;
}

.title-link a {
  text-decoration: none;
  color: #313131;
}

.title-link span {
  font-size: 20px;
  padding-left: 4px;
  vertical-align: middle;
}

.title-box-d {
  padding-bottom: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
}

.title-box-d .title-d {
  font-weight: 600;
  font-size: 2rem;
}

.title-box-d .title-d:after {
  content: "";
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--theme);
  bottom: 20px;
  left: 0;
}

/*------/ Display Table & Table Cell /------*/
.display-table {
  width: 100%;
  height: 100%;
  display: table;
}

.table-cell {
  display: table-cell;
  vertical-align: middle;
}

/*------/ Ul Annonces /------*/
.actualite ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/*------/ Ul Resect /------*/
.ul-resect ul,
.box-comments ul,
.list-a ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

/*------/ Overlay /------*/
.overlay-a {
  text-decoration: none;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.2) 27%,
    rgba(0, 0, 0, 0.65) 90%
  );
}

.overlay {
  position: absolute;
  top: 0;
  left: 0px;
  padding: 0;
  height: 100%;
  width: 100%;
}

.carousel-pagination {
  margin-top: 10px;
  text-align: center;
}

.carousel-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 10px;
  background-color: #555;
  margin: 0 4px;
  border-radius: 0;
  opacity: 1;
  transition: 0.3s;
}

.carousel-pagination .swiper-pagination-bullet-active {
  background-color: var(--theme);
  width: 36px;
}

.nav-arrow-a {
  text-decoration: none;
}

.nav-arrow-a .owl-arrow .owl-nav {
  font-size: 1.8rem;
  margin-top: -110px;
}

.nav-arrow-a .owl-arrow .owl-nav .owl-next {
  margin-left: 15px;
}

.nav-arrow-b .owl-arrow .owl-nav {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 1.2rem;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev,
.nav-arrow-b .owl-arrow .owl-nav .owl-next {
  padding: 0.7rem 1.5rem !important;
  display: inline-block;
  transition: all 0.6s ease-in-out;
  color: #ffffff;
  background-color: var(--theme);
  opacity: 0.9;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev.disabled,
.nav-arrow-b .owl-arrow .owl-nav .owl-next.disabled {
  transition: all 0.6s ease-in-out;
  color: #ffffff;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-prev:hover,
.nav-arrow-b .owl-arrow .owl-nav .owl-next:hover {
  background-color: #26a356;
}

.nav-arrow-b .owl-arrow .owl-nav .owl-next {
  margin-left: 0px;
}

/*------/ Socials /------*/
.socials-a {
  text-decoration: none;
}

.socials-a .list-inline-item:not(:last-child) {
  margin-right: 25px;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--theme);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: var(--dark-theme);
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*======================================
//--//-->   BUTTON
======================================*/
.btn {
  transition: 0.5s ease;
}

.btn-close {
  outline: 0;
  box-shadow: none;
}

.btn-close:focus {
  outline: 0;
  box-shadow: none;
}

.btn.btn-a,
.btn.btn-b {
  border-radius: 0;
  padding: 1rem 3rem;
  letter-spacing: 0.05rem;
}

.btn.btn-a {
  text-decoration: none;
  background-color: #000000;
  color: #ffffff;
}

.btn.btn-a:hover {
  background-color: var(--theme);
  color: #000000;
}

.btn.btn-b {
  background-color: var(--theme);
  color: #000000;
}

.btn.btn-b:hover {
  background-color: #000000;
  color: #ffffff;
}

.btn.btn-b-n {
  background-color: var(--theme);
  color: #ffffff;
  border-radius: 20px;
  transition: 0.4s;
}

.btn.btn-b-n:hover {
  background-color: var(--dark-theme);
  color: #ffffff;
}

.btn.btn-b-d {
  background-color: var(--red);
  color: #ffffff;
  border-radius: 20px;
  transition: 0.4s;
}

.btn.btn-b-d:hover {
  background-color: var(--dark-red);
  color: #ffffff;
}

.btn.btn-print {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 20px;
  border-radius: 100%;
}

@media (max-width: 768px) {
  .btn.btn-print {
    font-size: 25px;
    height: 45px;
  }
}

.navbar-toggle-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  padding: 10px;
}

.navbar-toggle-box i {
  line-height: 0;
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
.navbar-default {
  transition: all 0.5s ease-in-out;
  background-color: #ffffff;
  padding-top: 28px;
  padding-bottom: 28px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

.navbar-default .nav-search {
  color: #000000;
  font-size: 1.5rem;
}

.navbar-default.navbar-reduce {
  box-shadow: 1px 2px 15px rgba(100, 100, 100, 0.3);
}

.navbar-default.navbar-trans,
.navbar-default.navbar-reduce {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.navbar-default.navbar-trans .nav-item,
.navbar-default.navbar-reduce .nav-item {
  position: relative;
  padding-right: 10px;
  padding-bottom: 8px;
  margin-left: 0;
}

@media (min-width: 768px) {
  .navbar-default.navbar-trans .nav-item,
  .navbar-default.navbar-reduce .nav-item {
    margin-left: 15px;
  }
}

.navbar-default.navbar-trans .nav-link,
.navbar-default.navbar-reduce .nav-link {
  font-size: 1.1rem;
  color: #000000;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: all 0.1s ease-in-out;
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

.navbar-default.navbar-trans .nav-link:before,
.navbar-default.navbar-reduce .nav-link:before {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 0;
  background-color: var(--theme);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out 0.3s;
}

.navbar-default.navbar-trans .nav-link:hover,
.navbar-default.navbar-reduce .nav-link:hover {
  color: #000000;
}

.navbar-default.navbar-trans .nav-link:hover:before,
.navbar-default.navbar-reduce .nav-link:hover:before {
  transform: scaleX(1);
  transform-origin: left;
}

.navbar-default.navbar-trans .show > .nav-link:before,
.navbar-default.navbar-trans .active > .nav-link:before,
.navbar-default.navbar-trans .nav-link.show:before,
.navbar-default.navbar-trans .nav-link.active:before,
.navbar-default.navbar-reduce .show > .nav-link:before,
.navbar-default.navbar-reduce .active > .nav-link:before,
.navbar-default.navbar-reduce .nav-link.show:before,
.navbar-default.navbar-reduce .nav-link.active:before {
  transform: scaleX(1);
}

.navbar-default.navbar-trans .nav-link:before {
  background-color: var(--theme);
}

.navbar-default.navbar-trans .nav-link:hover {
  color: #000000;
}

.navbar-default.navbar-trans .show > .nav-link,
.navbar-default.navbar-trans .active > .nav-link,
.navbar-default.navbar-trans .nav-link.show,
.navbar-default.navbar-trans .nav-link.active {
  color: #000000;
}

.navbar-default.navbar-reduce {
  transition: all 0.5s ease-in-out;
  padding-top: 19px;
  padding-bottom: 19px;
}

.navbar-default.navbar-reduce .nav-link {
  color: #000000;
}

.navbar-default.navbar-reduce .nav-link:before {
  background-color: var(--theme);
}

.navbar-default.navbar-reduce .nav-link:hover {
  color: #000000;
}

.navbar-default.navbar-reduce .show > .nav-link,
.navbar-default.navbar-reduce .active > .nav-link,
.navbar-default.navbar-reduce .nav-link.show,
.navbar-default.navbar-reduce .nav-link.active {
  color: #000000;
}

.navbar-default.navbar-reduce .navbar-brand {
  color: #000000;
}

.navbar-default .dropdown .dropdown-menu {
  border-top: 0;
  border-left: 4px solid var(--theme);
  border-right: 0;
  border-bottom: 0;
  transform: translate3d(0px, 40px, 0px);
  opacity: 0;
  filter: alpha(opacity=0);
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.3, 0.65, 0.355, 1) 0s,
    opacity 0.31s ease 0s, height 0s linear 0.36s;
  margin: 0;
  border-radius: 0;
  padding: 12px 0;
}

.navbar-default .dropdown .user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .navbar-default .dropdown .dropdown-menu {
    border-top: 4px solid var(--theme);
    border-left: 0;
    display: block;
    position: absolute;
    box-shadow: 0 2px rgba(17, 16, 15, 0.1), 0 2px 10px rgba(20, 19, 18, 0.1);
  }

  .navbar-default .nav-item.dropdown .user-avatar {
    width: 24px;
  }
}

.navbar-default .dropdown .dropdown-menu .dropdown-item {
  padding: 12px 18px;
  transition: all 500ms ease;
  font-weight: 600;
  min-width: 220px;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #ffffff;
  color: var(--theme);
  transition: all 500ms ease;
}

.navbar-default .dropdown .dropdown-menu .dropdown-item.active {
  background-color: #ffffff;
  color: var(--theme);
}

.navbar-default .dropdown:hover .dropdown-menu {
  transform: translate3d(0px, 0px, 0px);
  visibility: visible;
  opacity: 1;
  filter: alpha(opacity=1);
}

/*------/ Hamburger Navbar /------*/
.navbar-toggler {
  position: relative;
}

.navbar-toggler:focus,
.navbar-toggler:active {
  outline: 0;
}

.navbar-toggler span {
  display: block;
  background-color: #000000;
  height: 3px;
  width: 25px;
  margin-top: 4px;
  margin-bottom: 4px;
  transform: rotate(0deg);
  left: 0;
  opacity: 1;
}

.navbar-toggler span:nth-child(1),
.navbar-toggler span:nth-child(3) {
  transition: transform 0.35s ease-in-out;
}

.navbar-toggler:not(.collapsed) span:nth-child(1) {
  position: absolute;
  left: 12px;
  top: 10px;
  transform: rotate(135deg);
  opacity: 0.9;
}

.navbar-toggler:not(.collapsed) span:nth-child(2) {
  height: 12px;
  visibility: hidden;
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) span:nth-child(3) {
  position: absolute;
  left: 12px;
  top: 10px;
  transform: rotate(-135deg);
  opacity: 0.9;
}

/*======================================
//--//-->   BOX COLAPSE
======================================*/
.box-collapse,
.account-box {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  z-index: 1040;
  background-color: #ffffff;
  transform: translateX(100%);
  transition: all 0.6s ease;
}

@media (min-width: 768px) {
  .box-collapse,
  .account-box {
    width: 50%;
  }
}

.box-collapse .title-box-d,
.account-box .title-box-d {
  top: 30px;
  left: 10%;
  opacity: 0;
  transition: all 1s ease;
  transition-delay: 0.3s;
}

@media (max-width: 768px) {
  .box-collapse .title-box-d .title-d,
  .account-box .title-box-d .title-d {
    font-size: 1.3rem;
  }
}

.box-collapse-wrap {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 6.5rem;
  bottom: 5rem;
  padding-left: 10%;
  padding-right: 10%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0;
  width: 100%;
  transform: translateY(3rem);
  transition: transform 0.5s 0.5s ease, opacity 0.5s 0.5s ease;
}

.account-box-collapse-open .click-closed,
.search-box-collapse-open .click-closed {
  visibility: visible;
}

.account-box-collapse-open .account-box,
.search-box-collapse-open .box-collapse {
  transform: translateX(0);
  box-shadow: 0 0 65px rgba(0, 0, 0, 0.07);
  opacity: 1;
}

.account-box-collapse-open .account-box .title-box-d,
.search-box-collapse-open .box-collapse .title-box-d {
  transform: translate(0);
  opacity: 1;
}

.account-box-collapse-open .box-collapse-wrap,
.search-box-collapse-open .box-collapse-wrap {
  transform: translate(0);
  opacity: 1;
}

.account-box-collapse-closed .account-box,
.search-box-collapse-closed .box-collapse {
  opacity: 0.7;
  transition-delay: 0s;
}

.account-box-collapse-closed .account-box .title-box-d,
.search-box-collapse-closed .box-collapse .title-box-d {
  opacity: 0;
  transition-delay: 0s;
}

.account-box-collapse-closed .account-box .form-a,
.search-box-collapse-closed .box-collapse .form-a {
  opacity: 0;
  transition-delay: 0s;
}

#btnsearch:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(var(--bs-primary-rgb), 0.3);
  transition: all 0.3s ease;
}

.click-closed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  z-index: 1035;
  background-color: #000000;
  opacity: 0.4;
}

.close-box-collapse {
  position: absolute;
  z-index: 1050;
  top: 1rem;
  font-size: 2.8rem;
  line-height: 1;
  color: #000000;
  cursor: pointer;
  transition: all 0.3s ease;
}

.right-boxed {
  right: 1rem;
}

@media (max-width: 768px) {
  .close-box-collapse {
    font-size: 2.4rem;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.intro {
  height: 100vh;
  position: relative;
  color: #ffffff;
}

.intro .swiper-pagination {
  bottom: 50px;
}

.intro .swiper-pagination .swiper-pagination-bullet {
  width: 18px;
  height: 10px;
  background-color: #ffffff;
  border-radius: 0;
  opacity: 1;
  transition: 0.3s;
}

.intro .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--theme);
  width: 36px;
}

.intro .intro-item {
  padding-top: 2rem;
}

.intro .carousel-item-a {
  position: relative;
  height: 100vh;
}

.intro .carousel-item-a.bg-image {
  background-attachment: scroll;
}

.intro .intro-content {
  position: absolute;
}

.intro .intro-body {
  padding-left: 1rem;
}

@media (min-width: 768px) {
  .intro .intro-body {
    padding-left: 2rem;
  }
}

.intro .intro-body .price-a {
  color: #ffffff;
  padding: 1rem 1.5rem;
  border: 2px solid var(--theme);
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.intro .spacial {
  animation-delay: 0.2s;
  color: #ffffff;
}

.intro .intro-title-top {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}

@media (min-width: 768px) {
  .intro .intro-title-top {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}

@media (min-width: 992px) {
  .intro .intro-title-top {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.intro .intro-title {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

.intro .intro-title-2 {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
}

@media (max-width: 375px) {
  .intro .intro-title {
    font-size: 1.8rem;
  }

  .intro .intro-title-2 {
    font-size: 1.2rem;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  .intro .intro-title {
    font-size: 2.1rem;
  }

  .intro .intro-title-2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  .intro .intro-title {
    font-size: 2.5rem;
  }

  .intro .intro-title-2 {
    font-size: 1.85rem;
  }
}

@media (min-width: 992px) {
  .intro .intro-title {
    font-size: 3.5rem;
  }

  .intro .intro-title-2 {
    font-size: 2.85rem;
  }
}

.intro .intro-subtitle {
  font-size: 1.5rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .intro .intro-subtitle {
    font-size: 2.5rem;
  }
}

.intro .intro-subtitle.intro-price {
  padding-top: 1rem;
  font-size: 1.2rem;
}

@media (min-width: 576px) {
  .intro .intro-subtitle.intro-price {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  .intro .intro-subtitle.intro-price {
    padding-top: 2rem;
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .intro .intro-subtitle.intro-price {
    padding-top: 2.8rem;
  }
}

/*------/ Intro Single /------*/
.intro-single {
  padding: 10rem 0 3rem;
}

@media (max-width: 767px) {
  .intro-single {
    padding-top: 9rem;
  }
}

.intro-single .title-single-box {
  padding: 1rem 0 1rem 2rem;
}

.intro-single .title-single-box {
  border-left: 3px solid var(--theme);
}

.intro-single .title-single-box .title-single {
  font-weight: 600;
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  .intro-single .title-single-box .title-single {
    font-size: 1.6rem;
  }
}

@media (min-width: 992px) {
  .intro-single .title-single-box .title-single {
    font-size: 2.3rem;
  }
}

.intro-single .breadcrumb-box {
  padding: 1rem 0 0 0.5rem;
}

.intro-single .breadcrumb {
  background-color: transparent;
  padding-right: 0;
  padding-left: 0;
}

.carousel-indicators [data-bs-target] {
  width: 25px;
  height: 10px;
}

.carousel-indicators .active {
  height: 10px;
  width: 45px;
  background-color: var(--theme) !important;
}

/*--------------------------------------------------------------
# Card General
--------------------------------------------------------------*/
.filter-form :focus {
  border-color: var(--theme);
}

.filter-form select {
  box-shadow: none;
}

/*------- ========  PROPERTIES GRID =========-----*/
.property {
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  background: rgb(131 127 127 / 19%);
}

.property .badge {
  z-index: 25;
  position: absolute;
  text-align: center;
  height: 25px;
  color: #fff;
  border-radius: 5px;
  font-weight: 500;
  padding: 8px;
  font-size: 11px;
}

.property .badge.top {
  top: 2%;
  right: 2%;
}

.property .badge.bottom {
  bottom: 2%;
  left: 2%;
}

.property .badge.green {
  background: var(--yellow-green);
}

.property .badge.orange {
  background: var(--orange-soda);
}

.property .badge.yellow {
  background: var(--blue);
}

#property.card #property-slider {
  position: relative !important;
}

.property #property-slider #property-img-slide {
  height: 14rem;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
  border-radius: 10px 10px 0 0;
}

.property #property-slider #property-img-slide .card-img-top {
  border-radius: 0px;
  height: 14rem;
  min-width: 100%;
  position: relative;
  object-fit: cover;
  top: 0;
  left: 0;
  transition: transform 0.3s ease-in-out;
  will-change: transform;
}

#slider-controls {
  display: flex;
  align-items: center;
  align-content: center;
  position: absolute;
  top: 85%;
  right: 2%;
  /* width: 126px; */
}

#slider-controls #next-btn,
#slider-controls #prev-btn,
#slider-controls #property-img-counter {
  position: relative;
  width: 28px;
  height: 28px;
  font-weight: 600;
  font-size: 0.8rem;
  text-align: center;
  color: #555;
  background: white;
  text-decoration: none;
  /*opacity: .85;*/
}

#slider-controls #next-btn {
  border: none;
  margin-left: 1px;
}

#slider-controls #prev-btn {
  border: none;
  margin-right: 1px;
}

#slider-controls #property-img-counter {
  align-content: center;
  width: 45px;
}

.property .card-body {
  position: relative;
  border-radius: 0 0 10px 10px;
  padding: 0.2rem;
  margin: 0.4rem;
  background: white;
  height: 100%;
}

.property .card-body .card-title {
  margin-bottom: -0.4rem;
}

.property .card-body .card-title h5.title-fs {
  font-weight: 600;
  color: #000;
  font-size: 1rem;
  margin-bottom: 3px;
}

.property .card-body .card-title h6.title-sd {
  font-weight: 400;
  color: #000;
  font-size: 0.7rem;
  margin-bottom: 0.4rem;
}

.property .card-body .cart-content p {
  margin-bottom: 0.1rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.property .card-body .cart-content i {
  left: 0;
  font-size: 0.7rem;
  font-weight: 600;
}

.property .card-body .cart-content ul {
  text-decoration: none;
  display: inline-block;
  font-size: 0.8rem;
  padding: 0;
  list-style: none;
}

.property .card-body .cart-content ul li {
  position: relative;
  width: 50%;
  float: left;
  padding-left: 10px;
  padding-right: 10px;
}

.property .card-body .cart-content ul li:before {
  content: "";
  width: 8px;
  height: 2px;
  position: absolute;
  background-color: #555;
  top: 8px;
  left: 0;
}

.property .card-body .cart-content ul li i {
  font-size: 0.6rem;
}

.property .card-body .cart-content div {
  position: relative;
  /* padding-top: 12px; */
}

.property .card-body .cart-content div .loyer {
  font-size: 0.9rem;
  font-weight: 800;
  float: left;
}

.property .card-body .cart-content div a.view {
  position: absolute;
  right: 0;
  font-size: 0.7rem;
  padding: 2px 5px;
}

.property .card-body .cart-content div a.view:hover {
  background-color: var(--dark-theme);
  color: white;
}

@media (max-width: 320px) {
  .property {
    height: 24rem;
  }

  .property .badge {
    font-size: 11px;
  }

  .property #property-slider #property-img-slide {
    height: 11.5rem;
  }

  .property #property-slider #property-img-slide .card-img-top {
    height: 11.5rem;
    object-fit: cover;
    transition: 0.5 ease;
  }

  .property #property-slider:hover #property-img-slide .card-img-top {
    transform: scale(1.1);
  }

  #slider-controls {
    width: 100px;
  }

  #slider-controls #next-btn,
  #slider-controls #prev-btn,
  #slider-controls #property-img-counter {
    width: 27px;
    height: 27px;
    font-size: 0.95rem;
  }

  #slider-controls #prev-btn {
    border: none;
    margin-right: 3px;
  }

  #slider-controls #property-img-counter {
    padding-top: 2px;
    width: 40px;
  }

  .property .card-body {
    padding: 0.2rem;
    margin: 0.4rem;
  }

  .property .card-body .card-title h5.title-fs {
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2px;
  }

  .property .card-body .card-title h6.title-sd {
    font-weight: 400;
    font-size: 0.8rem;
    margin-bottom: 0.2rem;
  }

  .property .card-body .cart-content i {
    font-size: 0.8rem;
    font-weight: 600;
  }

  .property .card-body .cart-content ul {
    font-size: 0.75rem;
  }

  .property .card-body .cart-content ul li {
    padding-left: 15px;
    padding-right: 10px;
  }

  .property .card-body .cart-content ul li i {
    font-size: 0.8rem;
  }

  .property .card-body .cart-content div .loyer {
    font-size: 1rem;
    font-weight: 800;
  }
}

/*--------------------------------------------------------------
# Porperty details card
--------------------------------------------------------------*/
#detail-slider {
  position: relative;
  width: 100%;
  height: 25rem;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em,
    rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em,
    rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
}

#detail-slider #detail-slider-wrap {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow: hidden;
  position: relative;
}

#detail-slider .btn-panorama {
  position: absolute;
  top: 0;
  right: 0;
  height: 1.8 rem;
  font-weight: 600;
  font-size: auto;
  z-index: 25;
  opacity: 0.85;
}

@media (max-width: 768px) {
  #detail-slider .btn-panorama {
    height: 0.6 rem;
    font-size: 0.7rem;
  }
}

#detail-slider #detail-slider-wrap img {
  height: auto;
  min-width: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
  cursor: pointer;
}

#detail-slider #next,
#detail-slider #prev,
#detail-slider #img-counter {
  position: absolute;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  text-shadow: rgba(0, 0, 0, 0.6);
  text-align: center;
  color: white;
  background: transparent;
  text-decoration: none;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.15s ease;
}

#detail-slider #next {
  border: none;
  right: 10px;
}

#detail-slider #prev {
  border: none;
  left: 10px;
}

#detail-slider #img-counter {
  /* left: 45%; */
  top: 15px;
  width: 80px;
  height: 50px;
}

#detail-slider #next:hover,
#detail-slider #prev:hover {
  background-color: rgba(0, 0, 0, 0.6);
  text-shadow: none;
}

.tab-content-height,
.tab-content-height .tab-pane {
  height: 28rem;
}

.tab-content-height iframe {
  min-height: 100%;
}

@media (max-width: 375px) {
  #detail-slider {
    height: 14rem;
  }

  #detail-slider #next,
  #detail-slider #prev {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  #detail-slider #img-counter {
    font-size: 1.2rem;
    left: 45%;
    width: 40px;
  }

  .tab-content-height,
  .tab-content-height .tab-pane {
    height: 12rem;
  }
}

@media (min-width: 376px) and (max-width: 425px) {
  #detail-slider {
    height: 15.6rem;
  }

  #detail-slider #next,
  #detail-slider #prev {
    width: 35px;
    height: 35px;
    font-size: 1.4rem;
  }

  #detail-slider #img-counter {
    font-size: 1.4rem;
    left: 45%;
    width: 45px;
  }

  .tab-content-height,
  .tab-content-height .tab-pane {
    height: 13.6rem;
  }
}

@media (min-width: 426px) and (max-width: 768px) {
  #detail-slider {
    height: 19rem;
  }

  #detail-slider #next,
  #detail-slider #prev {
    width: 40px;
    height: 40px;
    font-size: 1.7rem;
  }

  #detail-slider #img-counter {
    font-size: 1.7rem;
    left: 45%;
    width: 60px;
  }

  .tab-content-height,
  .tab-content-height .tab-pane {
    height: 20rem;
  }
}

@media (min-width: 1025px) {
  #detail-slider {
    height: 30rem;
  }

  .tab-content-height,
  .tab-content-height .tab-pane {
    height: 25rem;
  }
}

#property-summary .summary-list ul.list {
  padding-left: 0;
}

/*--------------------------------------------------------------
#MODAL FORM AND FORM
--------------------------------------------------------------*/

.modal-footer button {
  margin-left: 17px;
  margin-right: 0;
}

/*--------------------------------------------------------------
# Contact-form  -----------------------------------------------*/
.contact .info {
  padding: 30px;
  width: 100%;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.contact .info i {
  font-size: 20px;
  color: var(--theme);
  float: left;
  width: 44px;
  height: 44px;
  background: #e1f0ee;
  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: #21413c;
}

.contact .info p {
  padding: 0 0 0 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #43857a;
}

.contact .info .email p {
  padding-top: 5px;
}

.contact .info .social-links {
  padding-left: 60px;
}

.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 25px;
  height: 25px;
  transition: 0.3s;
  margin-right: 10px;
}

.contact .info .social-links a:hover {
  background-color: var(--theme);
  color: #fff;
}

.contact .info .email:hover i,
.contact .info .address:hover i,
.contact .info .phone:hover i {
  background-color: var(--theme);
  color: #fff;
}

.contact .shadow {
  width: 100%;
  padding-top: 15px;
  background: #fff;
  box-shadow: 0 0 24px 0 rgba(0, 0, 0, 0.12);
}

.form-body,
.modal-body {
  width: 100%;
  padding: 0 10px 5px 10px;
  background: #fff;
  position: relative;
  overflow: hidden;
  overflow-y: auto;
  max-height: 470px;
  box-shadow: none;
  padding-top: 10px;
}

.form-label {
  margin-bottom: 0;
  margin-bottom: 0;
  font-size: 14px;
  color: #0000008a;
}

.form-control,
.form-select {
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1rem;
}

.input-lg {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 2rem;
}

.form-control:focus,
.form-select:focus,
.form-check-input:checked,
.form-check-input:focus {
  outline: 0;
  box-shadow: none;
}

label.error {
  color: #f11010;
  font-size: 11px;
  font-weight: 700;
  margin-top: 0;
}

.form-check-input:checked {
  background-color: var(--theme);
  border-color: var(--theme);
}

@media (max-width: 768px) {
  .modal-body {
    max-height: 345px;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/

.services-content {
  padding: 10px;
  background-color: #efefef;
  border-radius: 15px;
}

.services-content img {
  border: 10px solid white;
}

.services-content blockquote {
  font-size: 14px;
  color: #707070;
  text-align: justify;
  padding-top: 10px;
}

.services-content .service-ico {
  width: 120px;
  height: 120px;
  border-radius: 50%;
}

/*--------------------------------------------------------------
# F.A.Q
--------------------------------------------------------------*/

#faq-card {
  border-radius: 0;
  box-shadow: none;
}

#faq-card .card-body .card-title {
  margin-bottom: 20px;
}

#faq-card .card-body .accordion .accordion-item h2 button.accordion-button {
  box-shadow: none;
}

#faq-card
  .card-body
  .accordion
  .accordion-item
  h2
  button.accordion-button:focus {
  border: 1px solid var(--theme);
}

#faq-card .card-body .accordion .accordion-item .accordion-body {
  background: #bbbbbb36;
}

/*======================================
//--//-->   NEWS - CARD-B
======================================*/
.card-header-b {
  padding: 1rem;
  color: #ffffff;
  position: absolute;
  bottom: 20px;
  z-index: 2;
}

@media (min-width: 768px) {
  .card-header-b {
    bottom: 0px;
  }
}

@media (min-width: 992px) {
  .card-header-b {
    bottom: 20px;
  }
}

.card-header-b .category-b {
  font-size: 0.9rem;
  background-color: var(--theme);
  padding: 0.3rem 0.7rem;
  color: #313131;
  letter-spacing: 0.03em;
  border-radius: 50px;
  text-decoration: none;
}

.card-header-b .title-2 {
  margin-bottom: 0;
  padding: 0.6rem 0;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .card-header-b .title-2 {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .card-header-b .title-2 {
    font-size: 1.6rem;
  }
}

.card-header-b .title-2 a {
  color: #ffffff;
  text-decoration: none;
}

.card-header-b .date-b {
  color: #d8d8d8;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .card-header-b .date-b {
    font-size: 0.9rem;
  }
}

@media (min-width: 992px) {
  .card-header-b .date-b {
    font-size: 1rem;
  }
}

/*------/ Comments /------*/
.box-comments .list-comments li {
  padding-bottom: 3.5rem;
}

.box-comments .list-comments .comment-avatar {
  display: table-cell;
  vertical-align: top;
}

.box-comments .list-comments .comment-avatar img {
  width: 80px;
  height: 80px;
}

.box-comments .list-comments .comment-author {
  font-size: 1.3rem;
}

@media (min-width: 768px) {
  .box-comments .list-comments .comment-author {
    font-size: 1.5rem;
  }
}

.box-comments .list-comments .comment-details {
  display: table-cell;
  vertical-align: top;
  padding-left: 25px;
}

.box-comments .list-comments .comment-description {
  padding: 0.8rem 0 0.5rem 0;
}

.box-comments .list-comments a {
  color: #000000;
}

.box-comments .list-comments span {
  display: block;
  color: #2b2a2a;
  font-style: italic;
}

.box-comments .comment-children {
  margin-left: 40px;
}

/*======================================
//--//-->   SERVICES - CARD-C
======================================*/
.card-box-c {
  position: relative;
}

@media (max-width: 767px) {
  .card-box-c {
    margin-bottom: 2rem;
  }
}

.card-header-c {
  padding: 0 1rem 1rem 1rem;
}

.card-body-c {
  padding: 0.5rem 0.5rem 0 0.5rem;
}

@media (max-width: 767px) {
  .card-body-c {
    padding: 0;
  }
}

.card-footer-c {
  padding-left: 0.5rem;
}

.card-box-ico {
  padding: 1rem 3rem 1rem 2.5rem;
  border: 5px solid var(--theme);
}

.card-box-ico span {
  font-size: 4rem;
  color: #000000;
}

.title-c {
  font-size: 2.5rem;
  font-weight: 600;
  margin-left: -40px;
}

@media (min-width: 768px) {
  .title-c {
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  .title-c {
    font-size: 2.5rem;
  }
}

/*--------------------------------------------------------------
# Profile page
--------------------------------------------------------------*/
.profile-header {
  background: var(--primary-gradient);
  border-radius: 15px;
  padding: 2rem;
  color: white;
  margin-bottom: 2rem;
}

.profile-avatar {
  position: relative;
  display: inline-block;
}

.profile-avatar img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.profile-avatar:hover img {
  transform: scale(1.05);
}

.edit-avatar-btn {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #667eea;
  color: #667eea;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.edit-avatar-btn:hover {
  background: #667eea;
  color: white;
  transform: scale(1.1);
}

.nav-pills .nav-link {
  border-radius: 10px;
  margin: 0 5px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-pills .nav-link.active {
  background: var(--primary-gradient);
  border-color: transparent;
}

.nav-pills .nav-link:not(.active):hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: #667eea;
}

.table-responsive {
  border-radius: 10px;
  overflow: hidden;
}

.table th {
  background: #f8f9fc;
  border: none;
  font-weight: 600;
  color: #5a5c69;
}

.badge-status {
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
}

.transaction-item {
  transition: all 0.3s ease;
  border-radius: 10px;
  margin-bottom: 10px;
  padding: 15px;
  border: 1px solid #e3e6f0;
}

.transaction-item:hover {
  background: #f8f9fc;
  transform: translateX(5px);
}

.stats-card {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
  border-radius: 15px;
  padding: 1.5rem;
  text-align: center;
}

.stats-card h4 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.file-upload-area {
  border: 2px dashed #667eea;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  background: rgba(102, 126, 234, 0.05);
  transition: all 0.3s ease;
  cursor: pointer;
}

.file-upload-area:hover {
  border-color: #5a67d8;
  background: rgba(102, 126, 234, 0.1);
}

.file-upload-area.dragover {
  background: rgba(102, 126, 234, 0.15);
  border-color: #5a67d8;
}

.password-strength {
  height: 5px;
  border-radius: 3px;
  margin-top: 5px;
  transition: all 0.3s ease;
  width: 0 !important;
}

.strength-weak {
  background: #dc3545;
  width: 30% !important;
}
.strength-medium {
  background: #ffc107;
  width: 60% !important;
}
.strength-strong {
  background: #28a745;
  width: 100% !important;
}

/* .modal-content {
  border-radius: 15px;
  border: none;
}

.modal-header {
  background: var(--primary-gradient);
  color: white;
  border-radius: 15px 15px 0 0;
}

.input-group-text {
  background: #f8f9fa;
  border-color: #dee2e6;
  color: #6c757d;
} */

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.section-about .title-vertical {
  position: absolute;
  letter-spacing: 0;
  transform: rotate(-90deg);
  top: 50px;
  text-align: left;
  font-size: 1.8rem;
  width: 300px;
  font-weight: 700;
  text-align: right;
}

.about-img-box {
  padding-left: 1rem;
  position: relative;
}

@media (min-width: 576px) {
  .about-img-box {
    padding-left: 4rem;
  }
}

@media (min-width: 768px) {
  .about-img-box {
    padding-left: 5rem;
  }
}

.sinse-box {
  background-color: var(--theme);
  padding: 1rem 2rem;
  position: absolute;
  left: 15px;
  bottom: 10px;
}

@media (min-width: 576px) {
  .sinse-box {
    padding: 1.5rem 2.5rem;
    bottom: 20px;
  }
}

@media (min-width: 768px) {
  .sinse-box {
    padding: 1.5rem 3rem;
  }
}

@media (min-width: 992px) {
  .sinse-box {
    padding: 3rem 4.5rem;
  }
}

.sinse-box .sinse-title {
  font-weight: 700;
  letter-spacing: 0.043em;
  font-size: 1rem;
}

@media (min-width: 576px) {
  .sinse-box .sinse-title {
    font-size: 1.3rem;
  }
}

@media (min-width: 768px) {
  .sinse-box .sinse-title {
    font-size: 1.8rem;
  }
}

@media (min-width: 992px) {
  .sinse-box .sinse-title {
    font-size: 2.2rem;
  }
}

.sinse-box .sinse-title span {
  position: absolute;
}

.sinse-box .sinse-title span:after {
  content: " ";
  width: 35px;
  height: 2px;
  background-color: #000000;
  position: absolute;
  bottom: -15px;
}

.sinse-box p {
  margin-bottom: 0;
  font-size: 0.7rem;
}

@media (min-width: 576px) {
  .sinse-box p {
    font-size: 0.8rem;
  }
}

@media (min-width: 576px) {
  .sinse-box p {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/

.testimonials-box .testimonial-avatar {
  width: 80px !important;
  display: inline-flex !important;
  border-radius: 50%;
}

.testimonial-ico {
  text-align: center;
  position: absolute;
  right: 3px;
  top: -7px;
  z-index: 25;
}

.testimonial-ico i {
  font-size: 30px;
  color: var(--theme);
}

.testimonial-text {
  font-style: italic;
  text-align: justify;
  padding: 1.5rem 1.5rem;
  background-color: #f3f3f3;
  position: relative;
}

.testimonial-text:after {
  content: "";
  position: absolute;
  top: 100%;
  left: 25px;
  width: 0px;
  height: 0px;
  border-top: 15px solid rgb(243, 243, 243);
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
}

.testimonial-author-box {
  margin-top: 1.2rem;
}

.testimonial-author {
  margin-left: 1rem;
  display: inline-flex;
  font-size: 1.2rem;
  color: #000000;
}

@media (max-width: 375px) {
  .testimonials-box .testimonial-avatar {
    width: 50px !important;
  }

  .testimonial-author {
    font-size: 0.8rem;
  }
}

@media (min-width: 376px) and (max-width: 768px) {
  .testimonials-box .testimonial-avatar {
    width: 65px !important;
  }

  .testimonial-author {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.section-footer {
  margin-top: 5px;
  background: #f3f3f3;
}

.section-footer ul {
  line-height: 2;
}

.section-footer .item-list-a i {
  font-size: 18px;
  padding-right: 4px;
  color: var(--theme);
}

.section-footer .widget-a .w-title-a {
  margin-bottom: 1rem;
}

footer {
  background: #f3f3f3;
  text-align: center;
  padding: 30px 0;
}

footer .copyright-footer {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

footer .credits {
  font-size: 14px;
}

/**********************
********* OTP *********
***********************/

.otp-container {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.otp-input {
  width: 60px;
  height: 60px;
  font-size: 2rem;
  text-align: center;
  border: 2px solid #ccc;
  border-radius: 5px;
  outline: none;
  transition: border-color 0.3s;
}

.otp-input:focus {
  border-color: #007bff;
}
