@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@200&family=Roboto:wght@300;400;500;600;700&display=swap');

html{
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
}
header {
    position: absolute;
    top: 0;
    right: 0;
    padding-top: 20px;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 500px) {
    header img {
        width: 50%;
    }
}
.subtitle{
    color: rgb(201, 201, 201);
    font-size: 14px;
    position: absolute;
    margin: 68px 1px 1px 38px;
    font-weight: 300;
}
@media screen and (max-width: 500px) {
    .subtitle {
        font-size: 12px;
        margin: 75px 1px 1px 38px;
    }
}
.toggle {
    display: block;
    width: 60px;
    height: 20px;
    margin-top: 20px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
}

.toggle span {
    display: block;
    position: absolute;
    height: 1px;
    width: 68%;
    background: #ffffff;
    border-radius: 9px;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .70s ease-in-out;
    -moz-transition: .70s ease-in-out;
    -o-transition: .70s ease-in-out;
    transition: .70s ease-in-out;
}

/* Icono */
.toggle span:nth-child(1) {
    top: 0px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.toggle span:nth-child(2) {
    top: 7px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.toggle span:nth-child(3) {
    top: 14px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}

.toggle.open span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 50%;
    top: -7px;

}

.toggle.open span:nth-child(2) {
    width: 0%;
    opacity: 0;
}

.toggle.open span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    width: 50%;
}

.showcase {
    position: absolute;
    right: 0;
    width: 100%;
    min-height: 100vh;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    transition: 1.1s;
    z-index: 2;
}

.showcase.active {
    right: 300px;
}

.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.text {
    position: relative;
    z-index: 10;
    margin-bottom: 320px;
}
 
@media screen and (max-width:1300px) {
    .text {
        margin-bottom: 140px;
}
}
/* Landscape Mobile Text Position */
@media screen and (max-width:1000px) {
    .text {
        margin-bottom: 4px;
    }
}
/* Landscape Portrait Text Position */
@media screen and (max-width:450px) {
    .text {
        margin-bottom: 140px;
    }
}
.text h1{
    font-size: 10px;
    color: rgb(176, 175, 170);
    margin-bottom: 15px;
    letter-spacing: 2px;
}
.text h2 {
    font-size: 55px;
    font-weight: 300;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1em;
}

.text h3 {
    font-size: 60px;
    font-weight: 300;
    letter-spacing: -2px;
    color: #fff;
    line-height: 1em;
    text-transform: uppercase;
}

.text p {
    font-family: 'Roboto',sans-serif;
    font-size: 1.1em;
    color: #fff;
    margin: 20px 0;
    font-weight: 300;
    max-width: 900px;
}

@media screen and (max-width:1000px){
    ul.social {
        display: none;
        overflow: hidden;
    }
}

.social {
    width: calc(100% - 820px);
    position: absolute;   
    bottom: 50px;
    display: flex;
}

.social li {
    padding-right: 180px;
    list-style: none
}

.social li p {
    font-size: 10px;
    margin-bottom: 5px;
    color: rgb(168, 167, 167);
}

.social li a {
    display: inline-block;
    color: white;
    font-size: 12px;
    text-align: left;
    letter-spacing: 1px;
    opacity: 1;
    -webkit-transition: color 1s;
    -moz-transition: color 1s;
    -ms-transition: color 1s;
    -o-transition: color 1s;
    transition: color 1s;
}

.social li a:hover {
    -webkit-transition: color 1s;
    -moz-transition: color 1s;
    -ms-transition: color 1s;
    -o-transition: color 1s;
    transition: color 1s;
    color: rgb(214, 214, 214);
}
.menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}
.menu ul {
    position: relative;
}

.menu ul li {
    list-style: none;
}

.menu ul li a {
    cursor: pointer;
    text-decoration: none;
    font-size: 35px;
    -webkit-transition: color 1s;
    -moz-transition: color 1s;
    -ms-transition: color 1s;
    -o-transition: color 1s;
    transition: color 1s;
    color: #111;
}

.menu ul li a:hover {
    -webkit-transition: color 1s;
    -moz-transition: color 1s;
    -ms-transition: color 1s;
    -o-transition: color 1s;
    transition: color 1s;
    color: rgb(155, 155, 155);
}

