/* Start Global Style */
:root {
  --mainColor: #e89d2d;
  --mainColorWithOpacity: #e89d2d8f;
  --darkGreen: #011f2a;
  --darkGreenWithOpacity: rgb(1 31 42 / 88%);
  --lightGreen: #0089bb;
  --gray: #3e3d3d;
}

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

body {
  font-size: 14px;
  line-height: 26px;
  font-family: 'Montserrat', sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a,
a:hover,
a:focus {
  text-decoration: none;
  color: initial;
}

section.p80 {
  padding: 80px 0;
}

section.p50 {
  padding: 50px 0;
}

section.overlay:before {
  background: #011f2a;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.85;
}

section.overlay {
  position: relative;
}

section.overlay .row {
  position: relative;
  z-index: 2;
}

.section-title {
  margin-bottom: 30px;
}

/* End Global Style */

/* Start Scroll To Top */
.progress-wrap {
  position: fixed;
  bottom: 30px;
  right: 30px;
  height: 44px;
  width: 44px;
  cursor: pointer;
  display: block;
  border-radius: 50px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

.progress-wrap.active-progress {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

.arrow-top {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--mainColor);
  font-size: 16px;
}

.progress-wrap svg path {
  fill: none;
}

.progress-wrap svg.progress-circle path {
  stroke: var(--mainColor);
  stroke-width: 4;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 400ms linear;
  -o-transition: all 400ms linear;
  transition: all 400ms linear;
}

/* End Scroll To Top */

/* Start Cursor */
.mouse-cursor {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  border-radius: 50%;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  visibility: hidden;
}

.cursor-inner {
  width: 6px;
  height: 6px;
  z-index: 10000001;
  background-color: var(--mainColor);
  -webkit-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out,
    margin 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.cursor-inner.cursor-hover {
  margin-left: -35px;
  margin-top: -35px;
  width: 70px;
  height: 70px;
  background-color: var(--mainColor);
  opacity: 0.3;
}

.cursor-outer {
  margin-left: -12px;
  margin-top: -12px;
  width: 30px;
  height: 30px;
  border: 1px solid var(--mainColor);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10000000;
  opacity: 0.5;
  -webkit-transition: all 0.08s ease-out;
  -o-transition: all 0.08s ease-out;
  transition: all 0.08s ease-out;
}

.cursor-outer.cursor-hover {
  opacity: 0;
}

/* End Cursor */

/* Start Navbar Style */
nav.app-navbar {
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 9999;
  background-color: var(--darkGreen);
  border-bottom: 1px solid rgb(12 44 56 / 52%);
}

nav.app-navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-main-menu-area .navbar-menu-list {
  display: flex;
  align-items: center;
  column-gap: 30px;
}

a.navbar-menu-list-item-link {
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
  color: #ccc;
  transition: all cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

a.navbar-menu-list-item-link:after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 1px;
  background: #ccc;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

a.navbar-menu-list-item-link.active-link {
  color: var(--mainColor);
}

a.navbar-menu-list-item-link.active-link:hover {
  color: var(--mainColor);
}

a.navbar-menu-list-item-link.active-link:after {
  width: 100%;
  background-color: var(--mainColor);
}

a.navbar-menu-list-item-link:hover {
  color: #fff;
}

a.navbar-menu-list-item-link:hover:after {
  width: 80%;
}

a.brand-logo {
  display: inline-block;
}

.logo-area {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.dpm-btn {
  background-color: var(--mainColor);
  color: #000;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  border-radius: 40px;
  line-height: 1.2;
}

a.add-property-btn {
  display: flex;
  width: fit-content;
  align-items: center;
  column-gap: 6px;
}

.navbar-auth-area-inner .navbar-auth-user-data {
  display: flex;
  align-items: center;
}

.navbar-auth-area-inner .navbar-auth-user-data img {
  border-radius: 40px;
  object-fit: cover;
}


.navbar-auth-area-inner .navbar-auth-user-data .userName {
  margin-left: 10px;
}

a.add-property-btn svg {
  background: #000;
  color: var(--mainColor);
  border-radius: 5px;
  padding: 3px;
  box-sizing: content-box;
  font-size: 11px;
}

a.add-property-btn span {
  font-size: 11px;
  font-weight: 500;
}

.add-property-area>span {
  color: #ccc;
  font-size: 11px;
  padding-left: 6px;
  line-height: 0;
  opacity: 0.8;
}

.add-property-area {
  margin-top: 6px;
}

.navbar-options-area {
  display: flex;
  column-gap: 20px;
  align-items: center;
}

.navbar-auth-area a.navbar-login-link {
  color: var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 5px;
}

.navbar-auth-area a.navbar-login-link span {
  text-transform: capitalize;
}

.navbar-lang-switcher a {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  color: #eee;
}

.navbar-lang-switcher a span {
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}

.navbar-lang-switcher a .lang-icon {
  margin: 0 2px;
  transition: all .3s linear;
}

.navbar-lang-switcher a:hover .lang-icon {
  transform: rotateY(180deg);
}

.navbar-auth-area-inner {
  position: relative;
  cursor: pointer;
}

.auth-dropdown {
  position: absolute;
  background: #fff;
  width: 100%;
  top: 0;
  right: 0;
  min-width: 130px;
  border-radius: 4px;
  transition: all .3s linear;
  opacity: 0;
  visibility: hidden;
}

.auth-dropdown.show {
  top: calc(100% + 4px);
  opacity: 1;
  visibility: visible;
}

.navbar-auth-user-data>span {
  color: #fff;
  text-transform: capitalize;
}

.navbar-auth-user-data svg {
  color: #fff;
  margin-left: 2px;
  font-size: 18px;
}

ul.auth-dropdown-list li.auth-dropdown-list-item {
  padding: 6px 10px;
  border-bottom: 1px solid #eee;
  position: relative;
  overflow: hidden;
}

ul.auth-dropdown-list li.auth-dropdown-list-item:last-of-type {
  border-bottom: 0;
}

ul.auth-dropdown-list li.auth-dropdown-list-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: -3px;
  width: 3px;
  height: 100%;
  background: var(--mainColor);
  transition: all .3s linear;
}

ul.auth-dropdown-list li.auth-dropdown-list-item svg {
  margin-right: 6px;
  font-size: 16px;
}

ul.auth-dropdown-list li.auth-dropdown-list-item span {
  font-size: 13px;
  font-weight: 500;
  transition: all .3s linear;
}

ul.auth-dropdown-list li.auth-dropdown-list-item a,
ul.auth-dropdown-list li.auth-dropdown-list-item button {
  display: flex;
  align-items: center;
}

ul.auth-dropdown-list li.auth-dropdown-list-item button {
  background-color: transparent;
  border: 0;
  outline: none;
  box-shadow: unset;
  width: 100%;
}

.auth-dropdown:before {
  content: '';
  position: absolute;
  top: -8px;
  right: 4px;
  border-style: solid;
  border-color: transparent;
  border-width: 4px;
  border-bottom-color: #fff;
}

ul.auth-dropdown-list li.auth-dropdown-list-item:hover:before {
  left: 0;
}

ul.auth-dropdown-list li.auth-dropdown-list-item:first-of-type:before,
ul.auth-dropdown-list li.auth-dropdown-list-item:last-of-type:before {
  border-radius: 4px;
}

ul.auth-dropdown-list li.auth-dropdown-list-item:hover span {
  color: var(--mainColor);
}

/* End Navbar Style */


/* Start Home Intro */
header.home-header {
  min-height: 80vh;
  position: relative;
  display: flex;
  align-items: center;
}

.home-header-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #181818, #242323, #3c3c3c, #100e0e);
  opacity: 0.5;
}

header.home-header:after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 65%;
  height: 3px;
  background: var(--mainColor);
}

.home-header-bg {
  height: 100%;
  position: absolute;
  left: 0;
  width: 100%;
  right: 0;
  background-size: cover;
  background-attachment: fixed;
}

header.home-header .row {
  display: flex;
  margin: 0;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

header.home-header .intro-content {
  position: relative;
  z-index: 2;
  max-width: 40%;
  border-radius: 20px;
  text-align: center;
}

header.home-header .intro-content h1 {
  font-size: 46px;
  font-weight: bold;
  color: #fff;
}

header.home-header .intro-content h1 span {
  color: var(--mainColor);
  display: block;
}

header.home-header .intro-content p {
  font-size: 14px;
  line-height: 22px;
  max-width: 650px;
  color: #eee;
  margin: 12px auto 0
}

.intro-filter {
  margin-top: 40px;
  max-width: 52%;
  padding: 0;
}

.quick-search,
.filter-close-btn {
  display: none;
}

.intro-filter .filter-type {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-bottom: 15px;
  justify-content: center;
}

.intro-filter .filter-type .custom-radio-box {
  position: relative;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 20px;
  padding: 3px 22px;
  color: white;
  cursor: pointer;
  font-weight: 600;
}

.intro-filter .filter-type .custom-radio-box.active {
  border: 2px solid var(--mainColor);
  color: var(--mainColor);
}

.intro-filter .filter-type .custom-radio-box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.intro-filter .filter-type .custom-radio-box span {
  text-transform: capitalize;
}

.filter-options {
  border: 4px solid var(--mainColor);
  position: relative;
  z-index: 2;
  border-radius: 40px;
  background: #fff;
  padding: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  column-gap: 15px;
}

.filter-option {
  width: 100%;
}

.filter-options .css-1jqqwy7-control {
  border-radius: 20px !important;
  cursor: pointer !important;
}

#area_size_select .css-1s2u09g-control,
#city_select .css-1s2u09g-control,
#property_type .css-1s2u09g-control {
  cursor: pointer !important;
}

.filter-btn .submit-filter-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  height: 40px;
  border-radius: 20px;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.filter-btn .submit-filter-btn:hover {
  background-color: #000;
  color: var(--mainColor);
}

.filter-btn .submit-filter-btn span {
  margin-left: 3px;
}

/* End Home Intro */


/* Start Section Title */
.s-title-box {
  position: relative;
  padding-left: 14px;
}

.s-title-box:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: var(--mainColor);
  border-radius: 10px;
}

.s-title-box span {
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.6px;
}

.s-title-box h2 {
  color: var(--mainColor);
  font-size: 36px;
  text-transform: capitalize;
  margin: 0;
  font-weight: 600;
}


/* End Section Title */


/* Start Properies Section */
section.properties-section {
  position: relative;
}

section.properties-section .s-layer1 {
  position: absolute;
  top: -1.5px;
  right: 0;
  width: 65%;
  height: 3px;
  background: var(--mainColor);
}

section.properties-section.p80:before {
  content: '';
  position: absolute;
  top: 40px;
  right: 40px;
  background-image: url(/img/layer1.png);
  width: 220px;
  height: 500px;
  background-size: contain;
  opacity: 0.5;
  z-index: -1;
  background-repeat: no-repeat;
}

section.properties-section.p80:after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 20px;
  background-image: url(/img/layer2.png);
  width: 260px;
  height: 340px;
  background-size: contain;
  opacity: 0.4;
  z-index: -1;
}

