/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}
body{
  min-height: 100vh;
}

.logoxiso{
  display: block;
}


li{
    list-style: none;
}

a{
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-size: 21px;
    transition: 0.3s;
    font-weight: bold;
}

a:hover{
   color: #7690dec5;
}

header{
    position: fixed;
    width: 100%;
    padding: 7px 27px;
    z-index: 1000;
}

.navbar {
  width: 100%;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 27px;
  background: #05058ac2;
  border-radius: 30px;
}

.navbar .links{
    display: flex;
    gap: 3.5rem;
}

.navbar .toggle_btn{
    color: rgb(255, 255, 255);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.action_btn {
  background-image: linear-gradient(to right, rgb(104 144 235), rgb(45 92 158));
    color: white;
    padding: 0.5rem 1rem;
    border: none;
    outline: none;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 22px;
    font-weight: bolder;
}

.action_btn:hover{
    color: white;
}

.action_btn:active{
    scale: 0.95;
}

.dropdown_menu{
  display: none;
  position: absolute;
  right: -0.2;
  height: 0;
  top: 84px;
  width: 200px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border-radius: 10px;
}

.dropdown_menu.open{
  height: 460px;
  background-color: #6ba0d9a1;
  top: 84px;
}

.dropdown_menu li{
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.dropdown_menu .action_btn{
    width: 100%;
    display: flex;
    justify-content: center;
}

.home{
    background: url(fondoxiso1.jpg);
    background-size: cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

}

.home-text{
    align-items: center;
    justify-content: center;
    align-content: center;
    text-align: center;
    margin-top: 50px;
}

.home-text h1{
    color: white;
    font-size: 90px;
    margin-bottom: 1rem;
    font-weight: bold;
}

.home-text .bottom{
        color: white;
        font-size: 33px;
        margin-bottom: 1rem;
        font-weight: bold
}

.home .ciudades{
    color: #FAF8EF;
    font-size: 30px;
    margin-top: 300px;
}

.propiedades{
  background: white;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: -100px;
  border-radius: 90px;
}

.propiedadestitulo{
margin-top: 50px;
font-size: 35px;
color: #283A97;
}

.serviciostitulo{
  margin-top: 30px;
  font-size: 35px;
  color: #283A97;
  }

.slide-container{
  max-width: 1400px;
  width: 100%;
  padding: 40px 0;
}
.slide-content{
  margin: 0 40px;
  overflow: hidden;
  border-radius: 25px;
}
.card{
  border-radius: 25px;
  background-color: #edeef7;
}
.image-content,
.card-content{
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 14px;
}
.image-content{
  position: relative;
  row-gap: 5px;
  padding: 25px 0;
  padding-bottom: 0;
}
.overlay{
  position: absolute;
  left: 0;
  top: 0;
  background-color: #ecf1ee;
  border-radius: 25px 25px 25px 25px;
}

.card-image{
  position: relative;
  width: 300px;
  border-radius: 10%;
  padding: 2px;
}
.card-image .card-img{ 
  width: 300px;
  border-radius: 10%;
}
.name{
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 15px;
}
.description{
  font-size: 14px;
  color: #707070;
  text-align: justify;
}


.button{
  border: none;
  font-size: 16px;
  color: #FFF;
  padding: 8px 16px;
  background-color: rgba(38, 44, 216, 0.877);
  border-radius: 6px;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover{
  background: rgba(52, 58, 234, 0.877);
}
.swiper-navBtn{
  color: #6E93f7;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover{
  color: #4070F4;
}
.swiper-navBtn::before,
.swiper-navBtn::after{
  font-size: 35px;
}
.swiper-button-next{
  right: 0;
}
.swiper-button-prev{
  left: 0;
}
.swiper-pagination-bullet{
  background-color: #6E93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active{
  background-color: #4070F4;
}

.sales{
  display: grid;
grid-template-columns: repeat(auto-fit,minmax(390px,auto));
gap: 2.4rem;

margin-top: 50px;
padding-left: 100px;
padding-right: 100px;
}


.sales .box{
  padding: 20px;
  background-image: linear-gradient(to right, rgb(241, 243, 248), rgb(223, 235, 251));
  text-align: center;
  border-radius: 25px;
}

.sales .box .bx {
  padding: 10px;
  font-size: 20px;
}

.icon-plus{
  font-size: 35px;
margin-top: 20px;
text-align: end;
cursor: pointer;
color: #4070F4;
}

.sales .box h3{
  font-size: 1.1rem;
  padding-top: 10px;
}

.text-justify{
  text-align: justify;
}

.vision-misiontitulo{
  text-align: center;
  margin-top: 60px;
  font-size: 35px;
  color: #283A97;
}

.mision{
  margin-top: 40px;
  text-align: justify;
  padding: 0 150px;
}

.misiontitulo{
margin-bottom: 20px;
color: #283A97;
}

.visiontitulo{
  margin-bottom: 20px;
  color: #283A97;
  }

.vision{
  margin-top: 40px;
  text-align: justify;
  padding: 0 150px;
}

@keyframes scroll{
  0%{
    transform: translateX(0);
  }

  100%{
    transform: translateX(calc(-250px * 7));
  }

}

.alianzastitulo{
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  font-size: 35px;
  color: #283A97;
}

.logos{
  overflow: hidden;
  padding-bottom: 40px;
}
.logos-slide{
  white-space: nowrap;
  text-align: center;
}

.logos-slide img{
  height: 100px;
  margin: 0 80px;
}

.faqs{
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 70px;
}

.faqstitulo{
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
  font-size: 35px;
  color: #283A97;
}

.faq{
  max-width: 900px;
  margin-top: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid black;
  cursor: pointer;
}

.pregunta{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pregunta h3{
  font-size: 1.6rem;
  color: #283A97;
}

.respuesta{
  max-height: 0;
  overflow: hidden;
  transition: max-height 1s ease;
}

.respuesta p{
  padding-top: 1rem;
  line-height: 1.6;
  font-size: 1.2rem;
}

.faq.active .respuesta{
  max-height: 30000px;
  animation: fade 1s ease-in-out;
}

.faq.active svg{
  transform: rotate(180deg);
}

svg{
  transition: transform 0.5s ease-in;
}


.quicklinks{
  background-color:#283A97;
}

.linkstitulo{
  color: white;
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-top: 30px;
  font-size: 35px;
}

.links1{
  line-height: 2;
  color: white;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 40px;
  font-size: 18px;
}

.empresa-reg{
  color: white;
  text-align: center;
  padding-bottom: 40px;
}

.links1 a{
  line-height: 2;
  color: white;
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.links1 a:hover{
  line-height: 2;
  color: rgb(200, 200, 200);
  padding-top: 0;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 400;
}

.linkslist{
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  gap: 150px;
  margin-top: 40px;
}


.linkstitulo1{
  font-weight: bold;
  font-size: 23px;
}

@keyframes fade{
  from{
    opacity: 0;
    transform: translateY(-10px);
  }

  to{
    opacity: 1;
    transform: translateY(0px);
  }
}

@media(max-width: 1053px){
  .card-image .card-img {
    width: 100%;
    border-radius: 10%;
    padding-left: 10px;
    padding-right: 10px;
}
}
@media(max-width: 992px){
  .navbar .links, 
  .navbar .action_btn{
      display: none;
  }

  header {
    position: fixed;
    width: 100%;
    padding: 7px 15px;
    z-index: 1000;
}

  .navbar .toggle_btn{
      display: block;
  }

  .dropdown_menu{
      display: block;
      width: 200px;
      right: -10px;
  }

  .logos-slide img{
    height: 80px;
    margin: 0 30px;
  }

  .propiedades{
    border-radius: 40px;
  }


}
@media screen and (max-width: 768px) {
  .slide-content{
    margin: 0 10px;
  }
  .swiper-navBtn{
    display: none;
  }

  .card-image .card-img {
    width: 100%;
    border-radius: 10%;
    padding-left: 0px;
    padding-right: 0px;
}
}

@media(max-width: 620px){
  .logos-slide img{
    height: 50px;
    margin: 0 30px;
  }

  .mision, .vision{
    padding: 0 30px;
  }
  }


@media(max-width: 576px){
  .dropdown_menu{
      right: -10px;
      width: 200px;
  }

 

  .linkslist{
    margin-top: 10px;
    padding: 0 5px;
    flex-direction: column;
    gap: 0;
    text-align: justify;
    padding-left: 20px;
  }

  .home-text h1{
    font-size: 75px;
  }
  }

@media(max-width: 480px){
   .home .ciudades{
      color: #FAF8EF;
      font-size: 23px;
      }

      .sales{
        padding-left: 15px;
        padding-right: 15px;
      }

      .logos-slide img{
        height: 50px;
        margin: 0 20px;
      }

      .sales{
        grid-template-columns: repeat(auto-fit,minmax(250px,auto));
        }
  }

@media(max-width: 390px){
  .home .ciudades{
      color: #FAF8EF;
      font-size: 22px;
      margin-top: 200px;
      }

      .home-text h1{

        font-size: 60px;
    }
    
    .home-text .bottom{

            font-size: 20px;
    }

    .home-text{
        margin-top: 0;
    }

  .home{
      height: 100vh;
  }

  .propiedadestitulo{
    font-size: 28px;
  }

  .sales{
  grid-template-columns: repeat(auto-fit,minmax(250px,auto));
  }
  }

  @media(max-width: 380px){
       .logos-slide img{
         height: 45px;
         margin: 0 20px;
       }
   }

  @media(max-width: 360px){
    .home .ciudades{
        color: #FAF8EF;
        font-size: 18px;
        margin-top: 200px;
        }
  
        .home-text h1{
            color: white;
          font-size: 60px;
      }
      
      .home-text .bottom{
            color: white;
              font-size: 20px;
      }
  
      .home-text{
          margin-top: 0;
      }
  
    .home{
        height: 100vh;
    }
    }

  @media(max-width: 340px){
      .home .ciudades{
          color: #FAF8EF;
          font-size: 18px;
          margin-top: 80px;
          }

          .home-text h1{
              font-size: 50px;
          }
          
          .home-text .bottom{
                  font-size: 18px;
          }

          .home-text{
              margin-top: 0;
          }
  
      .home{
          height: 100vh;
      }

      .logos-slide img{
        height: 35px;
        margin: 0 20px;
      }
      }
  

 