:root {
  /** COLORS **/
  --orange-one: #ed7912;
  --black-one: #323131;
  --white-one: #ffffff;
  --gray-one: #979a9e;
  --gray-two: #343434;
  --gray-three: #676767;
  /** OTHERS **/
  --header-heigth: 85px;
}

/** begin:: FONT SIZES **/
@media (max-width: 480px) { html { font-size: 12px; } }
@media (min-width: 480px) { html { font-size: 13px; } }
@media (min-width: 768px) {  html { font-size: 14px; } }
@media (min-width: 992px) { html { font-size: 15px; } }
@media (min-width: 1200px) { html { font-size: 16px; } }
h1 { font-size: 2.5rem; }
h2 { font-size: 2.25rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.75rem; }
h5 { font-size: 1.5rem; }
h6 { font-size: 1.25rem; }
p { font-size: 1.1rem; }
/** end:: FONT SIZES **/

html {
  scroll-behavior: smooth;
}

body {
  color: var(--gray-one);
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
}

/** begin:: Scrollbar **/
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
  background-color: var(--gray-one);
}

body::-webkit-scrollbar {
  width: 10px;
  background-color: var(--white-one);
}

body::-webkit-scrollbar-thumb {
  background-color: var(--black-one);
  border: 2px solid var(--gray-one);
}
/** end:: Scrollbar **/

header {
  width: 100%;
  height: var(--header-heigth);
  position: fixed;
  top: 0;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
  /*background-color: var(--black-one);*/
  background: rgba(47, 47, 47, 0.5);
  backdrop-filter: blur(8px);
}

header .logo {
  height: 100%;
  display: flex;
  align-items: center;
  padding-left: 5vw;
}

header .logo img {
  height: 50px;
}

header nav ul {
  list-style: none;
}

header nav ul li a {
  color: var(--white-one);
  font-weight: 700;
}

header nav ul li a:hover {
  color: var(--white-one);
  text-decoration: none;
}

header .last {
  height: 100%;
  display: flex;
}

header .last button {
  background-color: transparent;
  width: var(--header-heigth);
  color: var(--orange-one);
  font-size: 2.5rem;
  border: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.banner h5 {
  text-transform: uppercase;
  color: var(--orange-one);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0;
  display: flex;
}

.banner h5::before {
  content: '';
  width: 40px;
  height: 6px;
  background-color: var(--orange-one);
  position: relative;
  top: -2px;
  margin-right: 15px;
}

.banner p {
  margin-left: 55px;
  font-size: 1.2rem;
}

.banner h1 {
  text-transform: uppercase;
  color: var(--white-one);
  font-weight: 900;
  font-size: 3rem;
  margin-top: 66px;
}

.banner h4 {
  font-size: 1.5rem;
}

.banner .info {
  display: flex;
  margin-top: 50px;
  margin-bottom: 60px;
}

.banner span {
  color: var(--white-one);
  font-weight: 700;
  display: flex;
  flex-direction: column;
}

.banner span.dorms {
  text-transform: uppercase;
  margin-right: 25px;
  padding-right: 25px;
  border-right: 2px solid var(--gray-three);
}

.banner .about-more {
  position: absolute;
  bottom: 0;
  border-bottom: 10px solid var(--orange);
  cursor: pointer;
  height: 45px;
}

.banner .about-more a {
  padding: 15px 0 15px;
  margin: 0;
  color: var(--white-one);
}

.banner .about-more a i {
  color: var(--orange-one);
  margin-left: 5px;
}

.banner button {
  background-color: var(--orange-one);
  color: var(--white-one);
  border: none;
  padding: 15px 25px;
  font-weight: 700;
}

.banner button i {
  margin-left: 50px;
}

.banner span small {
  color: var(--orange-one);
  text-transform: capitalize;
  font-weight: 700;
}

.banner-content {
  width: 100%;
  height: 500px;
}

section.about {
  width: 100%;
  height: 700px;
  display: flex;
  background-image: url(../img/bg_quem_somos.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: var(--header-heigth);
  position: relative;
}

section.about .image {
  width: 100%;
  height: 700px;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.about .text {
  padding-left: 5vw;
}

section.about h5 {
  font-size: 1.3rem;
  text-transform: uppercase;
  margin-top: 80px;
  font-weight: 400;
  margin-bottom: 40px;
  display: flex;
}

section.about h5::before {
  content: '';
  width: 20px;
  height: 3px;
  background-color: var(--gray-one);
  position: relative;
  top: -1px;
  left: -10px;
}

section.about h2 {
  text-transform: uppercase;
  color: var(--orange-one);
  font-weight: 900;
}

section.about p {
  color: #fff;
  margin-top: 40px;
  margin-bottom: 80px;
}

section.about b {
  color: var(--white-one);
}

section.about button {
  background-color: var(--orange-one);
  color: var(--white-one);
  font-weight: 700;
  border: none;
  padding: 20px 40px;
  font-size: 1.5rem;
  margin-top: 15px;
  transition: 0.3s;
}

section.about button:hover {
  background-color: #de6900;
}

section.about button i {
  margin-left: 50px;
}

section.about .image img {
  width: 100%;
}

section.about::after {
  content: "";
  position: absolute;
  right: calc((100% - 192px) / 2);
  height: 10px;
  width: 192px;
  background-color: var(--orange-one);
  bottom: -5px;
}

section.about::before {
  content: "";
  position: absolute;
  left: calc((100% - 96px) / 2);
  height: 10px;
  width: 96px;
  background-color: var(--orange-one);
  top: -5px;
}

section.contact .container {
  padding-top: 15vh;
  padding-bottom: 15vh;
}

section.contact form {
  width: 100%;
  background-color: var(--black-one);
  padding: 45px;
}

section.contact form p {
  font-weight: 700;
  color: var(--white-one);
  display: flex;
  align-items: center;
  margin-left: 80px;
}

section.contact form p::before {
  content: "";
  width: 115px;
  height: 8px;
  background-color: var(--orange-one);
  position: absolute;
  left: 2px;
}

section.contact form input {
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-three);
  padding: 5px 0;
  color: var(--white-one);
}

section.contact form input:focus {
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--orange-one);
  color: var(--white-one);
}

section.contact form textarea {
  background-color: transparent;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--gray-three);
  padding: 5px 0;
  color: var(--white-one);
}

