/* Fonts */
/* Google Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

/* Colors */
:root {
  /* Font color */
  --text-primary: #1e8bff;
  --text-secundary: #7d858c;
  --text-dark: #1d1d1d;
  --text-white: #ffffff;
  --text-light: #f5f5f5;

  /* Backgrounds */
  --bg-primary: #1e8bff;
  --bg-secundary: #7d858c;
  --bg-dark: #1d1d1d;
  --bg-white: #ffffff;
  --bg-light: #eeeeee;

  /* Backgrounds Opacity */
  --bg-primary-opacity: #1e8bffcc;
  --bg-secundary-opacity: #0c0c0c62;

  /* Font size */
  --font-size-2xl: 2.2rem;
  --font-size-xxl: 2rem;
  --font-size-xl: 1.8rem;
  --font-size-lg: 1.6rem;
  --font-size-md: 1.4rem;
  --font-size-sm: 1.2rem;
  --font-size-xs: 1rem;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-default);
  overflow-x: hidden;
}

a {
  color: var(--color-primary);
  text-decoration: none;
}

a:hover {
  color: var(--text-primary);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  overflow: hidden;
  padding: 1rem 0 3rem 0;
}

.section-bg {
  background-color: var(--bg-white);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
}

.section-header.section-header__uppercase {
  text-transform: uppercase;
}

.section-header h2 {
  color: var(--text-dark);
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
  padding-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  padding: 140px 0 60px 0;
  min-height: 30vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.breadcrumbs__intranet {
  padding: 140px 0 60px 0;
  min-height: 100vh;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.breadcrumbs__intranet .intranet-form .card-item {
  background-color: #3d3d3d !important;
}

.intranet-form .card-item h3 {
  color: var(--text-white) !important;
  font-size: 1rem;
  text-align: center;
  font-weight: 600;
}

.intranet-form .card-item form input {
  background-color:var(--bg-light);
  color: var(--text-dark) !important;
  border: 1px solid var(--text-dark) !important;
  border-radius: 10px !important;
  padding: 10px 15px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

/* chahe placeholder color */
.intranet-form .card-item form input::placeholder {
  color: var(--text-dark) !important;
  text-align: center;
}

.intranet-form .card-item form label {
  color: var(--text-white) !important;
}
.intranet-form .card-item form button {
  background-color: var(--text-white) !important;
  color: #3d3d3d !important;
  border: 1px solid var(--text-white) !important;
  border-radius: 10px !important;
  padding: 10px 15px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
}

.breadcrumbs:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.6);
  position: absolute;
  inset: 0;
}

.breadcrumbs h2 {
  font-size: 56px;
  font-weight: 500;
  color: var(--text-white);
  font-family: var(--font-secondary);
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-primary);
}

.breadcrumbs ol a {
  color: rgba(255, 255, 255, 0.8);
  transition: 0.3s;
}

.breadcrumbs ol a:hover {
  text-decoration: underline;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--text-white);
  content: '/';
}

/*--------------------------------------------------------------
# Scroll top button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background: var(--bg-primary);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--color-secondary);
  line-height: 0;
}

.scroll-top:hover {
  background: var(--bg-primary);
  color: #fff;
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #fff;
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: '';
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #fff;
  border-color: var(--color-primary) transparent var(--color-primary)
    transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1.5s linear infinite;
  animation: animate-preloader 1.5s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  z-index: 997;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
.navbar-nav-top {
  background-color: var(--bg-white);
  padding: 0.5rem;
}

@media (min-width: 768px) {
  .navbar-nav-top {
    padding: 0rem 5rem;
  }
}

.navbar-nav-top h1 {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 800;
  padding: 0.2rem;
}

.navbar-nav-top .logo {
  color: var(--text-dark);
  font-size: 2rem;
  font-weight: 800;
  padding-top: 0.7rem;
}

.navbar-nav-top .navbar ul li a i {
  color: var(--text-dark) !important;
  font-size: 1rem !important;
}

.navbar-nav-top i {
  color: var(--text-dark) !important;
}

.navbar-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

@media (min-width: 1280px) {
  .navbar-nav-down {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0.5rem !important;
    background-color: var(--bg-dark);
  }

  .navbar {
    padding: 0;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar > ul > li {
    white-space: nowrap;
    padding: 10px 0 10px 28px;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px;
    font-family: var(--font-primary);
    /* font-size: 16px; */
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-transform: capitalize;
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar > ul > li > a:before {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--color-primary);
    visibility: hidden;
    width: 0px;
    transition: all 0.3s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover > a:before,
  .navbar .active:before {
    visibility: visible;
    width: 100%;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 28px;
    top: calc(100% + 30px);
    margin: 0;
    padding: 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: 0.3s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    /* font-size: 15px; */
    text-transform: none;
    color: var(--color-default);
    font-weight: 400;
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover > a {
    color: var(--color-primary);
  }

  .navbar .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

@media (min-width: 1280px) {
  .mobile-nav-show,
  .mobile-nav-hide {
    display: none;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1279px) {
  .navbar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 50px 0 10px 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
    text-transform: uppercase;
    transition: 0.3s;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover > a {
    color: #fff;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.5s ease-in-out;
    border: 1px solid #222428;
  }

  .navbar .dropdown > .dropdown-active,
  .navbar .dropdown .dropdown > .dropdown-active {
    display: block;
  }

  .mobile-nav-show {
    position: relative;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    z-index: 9999;
    padding-right: 10px;
  }

  .mobile-nav-hide {
    color: #fff !important;
    font-size: 32px;
    cursor: pointer;
    line-height: 0;
    transition: 0.5s;
    position: fixed;
    right: 20px;
    top: 20px;
    z-index: 9999;
    background-color: var(--bg-white);

    border-radius: 50%;
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .navbar {
    right: 0;
  }

  .mobile-nav-active .navbar:before {
    content: '';
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.205);
    z-index: 9996;
  }
}

/*--------------------------------------------------------------
# Get Started Section
--------------------------------------------------------------*/
.get-started .content {
  padding: 30px 0;
}

.get-started .content h3 {
  font-size: 36px;
  color: var(--color-secondary);
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  position: relative;
}

.get-started .content h3:after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.get-started .content p {
  font-size: 14px;
}

.get-started .php-email-form {
  background: #fff;
  padding: 30px;
  height: 100%;
}

@media (max-width: 575px) {
  .get-started .php-email-form {
    padding: 20px;
  }
}

.get-started .php-email-form h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.get-started .php-email-form p {
  font-size: 14px;
  margin-bottom: 20px;
}

.get-started .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.get-started .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.get-started .php-email-form .loading:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.get-started .php-email-form input,
.get-started .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 0;
}

.get-started .php-email-form input:focus,
.get-started .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.get-started .php-email-form input {
  padding: 12px 15px;
}

.get-started .php-email-form textarea {
  padding: 12px 15px;
}

.get-started .php-email-form button[type='submit'] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 30px;
  color: #fff;
  transition: 0.4s;
  border-radius: 4px;
}

