@import url("https://fonts.googleapis.com/css2?family=Halant:wght@400;500;600&family=Parisienne&family=Poppins:wght@400;500;600;700&display=swap");
:root {
  --primary: #f3ddcf;
  --secondary: #fb846f;
  --black: #212529;
  --white: #fff;
  --border: #e5e5e5;
  --ghostColor: #f6f7fc;
  --gray: #5e627f;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
}

body.rtl {
  direction: rtl;
  overflow-x: hidden;
}

body.rtl .form-select {
  background-position-x: 12px !important;
  padding: 12px !important;
}

body.rtl .form-switch {
  float: right;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Halant", serif;
  margin-bottom: 15px;
  color: var(--black);
}

h1 {
  font-size: 64px;
  font-family: "Parisienne", cursive;
}

h2 {
  font-size: 48px;
  font-family: "Parisienne", cursive;
}

h3 {
  font-size: 32px;
}

h4 {
  font-size: 24px;
}

h5 {
  font-size: 18px;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: var(--black);
}

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

p {
  margin-bottom: 15px;
}

.btn:focus {
  -webkit-box-shadow: 0 0 0 0rem var(--black);
          box-shadow: 0 0 0 0rem var(--black);
}

i {
  font-size: 24px;
  color: var(--black);
}

.btn-flower2,
.btn-flower {
  background: var(--primary);
  display: inline-block;
  padding: 10px;
  color: #333;
  border: none;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  height: 52px;
  width: 162px;
  border: 6px solid var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.btn-flower2:hover,
.btn-flower:hover {
  background: var(--secondary);
  -webkit-box-shadow: 0 0 0 1px var(--secondary);
          box-shadow: 0 0 0 1px var(--secondary);
  color: var(--white);
}

.btn-flower2 {
  background: var(--secondary);
  color: var(--white);
  border: none;
  border-radius: 3px;
  height: 40px;
  width: 122px;
  -webkit-box-shadow: 0 0 0 1px var(--secondary);
          box-shadow: 0 0 0 1px var(--secondary);
  text-transform: capitalize;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--gray);
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
          box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-transition: background-color 5000s ease-in-out 0s;
  transition: background-color 5000s ease-in-out 0s;
}

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

.header-text {
  text-align: center;
  margin-bottom: 100px;
}

.header-text h2 {
  font-size: 64px;
  text-transform: capitalize;
}

.header-text p {
  margin-bottom: 0;
}

.navbar {
  padding: 15px 30px;
  background: var(--white);
}

.navbar.active {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.navbar .navbar-brand {
  font-family: "Parisienne", cursive;
  color: var(--black);
  font-size: 32px;
  padding: 0;
  margin: 0;
}

.navbar .navbar-toggler {
  -webkit-box-shadow: 0 0 0 0rem;
          box-shadow: 0 0 0 0rem;
  position: absolute;
  right: 15px;
  top: 25px;
}

.navbar .navbar-toggler:focus {
  -webkit-box-shadow: 0 0 0 0rem;
          box-shadow: 0 0 0 0rem;
}

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

.navbar .navbar-nav .nav-item .nav-link {
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--black);
}

.navbar .navbar-nav .nav-item .nav-link:hover {
  color: var(--secondary);
}

.navbar .navbar-text {
  position: absolute;
  right: 60px;
  padding-top: 12px;
  top: 15px;
}

.navbar .navbar-text .profile {
  padding: 0 15px;
  text-align: center;
}