section h5 {
  text-transform: uppercase;
  color: #a2a0a0;
  font-size: 1.2rem;
  font-weight: 400;
  margin-bottom: 55px;
  display: flex;
  align-items: center;
}

section h5::before {
  content: '';
    height: 4px;
    width: 20px;
    background-color: #d4d4d4;
    position: relative;
    margin-right: 15px;
    top: -2px;
}

.properties-a {
  padding-top: 10vh;
  padding-bottom: 10vh;
}

.properties-a .filter select {
  display: flex;
  margin-top: 25px;
  background-color: var(--orange-one);
  color: #fff;
  border: none;
  padding: 15px 55px 15px 25px;
  font-weight: 700;
}

.properties-a .filter select::before {
  content:"jgjgjgjgj";
  color: var(--orange-one); 
}

.middle-section {
  margin-bottom: 50px;
}

.middle-section .image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.middle-section img {
  height: 322px;
}

.middle-section .text {
  padding: 0 50px;
}

.middle-section .text .p-01 {
  font-size: 1.3rem;
}

.middle-section .text .p-02 {
  color: var(--orange-one);
  font-weight: 400;
  font-size: 1.1rem;
}

.middle-section .text span {
  color: var(--orange-one);
  font-weight: 700;
}

.ab01 {
  width: 100%;
  display: flex;
  padding-top: 15px;
}

.about-content {
  margin-top: 500px;
}

.ab01 .info {
  display: flex;
  align-items: center;
}

.ab01 .info img {
  margin-right: 10px;
}

.ab01 .info span {
  text-transform: uppercase;
  color: var(--orange-one);
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0;
  padding-top: 15px;
  padding-right: 30px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  line-height: 1.3rem;
}

.ab01 .info span p {
  text-transform: none;
  color: var(--gray-one);
  font-weight: 400;
}

.over {
  width: 100%;
  position: absolute;
  top: 38vh;
  display: flex;
  justify-content: center;
}

.carousel {
  width: 100%;
  height: 500px;
}

.carousel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.over::before {
  content: '';
  width: 250px;
  height: 10px;
  background-color: var(--orange-one);
  position: absolute;
  bottom: -5px;
}

.over .container {
  height: 430px;
  background-color: #fff;
  display: flex;
  align-items: center;
  -webkit-box-shadow: 10px 26px 31px 23px rgba(0,0,0,0.07);
  -moz-box-shadow: 10px 26px 31px 23px rgba(0,0,0,0.07);
  box-shadow: 10px 26px 31px 23px rgba(0,0,0,0.07);
}

.over .container .text {
  padding: 8vh 12vw;
}

.over .container .text b {
  text-transform: uppercase;
  font-weight: 900;
  color: var(--orange-one);
  font-size: 1.1rem;
}

.h3-b {
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--black-one);
  padding-right: 9vw;
}

.h4-c {
  color: var(--orange-one);
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 20px;
  margin-bottom: 50px;
}

section.contact p.text {
  margin-top: 50px;
  line-height: 1.4rem;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

section.contact small {
  font-weight: 700;
}

.help-btn-field {
  margin-top: 20px;
  margin-bottom: 50px;
}

.help-btn-field button, a.tel {
  background-color: #efefef;
  border: none;
  display: flex;
  align-items: center;
  width: 210px;
  padding: 15px 25px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--gray-three);
  transition: 0.3s;
}

.help-btn-field a {
  background-color: #efefef;
  border: none;
  display: flex;
  align-items: center;
  width: 210px;
  padding: 15px 25px;
  margin-bottom: 10px;
  font-weight: 700;
  color: var(--gray-three);
  transition: 0.3s;
}

.me__button {
  left: 16px;
  position: fixed;
  z-index: 2;
  bottom: 16px;
  height: 60px;
  width: 60px;
  min-width: 60px;
  background-color: #25D366;
  color: #fff;
  border-radius: 30px;
  box-shadow: 1px 6px 24px 0 rgba(7, 94, 84, .24);
  cursor: pointer;
  transition: background-color 0.2s linear;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whatsappme__button:hover {
  background-color: #128C7E;
  color: #fff;
  text-decoration: none;
}

.help-btn-field button i, a.tel i {
  color: var(--orange-one);
  font-size: 1.3rem;
  margin-right: 7px;
  transition: 0.3s;
}

.help-btn-field a i {
  color: var(--orange-one);
  font-size: 1.3rem;
  margin-right: 7px;
  transition: 0.3s;
}

.help-btn-field a:hover {
  background-color: var(--orange-one);
  color: #fff;
  text-decoration: none;
}

.help-btn-field a:hover i {
  color: var(--orange-one);
}

.help-btn-field button:hover, a.tel:hover i {
  color: #fff;
}

button.whatsapp {
  transition: 0.3s;
  background-color: #63d755;
  color: #ffffff;
}

a.whatsapp {
  transition: 0.3s;
  background-color: #63d755;
  color: #ffffff;
}

button.whatsapp:hover {
  background-color: #54a24b;
}

a.whatsapp:hover {
  background-color: #54a24b;
}

.help-btn-field a:hover i {
  color: #fff;
}

button.whatsapp i {
  color: #ffffff !important;
}

a.whatsapp i {
  color: #ffffff !important;
}

.orange {
  color: var(--orange-one) !important;
}

section.contact b {
  font-weight: 900;
}

section.contact h2 {
  text-transform: uppercase;
  color: var(--black-one);
  font-weight: 700;
  line-height: 2.5rem;
}

section.contact form textarea:focus {
  background-color: transparent;
  box-shadow: none;
  border-bottom: 1px solid var(--orange-one);
  color: var(--white-one);
}

section.contact form .form-check-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.874rem;
  font-weight: 700;
}

section.contact form button {
  width: 100%;
  background-color: var(--orange-one);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white-one);
  border-radius: 0;
  font-weight: 700;
  height: 56px;
  border: none;
  padding: 5px 30px;
  transition: 0.3s;
}

section.contact form button:hover {
  background-color: #de6900;
  border: none;
}

section.contact form button:focus {
  background-color: var(--orange-one);
  border: none;
}

section.contact form button:active {
  background-color: var(--orange-one) !important;
  border: none;
}

.subjects {
  background-color: #424242;
  padding: 15px 15px 10px 15px;
  border-radius: 6px;
  margin-bottom: 25px;
}