.get-started .php-email-form button[type='submit']:hover {
  background: rgba(254, 185, 0, 0.8);
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Filter search Section
--------------------------------------------------------------*/
.filter-search {
  margin-top: -4rem !important;
  position: relative;
  z-index: 99;
}

.filter-search.filter-search__centred {
  margin-top: -14rem !important;
  position: relative;
  z-index: 99;
}

.filter-search .container {
  padding: 30px 2rem;
  background-color: var(--bg-light);
  border-radius: 20px;
  color: #ffffff;
}

.filter-search .container button {
  border-radius: 50px;
  background-color: #3d3d3d !important;
  color: var(--text-white) !important;
  padding: 0.5rem 2.2rem;
}

.filter-search .container button:hover {
  background-color: var(--text-white) !important;
  color: #3d3d3d !important;
}

.filter-search .container .row select {
  background-color: var(--bg-light) !important;
  color: var(--text-dark) !important;
  border-radius: 50px;
  border: 2px solid var(--bg-dark);
}

.filter-search .container .row input[type='text'],
.filter-search .container .row input[type='number'] {
  background-color: var(--bg-light) !important;
  color: var(--text-dark) !important;
  border-radius: 50px;
  border: 2px solid var(--bg-dark);
}

.filter-search .container .row input[type='radio'] {
  background-color: var(--bg-light) !important;
}

.filter-search .container .row input[type='radio']:checked {
  background-color: var(--bg-primary) !important;
}

.filter-search .container .row input::-webkit-input-placeholder {
  color: var(--text-dark);
}

.filter-search form {
  color: var(--text-dark);
}

.radio-item {
  display: inline-block;
  position: relative;
  padding: 0 6px;
  margin: 10px 0 0;
}

.radio-item input[type='radio'] {
  display: none;
}

.radio-item label {
  color: #3d3d3d;
  font-weight: normal;
}

.radio-item label:before {
  content: ' ';
  display: inline-block;
  position: relative;
  top: 5px;
  margin: 0 5px 0 0;
  width: 20px;
  height: 20px;
  border-radius: 11px;
  border: 2px solid #004c97;
  background: #004c97 !important;
}

.form-check-input .radio-item input[type='radio']:checked + label:after {
  border-radius: 11px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 9px;
  left: 10px;
  content: ' ';
  display: block;
  background: #004c97 !important;
}

/*--------------------------------------------------------------
# Utstanding Properties Section
--------------------------------------------------------------*/
.outstanding-properties {
  background-color: var(--bg-light);
  margin: 4rem 0;
}

.outstanding-properties .container {
  padding: 3rem 0;
  margin: 1rem auto;
}

.section-display-conf {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--bg-white);
  padding: 0.5rem;
  margin: 0.5rem;
  border-radius: 5px;
}

.section-display-conf span {
  color: #3d3d3d;
  font-weight: 600;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.preview-layout button span i {
  color: #3d3d3d;
  font-size: 1.3rem;
}

.section-display-conf button {
  cursor: pointer;
  margin: 0.2rem;
}

.outstanding-properties .property-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  margin: 0.7rem 0;
  background-color: var(--bg-white);
  border: 1px solid var(--bg-light);
  padding: 0.5rem;
}

.outstanding-properties .property-item-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  /* flex-direction: column; */
  justify-content: space-between;
  border-radius: 10px;
  margin: 0.7rem 0;
  background-color: var(--bg-white);
  border: 1px solid var(--bg-light);
  padding: 0.5rem;
}

.outstanding-properties .property-item .card-body .principal-info small,
.outstanding-properties .property-item .card-body .principal-info p {
  font-size: 1rem;
}

.outstanding-properties .property-item .card-body .more-info {
  background-color: whitesmoke;
  padding-top: 1rem;
  border-left: 3px solid orange;
}

.outstanding-properties .property-item a {
  color: var(--text-dark) !important;
  font-size: var(--font-size-md);
  font-weight: 600;
}

