/* Google Font CDN Link */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&family=Ubuntu:wght@400;500;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
}

html, body{
  overflow-x: hidden; 
}

.margin-default{
  margin: 10px 10%;
}
h2,h3,h4,h5{
  font-weight: 100;
}

/*
:root{
  --color1:  #83ACD6;
  --color2: #C50E01;
  --color3: #f5fafd;
  --color4: #365083;
  --color5: #8EC8A4;
  --dark: #1b1c23;
  --dark2: #3C424F;
  --light:  #F2F2F2;

  --fuente1: 'Roboto Condensed', sans-serif;
  --fuente2: 'Poppins', sans-serif;
  --fuente3: 'Assistant', sans-serif;
  --fuente4: 'Ubuntu', sans-serif;
}
*/

:root{
  --light:#F2F2F2;
  --color1:#CADCF4;
  --color2: #7CA7D1;
  --color3: #082847;
  --color4: #D8CFFF;
  --color5: #674DB3;
  --color6: #B9EBE1;
  --color7 : #468F9C;
  --dark2:#3C424F;
  --dark:#1b1c23;
  
  --fuente1: 'Roboto Condensed', sans-serif;
  --fuente2: 'Poppins', sans-serif;
  --fuente3: 'Assistant', sans-serif;
  --fuente4: 'Ubuntu', sans-serif;
}


/* navbar styling */
nav{
  position: fixed;
  width: 100%;
  padding: 20px 0;
  z-index: 998;
  transition: all 0.3s ease;
  font-family: var(--fuente4);
}
nav.sticky{
  background: var(--color2);
  padding: 13px 0;
}
nav .navbar{
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: auto;
}
nav .navbar .logo a{
  font-weight: 500;
  font-size: 35px;
  color: var(--color5);
}
nav .navbar .logo picture img{
  width: 290px;
  height: 80px;
}

nav.sticky .navbar .logo a{
  color: var(--light);
}
nav .navbar .menu{
  display: flex;
  position: relative;
}
nav .navbar .menu li{
  list-style: none;
  margin: 0 8px;
}

.navbar .menu a{
  font-size: 20px;
  font-weight: 500;
  color: var(--color3);
  padding: 6px 0;
  transition: all 0.4s ease;
}
.navbar .menu a:hover{
  color: var(--color5);
}
nav.sticky .menu a{
  color: var(--light);
}
nav.sticky .menu a:hover{
  color: var(--color4);
}
.navbar .media-icons a{
  color: var(--color3);
  font-size: 18px;
  margin: 0 6px;
}
nav.sticky .media-icons a{
  color: var(--light);
}

/* Side Navigation Menu Button CSS */
nav .menu-btn,
.navbar .menu .cancel-btn{
  position: absolute;
  color: var(--light);
  right: 30px;
  top: 20px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: none;
}
nav .menu-btn{
  color: var(--color3);
}
nav.sticky .menu-btn{
  color: var(--light);
}
.navbar .menu .menu-btn{
  color: var(--light);
}

/* home section styling */
.home{
  height: 100vh;
  width: 100%;
  
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url(../Images/compressed/call-center-soluciones-1.webp);
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
  font-family: var(--fuente4);
  
}

.home .home-content{
  width: 40%;
  height: 60%;
  margin: 5%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}


.home .text-two{
  width: 130%;
  font-size: 75px;
  background: -webkit-linear-gradient(90deg, var(--color1), var(--color6));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  margin-left: -3px;
  padding-bottom: 10px;
  
}

.home .text-four{
  font-size: 20px;
  margin: 5px 0;
  color: var(--light);
}


.home .button{
  margin: 14px 0;
}
.home .button button{
  font-family: var(--fuente1);
  outline: none;
  padding: 10px 30px;
  border-radius: 6px;
  font-size: 22px;
  font-weight: 400;
  background-color: var(--color3);
  color: var(--light);
  cursor: pointer;
  transition: all 0.4s ease;
  margin-left: 1.4rem;





}
.home .button button:hover{
  font-family: var(--fuente1);
  background-color: var(--color5);
  color: var(--color1);
  
}

/* About Section Styling */
/* Those Elements Where We Have Apply Same CSS,
 I'm Selecting Directly 'Section Tag' and 'Class'  */
 .about {  
  color: var(--color3);
}

section{
  padding-top: 30px;
  padding-bottom: 30px;
}
section {
  font-family: var(--fuente2);
}