button.btn.wish-btn.active svg {
  color: white;
}

.all-properties-box .btn {
  padding: 16px 20px;
  font-size: 16px;
  text-transform: capitalize;
}

.all-properties-box .btn {
  padding: 16px 20px;
  font-size: 16px;
  text-transform: capitalize;
}

.section-title-with-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section-tabs {
  background: #fff;
  padding: 15px;
  border-radius: 15px;
  display: flex;
  margin-bottom: 30px;
  border: 2px solid var(--mainColor);
  column-gap: 15px;
}

.section-tabs button {
  background: transparent;
  border: unset;
  text-transform: capitalize;
  transition: all .3s linear;
  font-weight: 600;
}

.section-tabs button.active {
  color: var(--mainColor);
}

.no-properties {
  color: #fff;
  text-align: center;
  font-size: 20px;
  opacity: .6;
  letter-spacing: 1px;
}

/* End Properies Section */


/* Start Services Section */
.service-box {
  border: 1px dashed var(--mainColor);
  border-radius: 30px;
  padding: 20px;
  background: rgb(255 255 255 / 85%);
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
}

section.services-section:after {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 65%;
  height: 3px;
  background: var(--mainColor);
}

.services-section .col-12.col-md-4:nth-of-type(1) .service-box,
.services-section .col-12.col-md-4:nth-of-type(2) .service-box,
.services-section .col-12.col-md-4:nth-of-type(3) .service-box {
  margin-bottom: 30px;
}

.service-box:hover {
  background: #fff;
}

.service-box .icon-box {
  position: absolute;
  top: -23px;
  right: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--mainColor);
  text-align: center;
  line-height: 52px;
  font-size: 24px;
  border-radius: 50px;
  color: #fff;
}

.service-box h5 {
  font-weight: bold;
  font-size: 24px;
}

.service-box p {
  line-height: 22px;
  opacity: 0.8;
  margin-bottom: 10px;
}

.service-box a {
  color: var(--mainColor);
  display: flex;
  align-items: center;
  display: inline-block;
}

.service-box a svg path {
  stroke: var(--mainColor);
}

.service-box a svg {
  margin-left: 4px;
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.service-box a:hover svg {
  margin-left: 8px;
}

/* End Services Section */


/* Start Property Card */
.property-card {
  background: #fff;
  box-shadow: 0px 3px 6px rgb(0 0 0 / 16%);
  border-radius: 40px;
  padding: 12px;
  border: 3px solid var(--mainColor);
  transition: all .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.property-card:hover {
  transform: translateY(-12px);
}

.property-card-image {
  text-align: center;
  position: relative;
  cursor: pointer;
}

.property-card-image img {
  border-radius: 38px;
  border: 2px solid #e89d2d5c !important;
}

.property-card-image .property-added-by img {
  border: none !important;
  padding: 4px !important;
  border-radius: 50px !important;
  object-fit: cover;
}

.property-card-image .property-added-by a .user_f_letter {
  color: var(--darkGreen);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 20px;
  font-weight: bold;
  background: #f1d3a6;
  border-radius: 50px;
}

.property-card-image .property-tags {
  position: absolute;
  top: 17px;
  right: 17px;
}

.property-card-image .property-tags span {
  background: #fff;
  padding: 8px 10px;
  border-radius: 15px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
}

.property-card-image .property-tags .t-rent {
  background: rgb(232 157 45 / 73%);
  color: #fff;
  transition: all .3s linear;
}

.property-card-image .property-tags .t-rent:hover {
  background: var(--mainColor);
}

.property-card-image .property-lc {
  position: absolute;
  top: 21px;
  left: 17px;
}

.property-card-image .property-lc span {
  background: rgb(0 0 0 / 40%);
  padding: 8px 10px;
  border-radius: 13px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  color: #fff;
}

.property-card-image .property-added-by {
  position: absolute;
  bottom: -12.5px;
  right: 25px;
}

.property-card-image .property-added-by a {
  display: block;
  background: #011f2a;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  padding: 4px;
  box-shadow: 0px 10px 20px rgb(30 98 232 / 24%);
}

.property-card-info .property-card-location svg {
  color: var(--mainColor);
  font-size: 20px;
}

.property-card-info .property-card-location a {
  font-size: 17px;
  font-weight: 500;
  color: #171819;
  margin-left: 4px;
}

.property-card-info .property-card-location {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.property-card-info .property-card-price span {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 18px;
  color: var(--darkGreen);
}

.property-card-info .property-card-price div {
  text-transform: uppercase;
  margin-left: 5px;
  color: var(--mainColor);
}

.property-card-info .property-card-price {
  margin-bottom: 6px;
}

.property-card-info .property-card-title a {
  display: block;
  margin-bottom: 6px;
}

.property-card-info .property-card-title a h5 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0;
  transition: all .3s linear;
  text-decoration: underline;
  text-decoration-color: var(--mainColor);
}

.property-card-info .property-card-title a h5:hover {
  color: var(--mainColor);
  text-decoration: underline;
}

.property-card-info .propert-card-status p {
  margin-bottom: 0;
  color: rgb(0 0 0 / 80%);
}

.property-card-info .propert-card-status p span {
  font-weight: 500;
  color: rgb(0 0 0 / 60%);
}

.propert-card-features {
  background: #f9f9f9;
  border-radius: 18px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  justify-content: space-between;
}

.propert-card-features .pcf-item .pcf-item-top span {
  font-weight: 600;
  color: var(--darkGreen);
  font-size: 16px;
}

.propert-card-features .pcf-item .pcf-item-top svg {
  margin-left: 4px;
  font-size: 20px;
  color: var(--mainColor);
}

.propert-card-features .pcf-item .pcf-item-top {
  display: flex;
  align-items: center;
}

.propert-card-features .pcf-item .pcf-item-label p {
  margin-bottom: 0;
  color: var(--darkGreen);
}

.propert-card-features .pcf-item .pcf-item-label {
  color: rgb(0 0 0 / 70%);
}

.property-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

.propert-card-buttons button.btn {
  background: var(--mainColor);
  color: white;
  border-radius: 50px;
  margin: 0;
  border: 0;
  height: 38px;
  width: 38px;
  text-align: center;
  line-height: 38px;
  padding: 0;
}

.propert-card-buttons button.btn:last-of-type {
  margin-left: 12px;
}

.propert-card-buttons button.btn svg {
  font-size: 20px;
  color: var(--darkGreen);
}

button.btn.wish-btn.active {
  background: #e55c29;
  color: #fff;
}

/* End Property Card */

/* Start Projects */
section.projects-section {
  position: relative;
  padding-bottom: 170px;
  background: #fff;
}

.projects-section:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 560px;
  background-image: url(/img/projects-bg.webp);
  background-size: cover;
  opacity: 0.3;
}

.project-slide-box {
  background: var(--darkGreenWithOpacity);
  border: 4px solid var(--mainColor);
  text-align: center;
  padding: 20px;
  border-radius: 40px;
}

.project-slide-info {
  text-align: left;
}

.project-slide-info h5 {
  margin-top: 5px;
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 10px;
}

.project-slide-info p {
  margin: 0;
  color: #ccc;
  line-height: 1.6;
}

.project-slide-image-box img {
  border-radius: 30px;
}

.projects-section .s-title-box span {
  color: #000;
  font-weight: 500;
}

.projects-section .col-12 {
  position: relative;
}

.projects-section .swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: -60px;
}

.projects-section .swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: -60px;
}

.projects-section .swiper-button-next,
.projects-section .swiper-button-prev {
  color: var(--mainColor);
}

.projects-section .swiper-pagination {
  bottom: -65px !important;
}

.projects-section .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #011f2a;
  opacity: 1;
}

.projects-section .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--mainColor);
}

/* End Projects */

/* Start Footer */
footer {
  background: #091c23;
  padding: 40px 0;
  padding-top: 100px;
  position: relative;
  padding-bottom: 85px;
}

footer .container {
  position: relative;
}

footer .container:after {
  content: "";
  position: absolute;
  bottom: -85px;
  left: 20px;
  width: calc(100% - 42px);
  height: 100px;
  background-image: url(/img/footer-bg.png);
  background-size: contain;
}

.contact-info-area {
  background: var(--darkGreen);
  padding: 15px;
  text-align: center;
  margin-top: -170px;
  margin-bottom: 60px;
  border: 2px solid var(--mainColorWithOpacity);
  border-radius: 50px;
}

.contact-info-area .c-info-box svg {
  color: var(--mainColor);
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-info-area .c-info-box h6 {
  color: #fff;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 10px;
}

.contact-info-area .c-info-box a {
  color: #ccc;
  transition: all .3s linear;
}

.contact-info-area .c-info-box a:nth-of-type(2) {
  margin-left: 10px;
}

.contact-info-area .c-info-box a:hover {
  text-decoration: underline;
  text-decoration-color: var(--mainColor);
  color: var(--mainColor);
}

.footer-app-info a {
  display: block;
  text-align: center;
}

.footer-a-info p {
  margin: 0;
  font-size: 16px;
  color: #ccc;
}

.footer-menu h6 {
  font-weight: 600;
  color: #fff;
  margin-bottom: 12px;
}

.footer-menu ul.footer-menu-list li.footer-menu-item {
  margin-bottom: 3px;
}

.footer-menu ul.footer-menu-list li.footer-menu-item a.footer-menu-link {
  color: #b9b9b9;
  transition: all .3s linear;
}

.footer-a-info {
  max-width: 90%;
}

.footer-menu ul.footer-menu-list li.footer-menu-item a.footer-menu-link:hover {
  text-decoration: underline;
  text-decoration-color: var(--mainColor);
  color: var(--mainColor);
}

/* End Footer */


/* Start Copyright */
.app-copyright-area {
  background: #000;
  padding: 10px 0;
}

.app-copyright-area .row {
  align-items: center;
}

.app-copyright-area .copyright-text {
  color: #fff;
  margin: 0;
}

.app-copyright-area .copyright-text a {
  color: #fff;
  margin: 0 7px;
  color: var(--mainColor);
}

.copyright-social-media-area ul.c-social-media-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  column-gap: 14px;
}

.copyright-social-media-area ul.c-social-media-list li.c-social-media-list-item a.c-social-media-list-link {
  color: black;
  background: var(--mainColor);
  display: block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 16px;
  transition: all .3s linear;
  border-radius: 50px;
}

