
@font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Thin.otf") format("opentype");
    font-weight: 100;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Ultralight.otf") format("opentype");
    font-weight: 200;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Light.otf") format("opentype");
    font-weight: 300;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Regular.otf") format("opentype");
    font-weight: 400;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Medium.otf") format("opentype");
    font-weight: 500;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Semibold.otf") format("opentype");
    font-weight: 600;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Bold.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Heavy.otf") format("opentype");
    font-weight: 800;
    font-style: normal;
  }
  
  @font-face {
    font-family: "SF Pro Display";
    src: url("fonts/SF-Pro-Display-Black.otf") format("opentype");
    font-weight: 900;
    font-style: normal;
  }

  html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;  
}
  
  body {
    background: linear-gradient(to top, #292D32, #070808);

    font-family: "SF Pro Display", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;

  }

  
main {
  flex: 1;
}

  .video-background {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }

  #video-poster,
  #intro-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

#video-poster {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30%;
  height: 30%;
  object-fit: contain; 
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: opacity 1s ease;
  background-color: #ffffff;
  border-radius: 20px;
}
  #intro-video {
    z-index: 1;
  }
 
  a {
    text-decoration: none;
    color: #ffffff;
  }

   a:hover{
    text-decoration: none;
    color: #30D5C8;  
  }
  
  p {
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px !important; 
  }

  li {
  font-family: "SF Pro Display", sans-serif;
  font-size: 16px !important; 
  }

  h1 {
  font-family: "SF Pro Display", sans-serif;
  font-size: 50px !important;  
  font-weight: bold; 
  }

  h2 {
      font-family: "SF Pro Display", sans-serif;
      font-size: 40px !important;  
      font-weight: bold; 
   }

  h3 {
    font-family: "SF Pro Display", sans-serif;
    font-size: 30px !important;  
    font-weight: bold; 
  }
  h4 {
    font-family: "SF Pro Display", sans-serif;
    font-size: 24px !important;  
    font-weight: bold; 
  }

  h5 {
    font-family: "SF Pro Display", sans-serif;
    font-size: 16px !important;  
    font-weight: bold; 
  }

.navbar-custom {
  background-color: #000000 !important;
  height: 60px;
}
.navbar-custom .navbar-brand img {
  max-height: 40px; 
}
.navbar-custom .navbar-nav .nav-link {
  line-height: 60px;
}
.navbar-custom .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.1);
}

.nav-link.nav-button {  
    color: #ffffff;                   
    transition: color 0.3s ease;      
    margin-left: 40px; 
    font-size: 16px;
}

.nav-link.nav-button:hover {
    color: #30D5C8;               
    text-decoration: none; 
}
.navbar-toggler {
    border: none; 
    background-color: transparent; 
    padding: 0.5rem 0.75rem;
    outline: none;
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");

  }  
  .navbar-toggler:focus,
  .navbar-toggler:active {
    outline: none;
    box-shadow: none;
    border: none;
  }

  
  .language-toggle {
    display: flex;
    background-color: #2c2c2c;
    padding: 5px;
    border-radius: 40px;
    width: fit-content;
    gap: 10px;
    align-items: center;
  }
  
  .language-option {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border 0.3s ease;
    text-decoration: none;
  }
  
  .language-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .language-option.selected {
    border: 3px solid #00aeef;
  }
  
  .flag-img {
    height: 15px; 
    width: auto;  
    margin-right: 8px;
  }
  


.button-container {
  position: fixed;
  bottom: 20px;
  right: 40px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  z-index: 1000 !important;
}

.button {
  width: 275px;
  padding: 15px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.button.primary {
  background-color: #009DE0;
  color: white;
}
.button.primary:hover {
  background-color: #004E9D;
  color: white;
}


.secondary-container {
  display: flex;
  width: 275px;
}

.button.secondary {
  background-color: white;
  color: #009DE0;
  width: 134px;
  text-align: left;
  padding: 15px;
}

.button.secondary:hover {
  color: #004E9D;
}
.button:hover {
  transform: scale(1.05);
}

.title_button {
  font-weight: bold;
  margin: 0;
}

.description_button {
  font-size: 14px;
  margin: 5px 0 0 0;
}

.arrow {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 16px;
}

.secondary-buttons {
  display: flex;
  width: 275px;
  justify-content: space-between;
}




#section-Video {
    position: fixed; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;           
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.8); 
    z-index: 99999;         
}


