:root{
  --primary-color: #2ACEEB;
}

/*<----------------------------------- Start Promo Section ------------------------------------>*/
.promo-section{
  padding: 80px 30px;
  margin-top: 80px;
  position: relative;
  z-index: 100; 
}


.promo-section:after{
    content: "";
    position: absolute;
    z-index: 50;
    top: 0;
    left:0;
    right:0;
    bottom:0;
    width: 100%;
    height:100%;
    background-image: url('../images/bg1.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


.promo-section_container{
  max-width: 1024px;
  display: flex;
  flex-direction: column; /*row in desktop*/
  align-items: center; 
  justify-content: space-around; /*space-around in dektop*/
  gap: 25px 0; /*0 25px in desktop*/
  margin: 0 auto;
}

.promo-section_img{
    position: relative;
    z-index: 60;
}

.promo-section_img > img {
  width: 150px;
  min-width: 150px;
  aspect-ratio: square;
  border-radius: 100%;
  box-shadow: 0px 0px 16px -7px black;

}

.promo-section_info{
    position: relative;
    z-index: 100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px 0;
    text-align: center;
    color: aliceblue;
}

.promo-section_info h2{
    font-size: 23px;
}

.promo-section_info h1{
    font-size: 30px;
}


.promo-section_cta{
  position: relative;
    z-index: 60;
}

.button-primary{
    display: inline-block;
    /*float: left;*/
    height: 68px;
    padding: 0 40px;
    background: #2ACEEB;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-right: 2%;
    border-radius: 10px;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    -webkit-box-shadow: 5px 5px 0px 0px rgba(38, 183, 209, 1);
    -moz-box-shadow: 5px 5px 0px 0px rgba(38, 183, 209, 1);
    box-shadow: 5px 5px 0px 0px rgba(38, 183, 209, 1);
}


.button-primary:hover {
    color: #212121;
    transform: translateY(10px) translateX(5px);
    -webkit-box-shadow: 0px 0px 0px 0px rgba(10, 90, 140, 1);
    -moz-box-shadow: 0px 0px 0px 0px rgba(10, 90, 140, 1);
    box-shadow: 0px 0px 0px 0px rgba(10, 90, 140, 1);
    transition: .5s ease;
    text-decoration: none;
}

.promo-section_cta > img{
    position: absolute;
    bottom: -70px;
    top: auto;
    right: auto ;
    left: -60px;
    width: 50px;
    opacity: 0.80;
    animation: mover 2s ease-in-out infinite;
}

@keyframes mover {
    0% {
        transform: translate(0, 0); /* Posición inicial */
    }
    50% {
        transform: translate(10px, -10px); /* Mover hacia arriba a la derecha */
    }
    100% {
        transform: translate(0, 0); /* Regresar a la posición inicial */
    }
}

@media only screen and (min-width: 1024px){
    .promo-section{
        padding: 80px 30px;
        margin-top: 230px;  
    }
      
    .promo-section_container{
      max-width: 1024px;
      display: flex;
      flex-direction: row; 
      justify-content: space-around;
      gap: 0 25px;
    }


    .promo-section_img > img {
      width: 250px;
    
    }

    .promo-section_info h2{
      font-size: 28px;
    }

    .promo-section_info h1{
      font-size: 35px;
    }

    .promo-section_cta > img{
      width: 80px;
      bottom: -100px;
      left: -95px;
    }
}

.social-bar{
    z-index: 555555;
}

/*<----------------------------------- Start Promo Section ------------------------------------>*/







/*<----------------------------------- start Testimonial Accordion ------------------------------------>*/

.accordion--header{
  font-size: 19px !important;
  padding: 10px 11px !important;
}

.accordion--content{
  padding: 0px !important;
  display: grid;
  grid-template-columns: 1fr;
}

.accordion--content__card{
  width: 100%;
  height: 150px;
  aspect-ratio: square;
  border: 1px solid gray;
  background-color: #d8d8d8;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 720px) {
  .accordion--header{
      padding: 12px 13px !important;
  }
  
  .accordion--content{
      grid-template-columns: repeat(2 , 1fr)
  }
  
}


@media screen and (min-width: 850px){
  .accordion--header{
      padding: 15px 17px !important;
  }

  .accordion--content{
      grid-template-columns: repeat(3 , 1fr)
  }
}
/*<----------------------------------- End Testimonial Accordion ------------------------------------>*/


/*<----------------------------------- Start Testimonial Modal ------------------------------------>*/
#testimonyVideosModal > .modal-dialog{
  max-width: 500px;
}


#testimonyVideosModal > .modal-dialog > .modal-content {
  height: 100%;
  max-height: 95vh;
}

#testimonyVideosModal > .modal-dialog > .modal-content > .modal-header {
  justify-content: center;
  align-items: center;
}


#testimonyVideosModal > .modal-dialog > .modal-content > .modal-header > button{
  background-color: inherit;

}

#testimonyVideosModal > .modal-dialog > .modal-content > .modal-header > button > span {
  font-size: 25px;
}

#testimonyVideosModal > .modal-dialog > .modal-content > .modal-body{
  height: 70vh;
  overflow-y: scroll;
}

#testimonyVideosModal > .modal-dialog > .modal-content > .modal-body::-webkit-scrollbar-track{
  background: #d8d8d8 !important;
}


@media screen and (min-width: 800px) {
  #testimonyVideosModal > .modal-dialog {
    max-width: 660px;
  }
}


@media screen and (min-width: 850px){
  #testimonyVideosModal > .modal-dialog {
    max-width: 760px;
  }
}
/*<----------------------------------- End Testimonial Modal ------------------------------------>*/




/*<----------------------------------- Start Services accordion ------------------------------------>*/
.accordion-services-content{
  display: flex;
  justify-content: center;
  align-items: center;

}

.services-video{
  width: 100%;
  max-height: 400px;
}
/*<----------------------------------- End Services accordion ------------------------------------>*/
