/* Importar fuente Poppins desde Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

:root {
  --primary: #06a3da;
  --secondary: #34ad54;
  --light: #eef9ff;
  --dark: #091e3e;
}

/* Aplicar Poppins globalmente a encabezados */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
}

/*** Spinner ***/
.spinner {
  width: 40px;
  height: 40px;
  background: var(--primary);
  margin: 100px auto;
  -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
  animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}

@keyframes sk-rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}

#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1 {
  font-family: "Poppins", sans-serif;
  font-size: 3rem;
}

h1,
h2,
.fw-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
}

h3,
h4,
.fw-semi-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700 !important;
  color:#121621;
}

h5,
h6,
.fw-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
}

/*** Button ***/
.btn {
  font-family: "Sora";
  font-weight: 700;
  transition: 0.5s;
}

.btn-primary,
.btn-secondary {
  color: #ffffff;
  box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
  box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
  box-shadow: inset 0 0 0 0 var(--secondary);
}

.btn-square {
  width: 36px;
  height: 36px;
}

.btn-sm-square {
  width: 30px;
  height: 30px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
  font-family: "Sora";
  position: relative;
  margin-left: 25px;
  padding: 10px 0px 10px 0px;
  color: #566af3;
  font-size: 18px;
  font-weight: 500;
  outline: none;
  transition: 0.5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
  padding: 20px 0;
  color: #182278;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
  color: var(--primary);
  font-weight: 400;
}

.navbar-dark .navbar-brand h1 {
  color: #ffffff;
}

.navbar-dark .navbar-toggler {
  color: #182278;
  border-color: #182278;
}

/* Efecto hover para las cards de servicios */
.box_services_items:hover {
  background-color: #293ff5 !important;
  color: #ffffff !important;
  transition: all 0.3s ease;
}

.box_services_items:hover .position-relative {
  background-color: #293ff5 !important;
  color: white !important;
  transition: all 0.3s ease;
}

.box_services_items:hover p,
.box_services_items:hover h5,
.box_services_items:hover .container_description_service_index p {
  color: white !important;
}

.box_services_items:hover button {
  background-color: white !important;
  color: #293ff5 !important;
  border-color: white !important;
}

.text-service-container{
  color: rgb(44, 44, 44);
  font-weight: 300;
}

.text_main_tittle{
  margin-top: 2rem;
  padding: 0rem 2rem;
}
/* aqui termina el efecto hover de las cards */

.carousel-item.about {
  height: 100vh;
}

.carousel-item.services {
  height: 100vh;
}

.carousel-item.contact {
  height: 100vh;
}
.container_btn_benefits{
  margin-top: 6rem;
}


@media (max-width: 991.98px) {
  body {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
  }
  h1 {
    font-size: 2rem;
  }

  .navbar-dark {
    background: #f8f8f8;
  }
  .sticky-top.navbar-dark {
    position: relative;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link,
  .navbar-dark .navbar-nav .nav-link.show,
  .sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 10px 0;
    color: #182278;
    font-weight: 300;
    font-size: 1.5rem;
  }

  .navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }
}

@media (min-width: 992px) {
  body {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
  }
  h1 {
    font-size: 2rem;
  }
  .navbar-dark {
    position: absolute;
    width: 100%;
    font-family: "Sora";
    top: 0;
    left: 0;
    border-bottom: 1px solid rgba(256, 256, 256, 0.1);
    z-index: 999;
  }

  .sticky-top.navbar-dark {
    position: fixed;
    background: #ffffff;
  }

  .navbar-dark .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 2px;
    font-family: "Sora";
    bottom: -1px;
    left: 50%;
    background: var(--primary);
    transition: 0.5s;
  }

  .navbar-dark .navbar-nav .nav-link.nav-contact::before {
    display: none;
  }

  .sticky-top.navbar-dark .navbar-brand h1 {
    color: var(--primary);
  }

  .testimonial-carousel .box_services_items {
    width: 90%;
    height: 100vh;
  }
  .testimonial-carousel-cards .box_services_items {
    width: 90%;
    height: 90vh;
  }
}

