body {
  font-family: Nunito;
  font-size: 1.2em;
}

:root {
  --orange-color: #fc7a25;
  --navy-color: #1e266d;

  --white-color: #ffffff;
  --grey-color: #e0e0e0;
  --dark-grey: #ababab;
  --blue-button-color: #005eff;
  --bs-border-color: var(--grey-color);
}

/*Globals*/

.swal2-confirm {
  background-color: #fc7a25 !important;
  color: white !important;
  border: none !important;
  box-shadow: none !important;
}

.text-white {
  color: #e0e0e0;
}
input::placeholder {
  color: var(--grey-color); /* Your desired color */
}

.anchor-white a,
.anchor-white img {
  color: var(--white-color);
}

.anchor-white a:hover,
.anchor-white img {
  color: rgba(255, 255, 255, 0.8);
}

/* Buttons */

.blue-button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-color);
  background-color: var(--blue-button-color);
  width: 150px;
  height: 55px;
  flex-shrink: 0;
  border: none;
  border-radius: 6px;
  font-weight: bold;
}

/* Navbar */

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0px;
}

.header__links {
  list-style: none;
  display: flex;
  padding: 0px;
  margin: 0px;
  gap: 87px;
}
.header__links a {
  color: var(--white-color);
  text-decoration: none;
  font-weight: 600;
}

.header__logo img {
  width: 100px;
}

.header__contact {
  position: relative;
  display: flex;
  justify-content: space-between;
}

.header__contact__top {
  position: absolute;
  top: -45px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.header__contact__top a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
}

.header__contact__top a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.header__contact__bottom {
  display: flex;
  justify-content: space-between;
}

.header__contact__social {
  display: flex;
  justify-content: space-between;
  width: 100px;
}

.header__contact__search a {
  margin-right: 90px;
}

@media (max-width: 992px) {
  .header {
    display: none;
  }
}

/* Header Mobile */
.header_mobile {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0px;
  display: none;
}
.header_mobile_logo {
}

@media (max-width: 992px) {
  .header_mobile {
    display: flex;
  }
}

/* Hero Section */

.hero {
  position: relative;
}

.hero_title1 {
  font-size: 4rem;
  font-weight: 800;
}

.hero_title2 {
  font-size: 1.3rem;
  font-weight: 700;
}

.hero__buttons {
  display: flex;
  gap: 14px;
}

.hero__image1 {
  position: relative; /* Ensure it is positioned for stacking order */
  z-index: 2;
}
.hero_img_backgound {
  background-image: url("/images/jpg/hero-foto-1.jpeg");
  background-repeat: no-repeat;
  height: 630px;
  width: 100%;
  border-radius: 50px 0px;
  z-index: 3;
  background-size: cover;
  background-position: center;
}
.hero_bordered_rectangle {
  position: relative; /* Ensure it is positioned for stacking order */
  border-radius: 60px 0px;
  border: 7px #ffb25f solid;
  border-right: none;
  border-bottom: none;
  position: absolute;
  top: -7px;
  left: -7px;
  height: 75%;
  width: 90%;
  z-index: 0;
}

.hero_vector1_cont {
  position: absolute;
  left: -20%;
  display: flex;
  align-items: center;
  z-index: 0;
  top: calc(50% - 250px);
  z-index: 1;
}
.hero_vector1_cont img {
  width: 100%;
}

.hero_row {
  padding-bottom: 2rem;
}
.hero_left {
  padding-top: 3rem;
}

.hero_right {
  position: relative;
}

.hero_bottom_spacer {
  padding: 4rem;
}

.hero_card {
  position: absolute;
  bottom: 50px;
  z-index: 5;
  left: calc(50% - 472px);
  border: none;
}

.hero_card {
  border-radius: 25px !important;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(19.5px);
}

.hero_card_content_cont {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 28px;
  width: 900px;
}

.hero_card_text1 {
  font-weight: 700;
  font-style: normal;
  color: var(--navy-color);
}

