
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background: #121212;
}

#hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}


.hero-overlay {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #223539 0%, rgba(68, 38, 53, 0.75) 100%);
  clip-path: polygon(0 0, 70% 0, 55% 100%, 0% 100%);
  display: flex;
  align-items: center;
}


.hero-content {
  max-width: 550px;
  margin-left: 8%;
}

.hero-content h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1rem;
  margin: 1.5rem 0;
  opacity: 0.9;
}

.navbar-glass {
  transition: all 0.4s ease;
  background: transparent;
  backdrop-filter: none;
  box-shadow: none;
}


.navbar-glass.scrolled {
  background: rgba(30, 30, 30, 24%);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  margin: 10px;
}

body {
  padding-top: 56px;
}

.navbar-glass .nav-link {
  transition: color 0.3s ease;
}

.navbar-glass .nav-link:hover {
  color: #c2200e;
}

.carousel-control-custom {
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  padding: 0.75rem;
  opacity: 0.9;
}

.carousel-control-custom.carousel-control-prev {
  left: 2rem;
}

.carousel-control-custom.carousel-control-next {
  right: 2rem;
}

@media (max-width: 992px) {
  .hero-overlay {
    clip-path: none;
    background: linear-gradient(135deg, #223539 0%, rgb(68, 38, 53) 100%);
  }

  .hero-content {
    margin: auto;
    text-align: center;
    padding: 3rem 1rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-slide {
    background-attachment: scroll;
  }
}

.about-section {
  background: linear-gradient(135deg, #121212 0%, #223539 100%);
  position: relative;
  overflow: hidden;
}

.about-img-wrapper {
  position: relative;
}

.about-img-wrapper img {
  border-radius: 12px;
  z-index: 2;
  position: relative;
  transition: transform 0.4s ease;
}

.about-img-wrapper img:hover {
  transform: scale(1.05);
}

.about-shape {
  content: "";
  position: absolute;
  top: 30px;
  left: -25px;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #442635, #c2200e);
  clip-path: polygon(0 0, 90% 0, 70% 100%, 0% 100%);
  border-radius: 12px;
  z-index: 1;
  opacity: 0.7;
}

#about h2 {
  color: #fff;
  letter-spacing: 1px;
}

#about p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}

#about .btn-outline-light {
  border-width: 2px;
  transition: all 0.3s ease;
}

#about .btn-outline-light:hover {
  background-color: #fff;
  color: #223539;
}


.floating-laptop {
  position: relative;
  display: inline-block;
  width: 500px;
  max-width: 100%;
}

.laptop-img {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 25px rgba(255, 100, 0, 0.5));
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.7;
  z-index: 1;
  animation: float 6s ease-in-out infinite;
}

.orb1 {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, rgba(255, 166, 0, 0.9), rgba(255, 60, 0, 0.3));
  top: 10%;
  left: -10%;
  animation-delay: 0s;
}

.orb2 {
  width: 60px;
  height: 60px;
  background: radial-gradient(circle, rgba(255, 110, 0, 0.8), rgba(255, 40, 0, 0.3));
  top: 60%;
  right: -15%;
  animation-delay: 2s;
}

.orb3 {
  width: 40px;
  height: 40px;
  background: radial-gradient(circle, rgba(255, 180, 0, 0.9), rgba(255, 80, 0, 0.4));
  bottom: 15%;
  left: 5%;
  animation-delay: 1s;
}

.orb4 {
  width: 110px;
  height: 110px;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.8), rgba(255, 40, 0, 0.2));
  top: 20%;
  right: 10%;
  animation-delay: 3s;
}


@keyframes float {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-20px) scale(1.05);
    opacity: 1;
  }
}


.video-section {
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin-top: 0;
  padding-top: 0;
}

.video-background {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
}

.video-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(30, 30, 30, 0.4);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}


.valores-section {
  position: relative;
  width: 100%;
  height: 400vh;
}

.valores-wrapper {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #121212 0%, #223539 100%);
  color: white;
  padding: 0 10%;
}

.valores-left {
  width: 45%;
}

.valores-left h2 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.valores-left p {
  font-size: 1.2rem;
  opacity: 0.9;
  line-height: 1.6;
}