.popup-content {
    background-color: #000;
    padding: 20px;
    padding-top: 60px;
    border-radius: 10px;
    position: relative; 
    max-width: 90%;
    max-height: 90%;
    overflow: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.5);
}
.popup-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 10px; 
}
#close-video {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}


#section-Video.closed {
  opacity: 0;
  pointer-events: none;
}

#Icon-mov a span {
  position: absolute;
  top: -80px; 
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}

.Botón_interactivo a {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 15;

  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  color: #fff;
  font: normal 400 20px/1 'Josefin Sans', sans-serif;
  letter-spacing: .1em;
  text-decoration: none;
  transition: opacity .3s;
}

.Botón_interactivo a:hover {
  opacity: .5;
}

#Interactive a span {
  position: absolute;
  top: -80px; 
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}

#Interactive a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  animation: sdb10 2s infinite;
  box-sizing: border-box;
}


@keyframes sdb10 {
0% {
  transform: translate(0, 0);
  opacity: 0;
}
40% {
  opacity: 1;
}
80% {
  transform: translate(0, 20px);
  opacity: 0;
}
100% {
  opacity: 0;
}
}

  


#video_HOS {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  cursor: pointer;
}
#video_HOS img {
  width: 100%;
  border-radius: 8px;
  display: block;

}


.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: red;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  cursor: pointer;
}
.play-button::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-left: 25px solid white;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  margin-left: 5px;
}
.play-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}


#language-menu {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 3;
  text-align: center;
}
#language-menu a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 8px 12px;
  margin-bottom: 8px;
  text-decoration: none;
  color: #000;
  font-weight: bold;
  border-radius: 6px;
  transition: all 0.3s;
}
#language-menu a:last-child {
  margin-bottom: 0;
}
#language-menu a:hover {
  background: #f0f0f0;
}
.flag {
  width: 20px;
  height: auto;
}






















#section-AboutUS {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
  background: linear-gradient(to right, #009DE0, #30D5C8); 
  max-width: 100%;
  overflow: hidden;
  padding-bottom: 10vh !important;
}

#section-Ourservices {
  height: auto;
  background: linear-gradient(to top, #292D32, #070808);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  width: 100%;
  margin-top: -80px;
  padding-top: 30px;
}

#section-choose {
  display: flex;
  flex-direction: column; 
  height: auto; 
  padding-bottom: 15vh ;
  background: linear-gradient(to right, #009DE0, #30D5C8); 
}

#section-testimonials1 {
  display: flex;
  height: auto; 
  background: linear-gradient(to top, #121416, #070808);
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
  width: 100%;
  margin-top: -60px;
  padding-bottom: 5vh;
}
#section-testimonials2 {
  display: flex;
  height: auto; 
  background: linear-gradient(to top,  #070808, #121416);
  width: 100%;
  padding-bottom: 15vh;
}


.carousel-container {
  width: 90%;
  overflow: hidden;
  position: relative;
  margin: 0 auto; 
  margin-top: 200 px;
}
.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.slide {
  background-color: white;
  color: black;
  padding: 20px;
  margin:10px ;
  height: auto;
  min-width: calc(100% / 3 - 20px);
  border-radius: 20px;
}
.author {
 margin-top: 15px;
}

.indicators {
  display: flex;
  justify-content: center;
  margin-top: 10px;

}
.indicator {
  width: 12px;
  height: 12px;
  margin: 5px;
  background: white;
  border-radius: 50%;
  opacity: 0.5;
  cursor: pointer;
}
.indicator.active {
  opacity: 1;
  background:#30D5C8
}



.About_photo {
  width: 100%; 

}

.truck-img {
  width: 120%; 
  max-width: none; 
  position: relative;
  right: -20%; 
  z-index: 1;
}


.-container-2 {
  display: flex;
  justify-content: left;
  gap: 20px;
  margin-top: 20px;
}