.contact-form {
  margin-bottom: 50px;
}

.input-group-prepend {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-three);
}

.scroll-test {
  height: 60px;
  margin-top: 50px;
}

.scroll-test button {
  background-color: #323131;
  border: none;
  border-radius: 3px;
  color: #fff;
  padding: 10px 15px;
  height: 40px;
  margin-right: 10px;
  margin-top: 10px;
}

.scroll-test .bar {
  display: flex;
  width: 100%;
  height: 10px;
  background-color: #dedede;
  margin-top: 25px;
}

.scroll-test .bar::after {
  content: '';
  width: 250px;
  height: 10px;
  background-color: var(--orange-one);
}

.carousel-card {
  cursor: pointer;
  width: 330px;
  margin-left: 10px;
  margin-bottom: 34px;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  -webkit-box-shadow: 0px 6px 34px -13px rgba(0,0,0,0.68);
  -moz-box-shadow: 0px 6px 34px -13px rgba(0,0,0,0.68);
  box-shadow: 0px 6px 34px -13px rgba(0,0,0,0.68);
}

.carousel-card::after {
  opacity: 0;
  content: '';
  width: 330px;
  height: 400px;
  position: absolute;
  background-color: #32313159;
  transition: opacity 0.5s;
}

.carousel-card:hover::after {
  opacity: 1;
}

.carousel-card-body {
  height: 400px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 0;
  display: flex;
  align-items: flex-end;
}

.carousel-card-body span {
  background-color: var(--orange-one);
  color: var(--white-one);
  position: absolute;
  top: 0px;
  padding: 10px 15px;
  font-weight: 700;
}

.carousel-card-body h4 {
  text-transform: uppercase;
  width: 100%;
  color: var(--white);
  font-weight: 700;
  font-size: 2rem;
}

.carousel-card-body .info {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 50px 25px 15px 25px;
  background-image: linear-gradient(to bottom, transparent 0%, #0000009c 100%);
}

.carousel-card-body .info:after {
  content: '';
  width: 50px;
  height: 5px;
  position: relative;
  bottom: -17px;
  background-color: var(--orange-one);
}

.carousel-card-body small {
  width: 100%;
  color: var(--orange-one);
  font-weight: 700;
  font-size: 1rem;
}

.carousel-card-footer {
  display: flex;
  padding: 15px 25px;
  justify-content: space-between;
}

.carousel-card-footer .info {
  display: flex;
  align-items: center;
}

.cronogram {
  position: relative;
}

.cronogram-picture {
  position: relative;
}

.cronogram-picture span {
  width: 600px;
  height: 60px;
  background-color: #323131;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange-one);
  font-weight: 700;
  position: absolute;
  left: calc((100% - 600px) / 2);
  bottom: 0;
}

.gallery-property button {
  width: 50px;
  height: 50px;
  background-color: #323131;
  border-radius: 5px;
}

.gallery-property button:hover {
  background-color: #323131;
}

.gallery-property button:focus {
  background-color: #323131;
}

.gallery-property button.slick-prev {
  left: 965px;
  z-index: 9;
  top: 680px;
}

.gallery-property button.slick-prev::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f053";
}

.gallery-property button.slick-next {
  right: 30px;
  top: 680px;
}

.gallery-property button.slick-next::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f054";
}

.cronogram.single-item button {
  width: 50px;
  height: 50px;
  background-color: #323131;
  border-radius: 5px;
}

.cronogram.single-item button:hover {
  background-color: #323131;
}

.cronogram.single-item button:focus {
  background-color: #323131;
}

.cronogram.single-item button.slick-prev {
  left: 55px;
  z-index: 9;
}

.cronogram.single-item button.slick-prev::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f053";
}

.cronogram.single-item button.slick-next {
  right: 55px;
}

.cronogram.single-item button.slick-next::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f054";
}

.multiple-items button {
  width: 50px;
  height: 50px;
  background-color: #323131;
  border-radius: 5px;
}

.multiple-items button:hover {
  background-color: #323131;
}

.multiple-items button:focus {
  background-color: #323131;
}

.multiple-items button.slick-prev {
  z-index: 9;
  left: -55px;
}

.multiple-items button.slick-prev::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f053";
}

.multiple-items button.slick-next {
  right: -55px;
}

.multiple-items button.slick-next::before {
  font-family: "Font Awesome 5 Free"; font-weight: 900; content: "\f054";
}

.carousel-card-footer .info span {
  font-weight: 700;
  color: var(--black-one);
  font-size: 0.78rem;
}

.carousel-card-footer .info small {
  color: var(--orange-one);
  font-weight: 700;
  font-size: 0.7rem;
}

.carousel-card-footer .info img {
  margin-right: 15px;
}