.valores-right {
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valor-icono {
  font-size: 8rem;
  transition: transform 0.6s ease, opacity 0.6s ease;
}

.valor-fade-out {
  opacity: 0;
  transform: translateY(30px);
}

.valor-fade-in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 992px) {
  .valores-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1rem;
  }
  .valores-left,
  .valores-right {
    width: 100%;
  }
  .valor-icono {
    font-size: 5rem;
  }
}


.contact-section {
  background: url('../img/banner.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
  background-blend-mode: overlay;
}

.contact-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.1;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  backdrop-filter: blur(12px);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}


.contact-form .form-control {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.contact-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.contact-form .form-control:focus {
  border-color: #ff4f5a;
  box-shadow: 0 0 8px rgba(255, 79, 90, 0.5);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}


.contact-form:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.5);
}

.contact-info li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.contact-info i {
  color: #ff4f5a;
}

.btn-primary {
  background: #ff4f5a;
  border: none;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ff6b75;
}

.footer-section {
  position: relative;
  background: linear-gradient(135deg, rgba(10,10,10,0.95), rgba(25,25,25,0.85));
  backdrop-filter: blur(6px);
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.3));
  transform: skewY(-4deg);
  z-index: 0;
}

.footer-section .container {
  position: relative;
  z-index: 2;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
  transform: translateX(5px);
}


.social-link {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-link:hover {
  color: #ff4b4b;
  transform: scale(1.2) rotate(8deg);
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.2);
}


#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 1s ease, visibility 1s ease;
}

#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 130px;
  height: 130px;
  position: relative;
  animation: pulseGlow 2.5s infinite ease-in-out;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.2));
}


.loader-logo::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0%;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  animation: shineUp 2.5s infinite ease-in-out;
}


@keyframes pulseGlow {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
  }
  50% {
    transform: scale(1.08);
    filter: drop-shadow(0 0 14px rgba(255, 255, 255, 0.6));
  }
}


@keyframes shineUp {
  0% {
    top: 100%;
    height: 0%;
  }
  25% {
    top: 60%;
    height: 40%;
  }
  50% {
    top: 0%;
    height: 100%;
  }
  75% {
    top: -40%;
    height: 40%;
  }
  100% {
    top: -100%;
    height: 0%;
  }
}

#successModal .modal-content {
  background: rgba(10, 15, 25, 0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
  overflow: hidden;
  animation: modalFadeIn 0.6s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

#successModal .modal-header {
  border-bottom: 2px solid #e63946;
  color: #fff;
  text-align: center;
  justify-content: center;
}

#successModal .modal-title {
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
}

#successModal .modal-title i {
  font-size: 1.5rem;
  color: #00ffb3;
  animation: pulseGlow 1.8s infinite ease-in-out;
}


#successModal .modal-body {
  padding: 2rem;
  color: #dbe4ff;
  font-size: 1.05rem;
  text-shadow: 0 0 4px rgba(255,255,255,0.15);
}


#successModal .btn-close-white {
  filter: invert(1) brightness(2);
  opacity: 0.8;
  transition: all 0.3s ease;
}
#successModal .btn-close-white:hover {
  opacity: 1;
  transform: rotate(90deg);
}

/* Footer */
#successModal .modal-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  justify-content: center;
  padding-bottom: 2rem;
}

/* Botón principal */
#successModal .btn-outline-light {
  border: 2px solid #e63946;
  color: #fff;
  font-weight: 600;
  letter-spacing: 0.5px;
  background: linear-gradient(90deg, rgba(0,60,122,0.2), rgba(230,57,70,0.2));
  transition: all 0.3s ease;
}

#successModal .btn-outline-light:hover {
  background: linear-gradient(90deg, #003c7a, #e63946);
  box-shadow: 0 0 15px rgba(230,57,70,0.6);
  transform: translateY(-2px);
}

#valores {
  background: #0f0f16;
}

.valor-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  color: #d4d4d4;
}

.valor-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.65);
}

.valor-card h4 {
  color: #fff;
}

.valor-card p {
  font-size: 0.95rem;
  color: #cfcfcf;
}

.valor-icon {
  width: 75px;
  height: 75px;
  background: rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(255, 115, 0, 0.35);
  margin-bottom: 15px;
}

.valor-icon img {
  width: 38px;
  filter: brightness(0) saturate(100%) invert(66%) sepia(92%) saturate(747%) hue-rotate(356deg) brightness(102%) contrast(103%);
}