.solid-btn-2 {
  padding: 5px 5px;
  background-color: #009DE0;
  color: white;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  transition: background-color 0.3s ease;
  width: 130px;
}

.solid-btn-2:hover {
  background-color:  #004E9D;
}


.outline-btn-2 {
  padding: 5px 5px;
  background-color: transparent;
  color: #ffffff;
  border: 2px solid #009DE0;
  border-radius: 10px;
  cursor: pointer;
  font-size: 12px;
  transition: all 0.3s ease;
  width: 130px;
}

.outline-btn-2:hover {
  background-color:  #004E9D;
  color: white;
}


.button-container-3 {
  display: flex;
  justify-content: left;
  margin-top: -60px;
  margin-left: 90px;
}




.solid-btn-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: #009DE0;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
  width: 130px;
  height: 100px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.solid-btn-3:hover {
  background-color: #e6f7ff;
}

.arrow-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}

.btn-text {
  font-size: 14px;
  font-weight: 500;
  color: #009DE0;
}

#container_about_us {
    padding-left: 230px;
}



.text_about {
  color: white;
  text-align: left;
  position: relative;
  padding: 20px 0; 
  margin-left: 90px;
  margin-top: -150px;

}


.text_about::after {
  content: "";
  display: block;
  width: 100%; 
  height: 3px;
  background-color: white;
  border-radius: 10px; 
  margin: 40px auto; 
}

.text_about::before {
  content: "";
  display: block;
  width: 85%; 
  height: 3px; 
  background-color: white;
  border-radius: 10px; 
  margin: 40px 0 40px auto; 
}


.text_about_ES {
  color: white;
  text-align: left;
  position: relative;
  padding: 20px 0; 
  margin-left: 250px;
  margin-top: -150px;

}


.text_about_ES::after {
  content: "";
  display: block;
  width: 100%; 
  height: 3px;
  background-color: white;
  border-radius: 10px; 
  margin: 40px auto; 
}

.text_about_ES::before {
  content: "";
  display: block;
  width: 100%; 
  height: 3px; 
  background-color: white;
  border-radius: 10px; 
  margin: 40px 0 40px auto; 
}


.title {
  font-size: 80px;  
  color: white;  
  text-align: left;
  line-height: 1.0;  
  word-break: break-word;  
  margin-top: 40px;
}

.title_ES {
  font-size: 80px;  
  color: white;  
  text-align: left;
  line-height: 1.0;  
  word-break: break-word;  
  margin-top: 10px;
}

.title_ES span {
  display: block; 
}

.title span {
  display: block; 
}


body.our-team-page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
}

body.our-team-page main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

body.our-team-page .Contenedor_team {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10vh;
  background-color: #ffffff;
}


body.our-team-page footer {
  margin-top: auto;
}
.Contenedor_team {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 10vh;
  background-color: #ffffff;
}

  .card-person {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card-person:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  }

  .card-person .photo-section {
    flex: 1 1 100%;
    text-align: center;
    transition: all 0.5s ease;
  }

  .card-person .text-section {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .card-person.open .text-section {
    display: block;
    opacity: 1;
  }

  @media (min-width: 768px) {
    .card-person.open {
      flex-wrap: nowrap;
    }

    .card-person.open .photo-section {
      flex: 0 0 30%;
      text-align: center;
    }

    .card-person.open .text-section {
      flex: 0 0 70%;
    }
  }
























.modal.fade .modal-dialog {
  transition: transform 0.3s ease-out;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px;
  max-height: 90vh;
  overflow-y: auto;
}

#legalModal .modal-dialog {
  max-width: 70%; 
  width: 70%;     
  margin: 1.75rem auto;
}


.modal-content h3 {
  color: #30D5C8;
  margin-bottom: 15px;
}

.modal-content h4 {
  color: #30D5C8;
   margin-bottom: 10px;
}



.modal-content ul {
  padding-left: 30px;
  margin-top: 10px;
}

.modal-content ul li {
  margin-bottom: 8px;
}


.modal-content a {
  color: #009DE0;
  text-decoration: none;
}

.modal-content a:hover {
  color: #004E9D;
}


.modal-content::-webkit-scrollbar {
  width: 6px;
}

.modal-content::-webkit-scrollbar-thumb {
  background: #009DE0;
  border-radius: 3px;
}