.outstanding-properties small i {
  font-size: 1.2rem;
}

.property .property-item {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.property-item-img{
  height: 272px !important;
 object-fit: cover;
}
.card-props {
  display: flex !important;
  justify-content: start;
  align-items: start;
  flex-direction: column !important;
}

.card-props a {
  text-align: start !important;
  font-size: 1rem !important;
}

.card-props small,
.card-props p {
  font-size: 0.8rem;
  color: var(--text-secundary);
  text-align: start;
}

.card-props p {
  text-align: start;
  border-bottom: 1px solid var(--bg-secundary);
  width: 100%;
  padding: 0.5rem 0;
}

.card-props__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.card-props__footer small {
  color: var(--text-dark);
}

.card-props__footer span {
  color: var(--text-secundary);
  margin-left: 1.2rem !important;
}

.card-props__uf p {
  border-top: 1px solid var(--bg-secundary);
  text-align: center;
  font-weight: bold;
  font-size: 1.3rem;
  padding-top: 0.8rem !important;
  margin: 0 !important;
}

.properties-carousel .owl-next,
.properties-carousel .owl-prev {
  background-color: var(--bg-white) !important;
  color: var(--text-dark) !important;
  position: relative;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 40px;
  font-size: 20px;
  transition: 0.5s;
}

.properties-carousel .owl-next:hover,
.properties-carousel .owl-prev:hover {
  background-color: var(--bg-dark) !important;
  color: var(--text-white) !important;
}

.properties-carousel {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 576px) {
  .properties-carousel {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

.properties-carousel .owl-nav {
  position: absolute;
  width: 100%;
  height: 40px;
  top: calc(50% - 20px);
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 1;
}

/*--------------------------------------------------------------
# Contact Form Section
--------------------------------------------------------------*/
.contact-form {
  background-image: url('/assets/img/hero-carousel/hero-carousel-1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  margin: 2rem 0;
}

.contact-form .form-left {
  background-color: #3d3d3d;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
}

.contact-form .form-left h3 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-align: start;
}

.contact-form .form-left input,
.contact-form .form-left textarea {
  background-color: #3d3d3d !important;
  color: #ffffff !important;
  border-radius: 50px;
  border: 2px solid white;
}

/* change placholder color */
.contact-form .form-left input::-webkit-input-placeholder,
.contact-form .form-left textarea::-webkit-input-placeholder {
  color: #ffffff;
}

.contact-form .form-left textarea {
  background-color: #3d3d3d !important;
  color: #ffffff !important;
  border-radius: 25px;
}
.contact-form .form-left label {
  color: #ffffff !important;
}

.contact-form .form-left button {
  background-color: #ffffff !important;
  color: #3d3d3d !important;
  border-radius: 50px;
  border: none;
}

.contact-form .form-right {
  background-color: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.08);
  padding: 2.5rem;
}

.contact-form .form-right h3 {
  color: #3d3d3d;
  font-size: 1rem;
  font-weight: 600;
  text-align: start;
}

.form-right .card-body .contact-info i {
  margin-right: 1rem;
}

/*--------------------------------------------------------------
# Constructions Section
--------------------------------------------------------------*/
.constructions .card-item {
  border: 1px solid rgba(82, 86, 94, 0.2);
  background: #fff;
  position: relative;
  border-radius: 0;
}

.constructions .card-item .card-bg {
  min-height: 300px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.constructions .card-item .card-body {
  padding: 30px;
}

.constructions .card-item h4 {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 15px;
  color: var(--color-secondary);
}

.constructions .card-item p {
  color: var(--color-secondary);
  margin: 0;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  padding: 40px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: #3d3d3d;
  color: var(--text-white);
}

.services .service-item .icon {
  width: 48px;
  height: 48px;
  position: relative;
  margin-bottom: 50px;
}

.services .service-item .icon i {
  color: var(--color-secondary);
  font-size: 40px;
  transition: ease-in-out 0.3s;
  z-index: 2;
  position: relative;
  line-height: 1.8;
}

.services .service-item h3 {
  color: var(--color-default);
  font-weight: 600;
  margin: 0 0 20px 0;
  padding-bottom: 8px;
  font-size: 22px;
  position: relative;
  display: inline-block;
  transition: 0.3s;
}

.services .service-item p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.services .row {
  margin: 1.5rem 0.5rem;
}

.services .service-item .readmore {
  margin-top: 15px;
  display: inline-block;
  color: var(--color-primary);
}

.services .service-item:hover .icon:before {
  background: var(--color-primary);
}

.services .service-item:hover h3 {
  border-color: var(--color-primary);
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  padding: 15px 0;
  transition: 0.3s;
  color: var(--color-secondary);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  border: 0;
  border-bottom: 4px solid #e2e4e6;
}

.features .nav-link i {
  padding-right: 15px;
  font-size: 48px;
}

.features .nav-link h4 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 575px) {
  .features .nav-link h4 {
    font-size: 16px;
  }
}

.features .nav-link:hover {
  color: var(--color-primary);
}

.features .nav-link.active {
  color: var(--color-primary);
  background-color: transparent;
  border-color: var(--color-primary);
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane h3 {
  font-weight: 700;
  font-size: 32px;
  position: relative;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.features .tab-pane h3:after {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-top: 10px;
}

.features .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Our Projects Section
--------------------------------------------------------------*/
.projects .portfolio-flters {
  padding: 0;
  margin: 0 auto 20px auto;
  list-style: none;
  text-align: center;
}

.projects .portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 0;
  font-size: 18px;
  font-weight: 500;
  margin: 0 10px;
  line-height: 1;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.projects .portfolio-flters li:hover,
.projects .portfolio-flters li.filter-active {
  color: var(--color-primary);
}

.projects .portfolio-flters li:first-child {
  margin-left: 0;
}

.projects .portfolio-flters li:last-child {
  margin-right: 0;
}

@media (max-width: 575px) {
  .projects .portfolio-flters li {
    font-size: 14px;
    margin: 0 5px;
  }
}

.projects .portfolio-content {
  position: relative;
  overflow: hidden;
}

.projects .portfolio-content img {
  transition: 0.3s;
}

.projects .portfolio-content .portfolio-info {
  opacity: 0;
  position: absolute;
  inset: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(0, 0, 0, 0.6);
  padding: 15px;
}

.projects .portfolio-content .portfolio-info h4 {
  font-size: 14px;
  padding: 5px 10px;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  background-color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info p {
  position: absolute;
  bottom: 10px;
  text-align: center;
  display: inline-block;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.projects .portfolio-content .portfolio-info .preview-link,
.projects .portfolio-content .portfolio-info .details-link {
  position: absolute;
  left: calc(50% - 40px);
  font-size: 26px;
  top: calc(50% - 14px);
  color: #fff;
  transition: 0.3s;
  line-height: 1.2;
}

.projects .portfolio-content .portfolio-info .preview-link:hover,
.projects .portfolio-content .portfolio-info .details-link:hover {
  color: var(--color-primary);
}

.projects .portfolio-content .portfolio-info .details-link {
  left: 50%;
  font-size: 34px;
  line-height: 0;
}

.projects .portfolio-content:hover .portfolio-info {
  opacity: 1;
}

.projects .portfolio-content:hover img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Alt Services Section
--------------------------------------------------------------*/
.alt-services .img-bg {
  background-size: cover;
  background-position: center center;
  min-height: 400px;
}

.alt-services h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.alt-services h3:after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.alt-services .icon-box {
  margin-top: 50px;
}

.alt-services .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  margin-right: 25px;
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 4px;
  line-height: 0;
  box-shadow: 0px 2px 30px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  transition: 0.3s;
}

.alt-services .icon-box:hover i {
  background-color: var(--color-primary);
  color: #fff;
}

.alt-services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.alt-services .icon-box h4 a {
  color: #000;
  transition: 0.3s;
}

.alt-services .icon-box h4 a:hover {
  color: var(--color-primary);
}

.alt-services .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/

@media (min-width: 991px) {
  .about h2 {
    max-width: 65%;
    margin: 0 0 80px 0;
  }
}

.about .our-story {
  padding: 40px;
  background-color: #f5f6f7;
}

@media (min-width: 991px) {
  .about .our-story {
    padding-right: 35%;
  }
}

.about .our-story h4 {
  text-transform: uppercase;
  font-size: 18px;
  color: #838893;
}

.about .our-story h3 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.about .our-story p:last-child {
  margin-bottom: 0;
}

.about ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.about ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  margin-right: 4px;
  color: var(--color-primary);
}

.about .watch-video i {
  font-size: 32px;
  transition: 0.3s;
  color: var(--color-primary);
}

.about .watch-video a {
  font-weight: 600;
  color: var(--color-secondary);
  margin-left: 8px;
  transition: 0.3s;
}

.about .watch-video:hover a {
  color: var(--color-primary);
}

.about .about-img {
  min-height: 600px;
  background-size: cover;
  background-position: center;
}

@media (min-width: 992px) {
  .about .about-img {
    position: absolute;
    top: 0;
    right: 0;
  }
}



/*--------------------------------------------------------------
# Servie Cards Section
--------------------------------------------------------------*/
.services-cards h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-secondary);
}

.services-cards p {
  font-size: 15px;
}

.services-cards ul li {
  display: flex;
  align-items: center;
  font-size: 14px;
  padding-top: 10px;
}

.services-cards ul li i {
  font-size: 16px;
  color: var(--color-primary);
  margin-right: 6px;
}

/*--------------------------------------------------------------
# Projet Details Section
--------------------------------------------------------------*/
.project-details .portfolio-details-slider img {
  width: 100%;
}

.project-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 1;
}

.project-details
  .portfolio-details-slider
  .swiper-pagination
  .swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.project-details .swiper-button-prev,
.project-details .swiper-button-next {
  width: 48px;
  height: 48px;
}

.project-details .swiper-button-prev:after,
.project-details .swiper-button-next:after {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(0, 0, 0, 0.2);
  font-size: 24px;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.project-details .swiper-button-prev:hover:after,
.project-details .swiper-button-next:hover:after {
  background-color: rgba(0, 0, 0, 0.6);
}

@media (max-width: 575px) {
  .project-details .swiper-button-prev,
  .project-details .swiper-button-next {
    display: none;
  }
}

.project-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.project-details .portfolio-info h3:after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-primary);
  left: 0;
  bottom: 0;
}