@media (max-width: 991px) {

    .showcase,
    .showcase  {
        padding: 40px;
    }

    .text h2 {
        font-size: 3em;
    }

    .text h3 {
        font-size: 2em;
    }
}
/* custom scroll bar */
::-webkit-scrollbar {
    display: none;
}
/* all similar content styling codes */
section{
    padding: 80px 0;
}
.max-width{
    max-width: 1300px;
    padding: 0 80px;
    margin: auto;
}
.max-width2 {
    max-width: 2000px;
    padding: 0 0;
    margin: auto;
}
.personalizacion, .informacion, .casas, .contacto, footer{
    font-family: 'Inter', sans-serif;
    background-color: #131313;
}
.personalizacion .personalizacion-content,
.informacion .serv-content,
.contacto .contacto-content{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}
section .title{
    color:white;
    position: relative;
    text-align: center;
    font-size: 31px;
    font-weight: 500;
    margin-bottom: 60px;
    padding-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

section .title::after{
    position: absolute;
    bottom: -8px;
    left: 50%;
    font-size: 20px;
    color: #0071e3;
    padding: 0 5px;
    background: #fff;
    transform: translateX(-50%);
}

/* FreeSpace */
.freespace{
    height: 100vh;
}

/* personalizacion section styling */
#slider {
    padding: 1px;
    overflow: hidden;
    max-width: 100%;
    text-align: center;
    background-repeat: no-repeat;
    background-size: contain;
}

#slider input[type=radio] {
    display: none;
}

#slider label {
    cursor: pointer;
    text-decoration: none;
}

#slides { 
    position: relative;
    z-index: 1;
    background-repeat: no-repeat;
    background-size: contain;
}

#overflow {
    width: auto;
    overflow: hidden;
}

#slide1:checked~#slides .slide_1 {
    opacity: 1;
    transition: 2s;
}

#slide2:checked~#slides .slide_2 {
    opacity: 1;
    transition: 2s;
}

#slide3:checked~#slides .slide_3 {
    opacity: 1;
    transition: 2s;
}

#slide4:checked~#slides .slide_4 {
    opacity: 1;
    transition: 2s;
}

#slide5:checked~#slides .slide_5 {
    opacity: 1;
    transition: 2s;
}
#slides .slide {
    width: 100%;
    float: left;
    text-align: left;
    justify-content: left;
    align-items: center;
    color: white;
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    background-repeat: no-repeat;
    background-size: cover;
    transition: 4s;
}
#slides .slide-content p{
    font-size: 10px;
    color: #d6d6d6;
}
.slide-content{
    margin-left: 8px;
    margin-top: 590px;
}
#slides .slide_1 {
    opacity: 0;
    background-image: url(images/mat1.webp);
    max-width: 100%;
    height: 650px;
    object-fit: contain;
    background-position: center;
}
#slides .slide_2 {
    position: absolute;
    opacity: 0;
    background-image: url(images/mat2.webp);
    max-width: 100%;
    height: 650px;
    object-fit: contain;
    background-position: center;
}

#slides .slide_3 {
    position: absolute;
    opacity: 0;
    background-image: url(images/mat3.webp);
    max-width: 100%;
    height: 650px;
    object-fit: contain;
    background-position: center;
}

#slides .slide_4 {
    opacity: 0;
    position: absolute;
    background-image: url(images/mat4.webp);
    max-width: 100%;
    height: 650px;
    object-fit: contain;
    background-position: center;
}
#slides .slide_5 {
    opacity: 0;
    position: absolute;
    background-image: url(images/mat5.webp);
    max-width: 100%;
    height: 650px;
    object-fit: contain;
    background-position: center;
}
@media screen and (max-width: 850px) {
    #slides .slide_1,
    #slides .slide_2,
    #slides .slide_3,
    #slides .slide_4,
    #slides .slide_5 {
        height: 250px;
    }
}
@media screen and (max-width: 850px) {

    .slide-content {
        margin-top: 190px;
    }
}
#slide1:checked~#controls label:nth-child(2),
#slide2:checked~#controls label:nth-child(3),
#slide3:checked~#controls label:nth-child(4),
#slide4:checked~#controls label:nth-child(5),
#slide5:checked~#controls label:nth-child(1){
    float: right;
    margin: 0 -50px 0 0;
    display: block;
}