.custom-table {
  background-color: transparent;
  border-collapse: separate;
  border-spacing: 0;
}

.custom-table th,
.custom-table td {
  border: none; 
  border-top: 2px solid #30D5C8; 
  padding: 12px;
  vertical-align: middle;
  background-color: transparent;
  color: white;
  text-align: left; 
}

.custom-table thead th {
  border-top: none;
  font-weight: bold;
  background-color: transparent;
  text-align: left; 
}






.video-container2 {
  position: relative;
  width: 100%;
  height: auto;
  border: 2px solid #009dff;
  border-radius: 15px;
  overflow: hidden;
  margin: 0 auto; 
  margin-top: 50px;
}


.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; 
  overflow: hidden;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


.Icon_ELD {
  width: 100px;  
  height: auto; 
  margin-top: 10px; 
}

.custom-icon {
  width: 24px; 
  height: 24px;  
  object-fit: contain; 
  margin-top: 3px; 
}


#section-ELD_Solutions {
  height: auto;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 70px;
}


#section-Key_takeaways {
  height: auto;
  background-color:#fff;
  width: 100%;
  border-radius: 80px;
}


#section-teletrac {
  height: auto;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 80px;
}

.section-ELD .d-flex.align-items-start {
  align-items: center; 
}

.section-ELD .d-flex.align-items-start h5 {
  margin: 0; 
}

.section-ELD .d-flex.align-items-start a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
}

.section-ELD .d-flex.align-items-start a:hover {
  color: #30D5C8; 
}

#Contenedor_contact {
 height:auto;
 background: linear-gradient(to top, #292D32, #070808);
 padding-bottom: 0px;
}

#Form_section {
 background-color: #e2e2e2;
 border-radius: 10px;

}




#container-form {
  background-color: #e2e2e2;
  border-radius: 20px;
  padding: 20px 20px;

  }

  form {
    border-radius: 12px;
    max-width: auto;
    width: 100%;
    height: auto;
  }


  label {
    display: block;
    color: #292D32;
    font-weight: 600px;
  }

  input[type="text"],
  input[type="email"],
  input[type="date"],
  input[type="time"],
  input[type="tel"],

  textarea {
    width: 100%;
    padding: 5px;
    margin-bottom: 2px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 14px;
    transition: border-color 0.3s ease;
  }

  input:focus,
  textarea:focus {
    border-color: #30D5C8;
    outline: none;
  }

#btn-enviar-formulario {
  width: 100%;
  padding: 12px;
  background-color: #009DE0;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#btn-enviar-formulario:hover {
  background-color: #004E9D;
}

#section-DataQ {
  height: auto;
  background: linear-gradient(to top, #292D32, #070808);
  width: 100%;
  padding-bottom: 4vh !important;
  padding-top: 4vh !important;
}




.border-start {
  border-left: 2px solid white; 
}












@media (max-width: 1400px) {
    img.logo-footer {
    height: 30px !important;
    width: auto !important;
    max-height: 30px !important;
  }
  .phone-nav .phone-number {
    font-size: 12px;
  }
  .nav-link.nav-button {      
      margin-left: 3px; 
      font-size: 12px;
  }
    p {
  font-family: "SF Pro Display", sans-serif;
  font-size: 12px !important; 
  }

  li {
  font-family: "SF Pro Display", sans-serif;
  font-size: 12px !important; 
  }

  h1 {
  font-family: "SF Pro Display", sans-serif;
  font-size: 30px !important;  
  font-weight: bold; 
  }

  h2 {
      font-family: "SF Pro Display", sans-serif;
      font-size: 25px !important;  
      font-weight: bold; 
   }

  h3 {
    font-family: "SF Pro Display", sans-serif;
    font-size: 20px !important;  
    font-weight: bold; 
  }
  h4 {
    font-family: "SF Pro Display", sans-serif;
    font-size: 16px !important;  
    font-weight: bold; 
  }

  h5 {
    font-family: "SF Pro Display", sans-serif;
    font-size: 12px !important;  
    font-weight: bold; 
  }

  .icon-footer {
      font-size: 12px;  
  }

#container_about_us {
    padding-left: 120px;
}