.services .services-details{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section .title{
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
  z-index: 500;
}
section .title span{
  color: var(--dark);
  font-size: 30px;
  font-weight: 600;
  position: relative;
  padding-bottom: 8px;
  text-align: center;
}
section .title span::before,
section .title span::after{
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--dark2);
  left: 0;
  bottom: 0;
}
section .title span::after{
  bottom: -7px;
  width: 70%;
  left: 50%;
  transform: translateX(-50%);
}
.services .services-details .left{
  width: 45%;

}

.services .left img{
  height: 400px;
  width: 400px;
  object-fit: cover;
  border-radius: 12px;
}
.services-details .right{
  width: 55%;
}
section  .topic{
  color: var(--dark);
  font-size: 25px;
  font-weight: 500;
  margin-bottom: 10px;


}
.services-details .right p{
  text-align: justify;
  color: #737373;
}
 .button{
  margin: 16px 0;
}
 .button button{
  outline: none;
  padding: 10px 23px;
  border-radius: 4px;
  font-size: 25px;
  font-weight: 400;
  background-color: var(--color5);
  color: var(--light);
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.4s ease;

}
 .button button:hover{
  background-color: var(--color3);
  color: var(--color4);
}



/*NOSOTROS cards*/
.title{
  color: var(--dark);
  font-family: var(--fuente2);
}


.card-container{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  
  
}

.card{
  margin: 3rem;
  position: relative;
  width: 310px;
  height: 350px;
  
}

.card .face{
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 5px;
  overflow: hidden;
  transition: .8s;
}

.card .front{
  
  transform: perspective(600px) rotateY(0deg);
  box-shadow: 0px 5px 10px var(--color3);
}