.copyright-social-media-area ul.c-social-media-list li.c-social-media-list-item a.c-social-media-list-link:hover {
  background-color: #fff;
  color: var(--darkGreen)
}

/* End Copyright */









/* Start Single Property */
.property-page {
  padding-bottom: 100px;
}

.property-main-info.fixed-at-top {
  border-top: 1px solid var(--mainColorWithOpacity);
  border-bottom: 1px solid var(--mainColorWithOpacity);
  position: relative;
  background: var(--gray);
  background-position: 41% 0px;
  background-image: url('/img/property_test_7.jpg');
}

section.property-viewer.p50 {
  background: #011f2a;
}

.property-main-info.fixed-at-top:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gray);
  opacity: 0.9;
}

.pmii-box {
  display: flex;
}

.pmii-box img {
  max-width: 68px;
  max-height: 68px;
  border-radius: 50px;
  margin-right: 12px;
}

.property-main-info-inner .property-main-info-name {
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  margin-bottom: 10px;
}

.property-main-info-inner .property-main-info-location {
  display: flex;
  align-items: center;
}

.property-main-info-inner .property-main-info-location svg {
  font-size: 21px;
  color: var(--mainColor);
  margin-right: 6px;
}

.property-main-info-inner .property-main-info-location a {
  color: #ccc;
  font-size: 15px;
}

.amenities-area.property-details-inner {
  grid-template-columns: auto auto auto auto auto auto auto;
  margin-top: 30px;
  justify-content: space-evenly;
}

.details-inner-box.collapsed .amenities-area.property-details-inner {
  height: 0;
  overflow: hidden;
  margin: 0;
}

.property-main-info-price span {
  display: flex;
  align-items: center;
  color: #fff;
  grid-column-gap: 5px;
  -moz-column-gap: 5px;
  column-gap: 5px;
  font-size: 22px;
  font-weight: 500;
  justify-content: flex-end;
}

.property-main-info-inner {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.property-main-info-buttons .dpm-btn {
  height: 40px;
  font-size: 14px;
  font-weight: 500;
  background-color: var(--lightGreen);
  color: #fff;
}

.property-main-info-buttons a.btn {
  padding: 0;
  width: 40px;
  height: 40px;
  border-radius: 40px;
  background: var(--mainColor);
  margin: 0 6px;
  text-align: center;
  line-height: 38px;
}

.property-main-info-buttons a.btn svg {
  font-size: 25px;
  color: white
}

.property-main-info-price {
  margin-bottom: 10px;
}

.property-viwer-btns {
  background-color: #fff;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

section.property-viewer .row {
  align-items: center;
}

.property-viwer-btns .btn {
  display: flex;
  flex-direction: column;
  position: relative;
  align-items: center;
  outline: none;
  box-shadow: unset;
}

.property-viwer-btns .btn svg {
  font-size: 18px;
  transition: all .3s linear;
}

.property-viwer-btns .btn:hover .view-btn-icon {
  background: var(--darkGreen);
}

.property-viwer-btns .btn.active .view-btn-icon {
  background: var(--darkGreen);
}

.property-viwer-btns .btn:hover .view-btn-icon.active {
  background: var(--darkGreen);
}

.property-viwer-btns .btn:hover .view-btn-icon svg {
  color: var(--mainColor);
}

.property-viwer-btns .btn.active .view-btn-icon svg {
  color: var(--mainColor);
}

.property-viwer-btns .view-btn-icon {
  width: 40px;
  transition: all .3s linear;

  height: 40px;
  background-color: var(--mainColor);
  line-height: 40px;
  border-radius: 50px;
  margin-bottom: 3px;
}

.property-viwer-btns span {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 12px;
}

.property-viwer-btns .btn.active:before {
  opacity: 1;
  border-right-color: #fff;
}

.property-viwer-btns .btn:before {
  content: '';
  position: absolute;
  top: 50%;
  left: -17px;
  transform: translateY(-50%);
  border-width: 8px;
  border-color: transparent;
  border-style: solid;
  opacity: 0;
}

.property-view-video iframe {
  width: 100%;
  min-height: 550px;
  border-radius: 30px;
}

.pdf-as-images {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  border-radius: 30px;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.pdf-as-images img {
  width: 100%;
  padding: 1px;
  background: var(--mainColor);
  border-radius: 20px;
}

.property-view-box.property-view-pdf {
  background: #091c23;
  padding: 15px;
  border-radius: 20px;
  border: 1px solid #e89d2d26;
}

.property-view-3d iframe {
  width: 100%;
  min-height: 580px;
  border-radius: 30px;
}

.property-view-location iframe {
  width: 100%;
  min-height: 580px;
  border-radius: 30px;
}

.property-details-inner {
  display: grid;
  grid-template-columns: auto auto auto;
  grid-row-gap: 5px;
  row-gap: 5px;
  grid-column-gap: 10px;
  margin: 0 32px;
  transition: all .3s linear;
}

.property-details-inner .pdi-box {
  display: flex;
  align-items: center;
  column-gap: 5px;
}

.property-details-inner .pdi-box .pdi-name {
  color: var(--mainColor);
  font-weight: 600;
  text-transform: capitalize;
}

.property-details-inner .pdi-box .pdi-value {
  font-weight: 500;
  color: rgb(255 255 255 / 81%);
}

.big-slider .slick-list {
  border-radius: 30px;
}

.slick-slider.big-slider .slick-slide .slider__item {
  min-height: 500px;
  height: 580px;
}

.slick-slider.big-slider .slick-slide .slider__item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px;
}

.slick-slider.big-slider {
  width: 87%;
}

.slick-slider.small-slider {
  width: 12%;
  height: 100%;
  overflow: hidden;
  max-height: 590px;
}

.property-view-box.property-view-images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.small-slider .slider__item img {
  width: 100%;
  min-height: 110px;
  border-radius: 20px;
}

.small-slider .slick-active.slick-current .slider__item img {
  background-color: var(--mainColor);
  border: 2px solid var(--mainColor);
}

.small-slider .slider__item {
  position: relative;
}

.small-slider .slider__item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 20px;
  opacity: 0.5;
  cursor: pointer;
  transition: all .3s linear;
}

.small-slider .slider__item:hover:before {
  opacity: 0;
}

.small-slider .slick-active.slick-current .slider__item:before {
  opacity: 0;
}

.custom-icon:before {
  display: none;
}

.big-slider .custom-icon.slick-arrow,
.big-slider .custom-icon.slick-arrow i {
  background: var(--mainColor);
  z-index: 2;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 39px;
  border-radius: 40px;
  display: block;
}

.big-slider .custom-icon.slick-next {
  right: 50px;
}

.big-slider .custom-icon.slick-prev {
  left: 50px;
}

.big-slider .custom-icon.slick-arrow svg {
  width: 26px;
  fill: white;
}

.big-slider .custom-icon.slick-arrow:after {
  content: '';
  position: absolute;
  top: -9px;
  left: -9px;
  width: calc(100% + 18px);
  height: calc(100% + 18px);
  background-color: #fff;
  border-radius: 60px;
  z-index: -1;
  opacity: 0.3;
}

.custom-icon.slick-arrow.slick-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

section.property-details {
  background-color: var(--gray);
  border-top: 3px solid var(--mainColor);
  border-bottom: 3px solid var(--mainColor);
}

.section-inner-title {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  position: relative;
  cursor: pointer;
  transition: all .3s linear;
}

.section-inner-title svg {
  font-size: 35px;
  color: var(--mainColor);
  transition: all .3s linear;
}

.section-inner-title h4 {
  margin: 0;
  display: inline-block;
  position: relative;
  color: #fff;
}

.section-inner-title h4:after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 70%;
  height: 3px;
  background-color: var(--mainColor);
}

.details-inner-box {
  margin-bottom: 10px;
  position: relative;
  border-bottom: 2px solid var(--mainColor);
  padding-bottom: 30px;
  transition: all .3s linear;
}

.details-inner-box:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.property-details-inner .pdi-box .pdi-icon {
  width: 20px;
  height: 20px;
  background: var(--mainColor);
  text-align: center;
  line-height: 18px;
  border-radius: 50px;
}

.property-details-inner .pdi-box .pdi-icon svg {
  font-size: 21px;
  margin-left: -1px;
}

.details-inner-box.collapsed .property-details-inner {
  height: 0;
  overflow: hidden;
}

.details-inner-box.collapsed .section-inner-title {
  margin: 0;
}

.details-inner-box.collapsed .section-inner-title h4:after {
  display: none;
}

.details-inner-box.collapsed {
  padding-bottom: 15px;
}

.details-inner-box.collapsed .section-inner-title svg {
  transform: rotate(180deg);
}

.property-options-buttons {
  display: flex;
  flex-direction: column;
  padding: 10px 0;
  margin-top: 20px;
  align-items: center;
}

.property-options-buttons .btn {
  outline: none;
  box-shadow: unset;
  width: 40px;
  transition: all .3s linear;
  height: 40px;
  background-color: var(--mainColor);
  border-radius: 50px;
  margin-bottom: 10px;
  padding: 0;
}

.property-options-buttons .btn svg {
  font-size: 20px;
}

.property-options-buttons .btn:last-of-type {
  margin: 0;
}

.details-inner-box .section-inner-title {
  flex-direction: row-reverse;
  justify-content: space-between;
}


/* End Single Property */




/* Start Login */
.login-page {
  height: 80vh;
  background-size: cover;
  background-position: center bottom;
  position: relative;
}

.login-page:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--darkGreen);
  opacity: 0.72;
}

.login-page .d-cell {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.login-page .d-table {
  height: 100%;
  width: 100%;
}

.login-area.login-page-content {
  color: #fff;
  position: relative;
  z-index: 1;
  text-align: center;
}

.login-area.login-page-content .form-group {
  position: relative;
  margin-bottom: 20px;
}

.login-area.login-page-content .form-group .input-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  background: rgb(255 255 255 / 36%);
  border-radius: 50px;
  transition: all .3s linear;
}

.login-area.login-page-content .form-group input {
  height: 50px;
  width: 100%;
  border-radius: 30px;
  background: rgb(143 153 176 / 65%);
  border: 1px solid #fff;
  padding-left: 55px;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  box-shadow: unset;
  transition: all .3s linear;
}

.login-area.login-page-content .form-group .show-password-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

.login-area.login-page-content .form-group .show-password-icon svg {
  font-size: 20px;
  cursor: pointer;
}

.login-area.login-page-content .form-group input::placeholder {
  color: var(--darkGreen);
  font-weight: 500;
}

.login-area.login-page-content .form-group .input-icon svg {
  font-size: 18px;
  color: var(--darkGreen);
}