.valor-link {
  display: inline-block;
  margin-top: 12px;
  color: #ff4f5a;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #ff4f5a;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

.valor-link:hover {
  color: #ff7b84;
}


.card {
  position: absolute;
  height: 350px;
  width: 100%;
  max-width: 850px;
  margin: auto;
  background-color: #ffffff;
  border-radius: 25px;
  box-shadow: 10px 0 50px rgba(0, 0, 0, 0.5);
}

.card .inner_part {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 30px;
  height: 350px;
  position: absolute;
}

#slideImg:checked ~ .inner_part {
  padding: 0;
  transition: .1s ease-in;
}

.inner_part .img {
  height: 260px;
  width: 260px;
  overflow: hidden;
  flex-shrink: 0;
  border-radius: 20px;
  box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

#slideImg:checked ~ .inner_part .img {
  height: 350px;
  width: 850px;
  z-index: 99;
  transition: .3s .2s ease-in;
}

.img img {
  height: 100%;
  width: 100%;
  cursor: pointer;
  opacity: 0;
  transition: .6s;
}

#slide_1:checked ~ .inner_part .img_1,
#slide_2:checked ~ .inner_part .img_2,
#slide_3:checked ~ .inner_part .img_3 {
  opacity: 1;
  transition-delay: .2s;
}

.content {
  padding: 0 20px 0 35px;
  width: 530px;
  margin-left: 50px;
  opacity: 0;
  transition: .6s;
}

#slideImg:checked ~ .inner_part .content {
  display: none;
}

#slide_1:checked ~ .inner_part .content_1,
#slide_2:checked ~ .inner_part .content_2,
#slide_3:checked ~ .inner_part .content_3 {
  opacity: 1;
  margin-left: 0;
  z-index: 100;
  transition-delay: .3s;
}

.content .title {
  font-size: 30px;
  font-weight: 700;
  color: #0d0925;
  margin: 0 0 20px 0;
}

.content .text {
  font-size: 19px;
  color: #4e4a67;
  margin: 0 auto 30px auto;
  line-height: 1.5em;
  text-align: justify;
}

.content button {
  padding: 15px 20px;
  border: none;
  font-size: 16px;
  color: #fff0e6;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  background: #000000;
  float: right;
}

.content button:hover {
  background: #cecece;
  color: #000000;
}

.slider {
  position: absolute;
  bottom: 25px;
  left: 55%;
  transform: translateX(-50%);
  z-index: 1;
}

#slideImg:checked ~ .slider {
  display: none;
}

.slider .slide {
  position: relative;
  height: 10px;
  width: 50px;
  background: #d9d9d9;
  border-radius: 5px;
  display: inline-flex;
  margin: 0 3px;
  cursor: pointer;
}


.slider .slide:before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: -100%;
  background: #000000;;
  border-radius: 10px;
  transform: scaleX(0);
  transition: transform .6s;
  transform-origin: left;
}

#slide_1:checked ~ .slider .slide_1:before,
#slide_2:checked ~ .slider .slide_2:before,
#slide_3:checked ~ .slider .slide_3:before {
  transform: scaleX(1);
  width: 100%;
}

input {
  display: none;
}


.servicios-carrusel-section {
  padding: 80px 20px;
  background-image: url("../img/banner2.png");
  background-size: cover;
  background-position: center;
}

.servicios-carrusel-container {
  display: flex;
  max-width: 1200px;
  margin: auto;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}


.servicios-sidebar {
  width: 260px;
  padding: 40px 25px;
  border-right: 1px solid rgba(255,255,255,0.1);
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.servicios-sidebar input {
  display: none;
}

.servicios-sidebar label {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 18px;
  cursor: pointer;
  color: #aaa;
  transition: 0.25s;
  padding: 12px 15px;
  border-radius: 12px;
  transition: all 0.25s ease;
}


.servicios-sidebar .icon {
  font-size: 30px;
  transition: transform 0.3s ease;
}


@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

#desarrollo:checked ~ .servicios-sidebar label[for="desarrollo"],
#reingenieria:checked ~ .servicios-sidebar label[for="reingenieria"],
#consultoria:checked ~ .servicios-sidebar label[for="consultoria"],
#infra:checked ~ .servicios-sidebar label[for="infra"],
#tele:checked ~ .servicios-sidebar label[for="tele"],
#ux:checked ~ .servicios-sidebar label[for="ux"],
#ciber:checked ~ .servicios-sidebar label[for="ciber"],
#admin:checked ~ .servicios-sidebar label[for="admin"] {
  color: #ff7b00; /* NARANJA */
  font-weight: 600;
  background: rgba(255, 123, 0, 0.15);
  box-shadow: 0 0 12px rgba(255, 123, 0, 0.4);
  transform: translateX(6px);
}