.card .front img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card .front .title-card {
  font-weight: 600;
  position: absolute;
  bottom: 50%;
  top: 50%;
  width: 100%;
  height: 25%;
  line-height: 75px;
  color: var(--dark);
  background: rgba(255, 255, 255, 0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 30px;
  font-family: var(--fuente2);
}

.card .back {
  transform: perspective(600px) rotateY(180deg);
  background: var(--color3);
  padding: 15px;
  color: var(--light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: justify;
  box-shadow: 0 5px 10px var(--color3);
}

.card .back .title-card{
  font-size: 23px;
  margin-top: 20px;
  letter-spacing: 1px;
  font-family: var(--fuente2);
}

.card .back p{
  letter-spacing: 1px;
  font-family: var(--fuente2);

}

.card:hover .front{
  transform: perspective(600px) rotateY(180deg);
}

.card:hover .back{
  transform: perspective(600px) rotateY(360deg);
}

 /* Clientes CSS */

 

  
 .customer .content{
   padding: 40px 0;
 }
 .customer .customer-details{
   display: flex;
   justify-content: space-between;
   align-items: center;
 }
 .customer-details .text{
   width: 50%;
 }


 
 .customer-details p{
   color: var(--dark);
   text-align: justify;
 }

 .customer-details ul{
  color: #737373;
  list-style: none;
 }

.customer .customer-details .experience{
  display: flex;
  align-items: center;
  margin: 0 10px;
}
.customer-details .experience .num{
  color: var(--dark);
  font-size: 80px;
}
.customer-details .experience .exp{
  color: var(--dark);
  margin-left: 20px;
  font-size: 18px;
  font-weight: 500;
  margin: 0 6px;
}
.customer-details .boxes{
  width: 45%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.customer-details .box{
  width: calc(100% / 2 - 20px);
  margin: 20px 0;
}
.customer-details .boxes .topic{
  font-size: 20px;
  color: var(--color3);
}
.customer-details .boxes .per{
  font-size: 60px;
  color: var(--color3);
}
.customer-details .slider {
  width: 75vw;
  height: auto;
  margin-left: 100px;
  overflow: hidden;
}
.customer-details .slider .slider-track{
  display: flex;
  animation: scroll 45s linear infinite;
  -webkit-animation:  scroll 45s linear infinite;
}
.customer-details .slider .slide{
  margin-left: 10px;
  width: 200px;
}
.customer-details .slider .slide img{
  width: 100px;
  aspect-ratio: 3/2;
  object-fit: contain;
  mix-blend-mode: color-burn;

}


/* DESARROLLO CSS */


.development .boxes{
  display: flex;
  flex-wrap: wrap ;
  justify-content: space-between;
}
.development .boxes .box{
  background-color: var(--color2);
  margin: 20px 0;
  width: calc(100% / 4 - 20px);
  text-align: center;
  border-radius: 12px;
  padding: 30px 10px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
  cursor: default;
  transition: all 0.4s ease;
}
.development .boxes .box:hover{
  background: var(--color5);
  
}
.development .boxes .box .icon{
  height: 50px;
  width: 50px;
  background: var(--light);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  font-size: 18px;
  color: var(--color2);
  margin: 0 auto 10px auto;
  transition: all 0.4s ease;
}
.development .boxes .box .list-container{
  display: flex;
  justify-content: center;
  
}
.development .boxes .box .list-container .fundations{
  display: flex;
  justify-content: center;
  padding-left: 50px;
}
.development .boxes .box .list-container .list {
  display: flex;
  flex-direction: column;
  text-align: left;
  list-style-type: circle;
  list-style-position: outside;

}
.development .boxes .box:hover .topic{
  color: var(--light);
}
.development .boxes .box:hover .list-container{
  color: var(--light);
}

.boxes .box:hover .icon{
  background-color: var(--color4);
  color: var(--color5);
}

.development .boxes .box:hover p{
  color: var(--dark);
  transition: all 0.4s ease;
}

.development .boxes .box:hover p{
  color: var(--dark);
}


/*Separadores de imagenes*/
.imgseparator{
  background:url(../Images/callcenter.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 300px;
}
/*fin separador de img*/


.shapedividers_com-3983{
  overflow:hidden;
  position:relative;
  }
  .shapedividers_com-3983::before{ 
  content:'';
  font-family:'shape divider from ShapeDividers.com';
  position: absolute;
  z-index: 3;
  pointer-events: none;
  background-repeat: no-repeat;
  bottom: -0.1vw;
  left: -0.1vw;
  right: -0.1vw;
  top: -0.1vw; 
  background-size: 100% 62px;
  background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23cadcf4"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23cadcf4"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23cadcf4"/></svg>'); 
  }
  
  @media (min-width:2100px){
  .shapedividers_com-3983::before{
  background-size: 100% calc(2vw + 62px);
  }
  }
   

  .shapedividers_com-1270{
    overflow:hidden;
    position:relative;
    }
    .shapedividers_com-1270::before{ 
    content:'';
    font-family:'shape divider from ShapeDividers.com';
    position: absolute;
    z-index: 3;
    pointer-events: none;
    background-repeat: no-repeat;
    bottom: -0.1vw;
    left: -0.1vw;
    right: -0.1vw;
    top: -0.1vw; 
    background-size: 100% 400px;
    background-position: 50% 0%;  background-image: url('data:image/svg+xml;charset=utf8, <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M0 .5c3.07.55 9.27-.42 16.14 0 6.88.4 13.75.57 19.14-.11V0H0z" fill="%23ffffff"/><path d="M0 1c3.17.8 7.29-.38 10.04-.55 2.75-.17 9.25 1.47 12.67 1.3 3.43-.17 4.65-.84 7.05-.87 2.4-.02 5.52.88 5.52.88V0H0z" opacity=".5" fill="%23ffffff"/><path d="M0 1.85c2.56-.83 7.68-.3 11.79-.42 4.1-.12 6.86-.61 9.58-.28 2.73.33 5.61 1.17 8.61 1 3-.19 4.73-.82 5.3-.84V.1H0z" opacity=".5" fill="%23ffffff"/></svg>'); 
    }
    
    @media (min-width:2100px){
    .shapedividers_com-1270::before{
    background-size: 100% calc(2vw + 400px);
    }
    }
     
  
section#gallery.gallery{
  background-color: var(--color1);
}


.gallery-details{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.image-group{ 
  z-index: 500;
  width: 90%;
  max-width: 1100px;
  margin: auto;
  margin-top: 60px;
  margin-bottom: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 250px;
  grid-gap: 20px;
}

/*galeria de imagenes*/
.image-group .box-img figure{
  width: 100%;
  height: 100%;
}

.image-group .box-img img{
  box-shadow: 0 1px 6px 0 rgba(0,0,0,.11);
  border-radius: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-group .box-img:nth-child(1){
  grid-column-start: span 2;
}

.image-group .box-img:nth-child(4){
  grid-column-start: span 2;
}

@media screen and (max-width:3000px){
  .image-group{
    max-width: 1700px;
  }
}
@media screen and (max-width:1920px){
  .image-group{
    max-width: 1100px;
  }
}
@media screen and (max-width:1420px){
  .image-group{
    max-width: 1100px;
  }
}

@media screen and (max-width:800px){
  .image-group{
    width: 95%;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 10px;
    grid-template-rows: 200px;
  }

  .image-group .box-img{
    grid-column-start: span 1;
  }
}

@media screen and (max-width:500px){
  .image-group{
    width: 95%;
    grid-template-rows: repeat(1, 1fr);
  }

  .image-group .box-img img{
    height: 180px;
  }
}

/* Contact Me CSS */
.contact{
  background: var(--color2);
}
.contact .content{
  margin: 0 auto;
  padding: 30px 0;
}
.contact .text{
  width: 80%;
  text-align: center;
  margin: auto;
}

/*INICIO Footer CSS */

.foot-page{
  width: 100%;
  
}

.foot-page .group-1{
  background-color: var(--color3);
  width: 100%;
  max-width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  flex-basis: 200;
  justify-content: space-evenly;
  padding: 45px 0px;
}

.foot-page .group-1 .box picture img{
  width: 290px;
  height: 100px;
}

.foot-page .group-1 .box h5{
  color: var(--color1);
  text-align: center;
  margin-bottom: 25px;
  font-size: 1.7em;
  font-family: var(--fuente1);
}

.foot-page .group-1 .box p{
  color: var(--light);
  text-align: center;
  margin-bottom: 2rem;
  font-family: var(--fuente2);
}

.foot-page .group-1 .box strong{
  color: var(--color1);
  font-family: var(--fuente2);
}

.foot-page .group-2{
  background-color: var(--color3);
  background: linear-gradient(180deg, var(--color3), var(--color2));
  padding: 10px;
  text-align: center;
  color: var(--light);
}

.foot-page .group-2 small{
  font-size: 15px;
  font-family: var(--fuente2);
}

.foot-page .group-1 .box .maps{
  display: grid;
  place-items: center;
}

@media screen and (max-width:800px){
  .foot-page .group-1{
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
  }
}
/*FIN FOOTER CSS*/

/* Scroll TO Top Button CSS */
.scroll-button a{
  position: fixed;
  bottom: 20px;
  right: 20px;
  color: var(--color4);
  background: var(--color3);
  padding: 7px 12px;;
  font-size: 18px;
  border-radius: 6px;
  box-shadow: rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
}

/* Responsive Media Query */
@media (max-width: 1190px) {
  .services .services-details .left{
    margin-right: 4%;
  }
  section .content{
    width: 85%;
  }
}
@media (max-width: 1000px) {
  .services .services-details .left{
    margin-right: 0%;
  }
  .home .home-content{
    width: 75%;
  }
  .services .services-details{
    justify-content: center;
    flex-direction: column;
  }
  .services .services-details .left{
    display: flex;
    justify-content: center;
    width: 100%;
  }
  .services .right{
    width: 90%;
    margin: 40px 0;
  }
  .development .boxes .box{
    margin: 20px 0;
    width: calc(100% / 1 - 20px);
  }
}
@media (max-width: 900px) {
  .services .left img{
    height: 350px;
    width: 350px;
  }
}

@media (max-width: 804px) {
  .customer-details .slider {
    margin-left: 0;
  }
  nav .navbar{
    width: 90%;
  }
  nav .navbar .menu{
    position: fixed;
    left: -100%;
    top: 0;
    background: var(--dark);
    height: 100vh;
    max-width: 400px;
    width: 100%;
    padding-top: 60px;
    flex-direction: column;
    align-items: center;
    transition: all 0.5s ease;
  }
  .navbar.active .menu{
    left: 0;
  }
  nav .navbar .menu a{
    font-size: 23px;
    display: block;
    color: var(--color1);
    margin: 10px 0;
  }
  nav.sticky .menu a:hover{
    color: var(--color5);
  }
  nav .navbar .media-icons{
    display: none;
  }
  nav .menu-btn,
  .navbar .menu .cancel-btn{
    display: block;
  }
  .home .text-two{
    font-size: 65px;
  }
  .home .text-four{
    font-size: 22px;
  }
  .customer .customer-details{
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .customer-details .text{
    width: 100%;
    margin-bottom: 50px;
  }
  .customer-details .boxes{
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .services .boxes .box{
    margin: 20px 0;
    width: 100%;
  }
  .contact .text{
    width: 100%;
  }
  .home .home-content{
    width: 60%;
    height: 65%;

  }
}
@media (max-width: 704px){
  .home .text-two{
    font-size: 49px;
  }
  .home .text-three{
    font-size: 30px;
  }
  .home .text-four{
    font-size: 17px;
  }
}
@media (max-width: 520px){
  .home .text-two{
    width: 100%;
    font-size: 45px;
  }
  .home .text-three{
    font-size: 25px;
  }
  .home .text-four{
    font-size: 15px;
  }
  .customer-details .boxes .per{
    font-size: 50px;
    color: var(--color1);
  }
  .home .home-content{
    width: 80%;
    height: 70%;

  }
}


/*Animaciones*/

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  }
  @-webkit-keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  }
  @keyframes slideInDown {
  0% {
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  visibility: visible;
  }
  100% {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  }
  } 

  