.project-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.project-details .portfolio-info ul li {
  display: flex;
  flex-direction: column;
  padding-bottom: 15px;
}

.project-details .portfolio-info ul strong {
  text-transform: uppercase;
  font-weight: 400;
  color: #838893;
  font-size: 14px;
}

.project-details .portfolio-info .btn-visit {
  padding: 8px 40px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.project-details .portfolio-info .btn-visit:hover {
  background: #ffc019;
}

.project-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-secondary);
}

.project-details .portfolio-description p {
  padding: 0;
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
  padding: 10px 30px;
  border: 1px solid #d5d7da;
  margin-bottom: 20px;
}

.service-details .services-list a {
  display: block;
  line-height: 1;
  padding: 8px 0 8px 15px;
  border-left: 3px solid #d9e3e8;
  margin: 20px 0;
  color: var(--color-secondary);
  transition: 0.3s;
}

.service-details .services-list a.active {
  font-weight: 700;
  border-color: var(--color-primary);
}

.service-details .services-list a:hover {
  border-color: var(--color-primary);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 28px;
  font-weight: 700;
}

.service-details h4 {
  font-size: 20px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--color-primary);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 20px 0 30px 0;
}

.contact .info-item i {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  font-size: 24px;
  line-height: 0;
  color: var(--color-primary);
  border-radius: 50%;
  border: 2px dotted #ffd565;
}