#desarrollo:checked ~ .servicios-sidebar label[for="desarrollo"] .icon,
#reingenieria:checked ~ .servicios-sidebar label[for="reingenieria"] .icon,
#consultoria:checked ~ .servicios-sidebar label[for="consultoria"] .icon,
#infra:checked ~ .servicios-sidebar label[for="infra"] .icon,
#tele:checked ~ .servicios-sidebar label[for="tele"] .icon,
#ux:checked ~ .servicios-sidebar label[for="ux"] .icon,
#ciber:checked ~ .servicios-sidebar label[for="ciber"] .icon,
#admin:checked ~ .servicios-sidebar label[for="admin"] .icon {
  animation: pulse 1.3s infinite ease-in-out;
}


.servicios-content {
  flex: 1;
  padding: 20px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel {
  display: none;
  max-width: 600px;
  animation: fade 0.35s ease;
  text-align: center;
}

.big-icon {
  font-size: 90px;
  margin-bottom: 10px;
}

.panel h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: #e63946;
}

.panel p {
  font-size: 20px;
  color: #ccc;
  line-height: 1.5;
}

/* Mostrar panel activo */
#desarrollo:checked ~ .servicios-content .panel-desarrollo,
#reingenieria:checked ~ .servicios-content .panel-reingenieria,
#consultoria:checked ~ .servicios-content .panel-consultoria,
#infra:checked ~ .servicios-content .panel-infra,
#tele:checked ~ .servicios-content .panel-tele,
#ux:checked ~ .servicios-content .panel-ux,
#ciber:checked ~ .servicios-content .panel-ciber,
#admin:checked ~ .servicios-content .panel-admin {
  display: block;
}

@keyframes fade {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}



@media (max-width: 900px) {
  .servicios-carrusel-container {
    flex-direction: column;
  }

  .servicios-sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 12px;
    padding: 25px 15px;
  }

  .servicios-sidebar label {
    flex-direction: column;
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }

  .servicios-content {
    padding: 30px;
  }

  .panel h2 {
    font-size: 28px;
  }

  .panel p {
    font-size: 17px;
  }

  .servicios-img {
    margin-top: 0px;
    width: 90%;
  }

}

.servicios-img {
  margin-top: 0;
  width: 90%;
}

.video-wrapper {
  border-radius: 18px;
  overflow: hidden;
}

.servicios-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel-desarrollo .big-icon {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto 20px;
}
.panel-reingenieria .big-icon {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto 20px;
}
.panel-consultoria .big-icon {
   width: 100%;
   max-width: 500px;
   height: 500px;
   margin: 0 auto 20px;
 }
.panel-infra .big-icon {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto 20px;
}
.panel-tele .big-icon {panel-ux
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto 20px;
}
.panel-ux .big-icon {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto 20px;
}
.panel-ciber .big-icon {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto 20px;
}
.panel-admin .big-icon {
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto 20px;
}
@media (max-width: 768px) {
  .panel-desarrollo .big-icon {
    max-width: 220px;
    height: 140px;
  }
}

@media (max-width: 768px) {
  .panel-reingenieria .big-icon {
    max-width: 220px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .panel-consultoria .big-icon {
    max-width: 220px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .panel-infra .big-icon {
    max-width: 220px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .panel-tele .big-icon {
    max-width: 220px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .panel-ux .big-icon {
    max-width: 220px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .panel-ciber .big-icon {
    max-width: 220px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .panel-admin .big-icon {
    max-width: 220px;
    height: 140px;
  }
}
.hero-content-offset {
  max-width: 720px;
  margin-left: 10%;
}

@media (max-width: 992px) {
  .hero-content-offset {
    margin-left: 4%;
  }
}

@media (max-width: 768px) {
  .hero-content-offset {
    margin-left: 0;
    margin-right: 0;
    text-align: center;
  }
}