#slide1:checked~#controls label:nth-last-child(2),
#slide2:checked~#controls label:nth-last-child(3),
#slide3:checked~#controls label:nth-last-child(4),
#slide4:checked~#controls label:nth-last-child(5),
#slide5:checked~#controls label:nth-last-child(1) {
    float: left;
    margin: 0 0 0 -50px;
    display: block;
}

#bulletbox {
    border: solid green;
    padding: 10px 0;

}
#bullets {
    padding-top: 20px;
    margin-right: 150px;
}
#bullets u {
    margin-top: 1px;
    position: absolute;
    color: white;
    font-size: 10px;
    font-weight: 100;
    letter-spacing: 3px;
    font-family: Roboto, sans-serif;
}
#bullets .tex {
   font-weight: 600; 
   margin-left: 82px;
}
 #bullets #ola {
    opacity: 0;
    transition:0.8s;
}
 #bullets #ole {
     opacity: 0;
     transition: 0.8s;
 }
  #bullets #oli {
      opacity: 0;
      transition: 0.8s;
  }
   #bullets #olo {
       opacity: 0;
       transition: 0.8s;
   }
   #bullets #olu {
       opacity: 0;
       transition: 0.8s;
   }
#slide1:checked~#bullets #ola {
    opacity: 1;
    transition: 0.8s;
}

#slide2:checked~#bullets #ole {
    opacity: 1;
    transition: 0.8s;
}

#slide3:checked~#bullets #oli {
    opacity: 1;
    transition: 0.8s;
}

#slide4:checked~#bullets #olo {
    opacity: 1;
    transition: 0.8s;
}
#slide5:checked~#bullets #olu {
    opacity: 1;
    transition: 0.8s;
}
#bullets label {
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 100%;
    background: rgb(255, 255, 255);
    margin: 0 6px;
    transition: 0.4s;
}

#bullets hr:hover {
    transition: 2s;
}
#slide1:checked~#bullets label:nth-child(1),
#slide2:checked~#bullets label:nth-child(2),
#slide3:checked~#bullets label:nth-child(3),
#slide4:checked~#bullets label:nth-child(4),
#slide5:checked~#bullets label:nth-child(5) {
    border-radius: 20%;
}
.columnp {
    position: relative;
    display: flex;
    float: left;
    width: 410px;
    height: 100px;
}

.rowp {
    display: table;
    position:relative;
    clear: both;
    left: 50%;
    top: 60px;
    transform: translate(-50%, -50%);
}
.perdesc {
    font-size: 16px;
    color: white;
    text-align: left;
    font-weight: 10;
}
@media screen and (max-width: 850px) {
    .columnp{
        width: 310px;
    }   
}
@media screen and (max-width: 500px) {
    .rowp {
        top:110px;
        left: 1;
        margin-left: 20px;
    }
}


/* personalizacion  section styling */
.personalizacion{
    background-color: #131313;
}
/* Informacion section styling */
.informacion, .casas{
    color:#fff;
    background: #131313;
}
.informacion .title::before,
.casas .title::before{
    background: #fff;
}
.informacion .title::after,
.casas .title::after{
    background: #122239;                                                                                                                                                            
    font-family: 'Inter', sans-serif;
}
.informacion .serv-content .card{    
    background: #131313;               
    transition: all 0.3s ease;
}
.informacion .serv-content .card:hover{
    background: #131313;
}
.informacion .serv-content .card .box{
    width: 350px;
    height: 550px;
    transition: all 0.3s ease;
}
.informacion .serv-content .card:hover .box{
    transform: scale(1.05);
}
.informacion .serv-content .card i{
    font-size: 50px;
    color: #0071e3;
    transition: color 0.3s ease;
}
.informacion .serv-content .card:hover i{
    color: #fff;
}
.informacion .serv-content .card .text{
    text-align: left;
    font-size: 14px;
    margin: 10px 0 7px 0;
}
.informacion p{
    font-weight: 10;
    margin-bottom: 20px;
}
/* casas section styling */
.casas .carousel .card0{
    background: url(images/01\ dia.webp);
    max-width: 100%;
    padding: 340px 1px;
    background-repeat: no-repeat;
    background-position: center;
    transition: all 0.7s ease; 
}
.casas .carousel .card0:hover {
    background: url(images/01\ noche.webp);
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s ease;
}
.casas .carousel .card1 {
    background: url(images/02\ dia.webp);
    max-width: 100%;
    padding: 340px 1px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s ease;
}
.casas .carousel .card1:hover {
    background: url(images/02\ noche.webp);
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s ease;
}
.casas .carousel .card2 {
    background: url(images/03\ dia.webp);
    max-width: 100%;
    padding: 340px 1px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s ease;
}

