/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
html{
  background-color: #000;
}
body {
  font-family: "Open Sans", sans-serif;
  background-color: #000;
  color: #fff;
  position: relative;
  background: transparent;
  min-width: 368px;
}
body::before {
  content: "";
  position: fixed;
  /* background: #000 url("../img/bg.jpg") top right no-repeat; */
  background-color: #000;
  background-size: cover;
  left: 0;
  right: 0;
  top: 0;
  height: 50vh;
  z-index: -1;
}
@media (min-width: 1024px) {
  body::before {
    background-attachment: fixed;
  }
}

a {
  color: #18d26e;
  text-decoration: none;
}

a:hover {
  color: #35e888;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: ease-in-out 0.3s;
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  z-index: 997;
  overflow-y: auto;
}
#header * {
  transition: ease-in-out 0.3s;
}
#header h1 {
  font-size: 48px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}
#header h1 a, #header h1 a:hover {
  color: #fff;
  line-height: 1;
  display: inline-block;
}
#header h2 {
  font-size: 24px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
}
#header h2 span {
  color: #fff;
  border-bottom: 2px solid #18d26e;
  padding-bottom: 6px;
}
#header img {
  padding: 0;
  margin: 0;
}
#header .social-links {
  margin-top: 40px;
  display: flex;
}
#header .social-links a {
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.5);
  color: #fff;
  line-height: 1;
  margin-right: 8px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
#header .social-links a:hover {
  background: #18d26e;
}
#header .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 992px) {
  #header h1 {
    font-size: 36px;
  }
  #header h2 {
    font-size: 20px;
    line-height: 30px;
  }
  #header .social-links {
    margin-top: 15px;
  }
  
}

/* Header Top */
#header.header-top {
  height: 80px;
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.9);
}
#header.header-top .social-links, #header.header-top h2 {
  display: none;
}
#header.header-top h1 {
  margin-right: auto;
  font-size: 36px;
}
#header.header-top .container {
  display: flex;
  align-items: center;
}
#header.header-top .navbar {
  margin: 0;
}
@media (max-width: 768px) {
  #header h1 {
    font-size: 26px;
  }
  #header h2 {
    font-size: 16px;
  }
  #header.header-top {
    height: 60px;
  }
  #header.header-top h1 {
    font-size: 26px;
  }
  .gallery__caption{
    font-size: 12px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  /* overflow: hidden; */
  /* position: absolute; */
  background-color: #000;
  width: 100%;
  top: 140px;
  bottom: 100%;
  opacity: 1;
  transition: ease-in-out 0.4s;
  z-index: 2;
}
section.section-show {
  top: 100px;
  bottom: auto;
  opacity: 1;
  padding-bottom: 45px;
}
section .container {
  background: rgba(0, 0, 0, 0.9);
  padding: 30px;
}
@media (max-width: 768px) {
  section {
    top: 120px;
  }
  section.section-show {
    top: 80px;
  }
  .profile img{
    width: 30%;
    margin-bottom: 10px;
  }
  .gallery__caption{
    font-size: 12px;
  }
  .profile_info{
    font-size: 12px;
  }
}
.profile .profile_img{
  text-align: center;
}

.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 20px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #4ceb95;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: -15px 0 15px 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #fff;
}




/*--------------------------------------------------------------
# Gallery
--------------------------------------------------------------*/
.gallery {
  display: flex;
  padding: 2px;
  transition: .3s;
}  
.gallery__link {
  margin-left: 2px;
  margin-bottom: 2px;
  overflow: hidden;
  
}
.gallery__link:hover .gallery__image{
  filter: grayscale(0);
}
.gallery__link:hover .gallery__caption{
   opacity: 1;
}

.gallery__thumb {
  position: relative;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  margin:  0px;
}
.sold{
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}
.sold_price{
  text-decoration: line-through;
  background-color: red;
  border-radius: 5px;
  padding: 5px;
}
.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 25px 15px 15px;
  width: 100%;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  color: white;
  /*opacity: 0;*/
  background: linear-gradient(0deg, rgba(0, 0, 0, .5) 30%, rgba(255, 255 ,255 , 0) 100%);
  transition: .3s;
}
.gallery__column{
  display: flex;
  flex-direction: column;
  width: 33.3%;
}
.gallery__image {
  display: block;
  width: 100%;
  transition: .3s;
  
  
}
.gallery__image:hover {
  /*filter: grayscale(1);*/
  transform: scale(1.2);
}


/*--------------------------------------------------------------
# cuadro Details
--------------------------------------------------------------*/
.cuadro-details {
  padding: 40px;
  background: rgba(0, 0, 0, 0.93);
  position: fixed;
  z-index: 9000;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  overflow-y: auto;
}
.cuadro-details .close_detail{
  float: right;
  cursor: pointer;
  opacity: 0.5;
}
.cuadro-details #qrcode{
  width: 150px;
}
.cuadro-details .cuadro-img .next-btn{
  float: right;
  cursor: pointer;
  position: relative;
  padding-right: 5px;
  opacity: 0.5;
}
.cuadro-details .cuadro-img .prev-btn{
  float: right;
  cursor: pointer;
  position: relative;
  padding-right: 5px;
  opacity: 0.5;
}
.cuadro-details .cuadro-img .prev-btn:hover{
  opacity: 1;
}
.cuadro-details .cuadro-img .next-btn:hover{
  opacity: 1;
}
.cuadro-details .close_detail:hover{
  opacity: 1;
}
.prev-next-arrow{
  width: 100%;
  padding-bottom: 5px;
  text-align: center;
}
.cuadro-details .cuadro-img img{
  margin-top: 5px;
  width: 100%;
  height: auto; 
}
.cuadro-details .container {
  padding-top: 20px;
  padding-bottom: 40px;
}
.cuadro-details .cuadro-title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.cuadro-details .cuadro-info {
  padding-top: 45px;
}
.cuadro-details .cuadro-info h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 20px;
}
.cuadro-details .cuadro-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}
.cuadro-details .cuadro-info ul li + li {
  margin-top: 10px;
}
.cuadro-details .cuadro-info p {
  font-size: 15px;
  padding: 15px 0 0 0;
}
@media (max-width: 992px) {
  .cuadro-details .cuadro-info {
    padding-top: 20px;
  }
}