.contact .info-item h3 {
  font-size: 20px;
  color: #6c757d;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  width: 100%;
  background: #fff;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.08);
  padding: 30px;
}

.contact .php-email-form .form-group {
  padding-bottom: 20px;
}

.contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #df1529;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #059652;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .php-email-form .loading:before {
  content: '';
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #059652;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .php-email-form input,
.contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .php-email-form input:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--color-primary);
}

.contact .php-email-form input {
  height: 44px;
}

.contact .php-email-form input::placeholder {
  color: #000 !important;
}


.contact .php-email-form textarea {
  padding: 10px 12px;
}

.contact .php-email-form button[type='submit'] {
  background: var(--color-primary);
  border: 0;
  padding: 10px 35px;
  color: #fff;
  transition: 0.4s;
  border-radius: 5px;
}

.contact .php-email-form button[type='submit']:hover {
  background: rgba(254, 185, 0, 0.8);
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Recent Blog Posts Section
--------------------------------------------------------------*/
.recent-blog-posts .post-item {
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.06);
  transition: 0.3s;
}

.recent-blog-posts .post-item .post-img img {
  transition: 0.5s;
}

.recent-blog-posts .post-item .post-date {
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--color-primary);
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  padding: 6px 12px;
  font-weight: 500;
}

.recent-blog-posts .post-item .post-content {
  padding: 30px;
}

.recent-blog-posts .post-item .post-title {
  font-size: 24px;
  color: var(--color-secondary);
  font-weight: 700;
  transition: 0.3s;
  margin-bottom: 15px;
}

.recent-blog-posts .post-item .meta i {
  font-size: 16px;
  color: var(--color-primary);
}

.recent-blog-posts .post-item .meta span {
  font-size: 15px;
  color: #838893;
}

.recent-blog-posts .post-item hr {
  color: #888;
  margin: 20px 0;
}

.recent-blog-posts .post-item .readmore {
  display: flex;
  align-items: center;
  font-weight: 600;
  line-height: 1;
  transition: 0.3s;
  color: #838893;
}

.recent-blog-posts .post-item .readmore i {
  line-height: 0;
  margin-left: 6px;
  font-size: 16px;
}

.recent-blog-posts .post-item:hover .post-title,
.recent-blog-posts .post-item:hover .readmore {
  color: var(--color-primary);
}

.recent-blog-posts .post-item:hover .post-img img {
  transform: scale(1.1);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  overflow-x: hidden;
  padding: 0;
}

.hero .carousel {
  width: 100%;
  height: 50vh;
  padding: 80px 0;
  margin: 0;
  position: relative;
}

.hero .carousel-item {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  z-index: 1;
  transition-duration: 0.4s;
}

@media (min-width: 768px) {
  .hero .carousel {
    height: 60vh;
  }
}

.hero .carousel-item::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.63);
  position: absolute;
  inset: 0;
}

.hero .info {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 60vh;
}

.hero .info.info-height {
  position: absolute;
  inset: 0;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero .info {
    padding: 0 50px;
  }
}

.hero .info h2 {
  color: #fff;
  margin-bottom: 30px;
  padding-bottom: 30px;
  font-size: 56px;
  font-weight: 700;
  position: relative;
}

.hero .info h2:after {
  content: '';
  position: absolute;
  display: block;
  width: 80px;
  height: 4px;
  background: var(--color-primary);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 768px) {
  .hero .info h2 {
    font-size: 36px;
  }
}

.hero .info p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
}

.hero .info .btn-get-started {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
  border: 2px solid var(--color-primary);
}

.hero .info .btn-get-started:hover {
  background: var(--color-primary);
}

.hero .carousel-control-prev {
  justify-content: start;
}

@media (min-width: 640px) {
  .hero .carousel-control-prev {
    padding-left: 15px;
  }
}

.hero .carousel-control-next {
  justify-content: end;
}

@media (min-width: 640px) {
  .hero .carousel-control-next {
    padding-right: 15px;
  }
}

.hero .carousel-control-next-icon,
.hero .carousel-control-prev-icon {
  background: none;
  font-size: 26px;
  line-height: 0;
  background: rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero .carousel-control-prev,
.hero .carousel-control-next {
  z-index: 3;
  transition: 0.3s;
}

.hero .carousel-control-prev:focus,
.hero .carousel-control-next:focus {
  opacity: 0.5;
}

.hero .carousel-control-prev:hover,
.hero .carousel-control-next:hover {
  opacity: 0.9;
}

/*--------------------------------------------------------------
# Footer Section
--------------------------------------------------------------*/
.footer {
  background: #1d1d1d;
  padding: 2rem 0;
}

.footer .container .row {
  height: auto;
}

footer .container .row .footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: none;
  width: 100%;
}