.navbar .navbar-text i {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.navbar .navbar-text button {
  border: none;
  padding: 0;
  background: none;
  padding-bottom: 25px;
}

.navbar .navbar-text button:hover i {
  color: var(--secondary);
}

.navbar .notification-panel {
  position: relative;
  display: inline-block;
  width: auto;
  padding: 0px 0;
}

.navbar .notification-panel:hover .notification-dropdown {
  visibility: visible;
  opacity: 1;
  top: 50px;
}

.navbar .notification-panel .dropdown-toggle::after {
  display: none;
}

.navbar .notification-panel .dropdown-box {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  max-height: 285px;
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar {
  width: 4px;
  height: 100%;
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar-track {
  background: var(--ghostColor);
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}

.navbar .notification-panel .dropdown-box::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

.navbar .notification-panel .notification-dropdown {
  background: var(--white);
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  width: 380px;
  max-height: 324px;
  overflow: hidden;
  padding-bottom: 40px;
  padding-top: 0px;
  padding-left: 0;
  position: absolute;
  right: -40px;
  top: 60px;
  border-radius: 5px;
  visibility: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}

.navbar .notification-panel .notification-dropdown li {
  border-bottom: 1px solid var(--border);
}

.navbar .notification-panel .notification-dropdown li a {
    padding: 15px 10px 15px 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    white-space: normal;
}

.navbar .notification-panel .notification-dropdown li a:active, .navbar .notification-panel .notification-dropdown li a:focus, .navbar .notification-panel .notification-dropdown li a:hover {
  background: var(--ghostColor);
}

.navbar .notification-panel .notification-dropdown li a i {
  border: 4px solid var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
  background: var(--primary);
  border-radius: 100px;
  padding: 8px;
  width: 40px;
  height: 40px;
  text-align: center;
  margin-right: 10px;
  color: var(--black);
  font-size: 16px;
  padding-top: 9px;
}

.navbar .notification-panel .notification-dropdown li a p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar .notification-panel .notification-dropdown .clear-all {
  background: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 10px 10px 11px 15px;
  position: absolute;
  bottom: 0;
  left: 0;
}

.rtl .navbar .navbar-text {
  right: auto;
  left: 60px;
}

.rtl .navbar .navbar-toggler {
  right: auto;
  left: 15px;
}

.rtl .navbar .notification-panel .notification-dropdown {
  right: auto;
  left: -100px;
}

.home-section {
  height: 100vh;
  background: url(../img/Watercolor-Flower-PNG-HD-Image1.png);
  background-repeat: no-repeat;
  background-position: top left;
}

.home-section .overlay {
  background: url(../img/Watercolor-Flower-PNG-HD-Image2.png);
  background-repeat: no-repeat;
  background-position: bottom right;
}

.home-section .text-box {
  text-align: center;
}

.home-section .text-box h1 {
  font-size: 100px;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.home-section .text-box p {
  margin-bottom: 30px;
}

.search-modal {
  padding: 100px 0;
}

.search-modal form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.search-modal form .form-select,
.search-modal form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0;
}

.search-modal form .form-select:focus,
.search-modal form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.search-modal form .form-select::-webkit-input-placeholder,
.search-modal form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.search-modal form .form-select:-ms-input-placeholder,
.search-modal form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.search-modal form .form-select::-ms-input-placeholder,
.search-modal form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.search-modal form .form-select::placeholder,
.search-modal form .form-control::placeholder {
  text-transform: capitalize;
}

.search-modal form .form-select {
    background-image: url(../images/icon/down-arrow.png);
}

.search-modal form .btn-flower {
  width: 100%;
  height: 44px;
}

.feature-section {
  margin-top: 100px;
  background: var(--ghostColor);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.feature-section .flower {
  position: absolute;
  width: 300px;
  left: 0;
  bottom: 0;
}

.feature-section .box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.feature-section .box .icon-box i {
  font-size: 28px;
  background: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 100px;
  padding-top: 20px;
  border: 8px solid var(--ghostColor);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
}

.feature-section .box .text-box {
  text-align: left;
  width: calc(100% - 80px);
  padding-left: 15px;
}

.feature-section .box .text-box h4 {
  text-transform: capitalize;
}

.feature-section .box .text-box p {
  margin-bottom: 0;
  max-width: 250px;
}

.rtl .feature-section .box .text-box {
  text-align: right;
  padding-left: 0;
  padding-right: 15px;
}

.about-section {
  padding: 100px 0;
}

.about-section .img-box {
  width: 500px;
  height: 500px;
  position: relative;
}

.about-section .img-box img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.about-section .img-box .about-img {
  left: 10px;
  width: 75%;
  height: 75%;
  border-radius: 100%;
}

.about-section .text-box h2 {
  font-size: 64px;
  text-transform: capitalize;
}

.about-section .text-box p {
  margin-bottom: 30px;
}

.happy-stories {
  padding: 100px 0;
  background: var(--ghostColor);
  position: relative;
  overflow: hidden;
}

.happy-stories .flower {
  position: absolute;
  width: 300px;
  right: -150px;
  top: 0;
}

.happy-stories .img-box {
  position: relative;
  overflow: hidden;
}

.happy-stories .img-box img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.happy-stories .img-box .hover-content {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  left: 4%;
  top: 4%;
  width: 92%;
  height: 92%;
  text-align: center;
  opacity: 0;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.happy-stories .img-box .hover-content .text-box {
  color: var(--black);
  font-size: 18px;
  font-weight: 500;
  display: inline-block;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.happy-stories .img-box .hover-content .text-box h5 {
  margin-bottom: 0;
}

.happy-stories .img-box .hover-content .text-box:hover {
  color: var(--secondary);
}

.happy-stories .img-box:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.happy-stories .img-box:hover .hover-content {
  opacity: 1;
}

.happy-stories #masonryContainer {
  width: 100%;
}

.happy-stories .cols {
  -moz-column-count: 3;
  -moz-column-gap: 15px;
  -moz-column-width: 30%;
  -webkit-column-count: 3;
  -webkit-column-gap: 15px;
  -webkit-column-width: 30%;
  column-count: 3;
  column-gap: 15px;
  column-width: 30%;
}

.happy-stories .img-box {
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}

.happy-stories .img-box img {
  min-width: 100%;
}

.premium-members {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  direction: ltr;
}

.premium-members .flower {
  position: absolute;
  width: 300px;
  left: -150px;
  top: 0;
}

.premium-members .box {
  text-align: center;
  padding: 0 30px;
}

.premium-members .box .img-box {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  margin: auto;
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
}

.premium-members .box .img-box img {
  width: 200px;
  height: 200px;
  border-radius: 200px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.premium-members .box .img-box .hover-content {
  position: absolute;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  left: 7%;
  top: 7%;
  width: 86%;
  height: 86%;
  padding-top: 80px;
  border-radius: 100%;
  color: var(--black);
  font-size: 15px;
  font-weight: 400;
  opacity: 0;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.premium-members .box .img-box .hover-content:hover {
  color: var(--secondary);
}

.premium-members .box .text-box h4 {
  text-transform: capitalize;
}

.premium-members .box .text-box h5 {
  text-transform: capitalize;
  font-style: italic;
}

.premium-members .box:hover .img-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.premium-members .box:hover .img-box .hover-content {
  opacity: 1;
}

.pricing-section {
  padding: 100px 0;
  background: var(--ghostColor);
  position: relative;
  overflow: hidden;
}

.pricing-section .flower {
  position: absolute;
  width: 300px;
  right: -150px;
  top: 0;
}

.pricing-section .box {
  text-align: center;
  padding: 30px 0;
  background: var(--white);
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.pricing-section .box .icon-box {
  margin-bottom: 30px;
}

.pricing-section .box .icon-box i {
  font-size: 28px;
  background: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 100px;
  padding-top: 20px;
  border: 8px solid var(--white);
  outline: 1px solid var(--primary);
}

.pricing-section .box .text-box h4 {
  text-transform: capitalize;
}

.pricing-section .box .text-box h2 {
  font-family: "Halant", serif;
  margin-bottom: 0;
}

.pricing-section .box .text-box h2 span {
  font-size: 32px;
}

.pricing-section .box .text-box ul {
  padding-left: 0;
  display: inline-block;
  text-align: left;
  margin: 15px auto;
  list-style: none;
  text-transform: capitalize;
}

.pricing-section .box .text-box ul li {
  margin-bottom: 15px;
}

.pricing-section .box .text-box ul li i {
  font-size: 16px;
  margin-right: 5px;
}

.pricing-section .box .text-box button {
  display: block;
  text-align: center;
  margin: auto;
}

.rtl .pricing-section .box .text-box ul {
  text-align: right;
}

.rtl .pricing-section .box .text-box ul li i {
  margin-right: 0;
  margin-left: 5px;
}

.testimonial-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  direction: ltr;
}

.testimonial-section .flower {
  position: absolute;
  width: 300px;
  left: -150px;
  top: 0;
}

.testimonial-section .box {
  text-align: center;
  padding: 0 30px;
}

.testimonial-section .box .img-box {
  width: 100px;
  height: 100px;
  margin: auto;
  margin-bottom: 30px;
  position: relative;
}

.testimonial-section .box .img-box img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
}

.testimonial-section .box .img-box i {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 100px;
  padding-top: 10px;
  border: 4px solid var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
}

.testimonial-section .box .text-box h4 {
  text-transform: capitalize;
}

.testimonial-section .box .text-box h5 {
  text-transform: capitalize;
  font-style: italic;
}

.counter-section {
  background: var(--ghostColor);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.counter-section .flower {
  position: absolute;
  width: 300px;
  right: 0;
  bottom: 0;
}

.counter-section .box {
  text-align: center;
}

.counter-section .box h4 {
  text-transform: capitalize;
}

.blog-section {
  padding: 100px 0;
}

.blog-section .box .img-box {
  margin-bottom: 15px;
  height: 240px;
  overflow: hidden;
}

.blog-section .box .img-box img {
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.blog-section .box .text-box h4 {
  text-transform: capitalize;
}

.blog-section .box .text-box h5 {
  text-transform: capitalize;
  font-style: italic;
}

.blog-section .box .text-box .read-more {
  font-style: italic;
  text-transform: capitalize;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  font-size: 13px;
}

.blog-section .box .text-box .read-more:hover {
  color: var(--secondary);
  border-bottom: 1px solid var(--secondary);
}

.blog-section .box:hover .img-box img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.footer-section {
  padding: 100px 0 0 0;
  background: var(--ghostColor);
  position: relative;
}

.footer-section .flower {
  position: absolute;
  width: 300px;
  left: 0;
  bottom: 0;
}

.footer-section .box .navbar-brand {
  font-family: "Parisienne", cursive;
  color: var(--black);
  font-size: 32px;
  padding: 0;
  display: inline-block;
  margin-bottom: 15px;
}

.footer-section .box .social-links {
  margin-top: 15px;
}

.footer-section .box .social-links a i {
  color: var(--black);
  font-size: 16px;
  margin-right: 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer-section .box .social-links a i:hover {
  color: var(--secondary);
}

.footer-section .box h5 {
  text-transform: uppercase;
}

.footer-section .box p {
  margin-bottom: 10px;
}

.footer-section .box .links {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.footer-section .box .links li {
  margin-bottom: 10px;
}

.footer-section .box .links li a {
  color: var(--gray);
  text-transform: capitalize;
}

.footer-section .box .links li a:hover {
  color: var(--secondary);
}

.footer-section .box .input-group {
  margin-top: 20px;
}

.footer-section .box .input-group .form-control {
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 0;
  border-right: none;
  font-size: 13px;
  color: var(--gray);
}

.footer-section .box .input-group .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.footer-section .box .input-group button {
  width: 50px;
  border: none;
  background: var(--black);
  border: 1px solid var(--black);
}

.footer-section .box .input-group button i {
  color: var(--white);
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer-section .box .input-group button:hover i {
  color: var(--secondary);
}

.footer-section .box1 {
  margin-top: -25px;
}

.footer-section .footer-bottom {
  margin-top: 60px;
  color: var(--gray);
  padding-bottom: 40px;
}

.footer-section .footer-bottom .copyright a {
  color: var(--secondary);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer-section .footer-bottom .copyright a:hover {
  color: var(--secondary);
}

.footer-section .footer-bottom .language {
  text-align: right;
  color: var(--gray);
}

.footer-section .footer-bottom .language a {
  color: var(--gray);
  margin-right: 15px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.footer-section .footer-bottom .language a:hover {
  color: var(--secondary);
}

.rtl .footer-section .box .input-group .form-control {
  border-right: 1px solid var(--border);
  border-left: none;
}

.rtl .footer-section .box .input-group .form-control:focus {
  border: 1px solid #fb846f;
  border-left: none;
  border-right: 1px solid var(--secondary);
}

.rtl .footer-section .footer-bottom .language a {
  margin-right: 0;
  margin-left: 15px;
}

#preloader {
  background: var(--white);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  z-index: 1100;
}

#preloader .loader {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.scroll-up {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 5;
}

.scroll-up i {
  color: var(--white);
  font-size: 16px;
  height: 38px;
  width: 48px;
  background: var(--black);
  text-align: center;
  padding-top: 11px;
}

/* .banner {
  background: url(../img/banner.jpg);
  background-size: cover;
} */

.banner .overlay {
  background: rgba(255, 255, 255, 0.4);
}

.banner .header-text {
  padding: 100px 0;
  padding-top: 178px;
  margin-bottom: 0;
}

.banner .header-text h2 {
  margin-bottom: 0;
}

.nav-2 {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.nav-2 .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.nav-2 a {
  color: var(--gray);
  font-weight: 500;
  padding: 15px 0;
  display: block;
  width: 100%;
  text-align: center;
  border-bottom: 2px solid transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.nav-2 a i {
  font-size: 16px;
  margin-right: 5px;
  position: relative;
  color: var(--gray);
  top: 2px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.nav-2 a:hover {
  color: var(--secondary);
}

.nav-2 a:hover i {
  color: var(--secondary);
}

.nav-2 a.active {
  border-bottom: 2px solid var(--secondary);
  background: var(--ghostColor);
  color: var(--secondary);
}

.nav-2 a.active i {
  color: var(--secondary);
}

.blog-details {
  padding: 100px 0;
}

.blog-details .img-box {
  margin-bottom: 15px;
}

.blog-details .blog-box {
  margin-bottom: 50px;
}

.blog-details .blog-box:last-child {
  margin-bottom: 0;
}

.blog-details .blog-box .text-box .date-author {
  margin-bottom: 15px;
}

.blog-details .blog-box .text-box p {
  color: var(--gray);
}

.blog-details .blog-box .text-box h2 {
  text-transform: capitalize;
  margin-bottom: 30px;
}

.blog-details .blog-box .text-box .continue-reading {
  text-transform: lowercase;
  color: var(--secondary);
}

.blog-details .side-box {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.blog-details .side-box h4 {
  text-transform: capitalize;
}

.blog-details .side-box .post-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.blog-details .side-box .post-box .img {
  width: 35%;
}

.blog-details .side-box .post-box .text {
  width: 65%;
  padding-left: 15px;
}

.blog-details .side-box .post-box .text h5 {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.blog-details .side-box .post-box .text p {
  margin-bottom: 0;
}

.blog-details .side-box .links {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
}

.blog-details .side-box .links li {
  margin-bottom: 10px;
}

.blog-details .side-box .links li a {
  color: var(--gray);
  text-transform: capitalize;
  font-weight: 500;
}

.blog-details .side-box .links li a:hover {
  color: var(--secondary);
}

.blog-details .side-box .links li:last-child {
  margin-bottom: 0;
}

.blog-details .input-group .form-control {
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0;
}

.blog-details .input-group .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.blog-details .input-group .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.blog-details .input-group .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.blog-details .input-group .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.blog-details .input-group .form-control::placeholder {
  text-transform: capitalize;
}

.blog-details .input-group button {
  width: 50px;
  border: none;
  background: var(--black);
  border: 1px solid var(--black);
}

.blog-details .input-group button i {
  color: var(--white);
  font-size: 16px;
}

.pagination {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
}

.pagination .page-link {
  color: var(--gray);
  width: 40px;
  height: 40px;
  text-align: center;
  padding-top: 9px;
}

.pagination .page-link i {
  font-size: 16px;
  padding-top: 2px;
}

.pagination .page-item.active .page-link {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.pagination .page-link:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
          box-shadow: 0 0 0 0rem rgba(13, 109, 253, 0.211);
}

.pagination .page-item:first-child .page-link,
.pagination .page-item:last-child .page-link {
  border-radius: 0;
}

.related-posts .header-text {
  margin-bottom: 0;
}

.related-posts .header-text h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.story-section {
  padding: 100px 0;
}

.story-section .img-box {
  margin-bottom: 15px;
}

.story-section .date-author {
  margin-bottom: 30px;
}

.story-section .date-author a {
  color: var(--secondary);
}

.story-section .more-stories h4 {
  text-transform: capitalize;
}

.story-section .more-stories .story-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.story-section .more-stories .story-box .img {
  margin-right: 10px;
  width: 30%;
}

.story-section .more-stories .story-box .text {
  width: 70%;
}

.story-section .more-stories .story-box .text p {
  margin-bottom: 0;
  color: var(--black);
}

.story-section .more-stories .story-box .text span {
  text-transform: capitalize;
  font-size: 18px;
  font-style: italic;
}

.photo-gallery {
  padding: 100px 0;
}

.photo-gallery .header-text {
  margin-bottom: 0;
}

.photo-gallery .header-text h2 {
  font-size: 48px;
  margin-bottom: 30px;
}

.login-section {
  padding: 100px 0;
}

.login-section form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  max-width: 560px;
  margin: auto;
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.login-section form .form-select,
.login-section form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0;
}

.login-section form .form-select:focus,
.login-section form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.login-section form .form-select::-webkit-input-placeholder,
.login-section form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.login-section form .form-select:-ms-input-placeholder,
.login-section form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.login-section form .form-select::-ms-input-placeholder,
.login-section form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.login-section form .form-select::placeholder,
.login-section form .form-control::placeholder {
  text-transform: capitalize;
}

.login-section form .form-select {
    background-image: url(../images/icon/down-arrow.png);
}

.login-section form .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 20px;
}

.login-section form .links .form-check label {
  cursor: pointer;
}

.login-section form .links .form-check .form-check-input {
  border-radius: 0;
  border: 1px solid var(--primary);
  cursor: pointer;
}

.login-section form .links .form-check .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.login-section form .links .form-check .form-check-input:focus {
  -webkit-box-shadow: 0 0 0 0rem var(--black);
          box-shadow: 0 0 0 0rem var(--black);
}

.login-section form .links a {
  color: var(--gray);
}

.login-section form .links a:hover {
  color: var(--secondary);
}

.login-section form .btn-flower {
  width: 100%;
}

.login-section form .bottom {
  margin-top: 20px;
  text-align: center;
}

.login-section form .bottom a {
  color: var(--gray);
}

.login-section form .bottom a:hover {
  color: var(--secondary);
}

.faq-section {
  padding: 100px 0;
}

.faq-section .accordion-item {
  background: none;
  border: none;
  margin-bottom: 30px;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  background: var(--white);
  border-radius: 0px;
}

.faq-section .accordion-button {
  background: var(--white);
  border-radius: 0px !important;
  padding-left: 0px;
  font-size: 18px;
  font-weight: 500;
  padding: 15px;
  padding-right: 40px;
  text-transform: uppercase;
  color: var(--black);
}

.faq-section .accordion-button:focus {
  z-index: 3;
  border-color: var(--primary);
  outline: 0;
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.faq-section .accordion-button::after {
    background-image: url(../images/icon/down-arrow2.png);
  background-size: cover;
  position: absolute;
  right: 15px;
  height: 16px;
  width: 16px;
  background-position: center;
}

.faq-section .accordion-body {
  padding: 15px;
  padding-top: 5px;
}

.faq-section .accordion-button:not(.collapsed) {
  color: var(--secondary);
  -webkit-box-shadow: none;
          box-shadow: none;
}
.faq-section .accordion-button:not(.collapsed) i {
  color: var(--secondary);
  -webkit-box-shadow: none;
          box-shadow: none;
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url(../images/icon/down-arrow2.png);
}

.rtl .faq-section .accordion-button {
  padding-right: 15px;
  padding-left: 40px;
  text-align: right;
}

.rtl .faq-section .accordion-button::after {
  right: auto;
  left: 15px;
}

.contact-info {
  padding: 100px 0;
}

.contact-info .box {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
}

.contact-info .box .icon-box i {
  font-size: 20px;
  background: var(--primary);
  width: 80px;
  height: 80px;
  border-radius: 100px;
  padding-top: 23px;
  border: 8px solid var(--white);
  -webkit-box-shadow: 0 0 0 1px var(--primary);
          box-shadow: 0 0 0 1px var(--primary);
  color: var(--black);
}

.contact-info .box .text-box {
  text-align: left;
  width: calc(100% - 80px);
  padding-left: 15px;
}

.contact-info .box .text-box h4 {
  text-transform: capitalize;
}

.contact-info .box .text-box p {
  margin-bottom: 0;
  font-weight: 500;
}

.rtl .contact-info .box .text-box {
  text-align: right;
  padding-left: 0;
  padding-right: 15px;
}

.contact-form {
  padding-bottom: 100px;
}

.contact-form .text-box img {
  max-width: 440px;
}

.contact-form .text-box h2 {
  font-size: 64px;
  text-transform: capitalize;
}

.contact-form .text-box p {
  margin-bottom: 30px;
}

.contact-form form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.contact-form form .form-select,
.contact-form form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0px;
}

.contact-form form .form-select:focus,
.contact-form form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.contact-form form .form-select::-webkit-input-placeholder,
.contact-form form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.contact-form form .form-select:-ms-input-placeholder,
.contact-form form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.contact-form form .form-select::-ms-input-placeholder,
.contact-form form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.contact-form form .form-select::placeholder,
.contact-form form .form-control::placeholder {
  text-transform: capitalize;
}

.contact-form form textarea.form-control {
  height: 90px;
}

.contact-form form .btn-flower {
  width: 100%;
}

.rtl .contact-form .text-box {
  text-align: right;
}

.members-section {
  padding: 100px 0;
}

.members-section form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  border-radius: 0px;
}

.members-section form label {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.members-section form .form-select,
.members-section form .form-control {
  font-size: 12px;
  color: var(--gray);
  font-weight: 500;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 0px;
}

.members-section form .form-select:focus,
.members-section form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.members-section form .form-select::-webkit-input-placeholder,
.members-section form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section form .form-select:-ms-input-placeholder,
.members-section form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section form .form-select::-ms-input-placeholder,
.members-section form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section form .form-select::placeholder,
.members-section form .form-control::placeholder {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section form .form-select {
    background-image: url(../images/icon/down-arrow.png);
}

.members-section form .btn-flower {
  width: 100%;
}

.members-section .member-box {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
}

.members-section .member-box .img-box {
  margin-right: 15px;
}

.members-section .member-box .img-box img {
  width: 194px;
}

.members-section .member-box .member-info {
  text-transform: capitalize;
  color: var(--gray);
}

.members-section .member-box .name {
  margin-bottom: 5px;
}

.members-section .member-box .member-id {
  color: var(--gray);
}

.members-section .member-box .member-id span {
  color: var(--secondary);
}

.members-section .member-box .button-group {
  margin-top: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.members-section .member-box .button-group a {
  color: var(--gray);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.members-section .member-box .button-group a i {
  font-size: 14px;
  color: var(--secondary);
}

.members-section .member-box .button-group a:hover {
  color: var(--secondary);
}

.members-section .member-box .tag {
  background: #daf6ea;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 2px 10px;
}

.members-section .pagination {
  margin-top: 50px;
  margin-bottom: 0;
}

.profile-section {
  padding: 100px 0;
}

.profile-section .member-box {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 20px;
  position: relative;
  margin-bottom: 20px;
  border-radius: 5px;
}

.profile-section .member-box .img-box {
  margin-right: 20px;
}

.profile-section .member-box .img-box img {
  width: 200px;
}

.profile-section .member-box .member-info {
  text-transform: capitalize;
  color: var(--gray);
}

.profile-section .member-box .name {
  margin-bottom: 5px;
}

.profile-section .member-box .member-id {
  color: var(--gray);
}

.profile-section .member-box .member-id span {
  color: var(--secondary);
}

.profile-section .member-box .button-group {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.profile-section .member-box .button-group a {
  color: var(--gray);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.profile-section .member-box .button-group a i {
  font-size: 14px;
  color: var(--secondary);
}

.profile-section .member-box .button-group a:hover {
  color: var(--secondary);
}

.profile-section .member-box .tag {
  background: #daf6ea;
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 2px 10px;
  border-radius: 5px;
}

.profile-details {
  padding-bottom: 100px;
}

.profile-details .navigator {
  border-bottom: 1px solid var(--border);
}

.profile-details .navigator .tab {
  background: none;
  border: none;
  padding: 0 10px 10px 10px;
  color: var(--gray);
  border-bottom: 2px solid transparent;
  position: relative;
  bottom: -1px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.profile-details .navigator .tab.active {
  border-bottom: 2px solid var(--secondary);
}

.profile-details .navigator .tab:hover {
  color: var(--secondary);
}

.profile-details .content {
  display: none;
}

.profile-details .content.active {
  display: block;
}

.profile-details .accordion-item {
  border: none;
}

.profile-details .accordion-item .accordion-button {
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  font-size: 18px;
}

.profile-details .accordion-item .accordion-button i {
  color: var(--secondary);
  font-size: 18px;
  border: 1px solid var(--border);
  height: 50px;
  width: 50px;
  border-radius: 100%;
  padding-top: 15px;
  margin-right: 15px;
  text-align: center;
}

.profile-details .accordion-item .accordion-body {
  padding-left: 85px;
  padding-top: 0;
}

.profile-details .accordion-item .accordion-button::after {
  background: none;
}

.profile-details .accordion-item .accordion-button:not(.collapsed) {
  color: var(--secondary);
}

.profile-details .accordion-item .accordion-button:not(.collapsed) i {
  border: 1px solid var(--secondary);
}

.profile-details .partner-exceptation .col-md-6 {
  border-bottom: 1px solid var(--border);
  padding-top: 15px;
}

.profile-details .partner-exceptation .col-md-6 p {
  color: var(--black);
  font-weight: 500;
}

.profile-details .partner-exceptation .col-md-6 p span {
  color: var(--gray);
  font-weight: 400;
  text-align: right;
  float: right;
}

.profile-details .profile-photo-gallery #masonryContainer {
  width: 100%;
}

.profile-details .profile-photo-gallery .cols {
  -moz-column-count: 3;
  -moz-column-gap: 15px;
  -moz-column-width: 30%;
  -webkit-column-count: 3;
  -webkit-column-gap: 15px;
  -webkit-column-width: 30%;
  column-count: 3;
  column-gap: 15px;
  column-width: 30%;
}

.profile-details .profile-photo-gallery .img-box {
  margin-bottom: 15px;
  position: relative;
  cursor: pointer;
}

.profile-details .profile-photo-gallery .img-box img {
  min-width: 100%;
}

.modal-with-form .modal-content {
  border-radius: 0;
  border: none;
}

.modal-with-form .modal-header {
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
}

.modal-with-form .modal-header .btn-close {
  font-size: 10px;
  color: var(--border);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.modal-with-form .modal-header .btn-close:hover {
  color: var(--secondary);
}

.modal-with-form .modal-footer {
  border-top: 1px solid var(--border);
}

.modal-with-form .modal-footer .btn-flower {
    width: 130px;
    height: 49px;
}

.modal-with-form .modal-footer .btn-flower.btn1 {
  background: var(--border);
  outline: 1px solid var(--border);
}

.modal-with-form .modal-footer .btn-flower.btn1:hover {
  background: var(--secondary);
  outline: 1px solid var(--secondary);
}

.modal-with-form .modal-body {
  padding: 15px;
}

.modal-with-form form {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.modal-with-form form label {
  text-transform: capitalize;
  margin-bottom: 5px;
}

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

.modal-with-form form .form-group:last-child {
  margin-bottom: 0;
}

.modal-with-form form .form-select,
.modal-with-form form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 0;
}

.modal-with-form form .form-select:focus,
.modal-with-form form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.modal-with-form form .form-select::-webkit-input-placeholder,
.modal-with-form form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.modal-with-form form .form-select:-ms-input-placeholder,
.modal-with-form form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.modal-with-form form .form-select::-ms-input-placeholder,
.modal-with-form form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.modal-with-form form .form-select::placeholder,
.modal-with-form form .form-control::placeholder {
  text-transform: capitalize;
}

.modal-with-form form .form-select {
    background-image: url(../images/icon/down-arrow.png);
}

.modal-with-form form textarea.form-control {
  height: 120px;
}

.modal-with-form form .btn-flower {
  width: 100%;
  height: 44px;
}

.sidebar {
  padding: 30px 0;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.sidebar .profile {
  text-align: center;
  margin-bottom: 30px;
}

.sidebar .profile img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  margin-bottom: 15px;
}

.sidebar ul {
  margin-bottom: 0;
  padding-left: 0;
}

.sidebar ul li {
  list-style: none;
  padding: 12px 20px;
  border-left: 3px solid transparent;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.sidebar ul li:last-child {
  margin-bottom: 0;
}

.sidebar ul li a {
  color: var(--gray);
  font-weight: 500;
  text-transform: capitalize;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.sidebar ul li a i {
  color: var(--gray);
  font-size: 16px;
  margin-right: 7px;
  position: relative;
  top: 2px;
}

.sidebar ul li.active, .sidebar ul li:hover {
  background: var(--ghostColor);
  border-left: 3px solid var(--secondary);
}

.sidebar ul li.active a, .sidebar ul li:hover a {
  color: var(--secondary);
}

.sidebar ul li.active a i, .sidebar ul li:hover a i {
  color: var(--secondary);
}

.rtl .sidebar ul li {
  border-right: 3px solid transparent;
}

.rtl .sidebar ul li.active, .rtl .sidebar ul li:hover {
  border-left: none;
  border-right: 3px solid #fb846f;
}

.rtl .sidebar ul li a i {
  margin-right: 0;
  margin-left: 7px;
}

.dashboard-section {
  padding: 100px 0;
}

.dashboard-section .dashboard-content .box {
  text-align: center;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
}

.dashboard-section .dashboard-content .box .icon-box {
  margin-bottom: 15px;
}

.dashboard-section .dashboard-content .box .icon-box i {
  font-size: 22px;
  background: var(--primary);
  width: 62px;
  height: 62px;
  border-radius: 100px;
  font-size: 18px;
  padding-top: 18px;
  border: 6px solid var(--white);
  outline: 1px solid var(--primary);
}

.dashboard-section .dashboard-content .pricing-box {
  text-align: center;
  padding: 30px 0;
  background: var(--white);
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.dashboard-section .dashboard-content .pricing-box .icon-box {
  margin-bottom: 15px;
}

.dashboard-section .dashboard-content .pricing-box .icon-box i {
  font-size: 22px;
  background: var(--primary);
  width: 62px;
  height: 62px;
  border-radius: 100px;
  font-size: 18px;
  padding-top: 18px;
  border: 6px solid var(--white);
  outline: 1px solid var(--primary);
}

.dashboard-section .dashboard-content .pricing-box .text-box h4 {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content .pricing-box .text-box h2 {
  font-family: "Halant", serif;
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .pricing-box .text-box h2 span {
  font-size: 32px;
}

.dashboard-section .dashboard-content .pricing-box .text-box ul {
  padding-left: 0;
  display: inline-block;
  text-align: left;
  margin: 15px auto;
  list-style: none;
  text-transform: capitalize;
}

.dashboard-section .dashboard-content .pricing-box .text-box ul li {
  margin-bottom: 15px;
}

.dashboard-section .dashboard-content .pricing-box .text-box ul li i {
  font-size: 16px;
  margin-right: 5px;
}

.dashboard-section .dashboard-content .pricing-box .text-box button {
  display: block;
  text-align: center;
  margin: auto;
}

.dashboard-section .dashboard-content .dashboard-title {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.dashboard-section .dashboard-content .dashboard-title h5 {
  text-transform: uppercase;
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .matched-profile-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.dashboard-section .dashboard-content .matched-profile-box .img-box {
  margin-right: 15px;
}

.dashboard-section .dashboard-content .matched-profile-box .img-box img {
  width: 100px;
  height: 100px;
}

.dashboard-section .dashboard-content .matched-profile-box .text-box {
  width: calc(100% - 100px);
  padding-right: 15px;
}

.dashboard-section .dashboard-content .matched-profile-box .text-box p {
  margin-bottom: 5px;
}

.dashboard-section .dashboard-content .notifications-box {
  padding: 15px 0;
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
}

.dashboard-section .dashboard-content .notifications-box .notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1px;
  padding: 15px 30px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dashboard-section .dashboard-content .notifications-box .notification:last-child {
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .notifications-box .notification:hover {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .notifications-box .notification.new {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .notifications-box .notification.new::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--secondary);
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
}

.dashboard-section .dashboard-content .notifications-box .notification .img-box {
  margin-right: 20px;
  position: relative;
}

.dashboard-section .dashboard-content .notifications-box .notification .img-box img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
}

.dashboard-section .dashboard-content .notifications-box .notification .img-box i {
  position: absolute;
  bottom: 0;
  right: 0;
  background: var(--secondary);
  color: var(--white);
  font-size: 16px;
  height: 30px;
  width: 30px;
  text-align: center;
  border-radius: 100px;
  padding-top: 8px;
}

.dashboard-section .dashboard-content .notifications-box .notification .text-box {
  width: calc(100% - 100px);
}

.dashboard-section .dashboard-content .notifications-box .notification .text-box a {
  color: var(--gray);
}

.dashboard-section .dashboard-content .notifications-box .notification .text-box .name {
  color: var(--secondary);
}

.dashboard-section .dashboard-content .notifications-box .notification .text-box .time {
  margin-bottom: 0;
  margin-top: 10px;
}

.dashboard-section .dashboard-content .message-wrapper {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  overflow: hidden;
}

.dashboard-section .dashboard-content .messages-box {
  padding: 15px 0;
  max-height: 661px;
  background: var(--white);
  overflow-y: auto;
}

.dashboard-section .dashboard-content .messages-box::-webkit-scrollbar {
  width: 4px;
  height: 100%;
}

.dashboard-section .dashboard-content .messages-box::-webkit-scrollbar-track {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .messages-box::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}

.dashboard-section .dashboard-content .messages-box::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

.dashboard-section .dashboard-content .messages-box .message {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1px;
  padding: 15px;
  padding-right: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dashboard-section .dashboard-content .messages-box .message:last-child {
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .messages-box .message:hover {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .messages-box .message.new {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .messages-box .message.new::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--secondary);
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
}

.dashboard-section .dashboard-content .messages-box .message.active .img-box::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  background: #09bb75;
  border: 4px solid var(--white);
  bottom: -3px;
  right: 10px;
  margin: auto;
}

.dashboard-section .dashboard-content .messages-box .message .img-box {
  margin-right: 10px;
  position: relative;
}

.dashboard-section .dashboard-content .messages-box .message .img-box img {
  width: 50px;
  height: 50px;
  border-radius: 100px;
}

.dashboard-section .dashboard-content .messages-box .message .text-box {
  width: calc(100% - 90px);
}

.dashboard-section .dashboard-content .messages-box .message .text-box a {
  color: var(--gray);
}

.dashboard-section .dashboard-content .messages-box .message .text-box a .name {
  color: var(--secondary);
  font-weight: 500;
}

.dashboard-section .dashboard-content .messages-box .message .text-box a .name .time {
  text-align: right;
  float: right;
  color: var(--gray);
  font-size: 12px;
}

.dashboard-section .dashboard-content .messages-box .message .text-box a p {
  margin-bottom: 5px;
  text-overflow: ellipsis;
  display: block;
  overflow: hidden;
  white-space: nowrap;
}

.dashboard-section .dashboard-content .inbox-wrapper {
  border-left: 1px solid var(--border);
  background: var(--white);
  position: relative;
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 15px;
  border-bottom: 1px solid var(--border);
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar .user {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  margin-right: 10px;
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar .name {
  font-weight: 500;
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar .info-btn {
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background: #ffe1ec;
  border: none;
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .top-bar .info-btn i {
  font-size: 14px;
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .chats {
  padding: 30px 15px 10px 15px;
  height: 500px;
  overflow-y: auto;
  position: relative;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats::-webkit-scrollbar {
  width: 4px;
  height: 100%;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats::-webkit-scrollbar-track {
  background: var(--ghostColor);
}

.dashboard-section .dashboard-content .inbox-wrapper .chats::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 5px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats::-webkit-scrollbar-thumb:hover {
  background: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-bottom: 20px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .img {
  margin-left: 10px;
  width: 30px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .img img {
  width: 30px;
  height: 30px;
  border-radius: 100px;
}

.dashboard-section .dashboard-content .typing-show img {
  width: 30px !important;
  height: 30px !important;
  border-radius: 100px !important;
  -webkit-border-radius: 100px !important;
  -moz-border-radius: 100px !important;
  -ms-border-radius: 100px !important;
  -o-border-radius: 100px !important;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper {
  width: calc(100% - 80px);
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .text {
  padding: 10px;
  background: var(--ghostColor);
  border-radius: 3px;
  float: right;
  margin-bottom: 5px;
  max-width: 300px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .text p {
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .time {
  font-size: 10px;
  display: inline-block;
  width: 100%;
  text-align: right;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .attachment {
  display: inline-block;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .chat-box .text-wrapper .attachment img {
  max-width: 100px;
  border-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side .img {
  margin-left: 0;
  margin-right: 10px;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side .text-wrapper .text {
  float: left;
}

.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side .text-wrapper .time {
  text-align: left;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile {
  position: absolute;
  padding-top: 30px;
  width: 250px;
  height: 500px;
  text-align: center;
  background: var(--ghostColor);
  border-left: 1px solid var(--border);
  top: 81px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  right: -260px;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile.active {
  right: 0;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile .img-box img {
  width: 60px;
  height: 60px;
  border-radius: 100px;
  margin-bottom: 15px;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile p {
  margin-bottom: 5px;
  font-weight: 500;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile button#closeProfile {
  position: absolute;
  right: 20px;
  top: 20px;
  background: #ffe1ec;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  padding-top: 2px;
  border: none;
}

.dashboard-section .dashboard-content .inbox-wrapper .side-profile button#closeProfile i {
  font-size: 16px;
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview {
  background: var(--ghostColor);
  display: inline-block;
  position: relative;
  left: 0px;
  bottom: 5px;
  max-width: 100px;
  border-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview img {
  width: 100%;
  height: auto;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview .img-info {
  padding: 0 5px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview .img-info span {
  font-size: 12px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview .img-info span.size {
  color: rgb(207 35 35);
  font-size: 10px;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview button.delete {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #ffe1ec;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  padding-top: 2px;
  border: none;
}

.dashboard-section .dashboard-content .inbox-wrapper .img-preview button.delete i {
  font-size: 16px;
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 20px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group {
  border-radius: 3px;
  overflow: hidden;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .form-control {
  height: 47px;
  background: var(--ghostColor);
  border-radius: 0;
  border: none;
  font-size: 13px;
  color: var(--gray);
  padding: 7px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: none;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .send-file-btn {
  position: relative;
  background: var(--ghostColor);
  border: none;
  width: 40px;
  height: 100%;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .send-file-btn i {
  color: var(--gray);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  left: 5px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .send-file-btn:hover i {
  color: var(--secondary);
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group .send-file-btn .form-control {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group button {
  width: 50px;
  border: none;
  background: var(--secondary);
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group button i {
  color: var(--white);
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.dashboard-section .dashboard-content .table-wrapper {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  padding: 30px;
}

.dashboard-section .dashboard-content .table-wrapper .table {
  color: var(--gray);
  margin-bottom: 0;
}

.dashboard-section .dashboard-content .table-wrapper .table tbody > tr:nth-of-type(even) > * {
  --bs-table-accent-bg: var(--ghostColor) !important;
}

.dashboard-section .dashboard-content .table-wrapper .table tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: transparent;
}

.dashboard-section .dashboard-content .table-wrapper .table thead {
  background: var(--ghostColor);
  color: var(--black);
  text-transform: capitalize;
}

.dashboard-section .dashboard-content .table-wrapper .table tbody {
  border: none;
}

.dashboard-section .dashboard-content .table-wrapper .table tr {
  border: none;
  border-top: 1px solid var(--ghostColor);
}

.dashboard-section .dashboard-content .table-wrapper .table tr th {
  font-weight: 500;
  border: none !important;
  padding: 15px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr th:first-child {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr th:last-child {
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td {
  padding: 15px;
  color: var(--gray);
  border: none !important;
  text-transform: capitalize;
  margin: 5px !important;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td img {
  width: 60px;
  height: 60px;
  border-radius: 3px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td:first-child {
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td:last-child {
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .status,
.dashboard-section .dashboard-content .inbox-wrapper .status {
  background: #c0cdc7;
  color: white;
  padding: 2px 10px;
  min-width: 90px;
  text-align: center;
  border-radius: 100px;
  display: inline-block;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .status.danger,
.dashboard-section .dashboard-content .inbox-wrapper .status.danger {
  background: #adff81;
  color: #554141;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .status.primary,
.dashboard-section .dashboard-content .inbox-wrapper .status.primary {
  background: #bba0ff;
  color: white;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .status.dark,
.dashboard-section .dashboard-content .inbox-wrapper .status.dark {
  background: #595959;
  color: white;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .action-btn {
  background: #daf6ea;
  border: none;
  height: 35px;
  width: 35px;
  border-radius: 50px;
  padding-top: 2px;
  text-align: center;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .action-btn i {
  font-size: 12px;
  color: #09bb75;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .action-btn.danger {
  background: #ffe1ec;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .action-btn.danger i {
  color: var(--secondary);
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .form-check-input {
  border-color: var(--border);
  cursor: pointer;
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .form-check-input:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
}

.dashboard-section .dashboard-content .table-wrapper .table tr td .form-check-input:checked {
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.dashboard-section .dashboard-content form {
  -webkit-box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
          box-shadow: 0px 2px 16.8px 3.2px rgba(0, 38, 66, 0.08);
  margin: auto;
  padding: 30px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.dashboard-section .dashboard-content form label {
  margin-bottom: 10px;
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form .form-select,
.dashboard-section .dashboard-content form .form-control {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
  height: 45px;
  border: 1px solid var(--border);
  border-radius: 3px;
}

.dashboard-section .dashboard-content form .form-select:focus,
.dashboard-section .dashboard-content form .form-control:focus {
  -webkit-box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0rem rgba(13, 110, 253, 0.25);
  border: 1px solid var(--secondary);
}

.dashboard-section .dashboard-content form .form-select::-webkit-input-placeholder,
.dashboard-section .dashboard-content form .form-control::-webkit-input-placeholder {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form .form-select:-ms-input-placeholder,
.dashboard-section .dashboard-content form .form-control:-ms-input-placeholder {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form .form-select::-ms-input-placeholder,
.dashboard-section .dashboard-content form .form-control::-ms-input-placeholder {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form .form-select::placeholder,
.dashboard-section .dashboard-content form .form-control::placeholder {
  text-transform: capitalize;
}

.dashboard-section .dashboard-content form textarea.form-control {
  height: 120px;
}

.dashboard-section .dashboard-content form .form-select {
  background-image: url(../images/icon/down-arrow.png);
}

.dashboard-section .dashboard-content form .form-control[type="file"] {
  height: 35px;
}

.dashboard-section .dashboard-content form .btn-flower {
  width: 100%;
}

.dashboard-section .dashboard-content form .img-preview {
  background: var(--ghostColor);
  display: inline-block;
  position: relative;
  left: 0px;
  bottom: -15px;
  max-width: 100px;
  border-radius: 3px;
}

.dashboard-section .dashboard-content form .img-preview img {
  width: 100%;
  height: auto;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.dashboard-section .dashboard-content form .img-preview .img-info {
  padding: 0 5px;
}

.dashboard-section .dashboard-content form .img-preview .img-info span {
  font-size: 12px;
}

.dashboard-section .dashboard-content form .img-preview .img-info span.size {
  color: var(--secondary);
  font-size: 10px;
}

.dashboard-section .dashboard-content form .img-preview button.delete {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #ffe1ec;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  text-align: center;
  padding-top: 2px;
  border: none;
}

.dashboard-section .dashboard-content form .img-preview button.delete i {
  font-size: 16px;
  color: var(--secondary);
}

.dashboard-section .dashboard-content form .typing-area {
  background: var(--white);
}

.dashboard-section .dashboard-content form .typing-area .send-file-btn {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  width: 100%;
  height: 100%;
  text-align: left;
  height: 45px;
  padding-left: 10px;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
}

.dashboard-section .dashboard-content form .typing-area .send-file-btn i {
  color: var(--gray);
  -webkit-transition: 0.4s;
  transition: 0.4s;
  position: relative;
  left: 5px;
}

.dashboard-section .dashboard-content form .typing-area .send-file-btn:hover i {
  color: var(--secondary);
}

.dashboard-section .dashboard-content form .typing-area .send-file-btn .form-control {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.dashboard-section .dashboard-content form .typing-area button {
  width: 50px;
  border: none;
  background: var(--secondary);
  border: none;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}

.dashboard-section .dashboard-content form .typing-area button i {
  color: var(--white);
  font-size: 16px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.rtl .dashboard-section .dashboard-content .pricing-box .text-box ul {
  text-align: right;
}

.rtl .dashboard-section .dashboard-content .pricing-box .text-box ul li i {
  margin-right: 0;
  margin-left: 5px;
}

.rtl .dashboard-section .dashboard-content .matched-profile-box .img-box {
  margin-right: 0;
}

.rtl .dashboard-section .dashboard-content .notifications-box .notification .img-box {
  margin-right: 0;
  margin-left: 20px;
}

.rtl .dashboard-section .dashboard-content .notifications-box .notification.new::after {
  right: auto;
  left: 30px;
}

.rtl .dashboard-section .dashboard-content .inbox-wrapper .side-profile {
  right: auto;
  left: -260px;
}

.rtl .dashboard-section .dashboard-content .inbox-wrapper .side-profile.active {
  left: 0;
}

.rtl .dashboard-section .dashboard-content .messages-box .message {
  padding-right: 15px;
}

.rtl .dashboard-section .dashboard-content .messages-box .message .img-box {
  margin-right: 0;
  margin-left: 10px;
}

.rtl .dashboard-section .dashboard-content .messages-box .message.new::after {
  right: auto;
  left: 15px;
}

.rtl .dashboard-section .dashboard-content .messages-box .message .text-box a .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 991px) {
  .home-section .text-box h1 {
    font-size: 48px;
    margin-bottom: 30px;
    text-transform: capitalize;
  }
}

@media (max-width: 767px) {
  h2 {
    font-size: 48px !important;
  }
  .home-section {
    background: none;
  }
  .home-section .overlay {
    background: none;
  }
  .home-section .text-box h1 {
    font-size: 48px;
  }
  .about-section .img-box {
    width: 300px;
    height: 300px;
    margin: auto;
  }
  .navbar {
    padding: 15px 0px;
  }
  .header-text {
    margin-bottom: 50px;
  }
  .header-text h2 {
    font-size: 48px;
  }
  .login-section form {
    padding: 15px;
  }
  .contact-form form {
    padding: 15px;
  }
  .members-section .member-box {
    text-align: center;
  }
  .members-section .member-box .img-box {
    margin-bottom: 15px;
  }
  .members-section .member-box .img-box img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
  }
  .members-section .member-box .member-info {
    text-align: left;
  }
  .members-section .member-box .button-group a span {
    display: block;
    font-size: 10px;
  }
  .profile-section .member-box {
    text-align: center;
  }
  .profile-section .member-box .img-box {
    margin-bottom: 15px;
  }
  .profile-section .member-box .img-box img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
  }
  .profile-section .member-box .member-info {
    text-align: left;
  }
  .profile-section .member-box .button-group a span {
    display: block;
    font-size: 11px;
  }
  .profile-details .profile-photo-gallery #masonryContainer {
    width: 100%;
  }
  .profile-details .profile-photo-gallery .cols {
    -moz-column-count: 2;
    -moz-column-gap: 15px;
    -moz-column-width: 50%;
    -webkit-column-count: 2;
    -webkit-column-gap: 15px;
    -webkit-column-width: 50%;
    column-count: 2;
    column-gap: 15px;
    column-width: 50%;
  }
  .happy-stories #masonryContainer {
    width: 100%;
  }
  .happy-stories .cols {
    -moz-column-count: 2;
    -moz-column-gap: 15px;
    -moz-column-width: 50%;
    -webkit-column-count: 2;
    -webkit-column-gap: 15px;
    -webkit-column-width: 50%;
    column-count: 2;
    column-gap: 15px;
    column-width: 50%;
  }
  .dashboard-section .dashboard-content .notifications-box .notification,
  .dashboard-section .dashboard-content .table-wrapper,
  .dashboard-section .dashboard-content form {
    padding: 15px;
  }
  .dashboard-section .dashboard-content .message-wrapper {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .dashboard-section .dashboard-content .message-wrapper .messages-box,
  .dashboard-section .dashboard-content .message-wrapper .inbox-wrapper {
    border: 1px solid var(--border);
    margin-bottom: 15px;
  }


    /*table search*/
    .dashboard-section .dashboard-content .table-search {
        margin-bottom: 15px;
    }
    .dashboard-section .dashboard-content .table-search .btn-flower2 {
        height: 42px;
    }
    .dashboard-section .dashboard-content .table-search form {
        padding: 20px 30px;
    }
    @media (max-width: 767px) {
        .dashboard-section .dashboard-content .table-search form{
            padding: 15px;
        }
    }

  .rtl .navbar .navbar-text {
    right: auto;
    left: 35px;
  }
  .rtl .navbar .notification-panel .notification-dropdown {
    right: auto;
    left: -65px;
  }
}



/*---------------------------------- Start extra CSS added by me -----------------------------*/

/*------------ for notiflix ------------*/
#Notiflix-Icon-Success,
#Notiflix-Icon-Failure,
#Notiflix-Icon-Warning {
   fill: #fff !important;
}
[v-cloak] {
   display: none;
}

/* user button hover */
.navbar .notification-panel .notification-dropdown.userprofile{
    width: 290px;
    height: auto;
    padding-bottom: 0px;
}

.fa, .fas, .far, .fal {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300 !important;
}

.customShadow{
    box-shadow: 0px 2px 16.8px 3.2px rgb(0 38 66 / 8%);
}

.borderLess{
    border: none;
}

.font22{
    font-size: 22px;
}
.font14{
    font-size: 14px;
}

.w-150px {
    width: 150px;
}
.wh-200-150 {
    width: 200px;
    height: 150px;
}
.w-15{
    width: 15%;
}

.w-45{
    width: 45%;
}

.w-65 {
    width: 65%;
}

.w-150px {
    width: 150px;
}

.fw-900 {
    font-weight: 900 !important;
}

.btn-full{
    width: 100% !important;
}

.btn-green {
    color: #fff;
    background-color: #22ca80;
    border-color: #22ca80;
}
.btn-green:hover {
    color: #fff;
    background-color: #12bd73;
    border-color: #22ca80;
}
.btn-green i{
    font-size: 14px;
    color: white;
}

.btn-red {
    color: #fff;
    background-color: #ff4f70;
    border-color: #ff4f70;
}
.btn-red:hover {
    color: #fff;
    background-color: #ff4f70;
    border-color: #ff4f70;
}

.closeBtn{
    color: #fff;
    background-color: #ff4f70;
    border-color: #ff4f70;
}

.closeBtn:hover{
    color: #fff;
    background-color: #ff4f70;
    border-color: #ff4f70;
}

.btn-flower.planPurchaseButton {
    width: 172px !important;
}

.btn-flower2.planPurchaseButton {
    width: 147px !important;
}

.progressBarColor{
    background: var(--secondary);
}

.dashboard-section.noBoxShadowInForm .profile-setting .accordion .accordion-body form{
    box-shadow: none;
}

.borderTableOutline{
    border: 1px solid rgb(232, 232, 232);
    padding: 18px;
}
.borderTableOutline .list-group .list-group-item .lebel {
    color: #6c6c6c;
    font-weight: 550;
}
.list-group-item {
    border: none !important;
}

.borderTableOutline .list-group .list-group-item.listStriped {
    background-color: #f8f9fa;
}

.tableHeaderColorGray {
    background-color: #f1f1f1;
}
.memberProfile .table>:not(:first-child) {
    border-top: 1px solid #cdcdcd;
}

.dashboard-section .image-input.userGalleryImage {
    min-height: 220px !important;
}

.dashboard-section .galleryBox {
    min-height: 350px !important;
}

.theme-color {
    background: white !important;
    box-shadow: 0px 2px 16.8px 3.2px rgb(0 38 66 / 8%) !important;
}


.dashboard-section .dashboard-content .inbox-wrapper .img-preview .img-info {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

/*-------- for gateway image ---------*/
.gatewayImage{
    width: 100%;
    height: auto;
}
.bgGreen{
    background-color: #f3ddcf;
}


/*-------- support ---------*/
.dashboard-section .dashboard-content .inbox-wrapper .chats .this-side .text-wrapper .fileimg {
    display: inline-block;
    width: 100%;
    text-align: right;
}
.dashboard-section .dashboard-content .inbox-wrapper .chats .opposite-side .text-wrapper .fileimg {
    display: inline-block;
    width: 100%;
    text-align: left;
}


/*-------- messenger ---------*/
.dashboard-section .message-wrapper .inbox-wrapper .chat-box .fileShow{
    font-size: 11px;
    display: inline-block;
    width: 100%;
    text-align: right;
}

.dashboard-section .dashboard-content .messages-box .message .img-box.active::after{
    content: "";
    position: absolute;
    width: 19px;
    height: 19px;
    border-radius: 100%;
    background: #09bb75;
    border: 4px solid var(--white);
    bottom: -3px;
    right: 10px;
    margin: auto;
}


/*-------- for story gallery image ---------*/
.input-group {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
}
.image-input {
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #f0f8ff;
}
.image-input #image-label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 70px 100px;
    z-index: 5;
    opacity: 0.3;
    cursor: pointer;
    background-color: #fff;
    font-size: 25px;
    border: 2px dashed #000;
    margin: auto;
    text-align: center;
}
.image-input #gallery {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}
.image-input #image {
    position: absolute;
    opacity: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    cursor: pointer;
}
.image-input .preview-image {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-width: 150px;
}
.input-group-btn i{
    color: white;
    font-size: 15px;
}

.removeFile i{
    color: white;
    font-size: 15px;
}

.storyDetailImageSize {
    width: 100%;
    height: 200px;
    padding: 12px;
    background: #ededed;
}

.removeFile {
    position: absolute !important;
    top: -10px;
    right: -15px;
    width: 35px;
    z-index: 1;
}

.z0 {
    z-index: 0!important;
}

.image-input.height100 {
    min-height: 265px;
}

.iconHoverBg{
    background-color: rgb(255, 173, 173);
    width: 20px;
    height: 20px;
    padding: 15px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.iconHoverBg i{
    font-size: 20px;
}

.cursorDefault{
    cursor: default;
}


.dashboard-section .dashboard-content .inbox-wrapper .typing-area .input-group button.upload-img {
    width: 50px;
    border: none;
    background: var(--secondary);
    columns: white;
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
  }


/*------------ Select 2 plugin selectBox reDesign --------------*/
.select2-container .select2-selection--single {
    height: 44px !important;
}
.select2-container--default .select2-selection--single {
    background-color: #fff !important;
    border: 1px solid var(--border);
    border-radius: 4px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #646464;
    line-height: 42px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-color: #888 transparent transparent transparent;
    border-style: solid;
    border-width: 5px 4px 0 4px;
    height: 0;
    left: 50%;
    margin-left: -4px;
    margin-top: 5px !important;
    position: absolute;
    top: 50%;
    width: 0;
}

/*-------------- for multi select ----------------*/
.select2-container--default .select2-selection--multiple .select2-selection__rendered {
    padding: 4px 5px;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: var(--secondary);
    border: 1px solid #aaa;
    color: white;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #fff;
}
.select2-container--default .select2-selection--multiple {
    border: 1px solid #d3d3d3;
}

/*-------------- for tagsinput ----------------*/
.bootstrap-tagsinput .badge {
    margin: 2px 4px;
    padding: 5px 8px;
    background-color: var(--secondary);
}
.bootstrap-tagsinput {
    border: 1px solid var(--border);
    line-height: 35px;
}
.bootstrap-tagsinput .badge{
    font-size: 0.85em;
}

/*------------- Accordion > Table --------------------*/
.dashboard-section.faq-section.noBoxShadowInForm .dashboard-content .table-wrapper {
    box-shadow: none;
    padding: 14px;
}

.dashboard-section.faq-section.noBoxShadowInForm .dashboard-content .accordion-item .accordion-header button i {
    font-size: 21px;
    margin-right: 7px;
}


/*------------- Notification badge --------------------*/
.notification-panel .dropdown-toggle .count {
    background: red;
    color: white;
    text-align: center;
    min-width: 18px;
    height: 18px;
    font-size: 12px;
    border-radius: 24px;
    padding: 3px;
    line-height: 1;
    position: absolute;
    top: -15px;
    right: -10px;
 }



/*------------- Typing Indicator --------------------*/
 .dashboard-section .dashboard-content .typing {
    display: none;
    padding: 10px;
    font-size: 0;
    -webkit-animation: fadeInUp 200ms linear 1 both;
            animation: fadeInUp 200ms linear 1 both;
    /* States */
  }
  .dashboard-section .dashboard-content .typing__bullet {
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    transition: all 300ms linear;
  }
  .dashboard-section .dashboard-content .typing__bullet:not(:last-child) {
    margin-right: 3px;
  }
  .dashboard-section .dashboard-content .typing.is-typing-init {
    display: inline-block;
  }
  .dashboard-section .dashboard-content .typing.is-typing-active .typing__bullet {
    background-color: #000;
    -webkit-animation: bounce 600ms linear infinite both;
            animation: bounce 600ms linear infinite both;
  }
  .dashboard-section .dashboard-content .typing.is-typing-active .typing__bullet:nth-child(2) {
    -webkit-animation-delay: 150ms;
            animation-delay: 150ms;
  }
  .dashboard-section .dashboard-content .typing.is-typing-active .typing__bullet:nth-child(3) {
    -webkit-animation-delay: 300ms;
            animation-delay: 300ms;
  }
  /**
   * Animations
   */
  @-webkit-keyframes bounce {
    0%,
    80%,
    100% {
      opacity: 1;
      transform: translateY(0);
    }
    50% {
      opacity: 0.5;
      transform: translateY(-100%);
    }
  }
  @keyframes bounce {
    0%,
    80%,
    100% {
      opacity: 1;
      transform: translateY(0);
    }
    50% {
      opacity: 0.5;
      transform: translateY(-100%);
    }
  }
  @-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
/*---------------------------------- End extra CSS added by me -----------------------------*/





@media (min-width: 1400px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1200px;
  }
}
/*# sourceMappingURL=style.css.map */