.login-area.login-page-content .form-group input:focus {
  border: 1px solid var(--mainColor);
}

.form-submit-button button {
  height: 50px;
  width: 100%;
  border-radius: 30px;
  background: var(--darkGreen);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  outline: none;
  box-shadow: unset;
  transition: all .3s linear;
}

.login-form-options {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
}

.login-form-options .form-option a {
  color: white;
  text-decoration: underline;
  transition: all .3s linear;
}

.login-form-options .form-option a:hover {
  color: var(--mainColor);
  text-decoration-color: var(--mainColor);
}

/* End Login */

/* Start Register */
.register .custom-radio-box input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.register .custom-radio-box {
  position: relative;
  width: calc(50% - 10px);
}

.register .custom-radio-box .crb-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
  background: rgb(143 153 176 / 65%);
  border: 1px solid #fff;
  height: 50px;
  border-radius: 50px;
  transition: all .3s linear;
}

.register .css-12ytxse-option:active {
  background: var(--mainColor) !important;
}

.register .css-1agelsp-option:active {
  background: #f5bd69;
}

.register .form-group.custom-radios {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.login-page-content .css-6j8wv5-Input {
  height: 40px;
}

.login-page-content .css-6j8wv5-Input input {
  height: 0 !important;
}

.register .css-1pndypt-Input input {
  height: 35px !important;
}

.register .custom-radio-box .crb-item .crb-img-box {
  width: 35px;
  height: 35px;
  background: #fff;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}

.register .custom-radio-box .crb-item .crb-img-box img {
  width: 18px;
}

.register .custom-radio-box .crb-item span {
  font-weight: 500;
  color: var(--darkGreen);
  font-size: 16px;
  transition: all .3s linear;
}

.register .custom-radio-box input:checked~.crb-item {
  background: var(--mainColor);
}

.register .custom-radio-box input:checked~.crb-item span {
  color: #fff;
}

.css-14el2xx-placeholder {
  font-size: 12px;

}

.register .css-qc6sy-singleValue,
.register .css-14el2xx-placeholder {
  font-weight: 500;
  color: #1c1c1c !important;
  font-size: 16px;
  text-align: left;
}

.login-page-content .css-1jqqwy7-control,
.login-page-content .css-ckdblj-control {
  border-radius: 40px;
  padding: 0 10px;
  cursor: pointer;
  background-color: rgb(143 153 176 / 65%);
}

.register .css-319lph-ValueContainer {
  height: 100%;
}

.form-submit-button button:hover {
  color: var(--mainColor);
}

.register .react-tel-input .country-list .country {
  padding: 7px 9px;
  color: #333;
  text-align: left;
}

.register .react-tel-input .flag-dropdown {
  border-radius: 30px;
  width: 35px;
  height: 35px;
  top: 50%;
  transform: translateY(-50%);
  background: rgb(255 255 255 / 36%);
  left: 10px;
  bottom: auto;
  border: none;
}

.register .react-tel-input .selected-flag:hover,
.register .react-tel-input .selected-flag:focus {
  background: rgb(255 255 255 / 36%) !important;
  border-radius: 30px !important;
}

.register .react-tel-input .flag-dropdown.open {
  border-radius: 30px;
}

.register .react-tel-input .selected-flag {
  width: 35px;
  border-radius: 30px !important;
}

/* End Register */



/* Start My Profile */
.arrow-to-right.property-viwer-btns .btn:before {
  left: auto;
  right: -17px;
}

.arrow-to-right.property-viwer-btns .btn.active:before {
  border-right-color: transparent;
  border-left-color: #fff;
}

.profile-view-area {
  background: #fff;
  padding: 20px 0;
  border-radius: 30px;
  border: 2px solid var(--mainColor);
}

.profile-viewer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--mainColor);
  padding-bottom: 20px;
  column-gap: 45px;
}

.pvh-button button {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
  transition: all .3s linear;
}

.units-view .pvh-button .pvh-icon svg {
  font-size: 42px;
}

.pvh-button.active span {
  color: #000;
}

div#city_select .css-1jqqwy7-control {
  border-radius: 50px;
}


.pvh-button .pvh-icon svg {
  font-size: 28px;
  color: #8f8f8f;
  transition: all .3s linear;
}


.pvh-button .pvh-icon {
  width: 80px;
  background-color: #e0e0e0;
  height: 80px;
  display: flex;
  align-items: center;
  transition: all .3s linear;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--mainColor);
}

.pvh-button.active .pvh-icon {
  background-color: var(--mainColor);
}

.pvh-button.active .pvh-icon svg {
  color: #fff;
}

.pvh-button span {
  text-align: center;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 18px;
  transition: all .3s linear;
  margin-top: 10px;
  color: #888;
}

.p-d-v-content input {
  width: 100%;
  height: 45px;
  background: #eaeaea;
  border: 1px solid var(--mainColor);
  border-radius: 30px;
  padding: 0 15px;
  outline: none;
  transition: all .3s linear;
  font-weight: 500;
  color: #000;
}

.p-d-view {
  padding: 20px 60px;
}

.p-d-v-header {
  text-align: center;
  margin-bottom: 30px;
}

.p-d-v-content .input-with-icon {
  position: relative;
}

.p-d-v-content .input-with-icon svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
  font-size: 16px;
}

.p-d-v-content label {
  margin-bottom: 6px;
  text-transform: capitalize;
  font-weight: 500;
  color: #484848;
}

.p-d-v-content .form-group {
  margin-bottom: 18px;
}

.p-d-v-content input:focus {
  border-width: 2px;
}

.f-inputs {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.f-inputs .form-group {
  width: calc(50% - 12.5px);
}

.p-d-v-content .input-with-icon.textarea svg {
  top: 18px;
  transform: unset;
}

a.navbar-login-link.mobile-menu-link {
  justify-content: flex-start;
}

.mobile-menu-list .navbar-auth-area-inner {
  display: flex;
  column-gap: 10px;
}

.p-d-v-content textarea {
  width: 100%;
  min-height: 125px;
  background: #eaeaea;
  border: 1px solid var(--mainColor);
  border-radius: 30px;
  padding: 15px;
  outline: none;
  transition: all .3s linear;
  font-weight: 500;
  resize: none;
  color: #000;
}

.pvc-submit-button {
  text-align: center;
}

.pvc-submit-button button.btn {
  background-color: var(--mainColor);
  border-radius: 40px;
  border: 1px solid #8b8b8b;
  padding: 16px 25px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: #fff;
}

.p-d-v-content .col-md-12 .form-group {
  margin-bottom: 0;
}

.drag-box {
  border: 2px dashed var(--mainColor);
  padding: 40px;
  border-radius: 30px;
  max-width: 70%;
  margin: 15px auto;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.d-u-image {
  text-align: center;
}

.d-u-image img {
  object-fit: cover;
  border-radius: 500px;
}

.drag-box svg {
  display: block;
  font-size: 58px;
  color: var(--mainColor);
  margin-bottom: 14px;
}

.drag-box span {
  font-weight: 500;
  margin-bottom: 14px;
  font-size: 17px;
  color: #525252;
}

.drag-box button {
  background: var(--lightGreen);
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  text-transform: capitalize;
}

.upladed_images_box {
  text-align: center;
}

.upload__image-wrapper {
  margin-top: 5px;
}

.upladed_images_box .image-item__btn-wrapper button {
  background: #333;
  border: none;
  margin: 0 5px;
  width: 35px;
  height: 35px;
  border-radius: 40px;
  color: #fff;
  line-height: 33px;
}

.units-view-box {
  padding: 20px;
}

.units-view-box .property-card {
  margin-bottom: 30px;
}

.units-view-box .property-card .property-card-image img {
  object-fit: cover;
}

.units-view-box .property-card-info .property-card-location a {
  font-size: 15px;
}

.units-view-box .property-card-image .property-lc span {
  font-size: 13px;
}

.units-view-box .property-card-image .property-tags span {
  font-size: 11px;
}

.units-view-box .property-card-info .property-card-price span {
  font-size: 14px;
}

.units-view-box .property-card-title a h5 {
  font-size: 20px;
}

.units-view-box button.btn.share-btn {
  display: none;
}

/* End My Profile */




/* Start Search Page */
aside.properties-filter {
  background: #fcfcfc;
  padding: 20px;
  border-radius: 20px;
}

.filtered-properties {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
}

.search-property-layout-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

aside.properties-filter .filter-group h5.filter-group-title {
  font-size: 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-weight: 600;
}

.fg-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fg-top .reset-input-box span {
  display: none;
}

.mobile-search-filter-btn {
  display: none;
}

.reset-input-box {
  margin-bottom: 10px;
  cursor: pointer;
  width: 24px;
  border: 1px solid #525252;
  height: 24px;
  background: #6e6e6e;
  color: #fff;
  text-align: center;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s linear;
}

.reset-input-box svg {
  font-size: 16px;
  transition: all .3s linear;
}

.reset-input-box:hover svg {
  color: var(--mainColor);
}

.reset-input-box:hover {
  background: transparent;
  border: 1px solid var(--mainColor);
}

.list-view .property-card-info {
  margin: 0 15px;
  width: 100%;
}

.list-view .property-card-image>a {
  display: block;
  overflow: hidden;
  height: 100%;
}

.list-view .property-card-image .property-added-by {
  bottom: 17.5px;
  right: 26px;
}

.list-view .property-card-image>a span {
  height: 100% !important;
}

.property-card.list-view {
  display: flex;
  align-items: center;
}

aside.properties-filter {
  position: sticky;
  top: 110px;
}

aside.properties-filter .filter-group h5.filter-group-title svg {
  align-self: self-end;
  margin-right: 5px;
  color: var(--mainColor);
}

.splhr-item svg {
  font-size: 18px;
  cursor: pointer;
  position: relative;
  transition: all .3s linear;
}

.splhr-item.active svg {
  color: var(--mainColor);
}


.splhr-item:first-of-type:before {
  content: '';
  position: absolute;
  top: 0;
  right: -11px;
  width: 2px;
  height: 100%;
  background: #33333336;
  display: block;
}

.splhr-item {
  position: relative;
  display: flex;
}

aside.properties-filter .filter-group {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e4e3e3;
}

.filter-group-content.d-f {
  display: flex;
  align-items: center;
  column-gap: 10px;
}




aside.properties-filter .filter-group .custom-checkbox {
  position: relative;
}

aside.properties-filter .filter-group .custom-checkbox input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

aside.properties-filter .filter-group .custom-checkbox span {
  background: #fff;
  height: 30px;
  width: 30px;
  display: block;
  color: #000;
  text-align: center;
  line-height: 30px;
  border-radius: 5px;
  border: 1px solid #e4e3e3;
  font-weight: 500;
}

aside.properties-filter .filter-group .custom-checkbox input:checked~span {
  border-color: var(--mainColor);
  color: var(--mainColor);
}

.example-thumb {
  cursor: pointer;
  position: absolute;
  z-index: 100;
  background: #ffffff;
  border: 3px solid var(--mainColor);
  border-radius: 100%;
  display: block;
  box-shadow: 0 0 2px 0 rgb(0 0 0 / 44%);
}

.example-thumb.active {
  background-color: var(--mainColor);
}

.search-property-layout-header .splh-left span p {
  display: inline-block;
  margin: 0;
  color: var(--mainColor);
  margin-right: 5px;
}

.example-track {
  position: relative;
  background: #ddd;
}

.example-track.example-track-0 {
  background: var(--mainColor);
}

.horizontal-slider .example-track {
  top: 20px;
  height: 2px;
  background: #e4e3e3;
}

.horizontal-slider .example-thumb {
  top: 12px;
  width: 16px;
  outline: none;
  height: 16px;
  line-height: 50px;
}

.filter-group-content .horizontal-slider {
  margin-top: -10px;
  z-index: 0;
}

.horizontal-slider {
  min-height: 42px;
}

.example-track.example-track-1 {
  background: var(--mainColor);
}

.filter-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 12px;
}

.filter-buttons .btn {
  border: 2px solid #e4e3e3;
  background-color: white;
  border-radius: 20px;
  padding: 8px 20px;
  text-transform: capitalize;
  font-weight: 500;
  font-size: 14px;
  color: var(--darkGreen);
}

.filter-buttons .btn.filter-apply {
  background-color: var(--mainColor);
  color: white;
}

.search-property-layout-content .property-card-info .property-card-price span {
  font-size: 14px;
}

.search-property-layout-content .property-card-info .property-card-title a h5 {
  font-size: 16px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.search-property-layout-content .property-card-info .property-card-location a {
  font-size: 14px;
}

.search-property-layout-content .property-card {
  padding: 8px;
  border-radius: 16px;
  margin-bottom: 30px;
  border-width: 2px;
}

.search-property-layout-content .property-card-info .property-card-location {
  margin-bottom: 4px;
}

.search-property-layout-content .propert-card-features {
  column-gap: 7px;
  padding: 6px 8px;
}

.search-property-layout-content .property-card-bottom {
  margin-top: 4px;
}

.search-property-layout-content .propert-card-buttons button.btn {
  width: 34px;
  height: 34px;
  line-height: 34px;
}

.search-property-layout-content .propert-card-buttons button.btn svg {
  font-size: 18px;
}

.search-property-layout-content .property-card-image img {
  border-radius: 14px;
}


.search-property-layout-header .splh-right {
  display: flex;
  align-items: center;
  column-gap: 15px;
}

.search-property-layout-header {
  margin-bottom: 15px;
  border-bottom: 1px solid #e4e3e3;
  padding-bottom: 15px;
}

.search-property-layout-header .splh-left span {
  font-weight: 500;
  font-size: 16px;
}

/* End Search page */


/* Start Contact us */
.contact-us-page .contact-bg:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 30px;
  background-color: var(--darkGreen);
  opacity: 0.8;
}

.contact-us-page .col-md-12 .contact-us-page-title,
.contact-us-page .col-md-12 .contact-us-form {
  z-index: 2;
  position: relative;
}

.contact-us-page-title {
  text-align: center;
  margin: 40px 0;
}

.contact-us-page-title H1 {
  color: white;
  margin-bottom: 10px;
}

.contact-us-page-title P {
  color: #979797;
  width: 40%;
  margin: 0 auto;
  line-height: 24px;
}

.contact-us-form form .form-group input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid #bfbfbf;
  height: 45px;
  outline: none;
  transition: all .3s linear;
  font-size: 16px;
  color: #fff;
}