.hero_card_link_button {
  border: 1px var(--blue-button-color) solid;
  padding: 0.6rem;
  color: var(--blue-button-color);
  text-decoration: none;
  font-weight: 900;
  border-radius: 5px;
}

.hero_card_text1 {
  margin: 0px;
}

.hero__buttons a {
  width: 190px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

@media (max-width: 992px) {
  .hero_title2 {
    display: none;
  }
  .hero_left {
    padding: 3rem 0px;
    justify-content: center;
    text-align: center;
  }

  .hero__buttons {
    flex-direction: column;
    gap: 3rem;
    align-items: center;
  }

  .hero_vector1_cont {
    left: 80%;
    top: -71px;
  }
  .hero_card {
    margin-top: 2rem;
    position: relative;
    bottom: 0px;

    left: 0px;
  }
  .hero_card_content_cont {
    gap: 1rem;
    width: 100%;
    flex-direction: column;
    text-align: center;
  }
  .hero_img_backgound {
    height: 500px;
  }
}

/* Tech Services Section */
.tech_services {
  padding: 7rem 0px;
}

.tech_services_title_cont {
  text-align: center;
  font-weight: 900;
  padding-bottom: 7rem;
}

.tech_services_title_cont .tech_services_main_title {
  color: var(--navy-color);
  text-align: center;
  font-weight: 900;
}
.tech_services_title_cont .tech_services_subtitle {
  color: var(--dark-grey);
  text-align: center;
  font-weight: bold;
}
.tech_services_left h1 {
  color: var(--navy-color);
  font-weight: bold;
}
.tech_services_left p {
  color: var(--navy-color);
}

.tech_services_benefits_list {
  list-style: none;
  padding: 0;
}

.tech_services_benefits_list li {
  display: flex;
  align-items: center;
  justify-content: start;
  margin: 10px 0;
  color: var(--dark-grey);
}

.tech_services_benefits_list li::before {
  content: url("/images/svg/orange_checkmark.svg"); /* Ruta a tu ícono de check */
  display: inline-block;
  margin-right: 10px;
  margin-bottom: -5px;
}

.tech_services_action_button {
  width: 190px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.tech_services_right {
  position: relative;
}

.tech_services_rectangle_cont {
  padding: 4rem 8rem;
}
.tech_services_rectangle {
  border-radius: 60px 0px;
  border: 1rem var(--orange-color) solid;
  height: 640px;
  z-index: 0;
}

.tech_services_card {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(19.5px);
  width: 271px;
  z-index: 10;
}
.tech_services_card .card-body {
  padding: 1rem;
}

.tech_services_card img {
  width: 50px;
  padding-bottom: 1rem;
}
.tech_services_card h1 {
  color: var(--navy-color);
  font-weight: 900;
}
.tech_services_card h5 {
  color: var(--orange-color);
  font-weight: bold;
  font-size: 1rem;
  padding-bottom: 1rem;
}
.tech_services_card h3 {
  color: var(--navy-color);
  font-weight: 900;
  font-size: 1.5rem;
  padding-bottom: 1rem;
}
.tech_services_card p {
  color: var(--dark-grey);
  margin-bottom: 0px;
}

.tech_services_card_bluedots1 {
  position: absolute;
  top: -3rem;
  left: -2rem;
  z-index: -1;
}
.tech_services_card_bluedots2 {
  position: absolute;
  z-index: -1;
  left: -2rem;
  bottom: 1rem;
}
.tech_services_card_bluedots3 {
  position: absolute;
  z-index: -1;
  right: -2rem;
  z-index: -1;
  top: 50%;
  transform: translateY(50%);
}

.tech_services_card-first {
  position: absolute;
  top: 0px;
}

.tech_services_card-second {
  position: absolute;
  bottom: 0px;
}

.tech_services_card-third {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%); /* Vertically centers the element */
}

@media (max-width: 1168px) {
  .tech_services_rectangle {
    height: 888px;
  }
}

@media (max-width: 992px) {
  .tech_services_main_title {
    font-size: 3rem;
    margin-bottom: 2.5rem;
  }
  .tech_services_subtitle {
    font-size: 2rem;
  }
  .tech_services_title_cont {
    padding-bottom: 2.5rem;
  }

  .tech_services_left h1 {
    font-size: 2.5rem;
    font-weight: 900;
    padding-bottom: 2.5rem;
    text-align: center;
  }
  .tech_services_right {
    margin-top: 4rem;
  }
  .tech_services_rectangle_cont {
    padding: 10rem 10rem;
  }
  .tech_services_button_cont {
    display: flex;
    justify-content: center;
  }

  .tech_services_card-first {
    left: 60px;
    top: 38px;
  }

  .tech_services_card_bluedots1 {
    top: -1rem;
    left: 1rem;
  }

  .tech_services_card_bluedots3 {
    right: 11rem;
    top: 51%;
    transform: translateY(50%);
  }

  .tech_services_card-second {
    position: absolute;
    bottom: 70px;
    left: 52px;
  }

  .tech_services_rectangle {
    height: 606px;
  }
}

@media (max-width: 768px) {
  .tech_services_rectangle_cont {
    padding: 5rem 0rem;
  }
  .tech_services_rectangle {
    height: 900px;
  }

  .tech_services_card-tablet-70width {
    width: 70%;
  }

  .tech_services_card-first {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
  }

  .tech_services_card-second {
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
  }

  .tech_services_card-third {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(
      -50%,
      -50%
    ); /* Centers the element both vertically and horizontally */
  }

  .tech_services_card_bluedots1 {
    position: absolute;
    top: -3rem;
    left: -2rem;
    z-index: -1;
  }
  .tech_services_card_bluedots2 {
    z-index: -1;
    left: -2rem;
    bottom: 17rem;
  }
  .tech_services_card_bluedots3 {
    right: 1rem;
    z-index: -1;
    top: 18%;
    transform: translateY(50%);
  }
}

/* Partners Section */

.partners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--white-color);
  padding: 2rem 0px;
  padding-bottom: 7rem;
}