.banner-small {
  width: 100%;
  height: 50vh;
  padding-top: var(--header-heigth);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.banner-small::after {
  content: '';
  width: 150px;
  height: 10px;
  background-color: var(--orange-one);
  position: absolute;
  top: calc(50vh - 10px);
}

.banner-small h3 {
  text-transform: uppercase;
  color: var(--white-one);
  font-weight: 900;
  text-align: center;
}

.contact h3 {
  text-transform: uppercase;
  color: var(--black-one);
  font-weight: 900;
  margin-bottom: 25px;
}

.contact p {
  margin-bottom: 25px;
  font-weight: 400;
  font-size: 1.3rem;
}

footer {
  width: 100%;
  position: relative;
  background-color: var(--gray-two);
  display: flex;
}

footer .container {
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  left: calc((100% - 192px) / 2);
  height: 10px;
  width: 192px;
  background-color: var(--orange-one);
  top: -5px;
}

footer .menu {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

footer h5 {
  color: var(--orange-one);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

footer a {
  color: var(--gray-one);
  transition: 0.3s;
}

footer a:hover {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

footer a i {
  font-size: 1.3rem;
  margin-right: 15px;
}

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

footer ul li {
  margin-bottom: 0.5rem;
}

footer form {
  display: flex;
}

footer form input {
  background-color: #595c5f;
  border: none;
  border-radius: 5px;
  padding: 0.5rem 1rem;
  margin-right: 5px;
  color: var(--gray-one);
  width: 100%;
}

footer form input::-webkit-input-placeholder {
  color: #b2b2b2;
  font-weight: 700;
}

footer form button {
  background-color: #979a9e;
  color: var(--white-one);
  border: none;
  border-radius: 5px;
  padding: 0 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

footer form button:hover {
  background-color: #ed7912;
}

footer .contact {
  width: 100%;
  height: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 0.5px solid var(--gray-three);
  border-bottom: 0.5px solid var(--gray-three);
  padding: 15px 0;
  color: #979a9e;
}

footer .contact .contact-info {
  display: flex;
  height: 100%;
}

footer .contact .contact-info a {
  height: 100%;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  margin-right: 35px;
  cursor: pointer;
  transition: 0.3s;
}

footer .contact .contact-info a:hover {
  color: #fff;
  font-weight: 400;
}

footer .contact .contact-info a i {
  margin-right: 15px;
}

footer .contact .social {
  display: flex;
  align-items: center;
  font-weight: 300;
}

footer .contact .social span {
  margin-right: 10px;
}

footer .contact .social i {
  font-size: 1.3rem;
  cursor: pointer;
  transition: 0.3s;
}

footer .contact .social i:hover {
  color: #fff;
}

footer .copyright {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer .copyright span {
  width: 100%;
}

.back-to-top {
  text-align: center;
}

.back-to-top button {
  border: 3px solid var(--gray-three);
  border-radius: 6px;
  color: #fff;
  background-color: transparent;
  padding: 15px 20px;
  font-weight: 700;
  font-size: 1.1rem;
  transform: 0.3s;
}

.back-to-top button:hover {
  background-color: var(--gray-three);
}

.back-to-top button i {
  color: var(--orange-one);
  margin-right: 15px;
}

.by {
  text-align: end;
}

footer .privacy-policy {
  width: 100%;
  height: 60px;
  background-color: var(--orange-one);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-one);
}

footer .privacy-policy p {
  margin: 0;
  padding: 0;
}

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 992px) {
  header .last .contact {
    display: none;
  }

  header .last .search {
    display: none;
  }

  header nav {
    display: none;
    position: absolute;
    top: var(--header-heigth);
    width: 100%;
    background: rgba(47, 47, 47, 0.8);
    backdrop-filter: blur(8px);
    padding-bottom: 3rem;
  }

  header nav.active {
    display: block;
  }

  header nav ul {
    margin: 0;
    padding: 0;
  }

  header nav ul li {
    height: 4rem;
    display: flex;
    align-items: center;
    padding: 0 5vw;
  }

  header nav ul li span.hiden {
    display: none;
  }

  header nav ul li a {
    font-size: 1.2rem;
  }
}
@media (min-width: 576px) {
  
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  :root { --nav-width: 50vw; }

  header nav {
    width: var(--nav-width);
    height: 100%;
  }

  header nav ul {
    height: 100%;
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  header nav ul li {
    height: 100%;
    margin-right: 2vw;
    display: flex;
    align-items: center;
    position: relative;
  }

  header nav ul li.hiden {
    display: none;
  }

  header nav ul li span {
    position: absolute;
    width: 154px;
    bottom: -165px;
    background-color: #323131eb;
    padding: 10px;
    display: block;
    opacity: 0;
    transition: 0.3s;
  }

  header nav ul li span a {
    color: #fff;
  }

  header nav ul li span a:hover {
    color: var(--orange-one);
  }

  header nav ul li span a::after {
    content: none;
  }

  header nav ul li:hover span {
    display: block;
    opacity: 1;
  }

  header nav ul li span:hover {
    display: block;
  }
  
  header nav ul li a {
    color: var(--white-one);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    margin-top: 5px;
  }

  header nav ul li a::after {
    content : "";
    position: relative;
    top: 25px;
    height: 5px;
    width: 0%;
    opacity: 0;
    background-color: var(--orange-one);
    border-radius: 2.5px 2.5px 0 0;
    transition: width 0.5s, opacity 0.5s;
  }

  header nav ul li:hover a::after {
    opacity: 1;
    width: 100%;
  }

  header nav ul li.active a::after {
    opacity: 1;
    width: 100%;
  }

  header .logo {
    width: 297.5px;
    min-width: 250px;
  }

  header .last {
    min-width: 250px;
  }

  header .last button {
    display: none;
  }

  header .last .contact {
    width: 212.5px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--black-one);
    cursor: pointer;
  }
  
  header .last .contact i {
    color: var(--orange-one);
    font-size: 1.3rem;
    margin-right: 15px;
  }
  
  header .last .contact a {
    line-height: 1rem;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-decoration: none;
    color: var(--gray-three);
  }
  
  header .last .contact:hover a {
    color: var(--white-one);
  }
  
  header .last .search {
    width: var(--header-heigth);
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    cursor: pointer;
    transition: color 0.3s;
    color: #cacaca
  }
  
  header .last .search:hover {
    color: var(--white-one);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  :root { --nav-width: 1140px; }

  header nav { 
    max-width: var(--nav-width);
    padding: 0 15px;
  }
}

/** Empreendimento **/
.property-banner {
  width: 100%;
  height: 100vh;
  display: flex;
}

.property-banner .left {
  background: rgba(47, 47, 47, 0.76);
  backdrop-filter: blur(8px);
}

.property-banner .left, .right {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 50%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.property-banner .content {
  width: 570px;
  margin-left: auto;
  padding-right: 7%;
}

.property-banner .content img {
  width: 100%;
}

.property-banner .about {
  width: 570px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.property-banner .about a {
  background-color: var(--orange-one);
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  text-decoration: none;
  color: aliceblue;
  font-weight: 600;
  font-size: 1.3rem;
}

.property-banner .about a:hover {
  background-color: #ce6910;
}

.property-banner .about a i {
  margin-left: 25px;
}

.property-banner .content .details {
  display: flex;
  margin-top: 60px;
  justify-content: space-around;
}

.property-banner .content .details span.middle {
  padding: 0 20px;
  margin: 0 20px;
  border-left: 2px solid var(--gray-one);
  border-right: 2px solid var(--gray-one);
}

.property-banner .content .details span.plus {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 2px solid var(--gray-one);
}

.property-banner .content .details h6 {
  color: var(--orange-one);
  font-size: 1rem;
  font-weight: 600;
  width: 100px;
}

.property-banner .content .details h3 {
  color: #fff;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1rem;
}

.property-banner .content .legend {
  margin-bottom: 60px;
}

.property-banner .content .legend h5 {
  margin: 0;
  color: var(--orange-one);
  font-weight: 700;
}

.property-banner .content .legend h5::before {
  background-color: var(--orange-one);
  top: 0;
}

.property-banner .content .legend p {
  margin-left: 35px;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 0 35px;
}

.property-banner .content p {
  font-weight: 600;
  margin-top: 25px;
  color: #fff;
}

/*****************************************************/

#fader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  pointer-events: none;
  background: white;
  animation-duration: 900ms;
  animation-timing-function: ease-in-out;
}

@keyframes fade-out {
  from { opacity: 1 }
    to { opacity: 0 }
}

@keyframes fade-in {
  from { opacity: 0 }
    to { opacity: 1 }
}

#fader.fade-out {
  opacity: 0;
  animation-name: fade-out;
}

#fader.fade-in {
  opacity: 1;
  animation-name: fade-in;
}

.property-about .container {
  padding-top: var(--header-heigth);
  padding-bottom: var(--header-heigth);
}

.property-about .container .image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5%;
}

.property-about .container .image::before {
  content: '';
  width: 150px;
  height: 160px;
  background-image: radial-gradient(#d8d8d8 1px, transparent 1px);
  background-position: 0 0, 50px 50px;
  background-size: 8px 8px;
  position: absolute;
  top: 10%;
  right: 0;
}

.property-about .container .image::after {
  content: '';
  width: 80%;
  height: 31%;
  background-image: radial-gradient(#d8d8d8 1px, transparent 1px);
  background-position: 0 0, 50px 50px;
  background-size: 8px 8px;
  position: absolute;
  bottom: 4%;
  left: 2%;
}

#facade {
  z-index: 1;
}

#facade img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

#facade span {
  content: 'f00e';
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  right: 10%;
  background-color: var(--black-one);
  color: var(--gray-one);
  z-index: 3;
  cursor: pointer;
}

#facade span:hover {
  color: var(--white-one);
}

#facade p {
  position: absolute;
  bottom: -12px;
  left: 2%;
  color: #c1c1c1;
}

.section-name {
  text-transform: uppercase;
  font-size: 1.2rem;
  color: #d6d6d6;
  margin-bottom: 0;
  letter-spacing: -1px;
  padding-top: 1.2rem;
  font-weight: 400;
  display: flex;
}

.section-name::before {
  content: '';
  width: 20px;
  height: 3px;
  background-color: #d6d6d6;
  margin-top: 9px;
  margin-right: 10px;
}

.property-about .description {
  padding-left: 2rem;
  padding-top: 5rem;
}

.property-about .description h2 {
  margin-top: 3rem;
  color: var(--gray-dark);
  font-weight: 300;
  letter-spacing: -1px;
  font-size: 2.5rem;
}

.property-about .description h2.detach {
  margin: 0;
  font-weight: 700;
  color: #a0c229;
  line-height: 1;
}

.property-about .description p {
  margin-top: 2rem;
}

.property-about .description a {
  display: flex;
  color: var(--orange-one);
  margin-bottom: 15px;
}

.property-about .description a:hover {
  text-decoration: none;
}

.property-about .description a::after {
  content: '';
  content: '';
  width: 25px;
  height: 2.4px;
  background-color: var(--orange-one);
  position: relative;
  top: 26px;
  left: -112px;
}

.property-about .description h6 {
  text-transform: uppercase;
  margin-top: 5rem;
  margin-bottom: 1rem;
  color: #d6d6d6;
  font-size: 1rem;
}

.property-about .description .differentials {
  display: flex;
}

.property-about .description .differentials::before {
  content: '';
  height: 3px;
  width: 320px;
  background-color: #e6e6e6;
  position: absolute;
  bottom: 0;
}

.property-about .description .differentials::after {
  content: '';
  height: 3px;
  width: 100px;
  background-color: #a0c229;
  position: absolute;
  bottom: 0;
}

.property-about .description .differentials span {
  width: 10rem;
  padding-right: 2rem;
}

.property-about .description .differentials img {
  height: 40px;
}

.property-about .description .differentials p {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-two);
  margin-top: 1rem;
}