.text_about {
  padding: 15px 0; 
  margin-left: 50px;
  margin-top: -80px;

}


.text_about::after {
  height: 2px; 
  margin: 20px auto; 
}

.text_about::before {
  height: 2px; 
  margin: 20px 0 20px auto; 
  width: 85%; 
}

.title span {
  display: block;
}


.text_about_ES {
  padding: 15px 0; 
  margin-left: 160px;
  margin-top: -90px;

}


.text_about_ES::after {
  height: 2px; 
  margin: 20px auto; 
}

.text_about_ES::before {
  height: 2px; 
  margin: 20px 0 20px auto; 
  width: 100%; 
}

.title_ES span {
  display: block; 
}


.button-container-3 {
  margin-top: -40px;
  margin-left: 50px;
}


.solid-btn-3 {
  width: 100px;
  height: 80px;
}

#section-AboutUS {
  margin-bottom: 30vh;
}


  #section-Ourservices {
  margin-top: -40vh;
}


}

@media (min-width: 992px) {
.logo-footer {
    height: 40px !important;
  width: auto !important;
}
  .section4,
  .section5 {
    display: none;
  }


  .section2 {
    position: absolute;
    right: 10rem; 
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .section6 {
    position: absolute;
    right: 2rem; 
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .phone-nav {
    display: flex;
    align-items: center;
    gap: 8px; 
  }

  .phone-nav .phone-number {
    color: white;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .phone-nav .phone-number:hover {
    color: #30D5C8;
  }


footer {
  padding-left: 10px;
  padding-right: 10px;
  background-color: #000000 !important;
  color: white;
}


.footer-column {
  border-left: 1px solid white;
  padding-left: 20px;
}

 .nav-divider {
    display: none;
  }

  .icon-footer img {
    width: 15px;
}


#Contenedor_contact {
 padding-bottom: 70px;
 margin: 0;
}

 .popup-content img {
        max-width: 80%;  /* más pequeña que el contenedor */
        max-height: 70vh; /* que no sobrepase la pantalla */
    }


  }

@media (max-width: 991.98px){

 .popup-content img {
        max-width: 80%;  
        max-height: 70vh; 
}

.section1 {
    background-color: rgb(255, 255, 255);
    margin-top: -4px;
    border-radius: 10px; 
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
  } 

  .nav-divider {
    display: block;
    height: 1px;
    background-color: #707070;
    margin: 0;
    padding: 0;
  }
  .section2 {
    background-color: rgb(255, 255, 255);
    margin-top: 5px;
    border-radius: 10px;
    display: none !important;
  } 



  .social-link {
    display: flex;
    align-items: center;
    gap: 8px;                   
  }

  .social-link a {
    color: #707070;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
  }

  .social-link a:hover {
    color: #30D5C8;
  }

  .section4 {
    background-color: #009DE0;
    margin-top: 5px;
    border-radius: 10px;
    display: block !important;
    padding-top: 4px;
    padding-bottom: 4px;
  } 

.section4,
.section4 * {
  color: #fff !important; 
}
.section4 a {
  color: #fff !important;
  text-decoration: none; 
}
  .section5 {
    background-color: rgb(0, 0, 0);
    margin-top: 5px;
    border-radius: 10px;
    display: block !important;
    height: 50px;
  } 

    div.section5 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 60px !important;
  }
  
    div.section6 {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 60px !important;
  }
  
  .section4,
  .section5,
  .section6 {
    display: block !important;
  }

.nav-link.nav-button {      
      margin-left: 8px; 
      font-size: 16px;
  }

  #section-Ourservices {
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  margin-top: -36vh;
}
}