/*** Carousel ***/
.carousel-caption {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}

@media (max-width: 576px) {
  body {
    padding: 0;
    margin: 0;
    width: 100%;
    overflow-x: hidden;
  }
  .tittle_main {
    margin-top: 4rem;
    font-size: 0.5rem;
    font-size: 1.8rem;
  }

  .carousel-caption h5 {
    font-size: 14px;
    font-weight: 500 !important;
  }

  .carousel-caption h1 {
    font-size: 2px;
    font-weight: 600;
  }
  

  .text_main_tittle{
    margin-top: 2rem;
    padding: 0rem 2rem;
    line-height: 1.7rem;
  }


  .btn_valoracion{
    padding: 0.7rem 3rem;
    margin-top: 2rem;
  }

  .btn_nuestro_equipo{
    padding: 0.7rem 3rem;
    margin-top: 2rem;
  }

  .container_services_main{
    width: 70%;
  }

  .continaer_box_benefits{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    margin-top: 1rem;
  }

  .text_benefit{
    text-align: start;
    text-transform: uppercase;
  }

  .ilustration_picture.home {
    position: relative;
    top: 0;
    right: 0;
    left: 0;
    padding: 0;
    width: 70%;
  }

  .darkened-img{
    width: 90%;
  }

  /* .testimonial-item.testimonials__box {
    height: 23rem;
  } */

  .testimonial-item.testimonials__box-services {
    height: 17rem;
  }

}

.carousel-control-prev,
.carousel-control-next {
  width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 3rem;
  height: 3rem;
}

/*** Section Title ***/
.section-title::before {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  left: 0;
  bottom: 0;
  background: var(--primary);
  border-radius: 2px;
}

.section-title.text-center::before {
  left: 50%;
  margin-left: -75px;
}

.section-title.section-title-sm::before {
  width: 90px;
  height: 3px;
}

.section-title::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 5px;
  bottom: 0px;
  background: #ffffff;
  -webkit-animation: section-title-run 5s infinite linear;
  animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
  width: 4px;
  height: 3px;
}

.section-title.text-center::after {
  -webkit-animation: section-title-run-center 5s infinite linear;
  animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
  -webkit-animation: section-title-run-sm 5s infinite linear;
  animation: section-title-run-sm 5s infinite linear;
}

.bg_srvice_ilustrations
{
  min-height: 400px; object-fit: cover;
}

@-webkit-keyframes section-title-run {
  0% {
    left: 0;
  }
  50% {
    left: 145px;
  }
  100% {
    left: 0;
  }
}

@-webkit-keyframes section-title-run-center {
  0% {
    left: 50%;
    margin-left: -75px;
  }
  50% {
    left: 50%;
    margin-left: 45px;
  }
  100% {
    left: 50%;
    margin-left: -75px;
  }
}

@-webkit-keyframes section-title-run-sm {
  0% {
    left: 0;
  }
  50% {
    left: 85px;
  }
  100% {
    left: 0;
  }
}

/*** Service ***/
.service-item {
  position: relative;
  height: 300px;
  padding: 0 30px;
  transition: 0.5s;
}

.service-item .service-icon {
  margin-bottom: 30px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 2px;
  transform: rotate(-45deg);
}

.service-item .service-icon i {
  transform: rotate(45deg);
}

.service-item a.btn {
  position: absolute;
  width: 60px;
  bottom: -48px;
  left: 50%;
  margin-left: -30px;
  opacity: 0;
}

.service-item:hover a.btn {
  bottom: -24px;
  opacity: 1;
}

/*** Testimonial ***/
/* .testimonial-item.testimonials__box {
  height: 26rem;
} */

.testimonial-item.testimonials__box-services {
  height: 17rem;
}