.property-about .tour-virtual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10%;
}

.property-about .tour-virtual a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  border-radius: 60px;
  background-color: var(--orange-one);
  color: var(--white);
  padding: 0 38px;
}

.property-about .tour-virtual a:hover {
  text-decoration: none;
}

.property-about .tour-virtual a img {
  margin-right: 25px;
  height: 50px;
}

.property-about .tour-virtual a p {
  font-size: 1rem;
  margin: 0;
  text-transform: uppercase;
}

.property-about .tour-virtual a span {
  font-size: 2rem;
  font-weight: 600;
}

.property-about .differentials {
  width: 100%;
  margin-top: 65px;
  position: relative;
}

.property-about .differentials h1 {
  text-transform: uppercase;
  color: var(--orange-one);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}

.property-about .differentials i {
  color: var(--orange-one);
}

.property-about .differentials span {
  margin-left: 10px;
}

.property-about .differentials .row::before {
  content: '';
  width: 100%;
  top: 0;
  height: 35px;
  background-image: radial-gradient(#d8d8d8 1px, transparent 1px);
  background-position: 0 0, 50px 50px;
  background-size: 8px 8px;
  margin: 30px 0;
}

.property-about .differentials .row::after {
  content: '';
  width: 100%;
  height: 35px;
  background-image: radial-gradient(#d8d8d8 1px, transparent 1px);
  background-position: 0 0, 50px 50px;
  background-size: 8px 8px;
  margin: 30px 0;
}

.property-about .differentials .row .col-md-3 {
  padding-left: 0;
}

.property-gallery .container p {
  margin-top: 130px;
  width: 84%;
  margin-left: auto;
  margin-right: auto;
}

.property-datasheet {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.property-datasheet .container {
  padding-top: var(--header-heigth);
  padding-bottom: var(--header-heigth);
}

.property-datasheet .container .title {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #dadada61;
}

.property-datasheet .container .title h1 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white-one);
  padding-bottom: 2rem;
  margin: 0 0 -1px 0;
  border-bottom: 1px solid var(--orange-one);
}

.property-datasheet .container .resume {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 1px solid #dadada61;
  padding-top: 2rem;
  padding-bottom: 2rem;
  margin-bottom: 4rem;
}

.property-datasheet .container .resume span {
  display: flex;
  margin-left: 2rem;
}

.property-datasheet .container .resume span img {
  background-color: var(--orange-one);
  padding: 12px;
}

.property-datasheet .container .resume span .text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 15px;
}