footer .container .footer-logo a {
  font-size: 5rem;
  font-weight: 800;
  color: rgb(68, 68, 68) !important;
  cursor: pointer;
}

footer .container .footer-copyrigth {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem;
  color: rgb(68, 68, 68) !important;
}

@media (min-width: 768px) {
  footer .container .row .footer-logo {
    border-right: none;
    border-right: 1px solid #444444;
    padding-right: 2rem;
    display: flex;
    justify-content: center;
  }

  footer .container .footer-copyrigth {
    justify-content: center;
  }
}

footer .container .footer-navigation {
  width: 100%;
  padding: 0.5rem 0;
}

footer .container .footer-nav-links ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  text-decoration: none;
  margin: 0 !important;
  padding: 0 !important;
}

@media (min-width: 768px) {
  footer .container .footer-navigation {
    display: flex;
    justify-content: space-around;
  }

  footer .container .footer-nav-links ul {
    display: flex;
  }

  footer .container .footer-nav-links ul li {
    margin: 1rem 1rem;
  }
}

footer .container .footer-nav-links ul li {
  list-style: none;
}

.footer-nav-links ul li button {
  border-radius: 50px;
  background-color: rgb(68, 68, 68);
}

.footer-nav-links ul li a {
  color: white !important;
  text-decoration: none;
}


.footer-nav-address {
  padding: 1rem;
}

@media (min-width: 768px) {
  .footer-nav-address {
    padding: 0.2rem 0rem;
  }
}

.footer-nav-address ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  list-style: none;
  color: rgb(68, 68, 68);
  padding: 0.5rem;
}

.footer-nav-address ul li i {
  padding: 0.5rem;
}


.footer-nav-menu  > li{
  white-space: nowrap;
  padding: 10px 0 10px 28px;
  color: #cfcfcf !important;
}

.footer-nav-menu  > li > a:hover{
  color: #ffffff !important;
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  margin: 3rem 0;
}

.about .about-left {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-direction: column;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  height: 500px;
}

.about-left::-webkit-scrollbar {
  width: 1em;
}

.about-left::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.048);
  border-radius: 1.5rem;
}

.about-left::-webkit-scrollbar-thumb {
  background-color: rgb(238, 238, 238);
  outline: none;
  border-radius: 20px;
}

.about .about-left p {
  padding: 0 2rem;
}

/*--------------------------------------------------------------
# Advanced Search
--------------------------------------------------------------*/
.advanced-search form .form-group input,
.advanced-search form .form-group select {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  border-radius: 50px;
  background-color: #3d3d3d;
  color: #ffffff;
  border: 2px solid #ffff;
}

.advanced-search form button {
  width: 100%;
  background-color: white;
  border-radius: 50px;
}

.advanced-search form button:hover {
  background-color: white !important;
}

.advanced-search form .form-group .form-control {
  border-radius: 4px;
  padding: 10px 10px;
  font-size: 14px;
  border-radius: 50px;
  background-color: #3d3d3d;
  color: #ffffff;
}
/* chanche placeholder color input*/
.advanced-search form .form-group input::-webkit-input-placeholder {
  color: #ffffff;
}

.advanced-search {
  background-color: #3d3d3d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: var(--light);
  padding: 1.5rem;
}

/* form contact corredor */
.advanced-search.bg-section {
  background-color: rgb(255, 255, 255);
  color: #000 !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.advanced-search h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 !important;
  color: white;
  text-transform: uppercase;
}

.btn-default {
  font-size: 16px;
  color: white;
  letter-spacing: 1px;
  line-height: 15px;
  border: none;
  border-radius: 40px;
  background-color: #3d3d3d;
  transition: all 0.3s ease 0s;
  width: 85%;
  margin: 1rem 0;
  padding: 0.8rem;
}

.btn-default:hover {
  background-color: #4e4e4e;
  color: white;
}

/* Properties */
.properties {
  margin: 0 0.5rem !important;
}

.properties h1 {
  font-size: 1.5rem;
  text-align: center;
  margin: 2rem 0;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(0, 0, 0);
}

.property .container h1 {
  font-size: 1.5rem;
  text-align: center;
  margin: 2rem 0;
  text-transform: uppercase;
  font-weight: 600;
  color: rgb(0, 0, 0);
}

.properties .setting-props-layout {
  display: flex;
  align-items: center;
  justify-content: end;
  flex-direction: row;
  padding: 0;
  margin: 0;
}

.properties .setting-props-layout button {
  margin-left: 0.5rem;
}

.properties .setting-props-layout .btn-list {
  color: white;
}

.properties .setting-props-layout__filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.properties .properties-left {
  display: flex;
  justify-content: start;
  flex-direction: column;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  height: 1080px;
}

.properties-left::-webkit-scrollbar {
  width: 1em;
}

.properties-left::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.048);
  border-radius: 1.5rem;
}

.properties-left::-webkit-scrollbar-thumb {
  background-color: rgb(238, 238, 238);
  outline: none;
  border-radius: 20px;
}

/*--------------------------------------------------------------
# Pagination
--------------------------------------------------------------*/
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  padding: 0;
  margin: 0;
  padding: 2rem 0;
}

/* Card Body */
.card-body {
  display: flex !important;
  flex-direction: column !important;
  margin: 0.5rem 0.5rem;
}