.partners__description {
  font-size: 1.2em;
  font-weight: 900;

  color: var(--navy-color);
}

.partners__divider {
  height: 50px;
  width: 2px;
  background-color: var(--orange-color);
  margin: 0 20px;
}

.partners__logos {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-grow: 1;
}

.partners__logo {
  max-height: 50px;
  margin: 0 20px;
  opacity: 0.5;
  filter: grayscale(100%);
}

@media (max-width: 1168px) {
  .partners {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .partners__divider {
    height: 2px;
    width: 80%;
    margin: 0 20px;
  }
}

@media (max-width: 768px) {
  .partners__logos {
    flex-direction: column;
    gap: 4rem;
  }
  .partners__logo {
    filter: grayscale(0%) !important;
  }
}

/* Banner section */
.banner {
  position: relative;
  width: 100%;
  height: 50vh;
  background: url("/images/jpg/banner1.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: left;
  overflow: hidden;
}

.banner__content {
  max-width: 600px;
  position: relative;
}

.banner__title {
  font-size: 2.5em;
  font-weight: bold;
  margin-bottom: 20px;
}

.banner__subtitle {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.banner__cta {
  width: 190px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  padding: 0px;
}

.banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
  z-index: 1;
}

.banner__content-wrapper {
  position: relative;
  z-index: 2;
}
.banner_dots1 {
  position: absolute;
  top: -4rem;
}
.banner_dots2 {
  position: absolute;
  bottom: -11rem;
  z-index: -1;
  left: 15rem;
}

@media (max-width: 1168px) {
  .banner__content-wrapper {
    display: flex;
    justify-content: center;
  }
  .banner__content {
    display: flex;
    max-width: 80%;
    flex-direction: column;
    align-items: center;
  }
  .banner__title {
    text-align: center;
  }

  .banner__subtitle {
    text-align: center;
  }

  .banner_dots1 {
    left: 50%;
    transform: translateX(-50%);
  }
  .banner_dots2 {
    left: 50%;
    transform: translateX(-50%);
    bottom: -5rem;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 80vh;
  }
}

/* Services */

.services {
  text-align: center;
  padding: 4rem 0px;
}

.services__smalltitle {
  text-transform: uppercase;
  color: var(--navy-color); /* Adjust color as needed */
  margin-bottom: 1rem;
}

.services__title {
  font-size: 2.5em;
  font-weight: 900;
  color: var(--navy-color); /* Adjust color as needed */
  margin-bottom: 2rem;
}

.services__subtitle {
  font-size: 1em;
  color: var(--navy-color);
  margin-bottom: 6rem;
  font-weight: bold;
}

.services__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 6rem;
}

.services__item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 139px;
  height: 131px;
  border: 1px solid var(--grey-color);
  border-radius: 5px;
  color: var(--dark-grey);
  gap: 1rem;
  cursor: pointer;
}