.casas .carousel .card2:hover {
    background: url(images/03\ noche.webp);
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s ease;
}
.casas .carousel .card3 {
    background: url(images/04\ dia.webp);
    max-width: 100%;
    padding: 340px 1px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s ease;
}

.casas .carousel .card3:hover {
    background: url(images/04\ noche.webp);
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s ease;
}
.casas .carousel .card4 {
    background: url(images/05\ dia.webp);
    max-width: 100%;
    padding: 340px 1px;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s ease;
}

.casas .carousel .card4:hover {
    background: url(images/05\ noche.webp);
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.7s ease;
}
.casas .carousel .texto{
    margin-top: 295px;
    margin-left:20px;
    position: absolute;
    letter-spacing: 1px;
    font-size: 14px;
    font-weight: 100;
    color: white;
    font-family: Roboto, sans-serif;
}
.casas .carousel p {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 300;
    color: #b9b9b9;
    font-family: Roboto, sans-serif;
}
.owl-dots{
    text-align: center;
    margin-top: 20px;
}
.owl-nav{
    margin-left: 25px;
    padding-top: 20px;
    text-align: center;
}
.owl-next{
    color: #131313;
    width: 60px;
    height: 55px;
    background-image: url(./images/NextIcon.png);
    background-repeat: no-repeat;
    background-size: 50%;
    transition: 0.5s;
    
}
.owl-next:hover{
    background-size: 55%;
    transition: 0.5s;
}
.owl-prev {
    color: #131313;
    width: 60px;
    height: 55px;
    background-image:url(./images/PrevIcon.png);
    background-repeat: no-repeat;
    background-size: 50%;
    transition: 0.5s;
}
.owl-prev:hover {
    background-size: 55%;
    transition: 0.5s;
}
.owl-dot{
    height: 13px;
    width: 13px;
    margin: 0 5px;
    outline: none!important;
    border-radius: 50%;
    border: 2px solid #ffffff!important;
    transition: all 0.7s ease;
}
.owl-dot.active{
    width: 35px;
    border-radius: 14px;
    
}
.owl-dot.active,
.owl-dot:hover{
    background: #ffffff!important;
}
.texcasas{
    padding-left: 200px;
    padding-right: 200px;
}
.texcontacto {
    padding-bottom: 30px;
}
@media screen and (max-width: 850px) {
    .texcasas {
        padding-left: 0;
        padding-right: 0;
    }
}

/* contacto section styling */
.contacto .title::after{
    font-family: 'Inter', sans-serif;
}
.contacto .contacto-content .column{
    width: calc(50% - 30px);
}
.contacto .contacto-content .text{
    font-size: 20px;
    font-weight: 100;
    margin-bottom: 20px;
    color: white;
}
.contacto .contacto-content .left p{
    text-align: justify;
}
.contacto .contacto-content .left .icons{
    margin: 10px 0;
}
.contacto .contacto-content .row{
    display: flex;
    height: 65px;
    align-items: center;
}
.contacto .contacto-content .row .info{
    margin-left: 20px;
    margin-bottom:12px ;
}
.contacto .contacto-content .row i{
    font-size: 25px;
    color: #ffffff;
}
.contacto .contacto-content .info .head{
    font-weight: 500;
    color: grey;
}
.contacto .contacto-content .info .sub-title{
    color: rgb(255, 255, 255);
}
.contacto .right form .fields{
    display: flex;
}
.contacto .right form .field,
.contacto .right form .fields .field{
    height: 45px;
    width: 100%;
    margin-bottom: 15px;
}
.contacto .right form .textarea{
    height: 120px;
    width: 100%;
}
.contacto .right form .name{
    margin-right: 10px;
}
.contacto .right form .field input,
.contacto .right form .textarea textarea{
    height: 100%;
    width: 100%;
    border: 1px solid rgb(255, 255, 255);
    border-radius: 2px;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-family: 'Inter', sans-serif;
    transition: all 1s ease;
}
.contacto .right form .field input:focus,
.contacto .right form .textarea textarea:focus{
    border-color: #b3b3b3;
}
.contacto .right form .textarea textarea{
  padding-top: 10px;
  resize: none;
}
.contacto .right form .button-area{
  display: flex;
  align-items: center;
}
.right form .button-area button{
  color: #fff;
  display: block;
  width: 160px!important;
  height: 45px;
  outline: none;
  font-size: 18px;
  font-weight: 500;
  border-radius: 2px;
  cursor: pointer;
  flex-wrap: nowrap;
  background: grey;
  border: 2px solid #131313;
  transition: all 1s ease;
}
.right form .button-area button:hover{
  color: #ffffff;
  background: none;
}
@media screen and (max-width: 500px) {
    .contacto .contacto-content .column {
        width: calc(100%);
    }
}