.property-datasheet .container .resume span .text small {
  font-weight: 700;
  color: var(--orange-one);
}

.property-datasheet .container .resume span .text p {
  margin: 0;
  font-weight: 700;
  color: var(--white-one);
  white-space: pre;
}

.property-datasheet .container .feature-table {
  padding-bottom: 4rem;
}

.property-datasheet .container .feature {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ed791261;
}

.property-datasheet .container .feature.inverse {
  border: none;
  padding-bottom: 25px;
}

.property-datasheet .container .feature .label {
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white-one);
  width: 50%;
}

.property-datasheet .container .feature .label i {
  width: 25px;
  color: var(--orange-one);
  margin-right: 10px;
}

.property-datasheet .container .feature small {
  color: var(--white-one);
  text-align: end;
  font-size: 1rem;
}

.property-datasheet .doted-full {
  display: flex;
  width: 100%;
  height: 65px;
  background-image: radial-gradient(#d8d8d845 1px, transparent 1px);
  background-position: 0 0, 50px 50px;
  background-size: 8px 8px;
  margin-top: 4rem;
}

.property-datasheet .doted-full::after {
  content: '';
  position: relative;
  width: 250px;
  height: 10px;
  background-color: var(--orange-one);
  top: 55px;
  left: calc((100% - 250px) / 2);
}

.property-gallery {
  padding-top: var(--header-heigth);
  padding-bottom: 150px;
  background-color: #f2f2f2;
}

.property-gallery .container .gallery-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 2rem 0 3rem 0;
}

.property-gallery .container .gallery-header h1 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  color: var(--orange-one);
  letter-spacing: -1px;
}

.property-gallery .container .gallery-header .menu-tab {
  border-bottom: 2px solid #d6d6d6;
}

.property-gallery .container .gallery-header .menu-tab span {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1.3rem;
  padding-bottom: 1.5rem;
  margin-right: 25px;
  cursor: pointer;
}

.hide {
  opacity: 0;
  z-index: -1;
  position: absolute;
}

.gallery-main {
  transition: 0.5s;
}

.plants {
  width: 100%;
  height: auto;
  position: absolute;
  top: 15px;
  left: 0;
  transition: 0.5s;
}

.property-gallery .container .gallery-header .menu-tab .active {
  padding-bottom: 16px;
  color: var(--orange-one);
  border-bottom: 4px solid var(--orange-one);
}