.services__details-item-body1 {
  padding-left: 4.2rem;
}

.services__item svg {
  fill: var(--dark-grey);
}

.services__item--active {
  background-color: var(--orange-color) !important;
  color: var(--white-color) !important;
  box-shadow: var(--bs-box-shadow) !important;
}

.services__item--active svg {
  fill: var(--white-color) !important;
}

.services__item img {
  max-width: 50%;
  max-height: 50%;
}

.services__content {
  color: var(--navy-color);
  display: none;
}

.services__content--active {
  display: block;
}

.services__details {
  text-align: left;
}

.services__details-title {
  font-size: 1.5em;
  color: var(--white-color);
  background-color: var(--orange-color);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  font-weight: 900;
  padding: 0px 1rem;
  width: fit-content;
}

.services__details-item {
  margin-bottom: 4rem;
}
.services__details-item:last-child {
  margin-bottom: 0;
}

.services__details-item-title {
  font-size: 1.2em;
  color: var(--navy-color);
  font-weight: 900;
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.services__details-item-title1::before {
  content: url("/images/svg/orange_checkmark.svg");
  display: inline-block;
  margin-right: 3rem;
  margin-bottom: -5px;
}

.services__details-item-desc {
  font-size: 1em;
  color: #555;
}

.services__navigation {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.services__navigation-item {
  width: 10px;
  height: 10px;
  background-color: #ddd;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.services__navigation-item--active {
  background-color: var(--orange-color);
}

.services__gestion_pic_cont {
  position: relative;
  height: 40rem;
}

.services__gestion_pic1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 380px;
  height: 525px;
  border-radius: 15px;
}

.services__gestion_pic2 {
  position: absolute;
  right: 0;
  top: 3rem;
  width: 425px;
  height: 525px;
  border-radius: 15px;
}

.services__gestion_bluedots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -7rem;
  width: 282px;
  height: 525px;
  border-radius: 15px;
  z-index: -1;
}

.services__details-title_mobile {
  font-size: 1.5em;
  color: var(--white-color);
  background-color: var(--orange-color);
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  padding: 0px 1rem;
  width: 100%;
  height: 4rem;
  margin-bottom: 2rem;
}
.services__details-title_mobile_cont {
  display: flex;
  justify-content: center;
  display: none;
}

@media (max-width: 992px) {
  .services__list {
    justify-content: center;
  }
  .services__details-title {
    display: none;
  }
  .services__details-title_mobile_cont {
    display: flex !important;
  }
  .services__gestion_pic_cont {
    margin-bottom: 4rem;
  }
}