.contact-us-page .col-md-12 .contact-us-form form {
  padding: 0 140px;
}

.contact-us-form form .form-group {
  margin-bottom: 25px;
}

.contact-us-form form .form-group input:focus,
.contact-us-form form .form-group textarea:focus {
  border-color: var(--mainColor);
}

.contact-us-form form .form-group textarea {
  min-height: 110px;
  font-size: 16px;
  color: #fff;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #bfbfbf;
  width: 100%;
  resize: none;
  outline: none;
}

.contact-us-form form .form-submit-btn {
  text-align: right;
  margin-bottom: 40px;
}

.contact-us-form form .form-submit-btn .btn {
  background-color: var(--mainColor);
  padding: 12px 25px;
  border-radius: 40px;
}

.contact-us-form .react-tel-input .flag-dropdown {
  border: none;
  background: transparent;
  border-radius: 0;
}

.contact-us-form .react-tel-input .selected-flag {
  border-radius: 0;
}

.contact-us-form form .form-group .react-tel-input input {
  border-radius: 0;
  outline: none !important;
  box-shadow: none;
}

.contact-us-form .react-tel-input .flag-dropdown.open {
  background: transparent;
  border-radius: 0;
}

.contact-us-form .react-tel-input .flag-dropdown.open .selected-flag {
  background-color: transparent;
  border-bottom: 0;
}

.contact-us-form .react-tel-input .selected-flag:hover,
.contact-us-form .react-tel-input .selected-flag:focus {
  background-color: transparent;
}

.contact-us-form form .form-group .react-tel-input input:focus {
  outline: none;
}

/* End Contact us */

/* Start Forget Password */
.forget-password {
  position: relative;
}

/* End Forget Password */



/* Start Client Profile */
.client-header {
  border: 3px solid var(--mainColor);
  background: var(--gray);
  padding: 30px;
  border-radius: 30px;
}

.client-header .sbf {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
}

.client-header-middle .clinet-main-info>span {
  color: var(--mainColor);
  font-size: 18px;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

.clinet-main-info {
  text-align: center;
}

.client-header-middle .clinet-main-info h3 {
  color: white;
  font-size: 38px;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0;
}

.mapbox-page iframe {
  height: 100%;
}

.client-badge {
  display: flex;
  align-items: center;
  column-gap: 20px;
  margin-top: 30px;
  justify-content: center;
}


.client-header-right {
  display: flex;
  flex-direction: column;
}

.client-header-right .chr-top,
.client-header-right .chr-bottom {
  display: flex;
  justify-content: space-between;
}

.clinet-contact-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 30px;
  margin-top: 10px;
}

.client-badge p {
  margin: 0;
  background: var(--mainColor);
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 400;
}

.client-header-right .chr-item {
  margin-left: 30px;
  margin-bottom: 30px;
}

.client-header-right .chr-item:first-of-type {
  margin-left: 0;
}

.client-header-right .chr-item span {
  color: var(--mainColor);
  font-size: 16px;
}

.client-header-right .chr-item p {
  margin: 0;
  color: white;
}

.client-header-right .chr-bottom .chr-item {
  margin-bottom: 0;
}

.clinet-contact-btns .client-contact-btn .btn {
  color: white;
  font-size: 18px;
}

.clinet-contact-btns .client-contact-btn .btn span {
  position: relative;
}

.clinet-contact-btns .client-contact-btn .btn span:after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--mainColor);
}

.clinet-contact-btns .client-contact-btn .btn svg {
  color: var(--mainColor);
  font-size: 20px;
  margin-right: 3px;
}

.clinet-more-details {
  margin-top: 25px;
  background: #e8eced;
  padding: 18px;
  border-radius: 10px;
}

.clinet-more-details .s-title-box span {
  color: black;
  font-weight: 600;
}

.clinet-more-details.xcsa section.properties-section.p80 {
  padding: 0;
}

.clinet-more-details.xcsa section.properties-section.p80:before,
.clinet-more-details.xcsa section.properties-section.p80:after {
  display: none;
}

.clinet-more-details.xcsa {
  padding: 0;
  background: unset;
}

.clinet-more-details.xcsa .s-title-box span {
  color: white;
  font-weight: 500;
}

/* End Client Profile */

/* Start Add Property */
.add-property-viwer-btns {
  margin: 0 15px;
}

.add-property-viwer-btns .view-btn-icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
}

.add-property-viwer-btns .view-btn-icon svg {
  font-size: 42px;
}

.add-property-viwer-btns .btn span {
  font-size: 14px;
  margin-top: 5px;
}

.arrow-to-right.add-property-viwer-btns .btn:before {
  right: -37px;
  border-width: 18px;
}

section.add-property-form-section {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
}

.add-property-page form .form-group label {
  margin-bottom: 4px;
  font-size: 13px;
  font-weight: 500;
  color: #808080;
  font-family: 'Noto Kufi Arabic', sans-serif;
  padding-left: 15px;
  text-transform: capitalize;
}

.add-property-page form .form-group input {
  border-radius: 60px;
  height: 50px;
  border: 1px solid var(--mainColor);
  background: #eaeaea;
  outline: none;
  font-weight: 500;
  box-shadow: unset;
  font-size: 15px;
  transition: all .3s linear;
  padding: 0 14px;
}

.add-property-page form .css-1jqqwy7-control {
  background: #eaeaea;
  border-radius: 30px;
  padding-right: 10px;
}

.add-property-page form .form-group input:focus {
  border-radius: 5px;
  background: #fff;
  padding: 0 8px;
}

.add-property-page form .form-group {
  margin-bottom: 20px;
}

.add-property-page .form-checkboxs {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 20px;
}

.add-property-page .form-checkboxs .cb-item {
  display: flex;
  align-items: center;
  column-gap: 20px;
}

.add-property-page form .aft-item {
  margin-bottom: 10px;
  position: relative;
  cursor: pointer;
}

.add-property-page form .aft-item h3 {
  margin: 0;
  font-size: 18px;
}



nav.mobile.navbar,
.mobile-menu {
  display: none;
}

.payment-type-tabs {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-bottom: 20px;
  border-bottom: 2px solid #f4f5f6;
}

.payment-type-tabs .ptt-title button {
  color: #cdcdcd;
  border: 0;
  font-size: 24px;
  letter-spacing: 0.9px;
  font-weight: bold;
  background: transparent;
  position: relative;
  text-transform: capitalize;
}

.payment-type-tabs .ptt-title.active button {
  color: var(--mainColor);
}

.add-property-page form .collapsed .aft-item {
  padding-top: 10px;
  color: #838383;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--mainColorWithOpacity);

}

.add-property-page form .aft-content {
  height: auto;
  overflow: unset;
}

.add-property-page form .collapsed .aft-content {
  height: 0;
  overflow: hidden;
  transition: all .3s linear;
}