.testimonial-carousel .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel-cards .owl-dots {
  margin-top: 15px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.testimonial-carousel .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel-cards .owl-dot {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  width: 15px;
  height: 15px;
  background: #dddddd;
  border-radius: 2px;
  transition: 0.5s;
}

.testimonial-carousel .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel-cards .owl-dot.active {
  width: 30px;
  background: var(--primary);
}

.testimonial-carousel .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel-cards .owl-item.center {
  position: relative;
  z-index: 1;
}

.testimonial-carousel-cards .owl-item .testimonial-item {
  transition: 0.5s;
  margin: 0rem 1rem;
}

.testimonial-carousel .owl-item .testimonial-item {
  transition: 0.5s;
  margin: 0rem 1rem;
}

.testimonial-carousel-cards .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: #ffffff !important;
  box-shadow: 0 0 30px #dddddd;
}

/*** Team ***/
.team-item {
  transition: 0.5s;
}

.team-social {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
}

.team-social a.btn {
  position: relative;
  margin: 0 3px;
  margin-top: 100px;
  opacity: 0;
}

.team-item:hover {
  box-shadow: 0 0 30px #dddddd;
}

.team-item:hover .team-social {
  background: rgba(9, 30, 62, 0.7);
}

.team-item:hover .team-social a.btn:first-child {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
  opacity: 1;
  margin-top: 0;
  transition: 0.3s 0.15s;
}

.team-item .team-img img,
.blog-item .blog-img img {
  transition: 0.5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
  transform: scale(1.15);
}

.container__services,
.box_container_Service {
  width: 9rem;
  height: 8rem;
  margin: 0rem 0.2rem;
}

/*** Miscellaneous ***/
@media (min-width: 991.98px) {
  .facts {
    position: relative;
    margin-top: -75px;
    z-index: 1;
  }
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
}

.bg-header {
  background: linear-gradient(rgba(9, 30, 62, 0.7), rgba(9, 30, 62, 0.7)),
    url(../img/carousel-1.jpg) center center no-repeat;
  background-size: cover;
}

.link-animated a {
  transition: 0.5s;
}

.link-animated a:hover {
  padding-left: 10px;
}

@media (min-width: 767.98px) {
  .footer-about {
    margin-bottom: -75px;
  }
}

.container__services h6 {
  font-size: 0.8rem;
}

.main__container__Services h3 {
  padding-top: 4rem;
  margin-bottom: 2rem;
  color: #566af3;
}

.container__services {
  background-color: white;
  color:#000000;
  transition: background-color 0.3s ease;
}

.container__services:hover {
  background-color: #293ff5;
  color: #ffffff;
}

.container__services h6 .titulo .text-start:hover {
  color: #ffffff;
}

.container__services h4:hover {
  color: white;
}

.ct_blue {
  background-color: #293ff5;
}

.ct_blue:hover {
  background-color: #1725a0;
}

.darkened-img {
  filter: brightness(80%) contrast(80%); /* Puedes ajustar estos valores según lo necesites */
}

.title_Section {
  font-size: 3rem;
  color: #121621;
}

@media (max-width: 991.98px) {
  .container__services {
    width: 100%;
  }
  .title_Section {
    font-size: 2.5rem;
    color: #121621;
    margin-top: 0.1rem;
  }
}

h1 {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color:#121621;
}

p,
label,
a,
span,
button,
input,
textarea,
select {
  font-family: "Sora";
  font-optical-sizing: auto;
  font-style: normal;
}

.box_services_items {
  height: 30rem;
}

.testimonials__box {
  height: 17rem;
}

.container__services i {
  color: #586cf4;
}

.container__services:hover i {
  color: white;
}

.container__services:hover h4 {
  color: white;
}

.btn_valoracion {
  margin-right: 1rem;
}

.ilustration_picture,
.ilustration_about,
.ilustration_services,
.ilustration_Contact {
  position: absolute;
  top: 10px;
  right: 0;
  width: 50%;
}

.ilustration_services{
  top: 6%; 
  right: 2%;
  width: 40%;
  z-index: 1;
}

.ilustracion_movil_service{
  max-width: 300px;
  width: 100%; 
  opacity: 1;
}