.property-gallery .gallery-body {
  padding: 1.3%;
  background-image: radial-gradient(#d8d8d8 1px, transparent 1px);
  background-position: 0 0, 50px 50px;
  background-size: 8px 8px;
  position: relative;
  min-height: 600px;
}

.property-gallery .gallery-body img {
  width: 100%;
  display: block;
  height: 600px;
  object-fit: cover;
}

.property-gallery .gallery-nav {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.property-gallery .gallery-nav .bar {
  align-items: center;
  width: 80%;
  height: 5px;
  background-color: #d6d6d6;
}

.property-gallery .gallery-nav .options {
  display: flex;
}

.property-gallery .gallery-nav .options i {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background-color: var(--black-one);
  color: #fff;
  margin-right: 15px;
  cursor: pointer;
}

.property-gallery .gallery-nav .options i:hover {
  background-color: var(--orange-one);
}

.nav-item {
  position: relative;
}

.nav-pills .nav-link.active {
  color: var(--orange-one);
  font-weight: 900;
  font-size: 1.3rem;
  background-color: transparent;
  border-radius: 0;
  text-transform: uppercase;
}

.nav-pills .nav-link.active::before {
  content: '';
  height: 3px;
  width: 100%;
  background-color: #ed7912;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.nav-pills .nav-link {
  color: #929292;
  font-weight: 900;
  font-size: 1.3rem;
  background-color: transparent;
  border-radius: 0;
  text-transform: uppercase;
}

ul.nav {
  border-bottom: 2px solid #9292926b;
}

.property-location {
  display: flex;
  flex-direction: column;
  background-image: radial-gradient(#d8d8d89c 1px, transparent 1px);
  background-position: 0 0, 50px 50px;
  background-size: 8px 8px;
  position: relative;
  padding-top: 5rem;
}

.property-location::before {
  content: '';
  width: 100%;
  height: 60%;
  position: absolute;
  top: 447px;
  background: linear-gradient(180deg, var(--orange-one) 10px, var(--black-one) 10px, var(--black-one) );
}

.property-location .head {
  width: 100%;
}

.property-location .head h1 {
  color: var(--orange-one);
  font-weight: 700;
  text-transform: uppercase;
}

.property-location .head h2 {
  font-weight: 400;
  font-size: 2rem;
  text-align: right;
}

#map {
  width: 100%;
  height: 500px;
  position: relative;
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

#map iframe {
  width: 80%;
  min-height: 450px;
  -webkit-box-shadow: 13px 14px 61px -4px rgba(0,0,0,0.38);
  -moz-box-shadow: 13px 14px 61px -4px rgba(0,0,0,0.38);
  box-shadow: 13px 14px 61px -4px rgba(0,0,0,0.38);
}

.property-location .footer {
  width: 100%;
  margin-top: 3rem;
}

.property-location .footer h1 {
  color: var(--orange-one);
  font-weight: 300;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.property-location .footer button {
  border: 1px solid var(--orange-one);
  background-color: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  margin: 1rem;
  padding: 1rem 1.5rem;
  text-align: left;
}

.property-location .footer button:hover {
  background-color: var(--orange-one);
}

.property-location .footer button.active {
  background-color: var(--orange-one);
}

.property-location .footer button i {
  margin-right: 10px;
}

.property-location .footer .menu {
  display: flex;
  flex-direction: column;
}

.property-location .footer .menu span {
  width: 100%;
  display: flex;
}

.properties-banner {
  padding-top: var(--header-heigth);
  background-image: url(../img/banner_empreendimentos.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.properties-banner h1 {
  margin-top: 5rem;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 2rem;
  color: var(--orange-one);
}

.properties-banner h2 {
  margin-top: 3rem;
  color: var(--black-one);
  font-size: 1.3rem;
  font-weight: 700;
}

.properties-banner p {
  font-size: 1rem;
}

.properties-banner .doted-full {
  margin-bottom: 4rem;
  width: 100%;
  height: 35px;
  background-image: radial-gradient(#d8d8d8 1px, transparent 1px);
  background-position: 0 0, 50px 50px;
  background-size: 8px 8px;
  position: relative;
  bottom: -37px;
}

.property-video {
  width: 100%;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #F3F3F3;
}

.info img {
  width: unset;
  height: auto;
  object-fit: contain;
}

.property-video .container {
  background-color: #F3F3F3;
  height: 100%;
}

.property-video .container h1 {
  width: 100%;
  text-align: center;
  color: var(--orange-one);
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 100px;
  margin-bottom: 3rem;
}

.property-cronogram {
  width: 100%;
  background-image: radial-gradient(#d8d8d8 1px, transparent 1px);
  background-position: 0 0, 50px 50px;
  background-size: 8px 8px;
  background-color: #F3F3F3;
}

.property-cronogram .container {
  padding-bottom: 5rem;
  background-color: #F3F3F3;
  height: 100%;
}

.property-cronogram .container h1 {
  width: 100%;
  text-align: center;
  color: var(--orange-one);
  text-transform: uppercase;
  font-weight: 700;
  padding-top: 100px;
}

.property-cronogram .container .gallery {
  background-color: #63d755;
  width: 100%;
  height: 500px;
  margin: 3rem 0;
  -webkit-box-shadow: 10px 10px 46px -13px rgba(0,0,0,0.75);
  -moz-box-shadow: 10px 10px 46px -13px rgba(0,0,0,0.75);
  box-shadow: 10px 10px 46px -13px rgba(0,0,0,0.75);
}

.subjects select {
  width: 100%;
  background-color: transparent;
  color: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.subjects select:hover {
  background-color: #6d6d6d;
}

.subjects select option {
  color: #fff;
}

.property-cronogram .container .data {
  width: 100%;
}

.property-cronogram .container .data ul {
  width: 100%;
  padding: 2rem;
  list-style: none;
}

.property-cronogram .container .data ul li {
  width: 100%;
  margin-bottom: 15px;
}

.property-cronogram .container .data ul li .info {
  width: 100%;
  color: var(--black-one);
  font-weight: 700;
  margin-top: 5px;
}

.property-cronogram .container .data ul li i {
  color: var(--orange-one);
  margin-right: 15px;
}

.property-cronogram .container .data ul li span {
  float: right;
  font-weight: 400;
}

.property-cronogram .container .data ul li .bar {
  width: 100%;
  height: 10px;
  background-color: #979a9e;
}

.property-cronogram .container .data ul li .bar span {
  height: 10px;
  background-color: var(--orange-one);
  float: left;
}

.gallery-body button {
  width: 50px;
  height: 50px;
  background-color: #323131;
  border-radius: 5px;
}

.gallery-body .slick-prev {
  left: -65px;
  z-index: 1;
}

.gallery-body .slick-next {
  right: -65px;
}

.gallery-body .slick-prev:focus, .slick-prev:hover {
  background-color: #323131;
}

.gallery-body .slick-next:focus, .slick-next:hover {
  background-color: #323131;
}

.gallery-body button.slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
}

.gallery-body button.slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
}

.property-cronogram .gallery img {
  width: 100%;
  display: block;
  height: 500px;
  object-fit: cover;
}

.property-banner .row {
  width: 100%;
  cursor: pointer;
}

.property-banner img {
  width: 100%;
  height: 100%;
  max-height: 185px;
}

.home-banner .banner {
  width: 100%;
  height: 100vh;
  display: flex;
}

.home-banner .banner .banner-image {
  width: 50%;
}

.home-banner .banner .banner-content {
  width: 50%;
  padding: 5vw;
}

.home-banner .banner .banner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner .slick-prev {
  left: 35px;
  z-index: 9;
}

.home-banner .slick-next {
  right: 35px;
}

/*.home-banner .slick-prev:focus, .slick-prev:hover {
  background-color: transparent;
}

.home-banner .slick-next:focus, .slick-next:hover {
  background-color: transparent;
}*/

.gallery-slide {
  position: relative;
}

.gallery-legend {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;
}

.gallery-legend span {
  height: 50px;
  background-color: var(--orange-one);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 25px;
  font-weight: 700;
}

.gallery-legend::before {
  content: '\f00e';
  font-family: "Font Awesome 5 Free"; font-weight: 900;
  width: 50px;
  height: 50px;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  right: 0;
  background-color: var(--black-one);
  color: var(--gray-one);
  z-index: 3;
  cursor: pointer;
}

.home-banner button.slick-prev::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f053";
  font-size: 2rem;
  color: #a7a6a6;
}

.home-banner button.slick-next::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f054";
  font-size: 2rem;
  color: #a7a6a6;
}

.home-banner .banner-content {
  display: flex;
  height: 100vh;
  align-items: center;
  padding-left: 5vw;
}

.home-banner .banner-content .legend h5 {
  color: var(--orange-one);
  font-weight: 700;
  margin: 0;
  font-size: 1.2rem;
}

.home-banner .banner-content .legend h5::before {
  background-color: var(--orange-one);
}

.home-banner .banner-content .legend p {
  margin-top: 5px;
  margin-left: 35px;
  width: 100%;
  color: var(--gray-one);
}

.home-banner .banner-content img {
  margin-top: 3rem;
  height: 5rem;
}

.home-banner .banner-content p {
  color: var(--black-one);
  margin-top: 2rem;
  margin-left: 0;
  font-size: 1rem;
}

.home-banner .banner-content .details {
  margin-top: 5rem;
  display: flex;
}

.home-banner .banner-content .details span {
  margin-right: 2rem;
  padding-top: 5px;
}

.home-banner .banner-content .details span.center {
  padding-left: 2rem;
  padding-right: 2rem;
  border-left: 4px solid var(--gray-two);
  border-right: 4px solid var(--gray-two);
}

.home-banner .banner-content .details h6 {
  font-size: 1rem;
  color: var(--black-one);
}

.home-banner .banner-content .details h3 {
  color: var(--orange-one);
  font-size: 1.2rem;
  font-weight: 700;
}

.home-banner .banner-content .about {
  position: absolute;
  bottom: 0;
  width: 370px;
  height: 60px;
  background-color: var(--orange-one);
  color: var(--white-one);
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.home-banner .banner-content .about:hover {
  text-decoration: none;
  background-color: #de6900;
}

.home-banner .banner-content .about p {
  margin: 0;
  width: 80%;
  color: var(--white-one);
}

.home-banner .banner-content .about i {
  margin-top: 3px;
  float: right;
}

.portfolio-card {
  margin-top: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid #d8d8d8;
}

.portfolio-card .card-img {
  display: flex;
  justify-content: center;
}

.portfolio-card img {
  width: 233px;
  height: 340px;
  border-left: 5px solid var(--orange-one);
}

.portfolio-card h1 {
  text-transform: uppercase;
  font-weight: 700;
  color: var(--orange-one);
  font-size: 1.1rem;
  margin-top: 2rem;
}

.portfolio-card h3 {
  font-size: 1rem;
  position: relative;
}

.portfolio-card h3::before {
  content: '';
  height: 5px;
  width: 34px;
  background-color: #ed7912;
  position: absolute;
  bottom: -12px;
}

.portfolio-card ul {
  margin-top: 2rem;
  font-size: 1rem;
  padding-left: 15px;
}

.portfolio-card a {
  color: var(--orange-one);
  font-weight: 400;
}

.filters {
  display: flex;
  width: 100%;
  margin: 0 25px 35px 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #dedede;
}

.filters select {
  background-color: #dedede;
  border-radius: 0;
  border: none;
  height: 50px;
  cursor: pointer;
  font-weight: 600;
}

.filters select:focus {
  background-color: #dedede;
}

.filters .last {
  margin-left: auto;
}

@media only screen and (max-width: 1024px)  {
  .help-btn-field button, a {
    width: 100%;
    display: flex;
    justify-content: center;
    text-decoration: none !important;
  }

  .help {
    margin-top: 50px;
  }

  .carousel-card {
    margin-left: 55px;
  }

  .multiple-items button.slick-prev {
    left: 0px;
  }

  .multiple-items button.slick-next {
    right: 0px;
  }
}

@media only screen and (max-width: 767px)  {
  footer .menu {
    justify-content: center;
  }

  footer .menu .col-md-3, .col-md-2, .col-md-5 {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
    width: 80%;
  }

  .property-banner img {
    max-height: 10rem;
  }

  footer ul {
    text-align: center;
  }

  footer .menu .col-md-3 ul {
    text-align: center;
  }

  footer .copyright {
    height: 100px;
    align-items: flex-end;
    position: relative;
  }

  .property-banner .content .details h3 {
    text-align: center;
  }

  .back-to-top {
    position: absolute;
    top: -7px;
  }

  .menu-a {
    width: 100%;
  }

  .over {
    top: 50vh;
  }

  .portfolio-card .row {
    justify-content: center;
  }

  .portfolio-card h1 {
    width: 100%;
  }

  .portfolio-a {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 233px;
  }

  .property-banner .content .details span.plus {
    padding-left: unset;
    margin-left: unset;
    border-left: 2px solid var(--gray-one);
    text-align: center;
  }
  .middle-section img {
    height: 20rem;
  }

  .h3-b {
    text-align: center;
  }

  .property-banner .content .details span.middle {
    padding: unset;
    margin: unset;
    border-right: unset;
  }

  .property-banner .content .details h6 {
    width: 134px;
    text-align: center;
  }

  .property-banner .right {
    display: none;
  }

  .property-banner .left {
    width: 100%;
  }

  .property-banner .content .details {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(50%, 1fr));
    grid-row-gap: 40%;
  }

  .property-banner .content .details span {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .property-datasheet .container .resume span {
    margin-bottom: 13px;
  }

  .property-datasheet .container {
    padding-top: 10vh;
    padding-bottom: unset;
  }

  .property-datasheet .container .resume span {
    margin-left: 8rem;
  }

  .property-datasheet .container .feature-table {
    padding: 5px;
  }

  .property-datasheet .container .resume {
    flex-direction: column;
  }

  .property-gallery .container .gallery-header h1 {
    text-align: center;
    margin-bottom: 30px;
  }

  .property-gallery .container .gallery-header {
    flex-direction: column;
  }

  .gallery-body .slick-prev {
    left: -10px;
  }

  .gallery-body .slick-next {
    right: -10px;
  }

  .subjects {
    text-align: center;
  }

  .property-banner .content {
    width: 100%;
    margin-left: auto;
    padding-right: 7%;
    padding-left: 7%;
  }

  .property-banner .about {
    width: 100%;
  }

  a.tel {
    width: 100%;
  }

  .menu-b .form-control,
  .menu-b .form-group .form-control {
    margin-right: unset !important;
    width: 90%;
  }

  .property-banner .about a {
    width: 100%;
  }

  section.contact .container {
    padding-top: 6vh;
    padding-bottom: 6vh;
  }

  section h5 {
    margin-bottom: unset;
    width: 100%;
  }
  .by a {
    justify-content: flex-end;
  }
  .social {
    width: 130px;
    display: flex;
  }

  .contact-info a {
    margin-right: unset !important;
  }

  .h4-c {
    text-align: center;
  }

  .carousel-card {
    margin-left: 27px;
    width: 24rem;
  }

  section.about .image {
    display: none;
  }

  section.about {
    height: 625px;
  }

  .home-banner .banner .banner-image {
    display: none;
  }
}

.differentials-a h1 {
  margin: 36px 0 -1px 0 !important;
}

.differentials-a span {
  color: #ffffff;
}

.differentials-a .row {
  margin-top: 36px;
}

.differentials-a i {
  color: var(--orange-one);
  margin-right: 10px;
}

.finish {
  position: absolute;
  display: flex;
  align-items: center;
  text-transform: uppercase;
  background-color: var(--orange-one);
  padding: 2px 22px;
  border-radius: 20px;
  margin-top: 30px;
  margin-left: 30px;
  color: var(--gray-two);
  font-weight: 700;
}

.finish img {
  height: 38px !important;
  width: 20px !important;
  object-fit: unset !important;
  margin-right: 5px;
}

.decorated {
  width: 100%;
  height: auto;
  position: absolute;
  top: 15px;
  left: 0;
  transition: 0.5s;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 19px;
}