@media (max-width: 991.98px) {
.navbar-collapse.collapse.show {
  padding: 13px 20px 20px 10px;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  
  width: 100vw;
  max-width: 100vw;
  height: calc(100vh - 60px); 
  
  margin: 0;
  overflow-y: auto; 
  overflow-x: hidden; 
  
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 100;
}




.collapse {
  transition: none !important;
}
.collapsing {
  height: auto !important;
  transition: none !important;
  display: none !important;
}

  .navbar-toggler-icon {
    filter: invert(0);
  }
  .nav-link.nav-button {      
      margin-left: 0px; 
  }
  .phone-nav-mobile {
  display: flex;
  align-items: center;
  gap: 8px; 
  }


.navbar-collapse.collapse.show .nav-link {
  color: #707070 !important;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  line-height: 1.4;
  margin-left: 16px; 
  display: inline-block;
  transition: color 0.3s ease;
}


.navbar-collapse.collapse.show .nav-link:hover {
  color: #30D5C8 !important;
}

.phone-nav-mobile .phone-number {
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.phone-nav-mobile .phone-number:hover {
  color: #30D5C8;
}

  li {
  font-family: "SF Pro Display", sans-serif;
  font-size: 14px !important; 
  }
.info-list {
  list-style: none;
  padding-top: 0;
  margin: 0;
  width: 100%;
  box-sizing: border-box;
}

.info-text-container {
  text-align: center;
  color: #707070;
  font-size: 14px;
  margin: 8px 0; 
}

.nav-divider {
  border: none;
  border-top: 1px solid #707070;
  margin: 0;     
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.info-link {
  text-align: center;
  margin: 8px 0; 
}

.info-link a {
  color: #707070;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.info-link a:hover {
  color: #30D5C8;
}



  .button-container {
    display: none !important;
  }

.button.primary {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  padding: 15px;
  box-sizing: border-box;
}


.secondary-buttons {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: stretch; 
}


.secondary-buttons .secondary-container:nth-child(2) {
  display: none;
}


.secondary-buttons .secondary-container:nth-child(1) {
  width: 100%;
  height: 100%;
  display: flex;
}


.secondary-buttons .secondary-container:nth-child(1) .button.secondary {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 15px;
}

#container_about_us {
    padding-left: 20px;
    padding-right: 20px;
}

.text_about {
  padding: 0px 0; 
  margin-left: 0px;
  margin-top: 0px;

}
.text_about::after {
  height: 2px; 
  margin: 10px auto; 
}

.text_about::before {
  height: 2px; 
  margin: 10px 0 20px auto;
  width: 100%; 
}

.title span {
  display: inline;
}

.title_ES span {
  display: inline;
}

.text_about_ES {
  padding: 0px 0; 
  margin-left: 0px;
  margin-top: 0px;

}
.text_about_ES::after {
  height: 2px; 
  margin: 10px auto; 
}

.text_about_ES::before {
  height: 2px; 
  margin: 10px 0 20px auto; 
  width: 100%; 
}


.button-container-3 {
  margin-top: 4px;
  margin-left: 0px;
}



#section-testimonials1 {
   border-top-left-radius: 40px;
  border-top-right-radius: 40px;
}



#Contenedor_contact {
 padding-bottom: 70px;
 margin: 0;
}


#section-Key_takeaways {
  border-radius: 40px;
}
}

@media (max-width: 768px) {



  .carousel {
    flex-direction: row;
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    min-width: 100% !important;
    margin: 0 !important;
  }

.Contenedor_team {
  height: auto;
  padding-bottom: 20%;  
  padding-top: 20%;
}


}


@media (max-width: 576px) {


#section-Video {
  bottom: 0px;
  left: 0px;
  padding: 15px 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; 
  width: 100%;

}

 .popup-content img {
    max-width: 100%; 



.Contenedor_team {
  height: auto;
  padding-bottom: 30%;  
  padding-top: 20%;
}

.card {
  margin-left:30px;
  margin-right: 30px;
}

#legalModal .modal-dialog {
  max-width: 100%; 
  width: 100%;     
  margin-top: 0px;
}

.modal-content {
  border-radius: 12px;
  height: 70vh;
}



#Contenedor_contact {
 padding-bottom: 70px;
 margin: 0;
}


#section-DataQ {
  padding-bottom: 15vh !important;
}


#section-Video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  transition: opacity 0.5s ease;
}


.popup-content {
  padding: 5px;
  padding-top: 60px;

  max-width: 100%;
  max-height: 100%;


}

#close-video {
  position: absolute;
  top: 10px;
  right: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
}


#section-Video.closed {
  opacity: 0;
  pointer-events: none;
}


.border-start {
  border-left:none;
}



}
}