/* Contacto */
.contacto {
  background-image: url("/images/png/ondulacion-gris.png");
  background-position: left;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 4rem 0;
  padding-bottom: 0px;

  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.contacto__header {
  text-align: center;
  margin-bottom: 6rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contacto__header h1 {
  color: var(--navy-color);
  font-weight: 900;
  margin-bottom: 0px;
}
.contacto__header p {
  color: var(--navy-color);
  margin-bottom: 0px;
}

.contacto__form {
  background-color: white;
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contacto__form_title_cont {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contacto__form_title_cont h3 {
  font-weight: 900;
  color: var(--navy-color);
  text-align: center;
}
.contacto__form_title_cont p {
  text-align: center;
  color: var(--navy-color);
  margin: 0px;
}

.contacto__form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contacto__form_buttons_cont {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.contacto__form_submit_button {
  width: 190px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
}

.contacto__map {
  height: 400px;
  width: 100%;
  margin-top: 30px;
  position: relative;
}
.contacto__map-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.contacto__faq {
  margin-bottom: 30px;
  position: relative;
}

.contacto__faq-header {
  position: absolute;
  top: -2rem;
  font-size: 1rem;
  color: var(--navy-color);
}

#contacto__faq_accordion {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacto__faq_accordion-body {
  color: var(--dark-grey);
}

.contacto_accordion-item {
  border-radius: 5px !important;
  overflow: hidden;
  border: none;
}
.contacto_accordion-button {
  color: var(--navy-color) !important;
  font-weight: 700;
}
.contacto_accordion-button p {
  margin: 0px;
  width: 70%;
}
.contacto_accordion-button:focus {
  box-shadow: none;
  background-color: none;
}
.contacto_accordion-button:not(.collapsed) {
  box-shadow: none;
  background-color: var(--white-color);
}

.contacto_accordion-button::after {
  background-image: url("/images/svg/orange-acordion-button.svg");
}
.contacto_accordion-button:not(.collapsed)::after {
  background-image: url("/images/svg/orange-acordion-button.svg");
}

.contacto__info_cont p {
  margin-bottom: 0px;
  color: var(--dark-grey);
}

.contacto__info-header {
  color: var(--navy-color);
  font-weight: 900;
  font-size: 1.2em;
}

.contacto__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contacto__info__group p {
  color: var(--dark-grey);
  margin-bottom: 0px;
}

.contacto__info__row {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contacto__info__group_icon {
  border: solid 1px var(--grey-color);
  border-radius: 5px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacto__info__group a {
  color: var(--dark-grey);
  text-decoration: none;
}

.contacto__info__table {
  display: flex;
  flex-direction: column;
  color: var(--dark-grey);
}
.contacto__info__table div {
  display: flex;
  justify-content: space-between;
  border-radius: 5px; /* Optional rounded corners */
  gap: 2rem;
}

.contacto__info {
  background-color: white;
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  z-index: 6;
}

.contacto_map_background {
  height: 700px;
  position: relative;
}

.contacto__info_cont {
  position: absolute;
  /* height: 100%; */
  width: 100%;
}

.contacto_map_background #map {
  position: absolute;
  top: 0px;

  width: 100%;
  height: 100%;
  z-index: 2;
}

.contacto__info {
  position: relative;
}

.footer {
  background-color: #21233f;
}

.footer a {
  color: var(--white-color);
  text-decoration: none;
}

.footer a:hover {
  color: var(--orange-color);
}

.footer__footer-row--border-bottom {
  border-bottom: 1px solid #ffffff1b;
}

.footer__first-row {
  height: 7rem;
  font-weight: bold;
}
.footer__header-link {
  color: var(--orange-color) !important;
  font-weight: bold;
  font-size: 1.4rem;
}
.footer__second-row {
  padding: 5rem 0px;
}

.footer__third-row {
  padding: 1.5rem 0px;
}
.footer__third-row a {
  font-size: 0.99rem;
}

.footer--mobile {
  display: none;
}
@media (max-width: 992px) {
  .footer--mobile {
    display: block;
  }
  .footer--desktop {
    display: none;
  }
}