.container_counter {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer_info {
  height: 75px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.title_about{
  padding: 0rem 3rem;
  color: #121621;
}

.title_about,
.title_contact {
  font-size: 3rem;
  color:#121621,
}

.container_title,
.container_title_contact {
  max-width: 60%;
  color: #121621;
}

.btn_agenda_Contacto {
  margin-right: 1rem;
}
.containter_inf_tittle{
  padding-bottom: 10rem;;
}
.containter_inf_tittle h1{
  font-size: 3rem;
  max-width: 700px;
}

.tittle_about_main{
  font-size: 2.5rem;
  font-weight: 700;
  color: #121621;
  font-family: "Poppins", sans-serif;
  line-height: 2.7rem;
}

.title_team_about{
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  color: #121621;
}

.tittle_testimonials_abot{
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  color: #121621;
}

.tittle_testimonials_services{
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  color:#121621;
}

.tittle_testimonials_contactUs{
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  color: #121621;
}

.titles_contantus{
  font-size: 2.5rem;
  font-family: "Poppins", sans-serif;
  color:#121621;
  font-weight: 700;
}

#team-member {
  display: none;
}

.modal_policies {
  height: 500px;
  overflow: hidden;
}

.body_modal {
  height: calc(100% - 58px);
  overflow-y: auto;
}

.team-item {
  height: 100%;
  padding: 0rem 1rem;
}

.team-item.home {
  height: 50vh;
  padding: 0rem 1rem;
}

.container__services:hover h6 {
  color: #ffffff;
  /* color: rgb(255, 255, 255); */
}

.container_description_service_index {
  height: 13rem;
  margin-bottom: 0;
}

.container_description_service_index p{
  margin-bottom: 0;
}

.counter_number {
  font-size: 1.8rem;
}

.text_color_footer {
  color: #182278;
}

.navbar-brand{
  margin-left: 2rem;
}

.menu_items{
  margin-right: 2rem;
}

.title_consolida{
  font-size: 3rem;
  color:#121621;
}

.child_container_infoConsolida{
  margin-bottom: 2rem;
}

.tittle_somos_psicotools{
  font-size: 4rem;
  color:#121621; 
  font-weight: 600;
}

.tittle_testimonials_index{
  font-size: 3rem;
  color:#121621;
}

.container__form_contact_index{
  background-image: url(/img/fondo_formulario.png); 
  background-repeat: no-repeat; 
  background-size: contain;
}

.container__footer{
  background-color: white;
}

.icon_service_services{
  margin-bottom: 1rem; 
  width: 2rem; 
  padding-left: 1rem;;
}

.label_title_Services{
    font-size: 3rem;
    font-weight: 900;
    color: rgb(0, 0, 0);
    margin-bottom: 2rem;
    line-height: 3.3rem;
}


.container_benefits{
  background-color: white;
  height: 100vh;
}
.container_btn_benefits{
  margin-top: 6rem;
}

.container_btn_benefits_diferente{
  margin-top: 4rem;
}

/* Carrusel de servicios: igualar altura y alinear botones */
.owl-carousel .box_services_items {
  height: 35rem;
  display: flex;
  align-items: stretch;
}

.container_benefits,
.box_services_items > .position-relative {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.container_description_service_index {
  flex-grow: 1;
  width: 100%;
}

.container_btn_benefits,
.container_btn_benefits_diferente {
  margin-top: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.container_btn_benefits a,
.container_btn_benefits_diferente a {
  width: 100%;
}

.container_btn_benefits button,
.container_btn_benefits_diferente button {
  width: 100%;
  min-width: 150px;
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .container_counter {
    display: flex;
    justify-content: left;
    width: 100%;
  }

  .footer_info {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .container__services,
  .box_container_Service {
    width: 80%;
    height: 8rem;
    margin: 0 auto;
  }

  .owl-carousel .box_services_items {
    min-height: 350px;
  }
}

@media (max-width: 700px) {
  .title_about,
  .title_contact {
    font-size: 2rem;
    color:#121621;
  }
  .container_title,
  .container_title_contact {
    max-width: 90%;
    color:#121621;
  }
  .ilustration_about {
    position: absolute;
    top: 0px;
    right: 0;
    left: 150px;
    width: 100%;
  }
}

@media (max-width: 500px) {
  .carousel-item {
    height: 55rem;
  }
  .container_benefits{
  background-color: white;
  height: 70vh;
}

  .containter_inf_tittle{
  padding-bottom: 1rem;;
}

  .label_title_Services{
    font-size: 2.5rem;
}

  .carousel-item.home {
    height: 100rem;
  }

  .carousel-item.aboutvmobile {
    height: 50rem;
  }

  .carousel-item.contact {
    height: 59rem;
  }

  .icon_service_services{
    margin-right: 1rem; width: 4rem
  }
   
  .container__services,
  .box_container_Service {
    width: 80%;
    height: 8rem;
    margin: 0 auto;
  }

  .ilustracion_movil_service{
    max-width: 100%;
    width: 100%;
    opacity: 1;
  }

  .container__services h6{
    font-size: 1.3rem;
  }

  .container__services{
    display: flex;
    align-items: center;
    justify-content: start;
    width: 100%;
    padding: 0rem 2rem;
  }

  .btn-outline-light {
    margin-top: 1rem;
  }

  .btn_valoracion {
    margin: 0;
  }

  .ilustration_picture.home {
    position: relative;
    top:0;
    right:0;
    left: 0;
    padding: 0;
    width: 60%;
  }

  .containter_inf_tittle h1{
    font-size: 2.2rem;
    padding: 0rem 0rem 0rem 0rem;
  }
  .img_users{
    margin-right: 1.5rem;
  }
  .ilustration_picture {
    position: absolute;
    top: 60px;
    right: 0;
    width: 60%;
  }

  .container_counter {
    display: flex;
    justify-content: left;
    width: 100%;
  }

  .title_about,
  .title_contact {
    font-size: 2rem;
    color:#121621;
  }
  .container_title,
  .container_title_contact {
    max-width: 90%;
    color:#121621;
  }
  .ilustration_about {
    position: absolute;
    top: 0px;
    right: 0;
    left: 90px;
    width: 150%;
  }

  .ilustration_aboutvmovile {
    position: absolute;
    top:50%;
    right: 0;
    left: 0;
    width: 100%;

  }

  .bg_imag_about{
    height: 180rem;
  }

  .title_about, .title_contact{
    padding: 0rem 2rem;
    font-size: 2.5rem;
    color: #121621;
  }

  .darkened-img{
    filter: brightness(80%) contrast(80%);
  }

  .ilustration_services {
    position: absolute;
    top: 0px;
    right: 0;
    left: 90px;
    width: 100%;
  }

  .btn_agenda_Contacto {
    margin: 0rem 0rem 1rem 0rem;
  }

  .btn_team_contact {
    margin: 0rem 0rem 1rem 0rem;
  }

  .ilustration_Contact {
    position: absolute;
    top: 0px;
    right: 0;
    left: 120px;
    width: 100%;
  }
  .ilustration_Contactvmobile {
    position: relative;
    top: -15%;
    right: 0;
    left: 0;
    width: 100%;
  }

  .title_consolida{
    font-size: 2.5rem;
    color:#121621;
  }
  
  .child_container_infoConsolida{
    margin-bottom: 1rem;
  }
    
  .tittle_somos_psicotools{
    font-size: 2.5rem; 
    font-weight: 600;
    color: #121621;
  }

  .tittle_testimonials_index{
    font-size: 2.5rem;
    color: #121621;
  }

  .team-item{
    height: 55vh;
  }

  .team-item.home{
    height: 32vh;
    margin-left:1.5rem;
  }

  .container__form_contact_index{
    background-image: url(/img/fondo_formulario.png); 
    background-repeat: no-repeat; 
    background-size: cover;
    z-index: 0;
  }

  .container__footer{
    padding: 0rem 2rem;
  }

  .testimonial-item.testimonials__box {
    height: 22rem;
  }

  .testimonial-item.testimonials__box-services {
    height: 22rem;
  }

}