.card-body .principal-info {
  display: flex;
  flex-direction: column;
  align-items: start;
  border-bottom: 1px solid #eaeaea;
}

.card-body .principal-info small,
.card-body .principal-info p {
  font-size: 0.8rem;
  color: var(--text-secundary);
}

.card-body .principal-info .card-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secundary);
  padding: 0.5rem 0;
  text-transform: uppercase;
}

.card-body .secundary-info {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.5rem 0;
  border-bottom: 1px solid #eaeaea;
  font-size: 1.2rem;
}

.card-body .secundary-info span {
  color: var(--text-secundary);
  margin-left: 1.5rem;
}

.card-body .more-info {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 0.5rem;
  font-weight: 700;
  font-size: 1.3rem;
}

/* carousel property */
.demo {
  padding: 45px 0;
}
.product-grid2 {
  font-family: 'Open Sans', sans-serif;
  position: relative;
}
.product-grid2 .product-image2 {
  overflow: hidden;
  position: relative;
}
.product-grid2 .product-image2 a {
  display: block;
}
.product-grid2 .product-image2 img {
  width: 100%;
  height: auto;
}
.product-image2 .pic-1 {
  opacity: 1;
  transition: all 0.5s;
}
.product-grid2:hover .product-image2 .pic-1 {
  opacity: 0;
}
.product-image2 .pic-2 {
  width: 100%;
  height: 100%;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
}
.product-grid2:hover .product-image2 .pic-2 {
  opacity: 1;
}
.product-grid2 .social {
  padding: 0;
  margin: 0;
  position: absolute;
  bottom: 50px;
  right: 25px;
  z-index: 1;
}
.product-grid2 .social li {
  margin: 0 0 10px;
  display: block;
  transform: translateX(100px);
  transition: all 0.5s;
}
.product-grid2:hover .social li {
  transform: translateX(0);
}
.product-grid2:hover .social li:nth-child(2) {
  transition-delay: 0.15s;
}
.product-grid2:hover .social li:nth-child(3) {
  transition-delay: 0.25s;
}
.product-grid2 .social li a {
  color: #505050;
  background-color: #fff;
  font-size: 17px;
  line-height: 45px;
  text-align: center;
  height: 45px;
  width: 45px;
  border-radius: 50%;
  display: block;
  transition: all 0.3s ease 0s;
}
.product-grid2 .social li a:hover {
  color: #fff;
  background-color: #3498db;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}
.product-grid2 .social li a:after,
.product-grid2 .social li a:before {
  content: attr(data-tip);
  color: #fff;
  background-color: #000;
  font-size: 12px;
  line-height: 22px;
  border-radius: 3px;
  padding: 0 5px;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(-50%);
  position: absolute;
  left: 50%;
  top: -30px;
}
.product-grid2 .social li a:after {
  content: '';
  height: 15px;
  width: 15px;
  border-radius: 0;
  transform: translateX(-50%) rotate(45deg);
  top: -22px;
  z-index: -1;
}
.product-grid2 .social li a:hover:after,
.product-grid2 .social li a:hover:before {
  opacity: 1;
}
.product-grid2 .add-to-cart {
  color: #fff;
  background-color: #404040;
  font-size: 15px;
  text-align: center;
  width: 100%;
  padding: 10px 0;
  display: block;
  position: absolute;
  left: 0;
  bottom: -100%;
  transition: all 0.3s;
}
.product-grid2 .add-to-cart:hover {
  background-color: #3498db;
  text-decoration: none;
}
.product-grid2:hover .add-to-cart {
  bottom: 0;
}
.product-grid2 .product-new-label {
  background-color: #3498db;
  color: #fff;
  font-size: 17px;
  padding: 5px 10px;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s;
}
.product-grid2:hover .product-new-label {
  opacity: 0;
}
.product-grid2 .product-content {
  padding: 20px 10px;
  text-align: center;
}
.product-grid2 .title {
  font-size: 17px;
  margin: 0 0 7px;
}
.product-grid2 .title a {
  color: #303030;
}
.product-grid2 .title a:hover {
  color: #3498db;
}
.product-grid2 .price {
  color: #303030;
  font-size: 15px;
}
@media screen and (max-width: 990px) {
  .product-grid2 {
    margin-bottom: 30px;
  }
}
/* carousel property END */


/*--------------------------------------------------------------
# Blog Sidebar
--------------------------------------------------------------*/
.blog .sidebar {
  padding: 30px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.blog .sidebar .sidebar-title {
  font-size: 20px;
  font-weight: 700;
  padding: 0;
  margin: 0;
  color: var(--color-secondary);
}

.blog .sidebar .sidebar-item + .sidebar-item {
  margin-top: 40px;
}

.blog .sidebar .search-form form {
  background: #fff;
  border: 1px solid rgba(82, 86, 94, 0.3);
  padding: 3px 10px;
  position: relative;
}

.blog .sidebar .search-form form input[type='text'] {
  border: 0;
  padding: 4px;
  border-radius: 4px;
  width: calc(100% - 40px);
}

.blog .sidebar .search-form form input[type='text']:focus {
  outline: none;
}

.blog .sidebar .search-form form button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 15px;
  margin: -1px;
  background: var(--color-primary);
  color: var(--color-secondary);
  transition: 0.3s;
  border-radius: 0 4px 4px 0;
  line-height: 0;
}

.blog .sidebar .search-form form button i {
  line-height: 0;
}

.blog .sidebar .search-form form button:hover {
  background: rgba(254, 185, 0, 0.8);
}

.blog .sidebar .categories ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .categories ul li + li {
  padding-top: 10px;
}

.blog .sidebar .categories ul a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .categories ul a:hover {
  color: var(--color-default);
}

.blog .sidebar .categories ul a span {
  padding-left: 5px;
  color: rgba(54, 77, 89, 0.4);
  font-size: 14px;
}

.blog .sidebar .recent-posts .post-item {
  display: flex;
}

.blog .sidebar .recent-posts .post-item + .post-item {
  margin-top: 15px;
}

.blog .sidebar .recent-posts img {
  max-width: 80px;
  margin-right: 15px;
}

.blog .sidebar .recent-posts h4 {
  font-size: 15px;
  font-weight: bold;
}

.blog .sidebar .recent-posts h4 a {
  color: var(--color-secondary);
  transition: 0.3s;
}

.blog .sidebar .recent-posts h4 a:hover {
  color: var(--color-primary);
}

.blog .sidebar .recent-posts time {
  display: block;
  font-style: italic;
  font-size: 14px;
  color: rgba(54, 77, 89, 0.4);
}

.blog .sidebar .tags {
  margin-bottom: -10px;
}

.blog .sidebar .tags ul {
  list-style: none;
  padding: 0;
}

.blog .sidebar .tags ul li {
  display: inline-block;
}

.blog .sidebar .tags ul a {
  color: #838893;
  font-size: 14px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  border: 1px solid rgba(131, 136, 147, 0.4);
  display: inline-block;
  transition: 0.3s;
}

.blog .sidebar .tags ul a:hover {
  color: var(--color-secondary);
  border: 1px solid var(--color-primary);
  background: var(--color-primary);
}

.blog .sidebar .tags ul a span {
  padding-left: 5px;
  color: rgba(131, 136, 147, 0.8);
  font-size: 14px;
}

/*--------------------------------------------------------------
# Contact Agent Section
--------------------------------------------------------------*/
.contact-agent-section {
  background-color: var(--bg-light);
  padding: 2rem 0.5rem;
}

.contact-agent-section .contact-agent-section__img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-agent-section .contact-agent-section__img img {
  height: 10rem;
}

.contact-agent-section .contact-agent-section__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: start;
}