.add-property-page form .aft-item {
  color: var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.add-property-page form .aft-item span {
  font-weight: 500;
  font-size: 16px;
  color: #c7c7c7;
}

.add-property-page form .add-form-tabs div:first-of-type .aft-item {
  padding-top: 0;
}

.add-property-page form .aft-item {
  padding: 0 !important;
  margin: 0 !important;
}

.add-property-page form .aft-item:before {
  right: 0;
  left: auto;
}

.add-property-page form .aft-item h3 {
  padding: 20px 0;
  padding-bottom: 23px;
}

.add-form-tabs .upladed_images_box {
  display: grid;
  grid-template-columns: auto auto auto;
  row-gap: 15px;
}

.add-form-tabs .upladed_images_box img {
  width: 250px;
  margin-bottom: 10px;
  height: 200px;
  object-fit: cover;
}

.payment-type-tabs.second-tabs {
  margin-top: 20px;
  margin-bottom: 20px;
}

.form-btn-box {
  margin-top: 20px;
  text-align: center;
}

.add-property-page form .form-group .css-6j8wv5-Input input {
  height: 36px;
}

.add-property-page form .aft-content textarea {
  width: 100%;
  min-height: 200px;
  border-radius: 40px;
  border: 1px solid var(--mainColor);
  background: #eaeaea;
  outline: none;
  font-weight: 500;
  resize: unset;
  box-shadow: unset;
  padding: 14px;
  font-size: 15px;
}

.form-btn-box button {
  background: var(--mainColor);
  border: 0;
  color: white;
  padding: 12px 20px;
  border-radius: 40px;
  font-size: 16px;
  text-transform: capitalize;
  font-weight: 500;
  letter-spacing: 1px;
}

.payment-type-tabs .ptt-title button:after {
  content: '';
  position: absolute;
  bottom: -27px;
  height: 6px;
  left: -8px;
  width: calc(100% + 16px);
  background: #fae9d0;
  opacity: .4;
  transition: all .3s linear;
}

.payment-type-tabs .ptt-title.active button:after {
  background: var(--mainColor);
}

.add-property-page form .aft-item svg {
  transform: rotate(180deg);
  font-size: 40px;
  color: var(--mainColor);
}

.add-property-page form .collapsed .aft-item svg {
  transform: rotate(0);
  color: rgb(131 131 131 / 79%);

}

.add-property-page form .collapsed .aft-content {
  padding: 0;
}

.add-property-page form .aft-content {
  padding: 10px;
  background: #f9f9f9;
  border-radius: 10px;
}

.details-inner-box.collapsed:last-of-type {
  padding: 0;
}

/* End Add Property */

/* Start Appointment Booking */
.property-main-info-inner {
  position: relative;
}

.appoiment-dropdown-menu.dropdown-menu.show input {
  display: block;
  width: 100%;
}

.appoiment-dropdown-menu.dropdown-menu input .col-md-6 {
  word-break: break-all;
}

.appoiment-dropdown-menu.dropdown-menu form .form-group input {
  height: 42px;
  min-width: 290px;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.appoiment-dropdown-menu.dropdown-menu.show {
  margin-top: 14px;
  padding: 10px;
}

.appoiment-dropdown-menu.dropdown-menu form .form-group {
  margin-bottom: 10px;
}

.property-page .appoiment-dropdown-menu.dropdown-menu {
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 14px;
}


.overlay:not(section) {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #3e3d3db3;
}

.appoiment-dropdown-menu.dropdown-menu form .form-group textarea {
  height: 170px;
  width: 290px;
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 0 10px;
}

.appoiment-dropdown-menu.dropdown-menu form button {
  background-color: var(--mainColor);
  color: black;
}

.appoiment-dropdown-menu.dropdown-menu .form-submit-btn {
  text-align: center;
}

.appoiment-dropdown-menu.dropdown-menu form .form-group .react-tel-input input {
  width: 100%;
  text-indent: 36px;
}

/* End Appointment Booking */

.notification-wrap {
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 390px;
  background: #fff;
  border-radius: 4px;
  z-index: 999;
}

.notification-content {
  padding: 12px;
  position: relative;
}

.notification-text {
  padding-right: 50px;
}

.notification-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.notification-close button {
  background: none;
  border: none;
  background: #333;
  color: #fff;
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.notification-text p {
  margin: 0;
}

.notification-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.notification-links a.noti-blue-btn {
  background: #e89d2d;
  padding: 5px 10px;
  color: #fff;
  border-radius: 5px;
}

.notification-links a.noti-gray-btn {
  background: #011f2a;
  padding: 5px 30px;
  color: #fff;
  border-radius: 5px;
}

.loading-wrap {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 40%;
  background: #fff;
  min-height: 24%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-radius: 20px;
  border: 2px solid #eee;
}

.loading-icon {
  margin-bottom: 10px;
}

.loading-txt span {
  font-size: 20px;
  color: #767676;
}

.property-status {
  position: absolute;
  bottom: 20px;
  right: 10px;
  background: #fff;
  border-radius: 6px;
  padding: 2px 6px;
  font-size: 13px;
}

.note-box {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  width: 40px;
  height: 40px;
  background: #c3c3c3;
  border: 1px solid#b5b5b5;
  border-radius: 70px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.aft-four-content.aft-content {
  position: relative;
}

.note-box svg {
  font-size: 26px;
}


.rating {
  display: flex;
  width: 100%;
  justify-content: center;
  overflow: hidden;
  flex-direction: row-reverse;
  height: 150px;
  position: relative;
}

.rating-0 {
  filter: grayscale(100%);
}

.rating>input {
  display: none;
}

.rating>label {
  cursor: pointer;
  width: 40px;
  height: 40px;
  margin-top: auto;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23e3e3e3' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 76%;
  transition: 0.3s;
}

.rating>input:checked~label,
.rating>input:checked~label~label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23fcd93a' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.rating>input:not(:checked)~label:hover,
.rating>input:not(:checked)~label:hover~label {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='126.729' height='126.73'%3e%3cpath fill='%23d8b11e' d='M121.215 44.212l-34.899-3.3c-2.2-.2-4.101-1.6-5-3.7l-12.5-30.3c-2-5-9.101-5-11.101 0l-12.4 30.3c-.8 2.1-2.8 3.5-5 3.7l-34.9 3.3c-5.2.5-7.3 7-3.4 10.5l26.3 23.1c1.7 1.5 2.4 3.7 1.9 5.9l-7.9 32.399c-1.2 5.101 4.3 9.3 8.9 6.601l29.1-17.101c1.9-1.1 4.2-1.1 6.1 0l29.101 17.101c4.6 2.699 10.1-1.4 8.899-6.601l-7.8-32.399c-.5-2.2.2-4.4 1.9-5.9l26.3-23.1c3.8-3.5 1.6-10-3.6-10.5z'/%3e%3c/svg%3e");
}

.emoji-wrapper {
  width: 100%;
  text-align: center;
  height: 100px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
}

.emoji-wrapper:before,
.emoji-wrapper:after {
  content: "";
  height: 15px;
  width: 100%;
  position: absolute;
  left: 0;
  z-index: 1;
}

.emoji-wrapper:before {
  top: 0;
  background: linear-gradient(to bottom, white 0%, white 35%, rgba(255, 255, 255, 0) 100%);
}

.emoji-wrapper:after {
  bottom: 0;
  background: linear-gradient(to top, white 0%, white 35%, rgba(255, 255, 255, 0) 100%);
}

.emoji {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.emoji>svg {
  margin: 15px 0;
  width: 70px;
  height: 70px;
  flex-shrink: 0;
}

#rating-1:checked~.emoji-wrapper>.emoji {
  transform: translateY(-100px);
}

#rating-2:checked~.emoji-wrapper>.emoji {
  transform: translateY(-200px);
}

#rating-3:checked~.emoji-wrapper>.emoji {
  transform: translateY(-300px);
}

#rating-4:checked~.emoji-wrapper>.emoji {
  transform: translateY(-400px);
}

#rating-5:checked~.emoji-wrapper>.emoji {
  transform: translateY(-500px);
}