/* footer section styling */
footer{
    display: flex;
    width: 100%;
    height: 100%;
    background: #131313;
    color: white;
    font-size: 10px;
    font-weight: 100;
    line-height: 12px;
    letter-spacing: 1px;
    font-style: normal;
    padding: 20px 20px;
}
.footernav span {
    position: absolute;
    margin-left: 19%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
footer span {
    position: absolute;
    margin-left: 19%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.footernav span a {
    color: white;
    letter-spacing: 2px;
    transition: 1.1s;
}
.footernav span a:hover {
    color: grey;
    transition: 1.1s;
}
/* reveal section */
.reveal{
    position: relative;
    opacity: 0;
    transition: all 2.5s ease;
}
.reveal.active{
    opacity: 1;
    
}
/* reveal section */
.reveal2 {
    position: relative;
    opacity: 0;
    transition: all 1s ease;
    padding-top: 50px;
}

.reveal2.active {
    padding-top: 0;
    opacity: 1;
} 
@media (max-width: 500px) {
    .footernav span{
        margin-left: 0%; 
    }
    footer span {
        margin-left: 0%;
    }
}
/* responsive media query start */
@media (max-width: 1104px) {
    .personalizacion .personalizacion-content .left img{
        height: 350px;
        width: 350px;
    }
}
@media (max-width: 991px) {
    .max-width{
        padding: 0 50px;
    }
    .max-width{
        max-width: 930px;
    }
    .personalizacion .personalizacion-content .column{
        width: 100%;
    }
    .personalizacion .personalizacion-content .left{
        display: flex;
        justify-content: center;
        margin: 0 auto 60px;
    }
    .personalizacion .personalizacion-content .right{
        flex: 100%;
    }
    .informacion .serv-content .card{
        width: calc(50% - 10px);
        margin-bottom: 20px;
    }
}

@media (max-width: 690px) {
    .max-width{
        padding: 0 23px;
    }
    .informacion .serv-content .card{
        width: 100%;
    }
}

@media (max-width: 500px) {
    .personalizacion .personalizacion-content .right .text{
        font-size: 19px;
    }
    .contacto .right form .fields{
        flex-direction: column;
    }
    .contacto .right form .name,
    .contacto .right form .email{
        margin: 0;
    }
    .right form .error-box{
       width: 150px;
    }
    .scroll-up-btn{
        right: 15px;
        bottom: 15px;
        height: 38px;
        width: 35px;
        font-size: 23px;
        line-height: 38px;
    }
}
:root {
    --hue: 206;
    --bkg: var(--hue) 50% 96%;
    --text: var(--hue) 70% 9%;
    --dark: var(--hue) 70% 3%;
}
.container {
    max-width: 1200px;
    margin: auto;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    overflow: hidden;
}

.image-item {
    flex: 1 0 28%;
    cursor:pointer;
    background: none;
    color: inherit;
    border: none;
    letter-spacing: 1px;
    font-weight: 300;
    transition: 1s;
}

.image-item:hover{
    color: rgb(214, 214, 214);
}

.image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 250ms cubic-bezier(0.79, 0.25, 0, 1.07);
}

@media screen and (max-width:844px) {
    .informacion img {
        display: none;
    }
}
@media screen and (max-width:844px) {
    .casas img {
        display: none;
    }
}
@media screen and (max-width:844px) {
    .personalizacion img {
        display: none;
    }
}
@media screen and (max-width:844px) {
    .contacto #C1 {
        display: none;
    }
}