.contact-agent-section__info h4,
.contact-send-section h4 {
  color: var(--text-dark);
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 0.5rem 0;
}

.contact-agent-section__info .contact-info span {
  display: flex;
}

.contact-info span i {
  padding-top: 0.1rem;
  padding-right: 0.5rem;
}

.contact-agent-section .contact-agent-section__button {
  margin: 1rem 0;
}

.contact-agent-section .contact-agent-section__button a {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1rem;
}

@media (min-width: 768px) {
  .contact-agent-section .contact-agent-section__img img {
    height: 15rem;
  }
  .contact-agent-section .contact-agent-section__info {
    align-items: center;
  }
}

.contact-send-section form input,
.contact-send-section form textarea {
  background-color: transparent;
  margin: 0.3rem;
  border-radius: 25px;
  border: 2px solid var(--bg-dark);
}

.contact-send-section form input:focus,
.contact-send-section form textarea:focus {
  outline: none !important;
  box-shadow: none;
  background-color: var(--bg-light);
  border: 2px solid var(--bg-dark);
}
.contact-send-section form button {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1rem;
}

.contact-send-section form button:hover,
.contact-send-section form button:focus {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about-section,
.contact-section {
  margin-top: 6rem;
}

@media (min-width: 768px) {
  .about-section,
  .contact-section {
    margin-top: 13rem;
  }
}

.about-section img {
  padding-right: 1.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}

.about-section p {
  padding-bottom: 5px !important;
  height: auto;
  float: right;
}

.about-section .mision-vision-section {
  height: auto;
}

.about-section .mision-vision-section h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secundary);
}

.about-section .bg-mision-vision-img {
  background-image: url('/assets/img/about/about-team.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 20rem;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/

.contact-section .row {
  background-color: var(--bg-light);
  padding: 0.7rem 0.5rem;
  border-radius: 25px;
}

@media (min-width: 768px) {
  .contact-section .row {
    padding: 2rem 0.5rem;
  }
}

.contact-section form input,
.contact-section form textarea {
  background-color: transparent;
  margin: 0.3rem;
  border-radius: 25px;
  border: 2px solid var(--bg-dark);
}
.contact-section form input::placeholder,
.contact-section form textarea::placeholder {
  color: var(--bg-dark);
}

.contact-section form input:focus,
.contact-section form textarea:focus {
  outline: none !important;
  box-shadow: none;
  background-color: var(--bg-light);
  border: 2px solid var(--bg-dark);
}

.contact-section form button {
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: none;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  margin: 1rem 0;
}

.contact-section .section-subheader {
  margin-left: 2rem;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-section .contact-form-info ul {
  list-style: none;
}

.contact-section .contact-form-info ul li {
  padding: 0.7rem 0;
}

.contact-section .contact-form-info ul li i {
  padding-right: 0.5rem;
}

.mapboxgl-canvas-container {
  width: 1920px;
  height: 80vh !important;
  border-radius: 15px;
}

.mapboxgl-canvas {
  width: max-content !important;
}

#map {
  width: 100% !important;
  height: 45% !important;
  border-radius: 5px !important;

}

.initialMap {
  height: 0 !important;
  overflow: hidden;
}