.feedback {
  max-width: 360px;
  background-color: #fff;
  width: 100%;
  padding: 15px 0px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.feedback-wrap {
  position: fixed;
  top: 40%;
  right: -405px;
  z-index: 99;
}

.feedback-wrap.open {
  right: 0;
}

.fixed-button {
  background: #171819;
  position: absolute;
  transform: rotate(-90deg) translateY(-50%);
  margin: 110px 0 0 -88px;
  padding: 6px 12px;
  display: flex;
  align-items: center;
  column-gap: 6px;
  border-radius: 4px;
  cursor: pointer;
  top: 0;
  left: 0;
}

.feedback-content {
  background: #fff;
  padding: 19px;
  margin-right: 2px;
  border-radius: 15px;
  min-width: 400px;
}

.feedback-text h4 {
  font-size: 23px;
}

.fixed-button span {
  font-size: 17px;
  font-weight: 500;
  color: #ccc;
}

.fixed-button svg {
  color: #fff;
  font-size: 18px;
}

.feedback-text textarea {
  width: 100%;
  height: 70px;
  padding: 10px;
  border: 1px solid #d5d5d5;
  border-radius: 10px;
}

.feedback-text {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.feedback-text span {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
}

.feedback-links .btn {
  color: #fff;
  background: var(--mainColor);
  min-width: 100px;
}

.feedback-links {
  margin-top: 15px;
}

.feedback-content {
  max-width: 400px;
}

.feedback-header {
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 6px;
}

li.navbar-menu-list-item.disabled span {
  position: absolute;
  width: 350px;
  background: #fff;
  display: block;
  top: 45px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 10px;
  padding: 6px;
  text-align: center;
  color: black;
  font-weight: 500;
  opacity: 0;
  border: 1px solid var(--mainColor);
  transition: all .3s linear;
  font-size: 13px;
}

li.navbar-menu-list-item.disabled a {
  position: relative;
}

li.navbar-menu-list-item.disabled:hover span {
  opacity: 1;
}

li.navbar-menu-list-item.disabled p {
  margin: 0;
  opacity: 0.5;
  cursor: not-allowed;
}

.ptt-title {
  position: relative;
}

span.for-beta {
  background: var(--mainColor);
  border: 1px solid var(--darkGreen);
  padding: 4px 10px;
  border-radius: 8px;
  position: absolute;
  width: 280px;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  opacity: 0;
  transition: all .3s linear;
  font-weight: 500;
  font-size: 14px;
}

.ptt-title button.disabled {
  margin: 0;
  opacity: 0.5;
  cursor: not-allowed;
}

.ptt-title.disabled:hover span.for-beta {
  opacity: 1;
}

input.video-input {
  border-radius: 60px;
  height: 50px;
  border: 1px solid var(--mainColor);
  background: #eaeaea;
  outline: none;
  font-weight: 500;
  box-shadow: unset;
  font-size: 15px;
  transition: all .3s linear;
  padding: 0 14px;
}


.numbers-group input {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  cursor: pointer;
}

.num-box {
  position: relative;
  width: 40px;
  height: 40px;
  border: 2px solid #333;
  text-align: center;
  line-height: 38px;
  border-radius: 10px;
}

.numbers-group {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.num-box.active {
  background: var(--mainColor);
  color: #fff;
}

.projects-page .project-slide-box {
  background: #fff;
  padding: 14px;
}

.projects-page .project-slide-box .project-slide-info h5 {
  color: var(--darkGreen);
}

.projects-page .project-slide-box .project-slide-info p {
  color: var(--darkGreenWithOpacity);
  opacity: 0.7;
}

.project-header {
  height: 560px;
  background-size: cover;
  background-position: 100% 74%;
  border-radius: 24px;
  border: 1px solid var(--mainColorWithOpacity);
  position: relative;
}

.project-content h1 {
  color: #fff;
  margin-bottom: 15px;
}

.project-content p {
  opacity: 0.7;
  color: #ccc;
  font-size: 15px;
}

.project-content {
  margin: 40px 0 20px 0;
}

.c-info-box a {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}

.error-page {
  background-size: cover;
  height: 100vh;
}

.error-page-content {
  position: relative;
}

.error-page .container {
  display: table;
  height: 100%;
}

.error-page .container .row {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}

.error-page-content h1 {
  color: #fff;
  font-size: 90px;
  font-weight: bold;
}

.error-page-content p {
  color: #ccc;
  font-size: 20px;
  margin: 20px 0;
  margin-bottom: 40px;
}

.error-page-content .btn {
  color: #fff;
  border: 2px solid #ccc;
  border-radius: 30px;
  padding: 10px 20px;
}

.error-page-content .btn:first-letter {
  text-transform: capitalize;
}

.error-page-content .btn:first-of-type {
  margin-right: 15px;
}

.error-page-content .btn.unq {
  border-color: var(--mainColor);
  color: var(--mainColor);
}

.error-page-content .btn.unq:hover {
  background: var(--mainColor);
  color: #fff;
}

.error-page-content .btn:hover {
  background: #fff;
  color: var(--mainColor);
}

.play-box p {
  color: #fff;
  margin: 0;
}

.play-box {
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-bottom: 10px;
}

ul.pagination li {
  color: upo;
  transition: all .3s linear;
  background: #011f2a;
  height: 36px;
  width: 36px;
  line-height: 36px;
  margin: 0 5px;
  text-align: center;
  font-size: 14px;
  border-radius: 3px;
  color: #fff;
}

ul.pagination {
  justify-content: center;
}

ul.pagination li a {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

ul.pagination li.selected {
  background: var(--mainColor);
}

ul.pagination li:hover {
  background: var(--mainColorWithOpacity);
}

ul.pagination li.disabled {
  opacity: 0.2;
}

ul.pagination li.disabled a {
  cursor: not-allowed;
}

.dbl-nums {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 10px;
}

.bv {
  display: flex;
  align-items: center;
}

.dbl-nums .bv svg {
  margin: 0;
  margin-right: 6px;
  font-size: 16px;
}

.terms-page p {
  color: #ccc;
  white-space: break-spaces;
}

.terms-page h1 {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 20px;
}

.divx .react-tel-input {
  margin-bottom: 15px;
}

.divx .react-tel-input .form-control {
  background: #f2f2f2;
  height: 56px;
  border: none;
  width: 100%;
}

.divx .react-tel-input .selected-flag {
  width: 42px;
  padding-left: 11px;
}

.divx .react-tel-input .flag-dropdown {
  border: none;
  background: #d1d1d1;
}

/* .divx .login-page:before {
  display: none;
} */









.button-cover:before {
  counter-increment: button-counter;
  content: counter(button-counter);
  position: absolute;
  right: 0;
  bottom: 0;
  color: #d7e3e3;
  font-size: 12px;
  line-height: 1;
  padding: 5px;
}

.button {
  position: relative;
  top: 50%;
  width: 74px;
  height: 36px;
  background-color: #333;
  overflow: hidden;
}

.button.r,
.button.r .layer {
  border-radius: 100px;
}

.button.b2 {
  border-radius: 2px;
}

.checkbox {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.knobs {
  z-index: 2;
}

.layer {
  width: 100%;
  background-color: #ebf7fc;
  transition: 0.3s ease all;
  z-index: 1;
}


#button-18 .knobs:before,
#button-18 .knobs span {
  content: "✓";
  position: absolute;
  top: 4px;
  left: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  background-color: #03a9f4;
  border-radius: 2px;
}

#button-18 .knobs:before {
  top: 50%;
  left: 8px;
  width: 20px;
  height: 10px;
  margin-top: -5px;
  background-color: transparent;
  z-index: 2;
}

#button-18 .knobs span {
  width: 30px;
  height: 26px;
  padding: 9px 4px;
  transition: 0.3s ease all, left 0.3s cubic-bezier(0.18, 0.89, 0.35, 1.15);
  z-index: 1;
}

#button-18 .checkbox:active+.knobs:before {
  left: 10px;
  width: 46px;
  height: 4px;
  color: transparent;
  margin-top: -2px;
  background-color: #0095d8;
  transition: 0.3s ease all;
  overflow: hidden;
}

#button-18 .checkbox:active+.knobs span {
  width: 58px;
}

#button-18 .checkbox:checked:active+.knobs:before {
  left: auto;
  right: 10px;
  background-color: #d80000;
}

#button-18 .checkbox:checked:active+.knobs span {
  margin-left: -38px;
}

#button-18 .checkbox:checked+.knobs:before {
  content: "✕";
  left: 47px;
}

#button-18 .checkbox:checked+.knobs span {
  left: 42px;
  background-color: #f44336;
}

#button-18 .checkbox:checked~.layer {
  background-color: #fcebeb;
}

.toggle-button-cover {
  display: flex;
  align-items: center;
  margin-bottom: 17px;
  column-gap: 10px;
}

.toggle-button-cover label a {
  color: #03a9f4;
  margin-left: 4px;
}

.toggle-button-cover label {
  text-align: left;
  line-height: 1.5;
}

.asdawe {
  margin: 12px;
  border-radius: 12px;
  border: 2px solid var(--mainColor);
  position: relative;
  min-height: 130px;
}

.asdawe .brand-logo {
  position: absolute;
  bottom: -45px;
  z-index: 333;
  background: #fff;
  padding: 13px;
  border-radius: 50px;
}

.lead-register-description {
  background: #fff;
  position: relative;
  z-index: 10;
  color: #333;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  margin-right: 15px;
  margin-left: 15px;
  padding: 8px 0;
  margin-top: -5px;
  border-radius: 12px;
  border: 2px solid var(--mainColor);
}



.alert-box {
  position: fixed;
  top: 10px;
  background: #fff;
  top: 185px;
  z-index: 22;
  right: 13px;
  left: 13px;
  width: calc(100% - 26px);
  padding: 30px 15px;
  border-radius: 20px;
  border: 4px solid var(--mainColor);
  min-height: 520px;
  display: table;
}

.vba-bx {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  text-align: center;
}

.follow-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 15px;
  list-style: none;
}

.follow-links ul li a {
  display: block;
  width: 40px;
  height: 40px;
  border: 2px solid var(--mainColor);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  border-radius: 40px;
}

.follow-links {
  margin-top: 10px;
}

.follow-links span {
  text-transform: capitalize;
  margin-bottom: 10px;
  display: block;
  font-weight: bold;
}

.vba-btns .btn {
  display: block;
  width: 100%;
  background: #333;
  color: #fff;
  margin-bottom: 15px;
  padding: 14px;
  border-radius: 8px;
}

.vba-btns .btn.home {
  background: var(--mainColor);
}

.vba-btns .btn.call {
  background: #29a6ff;
}

.vba-btns .btn.whatsapp {
  background: #32b96e;
}

.vba-bx h4 {
  font-size: 30px;
  font-weight: bold;
}

.vba-bx p {
  margin-bottom: 30px;
  font-size: 14px;
}

.vba-btns {
  width: 80%;
  margin: 0 auto;
}

.lead-register-location {
  background: #fff;
  position: relative;
  z-index: 10;
  color: #333;
  margin: 0 auto;
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  margin-right: 15px;
  margin-left: 15px;
  padding: 8px 0;
  margin-top: -5px;
  border-radius: 12px;
  border: 2px solid var(--mainColor);
}

.slider-options i.fas {
  display: none !important;
}

.client-header-left {
  height: 200px;
  width: 200px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.select-box .css-1jqqwy7-control,
.select-box .css-ckdblj-control {
  min-height: 56px;
  margin-bottom: 15px;
}




.menu {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.menu__link {
  text-decoration: none;
  white-space: nowrap
}

.menu__link,
.menu__more-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 4.3rem;
  cursor: pointer
}

.menu--style1 .menu__link,
.menu--style1 .menu__more-button {}

.menu__more-button {
  position: relative;
  cursor: pointer
}

.menu__link:hover,
.menu__more-button:hover {}

.menu__link--active {}

.menu__link--active:hover {}

.menu__more-button--arrow-down {
  height: 1.2rem;
  width: 1rem;
  fill: blue;
  margin-left: .5rem;
  margin-top: .2rem
}

.menu__dropdown {
  position: absolute;
  top: calc(100% + .1rem);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  min-width: 17.4rem;
  display: none;
}

.menu__more-button:hover .menu__dropdown {
  display: block
}

.menu__more-button:hover .menu__more-button--arrow-down {}

.menu__dropdown:after,
.menu__dropdown:before {
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none
}

.menu__dropdown:after {
  border-width: .9rem
}

.menu__dropdown:before {
  border-width: 1rem
}

.menu__dropdown-content {
  padding: .5rem 0
}

.menu__dropdown-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 3.7rem;
  line-height: 3.7rem;
  padding: 0 2.4rem;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  text-transform: capitalize
}

.menu__dropdown-list-item:hover {}

@media (min-width: 568px) {
  .menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
    width: 100%;
    padding: 0 5%
  }
}

@media (min-width: 1150px) {
  .menu {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    padding: 0
  }

  .menu__link,
  .menu__more-button {
    height: 7.7rem
  }
}

.global-switch {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  height: 2.8rem
}

.global-switch,
.global-switch__country,
.global-switch__language {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.global-switch__country,
.global-switch__language {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative
}

.global-switch__country {
  display: none
}

.global-switch__current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  color: #3b97ba;
  cursor: pointer
}

.global-switch__flag {
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  background-size: contain
}

.global-switch__flag--bh {
  background-image: url(/img/bh.svg)
}

.global-switch__flag--eg {
  background-image: url(/img/eg.svg)
}

.global-switch__flag--usa {
  background-image: url(/img/usa.png)
}

.global-switch__flag--sa {
  background-image: url(/img/sa.svg)
}

.global-switch__flag--lb {
  background-image: url(/img/lb.svg)
}

.global-switch__flag--ae {
  background-image: url(/img/ae.svg)
}


.global-switch__arrow {
  height: 1.2rem;
  width: 1rem;
  fill: #3b97ba;
  margin-left: .5rem;
  margin-top: .2rem
}

.global-switch__dropdown-area {
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 70;
  padding-top: 20px;
  display: none
}

.global-switch__dropdown {
  position: relative;
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  padding-top: 0px;
  background: var(--darkGreen);
  border: 1px solid var(--mainColor);
}

.global-switch__country:hover .global-switch__dropdown-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.global-switch__dropdown:after,
.global-switch__dropdown:before {
  bottom: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: transparent;
  border-style: solid;
}

.global-switch__dropdown:after {
  border-width: 8px;
  border-bottom-color: var(--mainColor);
}

.global-switch__dropdown:before {
  border-width: 10px;
  border-bottom-color: var(--mainColor);
}

.global-switch__dropdown-content {}

.global-switch__dropdown-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  min-height: 50px;
  color: #fff;
  column-gap: 10px;
}

.global-switch__dropdown-link:hover {}

.global-switch__lang-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-decoration: none;
  color: #3b97ba;
  cursor: pointer
}

@media (min-width: 568px) {
  .global-switch__country {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
  }
}





.header__right-area-item.header__right-area-item--style1.global-switch__country {
  display: none;
}

.project-page .details-inner-box {
  background-color: var(--gray);
  border-top: 3px solid var(--mainColor);
  border-bottom: 3px solid var(--mainColor);
  padding: 22px;
  margin-bottom: 20px;
}

.project-page .details-inner-box {
  background-color: var(--gray);
  border-top: 3px solid var(--mainColor);
  border-bottom: 3px solid var(--mainColor);
  padding: 22px;
  margin-bottom: 20px;
}

.project-content p a.show-more-btn {
  background: var(--mainColor);
  padding: 0px 10px;
  border-radius: 5px;
  margin: 0 10px;
  color: #fff;
  display: inline-block;
  height: 35px;
  line-height: 35px;
}

.project-content p {
  line-height: 2.3;
}

.cmd-content.project-content p {
  color: #000;
}

.cmd-content.project-content {
  margin: 0;
}



.locationNearby {
  border-bottom: 1px solid #dedede36;
  margin-top: 40px;
  padding-bottom: 3rem;
  border-top: 1px solid #dedede36;
  margin-bottom: 50px;
  padding-top: 3rem;
}

.locationNearby .tagLine {
  font-size: 1.6rem;
  font-weight: 400;
  margin-top: 16px
}

.locationNearby ul {
  display: flex;
  flex-wrap: wrap
}

.locationNearby ul li:not(:nth-of-type(2n+2)) {
  margin-right: 1.6rem
}

.locationNearby ul .nearbyTab {
  align-items: center;
  border: 1px solid var(--gray);
  border-radius: 4px;
  box-sizing: border-box;
  display: flex;
  height: 7rem;
  margin-bottom: 22px;
  padding: 0 10px;
  width: calc(50% - .8rem);
  background: var(--gray);
  transition: all .3s linear;
  box-shadow: 3px 3px 2px 3px #606060;
  cursor: pointer;
}

.locationNearby ul .nearbyTab svg {
  height: 50px;
  width: 50px;
}

.locationNearby ul .nearbyTab .detail {
  cursor: pointer;
  margin-left: 16px
}

.locationNearby ul .nearbyTab .detail .label {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 20px;
  color: var(--mainColor);
}

.locationNearby ul .nearbyTab .detail .locName {
  font-size: 14px;
  color: #fff
}

.locationNearby .mapBox {
  margin-top: 25px
}



.locationNearby ul .nearbyTab:hover {
  box-shadow: -3px -3px 2px 3px #606060;
}





.project-image-slider-area {
  position: relative;
}

.project-image-slider-area .show-all-images {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #fff;
  width: 55px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid var(--mainColor);
  cursor: pointer;
}

.project-image-slider-area .show-all-images svg {
  font-size: 20px;
  color: var(--mainColor);
}

.project-image-slider-area .show-video {
  position: absolute;
  bottom: 20px;
  left: 80px;
  background: rgb(245 0 0 / 74%);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  cursor: pointer;
}

.project-image-slider-area .show-video svg {
  font-size: 16px;
  color: white;
}

.project-image-slider-area .show-all-images span {
  margin-right: 5px;
  color: var(--mainColor);
}


.company-image img {
  width: 100px;
  height: 100px;
  background: #ddd;
  border-radius: 100px;
  border: 1px solid #fff;
}

.project-by-comapny-card {
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid var(--mainColor);
  text-align: center;
  margin-top: 60px;
  position: sticky;
  top: 160px;
}

.project-by-comapny-card .company-image {
  margin-top: -60px;
  margin-bottom: 10px;
}

.company-card-buttons {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

.company-card-buttons .btn {
  background: #333;
  width: calc(50% - 5px);
  min-height: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  column-gap: 5px;
  font-size: 16px;
  text-transform: capitalize;
  background: var(--mainColor);
}

.company-card-buttons button.btn.call-btn {
  background: var(--lightGreen);
}

.company-card-buttons .btn svg {
  font-size: 19px;
}

.company-card-content p {
  margin-top: 15px;
}



.client-header-left {
  position: relative;
}

.company_onwer_box {
  position: absolute;
  bottom: -60px;
  border-radius: 50%;
  left: 0px;
}

.client-header-left .client-header-image img {
  border-radius: 50%;
}

.client-header-left .client-header-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.company_onwer_box .company_owner_img {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
  background: #fff;
  border-radius: 50%;
}

.company_onwer_name {
  position: absolute;
  top: calc(50% + 20px);
  transform: translateY(-50%);
  background: #fff;
  border-radius: 10px;
  right: -131px;
  padding: 0 6px;
  text-align: center;
  border: 1px solid var(--mainColor);
}

.map-box-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vh;
  background: #fff;
  z-index: 999999;
}

.map-box-popup .container-popup {
  height: 100%;
  position: relative;
}

.map-box-popup .container-popup .popup-content {
  height: 100%;
}

.map-box-popup .container-popup .popup-content iframe {
  height: 100%;
}

.popup-header {
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.popup-header span {
  margin: 0;
  font-weight: bold;
}

section.event-image-box img {
  width: 100%;
  border-radius: 8px;
}

.event-page {
  margin-top: 20px;
  margin-bottom: 100px;
}

.eib-content {
  background: var(--darkGreen);
  border-radius: 14px;
  padding: 15px;
  text-align: center;
}

.event-project-logo img {
  width: 150px;
  background: #fff;
  border-radius: 50%;
  padding: 6px;
  max-height: 150px;
  object-fit: cover;
}

.forget-password-page {
  z-index: 0 !important;
}

.top-section {
  margin-bottom: 20px;
}

.event-project-name h5 {
  color: #fff;
  margin: 0;
}

.event-project-logo {
  margin-bottom: 10px;
}

.event-project-name {
  margin-bottom: 6px;
}

.event-status-box {
  padding: 7px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-status-box.online {
  background: #21b17c;
}

.event-status-box.offline {
  background: #d73232;
}

.event-status-box span {
  color: #fff;
}

.event-company-btns .btn {
  background: #333;
  color: #fff;
  width: 100%;
  text-transform: capitalize;
  margin-bottom: 10px;
}

.event-company-btns .btn:last-of-type {
  margin-bottom: 0;
}

.event-company-btns {
  margin-top: 10px;
}

.event-company-btns .btn.appoiment {
  background: var(--mainColor);
}

.event-company-btns.call {
  background: #333;
}

.event-company-btns .btn.call {
  background: var(--lightGreen);
}

.event-status-box p {
  margin: 0;
  color: #fff;
  position: relative;
  margin-right: 6px;
}

.locationNearby ul .nearbyTab .detail .locName {
  display: none;
}

.locationNearby ul li:last-of-type {
  margin-right: 0;
}

.locationNearby ul .nearbyTab {
  margin-right: 20px;
  width: calc(25% - 25px);
  height: auto;
  padding: 12px;
}

ul.event-tags-list {
  display: flex;
  align-items: center;
  column-gap: 10px;
  row-gap: 10px;
}

ul.event-tags-list li.event-tag-item {
  background: var(--darkGreen);
  padding: 10px 20px;
  border-radius: 9px;
  transition: all .3s linear;
}

ul.event-tags-list li.event-tag-item h6 {
  margin: 0;
  color: #fff;
  text-transform: capitalize;
}

ul.event-tags-list li.event-tag-item:hover {
  background: var(--darkGreenWithOpacity);
}

.emi-location-and-day {
  display: flex;
  align-items: center;
  column-gap: 15px;
}



.countdown-timer .counterdown-content {
  display: table;
  position: relative;
  min-width: 280px;
  background-color: var(--darkGreen);
  border-radius: 13px;
}

div#countdown-display {
  margin-top: 15px;
}

.event-main-information {
  margin-top: 20px;
}

.countdown-timer .time-col {
  display: table-cell;
  width: 25%;
  border-left: 1px #5D6368 solid;
}

.countdown-timer .time-col:first-child {
  border-left: none;
}

.countdown-timer .counting,
.countdown-timer .subject {
  display: block;
  padding: 8px 0;
  color: #FFFFFF;
  text-align: center;
  line-height: 1em;
}

.countdown-timer .counting {
  font-size: 26px;
  font-weight: 700;
}

.countdown-timer .subject {
  position: relative;
  font-size: 14px;
}

.countdown-timer .subject span {
  position: absolute;
  left: 40%;
  top: 0;
  width: 20%;
  border-top: 1px #5D6368 solid;
}

div#countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.countdown-timer .time-col.days {
  background: var(--mainColor);
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

div#countdown-display>span {
  font-weight: bold;
  text-transform: capitalize;
  margin-bottom: 10px;
  font-size: 16px;
}


.emi-day,
.emi-location {
  display: flex;
  align-items: center;
  column-gap: 10px;
}

.emi-day .emi-icon,
.emi-location .emi-icon {
  background: var(--mainColor);
  color: var(--darkGreen);
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border-radius: 50%;
}

.emi-day span,
.emi-location span {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.emi-day span div {
  margin: 0 5px;
  direction: ltr;
}

.event-main-information h1 {
  margin-top: 15px;
}

