body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  line-height: 1.65;
  /*background: linear-gradient(rgba(181, 220, 255, 1),rgba(0, 123, 255, 0.5));
  background-image: linear-gradient(rgba(181, 220, 255, 1),rgba(0, 123, 255, 0.4)), url('../img/portfolio/aviones.webp');*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-size: 85rem;
  background: #FFF
}

@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}


/* Estilos para el panel derecho */
/* Estilos para el contenido principal */
#contenido-principal {
    padding: 20px;
    margin-top: 60px;
    transition: width 0.3s ease-in-out; /* Transición para ajustar el ancho */
    width: 100%; /* Ancho completo por defecto */
}
/* Estilos para el panel derecho */
#panel-derecho {
    position: fixed;
    bottom: 0;
    right: -250px;
    width: 100%;
    max-width: 250px;
    background-color: #f2f2f2;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 9999;
    overflow-y: auto; /* Agregamos scroll vertical si es necesario */
    max-height: calc( 100% - 4.3rem); /* Limita la altura del panel */
}

#panel-derecho h2 {
    margin-top: 0;
    color: #00b300;
}

#panel-derecho ul {
    list-style: none;
    padding: 0;
}

#panel-derecho li {
    margin-bottom: 20px;
}

#panel-derecho p {
    font-size: 10px;
    margin: 5px 0;
}

#panel-derecho a {
    text-decoration: none;
    color: #007BFF;
}

/* Clase para ocultar el panel */
.oculto {
    display: none;
}

/* Estilos para el botón */
#toggle-panel {
    display: block;
    margin-bottom: 1px;
    padding: 0.40vw;
    background-color: #007BFF;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

#toggle-panel:hover {
    background-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 0, 255, 0.4);
}

/**/

a {
  color: #4B74FE;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #3463FF;
  text-decoration: underline;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  line-height: 1.3;
}

img.pequeña{width: 24vw; height: 15vw;
}

.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-md {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.text-xl {
  font-size: 21px !important;
}

/* Color Systems */
.bg-black {
  background-color: #000 !important;
}

.bg-white {
  background-color: #fff !important; 
}

.bg-primary {
  background-color: #2F89FC !important;
}

a.bg-primary:hover, a.bg-primary:focus {
  background-color: #167bfc !important;
}

.bg-accent {
  background-color: #F52E91 !important;
}

a.bg-accent:hover, a.bg-accent:focus {
  background-color: #f41684 !important;
}

.bg-secondary {
  background-color: #6D728B !important;
}

a.bg-secondary:hover, a.bg-secondary:focus {
  background-color: #62667d !important;
}

.bg-success {
  background-color: #06CC89 !important;
}

a.bg-success:hover, a.bg-success:focus {
  background-color: #05b378 !important;
}

.bg-info {
  background-color: #0EA1E6 !important;
}

a.bg-info:hover, a.bg-info:focus {
  background-color: #0d90ce !important;
}

.bg-warning {
  background-color: #F68718 !important;
}

a.bg-warning:hover, a.bg-warning:focus {
  background-color: #eb7a09 !important;
}

.bg-danger {
  background-color: #FF4457 !important;
}

a.bg-danger:hover, a.bg-danger:focus {
  background-color: #ff2b40 !important;
}

.bg-grey {
  background-color: #AFB7C1 !important;
}

a.bg-grey:hover, a.bg-grey:focus {
  background-color: #a1aab6 !important;
}

.bg-dark {
  background-color: #33374B !important;
}

a.bg-dark:hover, a.bg-dark:focus {
  background-color: #292c3c !important;
}

.bg-light {
  background-color: #F2F4FE !important;
}

a.bg-light:hover, a.bg-light:focus {
  background-color: #dae0fc !important;
}

.fg-black {
  color: #000 !important;
}

.fg-white {
  color: #000000 !important;
  font-weight: bold !important;
  font-size: 50px !important;
}

.fg-primary {
  color: #2F89FC !important;
}

a.fg-primary:hover, a.fg-primary:focus {
  color: #167bfc !important;
}

.fg-primarys {
  color: #2c9c28 !important;
}

a.fg-primarys:hover, a.fg-primarys:focus {
  color: #007bff !important;
}

.fg-accent {
  color: #F52E91 !important;
}

a.fg-accent:hover, a.fg-accent:focus {
  color: #f41684 !important;
}

.fg-secondary {
  color: #6D728B !important;
}

a.fg-secondary:hover, a.fg-secondary:focus {
  color: #62667d !important;
}

.fg-success {
  color: #06CC89 !important;
}

a.fg-success:hover, a.fg-success:focus {
  color: #05b378 !important;
}

.fg-info {
  color: #0EA1E6 !important;
}

a.fg-info:hover, a.fg-info:focus {
  color: #0d90ce !important;
}

.fg-warning {
  color: #F68718 !important;
}

a.fg-warning:hover, a.fg-warning:focus {
  color: #eb7a09 !important;
}

.fg-danger {
  color: #FF4457 !important;
}

a.fg-danger:hover, a.fg-danger:focus {
  color: #ff2b40 !important;
}

.fg-grey {
  color: #AFB7C1 !important;
}

a.fg-grey:hover, a.fg-grey:focus {
  color: #a1aab6 !important;
}

.fg-dark {
  color: #33374B !important;
}

a.fg-dark:hover, a.fg-dark:focus {
  color: #292c3c !important;
}

.fg-light {
  color: #F2F4FE !important;
}

a.fg-light:hover, a.fg-light:focus {
  color: #dae0fc !important;
}

.border-primary {
  border-color: #2F89FC !important;
}

.border-accent {
  border-color: #F52E91 !important;
}

.border-secondary {
  border-color: #6D728B !important;
}

.border-success {
  border-color: #06CC89 !important;
}

.border-info {
  border-color: #0EA1E6 !important;
}

.border-warning {
  border-color: #F68718 !important;
}

.border-danger {
  border-color: #FF4457 !important;
}

.border-grey {
  border-color: #AFB7C1 !important;
}

.border-dark {
  border-color: #33374B !important;
}

.border-light {
  border-color: #F2F4FE !important;
}

/* Social Media Colors */
.bg-facebook {
  background-color: #3B5999 !important;
}

.btn.bg-facebook:hover, .btn.bg-facebook:focus {
  background-color: #344e87 !important;
}

.bg-twitter {
  background-color: #1DA1F2 !important;
}

.btn.bg-twitter:hover, .btn.bg-twitter:focus {
  background-color: #0d95e8 !important;
}

.bg-google-plus {
  background-color: #DB4437 !important;
}

.btn.bg-google-plus:hover, .btn.bg-google-plus:focus {
  background-color: #d33426 !important;
}

.bg-youtube {
  background-color: #CD201F !important;
}

.btn.bg-youtube:hover, .btn.bg-youtube:focus {
  background-color: #b71d1c !important;
}

.bg-dribbble {
  background-color: #EA4C89 !important;
}

.btn.bg-dribbble:hover, .btn.bg-dribbble:focus {
  background-color: #e7357a !important;
}

.bg-pinterest {
  background-color: #BD081C !important;
}

.btn.bg-pinterest:hover, .btn.bg-pinterest:focus {
  background-color: #a50718 !important;
}

.bg-slack {
  background-color: #3AAF85 !important;
}

.btn.bg-slack:hover, .btn.bg-slack:focus {
  background-color: #349c76 !important;
}

.bg-linkedin {
  background-color: #0077B5 !important;
}

.btn.bg-linkedin:hover, .btn.bg-linkedin:focus {
  background-color: #00669c !important;
}

.btn {
  padding: 10px 28px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.btn:focus, .btn.focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-primary {
  color: #fff;
  background-color: #2F89FC;
  border-color: #2F89FC;
}

.btn-primary:hover {
  color: #fff;
  background-color: #167bfc;
  border-color: #0974fb;
  -webkit-box-shadow: 0 4px 12px rgba(47, 137, 252, 0.3);
          box-shadow: 0 4px 12px rgba(47, 137, 252, 0.3);
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #4897fc;
  border-color: #3c90fc;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #2F89FC;
  border-color: #2F89FC;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0974fb;
  border-color: #046df4;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-accent {
  color: #fff;
  background-color: #F52E91;
  border-color: #F52E91;
}

.btn-accent:hover {
  color: #fff;
  background-color: #f41684;
  border-color: #f10c7e;
  -webkit-box-shadow: 0 4px 12px rgba(245, 46, 145, 0.3);
          box-shadow: 0 4px 12px rgba(245, 46, 145, 0.3);
}

.btn-accent:focus, .btn-accent.focus {
  color: #fff;
  background-color: #f6469e;
  border-color: #f63a97;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-accent:disabled, .btn-accent.disabled {
  color: #fff;
  background-color: #F52E91;
  border-color: #F52E91;
}

.btn-accent:not(:disabled):not(.disabled):active, .btn-accent:not(:disabled):not(.disabled).active,
.show > .btn-accent.dropdown-toggle {
  color: #fff;
  background-color: #f10c7e;
  border-color: #e50b77;
}

.btn-accent:not(:disabled):not(.disabled):active:focus, .btn-accent:not(:disabled):not(.disabled).active:focus,
.show > .btn-accent.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-secondary {
  color: #fff;
  background-color: #6D728B;
  border-color: #6D728B;
}

.btn-secondary:hover {
  color: #fff;
  background-color: #62667d;
  border-color: #5c6076;
  -webkit-box-shadow: 0 4px 12px rgba(109, 114, 139, 0.3);
          box-shadow: 0 4px 12px rgba(109, 114, 139, 0.3);
}

.btn-secondary:focus, .btn-secondary.focus {
  color: #fff;
  background-color: #7a7f97;
  border-color: #737891;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-secondary:disabled, .btn-secondary.disabled {
  color: #fff;
  background-color: #6D728B;
  border-color: #6D728B;
}

.btn-secondary:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle {
  color: #fff;
  background-color: #5c6076;
  border-color: #575b6e;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-success {
  color: #fff;
  background-color: #06CC89;
  border-color: #06CC89;
}

.btn-success:hover {
  color: #fff;
  background-color: #05b378;
  border-color: #05a770;
  -webkit-box-shadow: 0 4px 12px rgba(6, 204, 137, 0.3);
          box-shadow: 0 4px 12px rgba(6, 204, 137, 0.3);
}

.btn-success:focus, .btn-success.focus {
  color: #33374B;
  background-color: #07e59a;
  border-color: #06d891;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #06CC89;
  border-color: #06CC89;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #05a770;
  border-color: #059a68;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-info {
  color: #fff;
  background-color: #0EA1E6;
  border-color: #0EA1E6;
}

.btn-info:hover {
  color: #fff;
  background-color: #0d90ce;
  border-color: #0c88c2;
  -webkit-box-shadow: 0 4px 12px rgba(14, 161, 230, 0.3);
          box-shadow: 0 4px 12px rgba(14, 161, 230, 0.3);
}

.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #1cadf1;
  border-color: #10a9f0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-info:disabled, .btn-info.disabled {
  color: #fff;
  background-color: #0EA1E6;
  border-color: #0EA1E6;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #0c88c2;
  border-color: #0b7fb6;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-warning {
  color: #33374B;
  background-color: #F68718;
  border-color: #F68718;
}

.btn-warning:hover {
  color: #fff;
  background-color: #eb7a09;
  border-color: #df7409;
  -webkit-box-shadow: 0 4px 12px rgba(246, 135, 24, 0.3);
          box-shadow: 0 4px 12px rgba(246, 135, 24, 0.3);
}

.btn-warning:focus, .btn-warning.focus {
  color: #33374B;
  background-color: #f79431;
  border-color: #f68d24;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-warning:disabled, .btn-warning.disabled {
  color: #33374B;
  background-color: #F68718;
  border-color: #F68718;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #df7409;
  border-color: #d36e08;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-danger {
  color: #fff;
  background-color: #FF4457;
  border-color: #FF4457;
}

.btn-danger:hover {
  color: #fff;
  background-color: #ff2b40;
  border-color: #ff1e35;
  -webkit-box-shadow: 0 4px 12px rgba(255, 68, 87, 0.3);
          box-shadow: 0 4px 12px rgba(255, 68, 87, 0.3);
}

.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #ff5e6e;
  border-color: #ff5162;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #FF4457;
  border-color: #FF4457;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #ff1e35;
  border-color: #ff1129;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-grey {
  color: #33374B;
  background-color: #AFB7C1;
  border-color: #AFB7C1;
}

.btn-grey:hover {
  color: #33374B;
  background-color: #a1aab6;
  border-color: #99a4b0;
  -webkit-box-shadow: 0 4px 12px rgba(175, 183, 193, 0.3);
          box-shadow: 0 4px 12px rgba(175, 183, 193, 0.3);
}

.btn-grey:focus, .btn-grey.focus {
  color: #33374B;
  background-color: #bdc4cc;
  border-color: #b6bdc7;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-grey:disabled, .btn-grey.disabled {
  color: #33374B;
  background-color: #AFB7C1;
  border-color: #AFB7C1;
}

.btn-grey:not(:disabled):not(.disabled):active, .btn-grey:not(:disabled):not(.disabled).active,
.show > .btn-grey.dropdown-toggle {
  color: #33374B;
  background-color: #99a4b0;
  border-color: #929dab;
}

.btn-grey:not(:disabled):not(.disabled):active:focus, .btn-grey:not(:disabled):not(.disabled).active:focus,
.show > .btn-grey.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-dark {
  color: #fff;
  background-color: #33374B;
  border-color: #33374B;
}

.btn-dark:hover {
  color: #fff;
  background-color: #292c3c;
  border-color: #242634;
  -webkit-box-shadow: 0 4px 12px rgba(51, 55, 75, 0.3);
          box-shadow: 0 4px 12px rgba(51, 55, 75, 0.3);
}

.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #3d425a;
  border-color: #383d53;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #33374B;
  border-color: #33374B;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #242634;
  border-color: #1e212d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-light {
  color: #33374B;
  background-color: #F2F4FE;
  border-color: #F2F4FE;
}

.btn-light:hover {
  color: #33374B;
  background-color: #dae0fc;
  border-color: #ced6fb;
  -webkit-box-shadow: 0 4px 12px rgba(242, 244, 254, 0.3);
          box-shadow: 0 4px 12px rgba(242, 244, 254, 0.3);
}

.btn-light:focus, .btn-light.focus {
  color: #33374B;
  background-color: white;
  border-color: #fefeff;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-light:disabled, .btn-light.disabled {
  color: #33374B;
  background-color: #F2F4FE;
  border-color: #F2F4FE;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #33374B;
  background-color: #ced6fb;
  border-color: #c3ccfa;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-primary {
  color: #2F89FC;
  background-color: transparent;
  border-color: #2F89FC;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #2F89FC;
  border-color: #2F89FC;
  -webkit-box-shadow: 0 4px 12px rgba(47, 137, 252, 0.3);
          box-shadow: 0 4px 12px rgba(47, 137, 252, 0.3);
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  color: #2F89FC;
  background-color: transparent;
  border-color: #2F89FC;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #fff;
  background-color: #2F89FC;
  border-color: #2F89FC;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #167bfc;
  border-color: #0974fb;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-accent {
  color: #F52E91;
  background-color: transparent;
  border-color: #F52E91;
}

.btn-outline-accent:hover {
  color: #fff;
  background-color: #F52E91;
  border-color: #F52E91;
  -webkit-box-shadow: 0 4px 12px rgba(245, 46, 145, 0.3);
          box-shadow: 0 4px 12px rgba(245, 46, 145, 0.3);
}

.btn-outline-accent:focus, .btn-outline-accent.focus {
  color: #F52E91;
  background-color: transparent;
  border-color: #F52E91;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-accent:disabled, .btn-outline-accent.disabled {
  color: #fff;
  background-color: #F52E91;
  border-color: #F52E91;
}

.btn-outline-accent:not(:disabled):not(.disabled):active, .btn-outline-accent:not(:disabled):not(.disabled).active,
.show > .btn-outline-accent.dropdown-toggle {
  color: #fff;
  background-color: #f41684;
  border-color: #f10c7e;
}

.btn-outline-accent:not(:disabled):not(.disabled):active:focus, .btn-outline-accent:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-accent.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-secondary {
  color: #6D728B;
  background-color: transparent;
  border-color: #6D728B;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6D728B;
  border-color: #6D728B;
  -webkit-box-shadow: 0 4px 12px rgba(109, 114, 139, 0.3);
          box-shadow: 0 4px 12px rgba(109, 114, 139, 0.3);
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  color: #6D728B;
  background-color: transparent;
  border-color: #6D728B;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #fff;
  background-color: #6D728B;
  border-color: #6D728B;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #62667d;
  border-color: #5c6076;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-success {
  color: #06CC89;
  background-color: transparent;
  border-color: #06CC89;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #06CC89;
  border-color: #06CC89;
  -webkit-box-shadow: 0 4px 12px rgba(6, 204, 137, 0.3);
          box-shadow: 0 4px 12px rgba(6, 204, 137, 0.3);
}

.btn-outline-success:focus, .btn-outline-success.focus {
  color: #06CC89;
  background-color: transparent;
  border-color: #06CC89;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #fff;
  background-color: #06CC89;
  border-color: #06CC89;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #05b378;
  border-color: #05a770;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-info {
  color: #0EA1E6;
  background-color: transparent;
  border-color: #0EA1E6;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #0EA1E6;
  border-color: #0EA1E6;
  -webkit-box-shadow: 0 4px 12px rgba(14, 161, 230, 0.3);
          box-shadow: 0 4px 12px rgba(14, 161, 230, 0.3);
}

.btn-outline-info:focus, .btn-outline-info.focus {
  color: #0EA1E6;
  background-color: transparent;
  border-color: #0EA1E6;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #fff;
  background-color: #0EA1E6;
  border-color: #0EA1E6;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #0d90ce;
  border-color: #0c88c2;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-warning {
  color: #F68718;
  background-color: transparent;
  border-color: #F68718;
}

.btn-outline-warning:hover {
  color: #33374B;
  background-color: #F68718;
  border-color: #F68718;
  -webkit-box-shadow: 0 4px 12px rgba(246, 135, 24, 0.3);
          box-shadow: 0 4px 12px rgba(246, 135, 24, 0.3);
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  color: #F68718;
  background-color: transparent;
  border-color: #F68718;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #33374B;
  background-color: #F68718;
  border-color: #F68718;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #eb7a09;
  border-color: #df7409;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-danger {
  color: #FF4457;
  background-color: transparent;
  border-color: #FF4457;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #FF4457;
  border-color: #FF4457;
  -webkit-box-shadow: 0 4px 12px rgba(255, 68, 87, 0.3);
          box-shadow: 0 4px 12px rgba(255, 68, 87, 0.3);
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  color: #FF4457;
  background-color: transparent;
  border-color: #FF4457;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #fff;
  background-color: #FF4457;
  border-color: #FF4457;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #ff2b40;
  border-color: #ff1e35;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-grey {
  color: #AFB7C1;
  background-color: transparent;
  border-color: #AFB7C1;
}

.btn-outline-grey:hover {
  color: #33374B;
  background-color: #AFB7C1;
  border-color: #AFB7C1;
  -webkit-box-shadow: 0 4px 12px rgba(175, 183, 193, 0.3);
          box-shadow: 0 4px 12px rgba(175, 183, 193, 0.3);
}

.btn-outline-grey:focus, .btn-outline-grey.focus {
  color: #AFB7C1;
  background-color: transparent;
  border-color: #AFB7C1;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-grey:disabled, .btn-outline-grey.disabled {
  color: #33374B;
  background-color: #AFB7C1;
  border-color: #AFB7C1;
}

.btn-outline-grey:not(:disabled):not(.disabled):active, .btn-outline-grey:not(:disabled):not(.disabled).active,
.show > .btn-outline-grey.dropdown-toggle {
  color: #33374B;
  background-color: #a1aab6;
  border-color: #99a4b0;
}

.btn-outline-grey:not(:disabled):not(.disabled):active:focus, .btn-outline-grey:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-grey.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-dark {
  color: #33374B;
  background-color: transparent;
  border-color: #33374B;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #33374B;
  border-color: #33374B;
  -webkit-box-shadow: 0 4px 12px rgba(51, 55, 75, 0.3);
          box-shadow: 0 4px 12px rgba(51, 55, 75, 0.3);
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  color: #33374B;
  background-color: transparent;
  border-color: #33374B;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #fff;
  background-color: #33374B;
  border-color: #33374B;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #292c3c;
  border-color: #242634;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-light {
  color: #F2F4FE;
  background-color: transparent;
  border-color: #F2F4FE;
}

.btn-outline-light:hover {
  color: #33374B;
  background-color: #F2F4FE;
  border-color: #F2F4FE;
  -webkit-box-shadow: 0 4px 12px rgba(242, 244, 254, 0.3);
          box-shadow: 0 4px 12px rgba(242, 244, 254, 0.3);
}

.btn-outline-light:focus, .btn-outline-light.focus {
  color: #F2F4FE;
  background-color: transparent;
  border-color: #F2F4FE;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #33374B;
  background-color: #F2F4FE;
  border-color: #F2F4FE;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #33374B;
  background-color: #dae0fc;
  border-color: #ced6fb;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.breadcrumb {
  background-color: #000;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "\2022";
  padding-right: 1rem;
}

.breadcrumb .breadcrumb-item.active {
  color: #a1aab6;
}

.breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #a1aab6;
}

.breadcrumb-dark .breadcrumb-item a {
  color: rgba(255, 255, 255, 1);
  font-size: 1.2rem;
}

.breadcrumb-dark .breadcrumb-item + .breadcrumb-item::before {
  display: inline-block;
  color: rgba(255, 255, 255, 1);
}

.breadcrumb-dark .breadcrumb-item.active {
  color: rgba(255, 255,255, 1);
  font-size: 1.2rem;
}

.navbar {
  margin-top: 60px;
  min-height: 100px;
  background-color: rgba(13,14,58,255);
}

.navbar-float {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 2px 6px rgba(51, 55, 75, 0.15);
          box-shadow: 0 2px 6px rgba(51, 55, 75, 0.15);
  z-index: 1070;
}

.navbar.sticky {
  z-index: 1080;
}

.navbar.sticky.fixed ~ * {
  margin-top: 70px;
}

.navbar.sticky.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  -webkit-animation: navTransition .5s ease;
          animation: navTransition .5s ease;
  -webkit-box-shadow: 0 2px 6px rgba(51, 55, 75, 0.15);
          box-shadow: 0 2px 6px rgba(51, 55, 75, 0.15);
  z-index: 1080;
}

@-webkit-keyframes navTransition {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

@keyframes navTransition {
  from {
    top: -100%;
  }
  to {
    top: 0;
  }
}

.navbar-brand {
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
}

.navbar-nav {
  margin-top: 10px;
  border-top: 1px solid #e4e7ee;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.navbar-nav .nav-link {
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.navbar-nav .btn {
  font-size: 16px;
}

.navbar-light .navbar-nav .nav-link {
	color: rgba(44, 156, 40, 0.9);
  /*font-weight: bold;
	color: rgba(109, 114, 139, 0.75);*/
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  /*color: #14B835;*/
  color: #FFFFFF;
  background-color: rgba(136, 252, 194, 0.1);
  box-shadow: 0vw 1vw 1.2vw 0vw rgba(10,202,189,0.9);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: #2F89FC;
}

@media (min-width: 576px) {
  .navbar-expand-sm .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl .navbar-nav {
    margin-top: 0;
    border-top: none;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.form-control {
  padding: 8px 15px;
  height: calc(1.5em + 1.375rem + 2px);
  border-color: #dee1e6;
}

.custom-select {
  height: calc(1.5em + 1.375rem + 2px);
}

.page-link {
  margin-left: 5px;
  min-width: 40px;
  color: #a1aab6;
  border: 1px solid #dee1e6;
  text-align: center;
  border-radius: 4px;
}

.page-link:hover {
  color: #6D728B;
  background-color: #F2F4FE;
  border-color: #dee1e6;
}

.page-link:focus {
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #2F89FC;
  border-color: #0974fb;
}

.page-item.disabled .page-link {
  color: #6D728B;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.img-place {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: hidden;
}

.img-place img {
  width: 100%;
  max-width: 100%;
  height: 100%;
}

.bg-img {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 20vw;
}

.bg-img1 {
  position: relative;
  background-position: top;
  background-size: cover;
  background-repeat: no-repeat,repeat;
  width: auto;
  max-width: auto;
}

.bg-img > * {
  position: relative;
  z-index: 0;
}

.bg-img-parallax {
	background-attachment: none;
}

.bg-img-overlay-dark {
  position: relative;
}

.bg-img-overlay-dark::before {
  content: '';
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  background-color: #33374B;
}

.bg-img-size-contain {
  background-size: contain;
}

.bg-img-size-100 {
  background-size: 100% 100%;
}

.avatar {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.avatar-img {
  margin-right: 8px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

.avatar-img img {
  width: 100%;
  height: 100%;
}

.divider {
  position: relative;
  display: block;
  margin: 12px 0 24px 0;
  max-width: 250px;
  height: 2px;
  background-color: #cbd9ff;
  border-radius: 20px;
  border: none;
}

.divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;
  width: 40px;
  height: 2px;
  background-color: #2F89FC;
}

.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(175, 183, 193, 0.7);
  visibility: hidden;
  cursor: pointer;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
  z-index: 1100;
}

.back-to-top::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: -4px auto;
  width: 12px;
  height: 12px;
  border-top: 2px solid #555;
  border-right: 2px solid #555;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.back-to-top:hover {
  background: #2F89FC;
}

.back-to-top:hover::after {
  border-color: #fff;
}

.top-bar {
	position: fixed;
    top: 0;
    background-color: #FFFFFF;
    padding: 10px;
    display: flex;
  height: 70px;
  width: 100%;
  border-bottom: 1px solid #f0f1f6;
  font-size: 14px;
  z-index: 10000000; /* Valor alto para que esté por encima del contenido */
}

.top-bar .container,
.top-bar .row {
  height: 100%;
}

.top-bar a {
  color: #6D728B;
}

.top-bar a:hover {
  color: #2F89FC;
  text-decoration: none;
}

.social-mini-button a {
  padding-left: 12px;
  padding-right: 12px;
}

.social-mini-button a:not(:last-child) {
  border-right: 1px solid #dfe1eb;
}

.page-banner {
  position: relative;
  height: 100%;
}

.page-banner .container {
  position: relative;
  z-index: 0;
}

.page-banner.home-banner {
  height: 100%;
  max-height: 100%;
}

.page-banner.overlay-dark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(109, 114, 139, 0.75);
  z-index: 0;
}

@media (min-width: 768px) {
  .page-banner.home-banner {
    height: 540px;
    max-height: unset;
  }
}

.slider-wrapper {
  position: relative;
  height: 100%;
}

.hero-carousel {
  height: 100%;
  width: 100%;
}

.owl-carousel .owl-stage-outer {
  height: 100%;
  width: 100%;
}

.hero-carousel-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-carousel-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(136, 252, 194, 0.3);
}

.hero-carousel-item img {
  width: 100%;
  height: 100%;
  background-size: auto;
}

.hero-carousel .owl-nav {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
}

.hero-carousel:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.hero-carousel .owl-nav .owl-prev,
.hero-carousel .owl-nav .owl-next {
  -webkit-transform: scale(0.5);
          transform: scale(0.5);
  -webkit-transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.hero-carousel:hover .owl-nav .owl-prev,
.hero-carousel:hover .owl-nav .owl-next {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.hero-carousel .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
}

.hero-carousel .img-caption {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 0 16px;
  width: auto;
  max-width: 900px;
  height: 100%;
  text-align: center;
  color: #fff;
  margin-top: 10%;
}

.hero-carousel h1 {
  font-weight: 300;
}

.hero-carousel .subhead {
  color: #fff;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero-carousel h1 {
    font-size: 56px;
  }
  .hero-carousel .subhead {
    font-size: 20px;
  }
}

.page-section {
  position: relative;
  display: block;
  padding: 80px 0;
}

.page-sectionl {
  /*background-image: linear-gradient(rgba(181, 220, 255, 1),rgba(0, 123, 255, 0.4)), url('../img/portfolio/Carga10.jpg');*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*background-attachment: fixed;*/
  position: relative;
  display: block;
  padding: 80px 0;
}

.page-sectionlv {
  /*background-image: linear-gradient(rgba(44, 156, 40, 0.4),rgba(181, 220, 255, 1)), url('../img/portfolio/buque-portacontenedores.webp');*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*background-attachment: fixed;*/
  position: relative;
  display: block;
  padding: 80px 0;
}

.page-sectionla {
  /*background-image: linear-gradient(rgba(181, 220, 255, 1),rgba(0, 123, 255, 0.4)), url('../img/portfolio/transporte-logistica.webp');*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*background-attachment: fixed;*/
  position: relative;
  display: block;
  padding: 80px 0;
}

.page-sectionini {
  /*background: linear-gradient(rgba(44, 156, 40, 0.7),rgba(0, 123, 255, 0.5)),url('../img/portfolio/render.webp');*/
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /*background-attachment: fixed;*/
  position: relative;
  padding: 80px 0;
}

.page-sectionini2 {
  /*background: linear-gradient(rgba(44, 156, 40, 0.7),rgba(0, 123, 255, 0.5)), url('../img/RG-Logo.png');*/
  background: linear-gradient(rgba(245, 241, 223, 0.8),rgba(245, 241, 223, 0.5)), url('../img/portfolio/atencion111.jpg');
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  /*background-attachment: fixed;*/
  position: relative;
  padding: 80px 0;
}

.page-section p {
  color: #6D728B;
}

.subhead {
  display: block;
  text-transform: capitalize;
  color: #000000;
  font-weight: bold;
  margin-bottom: 8px;
}

.title-section {
  display: auto;
  max-width: 450px;
  color: #0E0F12;
  font-weight: 600;
  margin-bottom: 32px;
}

.text-center .title-section {
  margin-left: auto;
  margin-right: auto;
}

.about-img {
  float: left;
  margin: 15px auto;
  width: auto;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 16px rgba(109, 114, 139, 0.3);
          box-shadow: 0 8px 16px rgba(109, 114, 139, 0.3);
  -webkit-transform: skewX(-3deg) rotateX(20deg);
          transform: skewX(-3deg) rotateX(20deg);
}

.about-img img {
  width: 100%;
}

.mision-img {
  float: left;
  margin: 15px auto;
  width: auto;
  max-width: 500px;
  border-radius: 12px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 16px rgba(109, 114, 139, 0.3);
          box-shadow: 0 8px 16px rgba(109, 114, 139, 0.3);
  -webkit-transform: skewX(-3deg) rotateX(20deg);
          transform: skewX(-3deg) rotateX(20deg);
}

.mision-img img {
  width: 100%;
}

.red-img {
  float: center;
  margin: 1.1vw auto;
  width: auto;
  max-width: 37vw;
  border-radius: 1.1vw;
  overflow: hidden;
}

.red-img img {
  width: 100%;
}

.team-carousel {
  display: block;
  width: 100%;
}

.team-wrap {
  position: relative;
  margin: 0 auto;
  width: auto;
  max-width: 280px;
}

.team-profile {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 6px;
  background-color: #AFB7C1;
  overflow: hidden;
}

.team-content {
  display: block;
  padding: 20px;
  background-color: #fff;
  color: #33374B;
}

.team-content .social-button {
  margin-top: 24px;
}

.team-content .social-button a {
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 4px;
  width: 28px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  font-size: 14px;
  background-color: #F2F4FE;
  color: #6D728B;
  border-radius: 4px;
  -webkit-transition: background .2s ease, color .3s ease;
  transition: background .2s ease, color .3s ease;
}

.team-content .social-button a:hover {
  background-color: #2F89FC;
  color: #fff;
  text-decoration: none;
}

.portfolio {
  display: block;
  background-color: #F2F4FE;
  border-radius: 8px;
  overflow: hidden;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.portfolio:hover {
  -webkit-box-shadow: 0 3px 12px rgba(109, 114, 139, 0.2);
          box-shadow: 0 3px 12px rgba(109, 114, 139, 0.2);
}

.portfolio img {
  width: auto;
  max-width: 100%;
}

.card-testimonial {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 30px 20px;
  background-color: #F2F4FE;
  color: #6D728B;
  border-radius: 8px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.card-testimonial:hover {
  background-color: #fff;
}

.card-testimonial .content {
  margin-bottom: 24px;
}

.card-testimonial .author {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.card-testimonial .avatar {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  overflow: hidden;
}

.card-testimonial .avatar img {
  width: 100%;
  height: 100%;
}

.card-testimonial .author-name {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0;
  color: #33374B;
}

.card-testimonial .author-info {
  font-size: 11px;
  color: #a1aab6;
}

.card-blog {
  position: relative;
  display: block;
  margin: 0 auto;
  padding: 32px 20px 70px 20px;
  max-width: 260px;
  min-height: 290px;
  border-radius: 6px;
  -webkit-box-shadow: 0 2px 6px rgba(51, 55, 75, 0.16);
          box-shadow: 0 2px 6px rgba(51, 55, 75, 0.16);
}

.card-blog .header {
  margin-bottom: 16px;
}

.card-blog .avatar {
  position: relative;
  display: inline-block;
  margin-right: 6px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #d0d4e4;
  overflow: hidden;
}

.card-blog .avatar img {
  width: 100%;
  height: 100%;
}

.card-blog .entry-footer {
  display: inline-block;
  vertical-align: top;
}

.card-blog .post-author {
  font-weight: 500;
  color: #6D728B;
}

.card-blog .post-date {
  font-size: 13px;
  color: #b2b6c5;
}

.card-blog .post-title {
  margin-bottom: 8px;
  font-size: 18px;
}

.card-blog .post-title a {
  font-weight: 500;
  color: #2d2f38;
}

.card-blog .post-excerpt {
  font-size: 14px;
  color: #AFB7C1;
}

.card-blog .footer {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.card-blog-row *:first-child .card-blog {
  background-color: #2F89FC;
}

.card-blog-row *:first-child .card-blog .post-author,
.card-blog-row *:first-child .card-blog .post-title a,
.card-blog-row *:first-child .card-blog .footer a {
  color: #fff;
}

.card-blog-row *:first-child .card-blog .post-date {
  color: rgba(255, 255, 255, 0.6);
}

.blog-single-wrap {
  position: relative;
  display: block;
  padding: 16px 0;
}

.blog-single-wrap .post-thumbnail {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 32px;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 24px rgba(109, 114, 139, 0.3);
          box-shadow: 0 4px 24px rgba(109, 114, 139, 0.3);
  overflow: hidden;
}

.blog-single-wrap .post-thumbnail img {
  width: auto;
  max-width: 100%;
}

.blog-single-wrap .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
  margin-bottom: 24px;
}

.blog-single-wrap .post-meta a {
  color: #6D728B;
}

.blog-single-wrap .post-meta a:hover {
  color: #167bfc;
  text-decoration: none;
}

.blog-single-wrap .post-meta .gap {
  padding-left: 8px;
  padding-right: 8px;
}

.blog-single-wrap .post-tags {
  display: block;
  padding: 16px 0;
}

.blog-single-wrap .post-tags a {
  display: inline-block;
  padding: 4px 12px;
  background-color: #F2F4FE;
  color: #99a4b0;
  font-size: 14px;
  border-radius: 4px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.blog-single-wrap .post-tags a:hover {
  text-decoration: none;
  background-color: #2F89FC;
  color: #fff;
}

.widget {
  padding: 16px 0;
}

.widget-box {
  position: relative;
  display: block;
  padding: 24px;
  margin-bottom: 32px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #ebeefd;
  -webkit-box-shadow: 0 4px 12px rgba(109, 114, 139, 0.1);
          box-shadow: 0 4px 12px rgba(109, 114, 139, 0.1);
}

.widget-box::after {
  display: block;
  clear: both;
  content: "";
}

.widget-title {
  font-weight: 600;
  color: #6D728B;
}

.search-form .form-group {
  position: relative;
}

.search-form .btn {
  position: absolute;
  top: 5px;
  right: 6px;
  padding: 6px 12px;
  background-color: #2F89FC;
  color: #fff;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.search-form .btn:hover {
  background-color: #167bfc;
}

.categories {
  position: relative;
  list-style: none;
  padding-left: 0;
}

.categories li {
  display: block;
  float: left;
  margin-bottom: 12px;
  width: 50%;
}

.categories li a {
  display: inline-block;
  width: 90%;
  padding: 6px 12px;
  background-color: #eef5ff;
  color: #2F89FC;
  border-radius: 4px;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.categories li a:hover {
  text-decoration: none;
  background-color: #2F89FC;
  color: #fff;
}

.categories li a span {
  float: right;
  margin-left: 8px;
  padding: 3px 6px;
  background-color: #2F89FC;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  border-radius: 40px;
}

.categories li a:hover span {
  -webkit-box-shadow: 0 0 0 1px #fff;
          box-shadow: 0 0 0 1px #fff;
}

.blog-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  padding-bottom: 12px;
  margin-bottom: 20px;
  border-bottom: 1px solid #dae0fc;
}

.blog-item .post-thumb {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  display: inline-block;
  margin-right: 15px;
  width: 100px;
  height: 80px;
  background-color: #AFB7C1;
  overflow: hidden;
}

.blog-item .post-thumb img {
  width: auto;
  height: 100%;
}

.blog-item .post-title a {
  color: #6D728B;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.blog-item .post-title a:hover {
  color: #2F89FC;
  text-decoration: none;
}

.blog-item .meta a {
  margin-right: 6px;
  font-size: 12px;
  color: #62667d;
}

.blog-item .meta a:hover {
  text-decoration: none;
}

.tagcloud {
  position: relative;
  display: block;
}

.tag-cloud-link {
  display: inline-block;
  padding: 4px 10px;
  margin-top: 4px;
  margin-bottom: 4px;
  border: 1px solid #dae0fc;
  border-radius: 40px;
  font-size: 14px;
  color: #6D728B;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.tag-cloud-link:hover,
.tag-cloud-link:focus {
  text-decoration: none;
  background-color: #F2F4FE;
  color: #2F89FC;
  border-color: #2F89FC;
}

.filterable-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  margin-bottom: 2vw;
}

.filterable-btn .btn {
  margin: 4px;
  padding: 8px 16px;
  font-size: 1.5vw;
  background-color: #F2F4FE;
  color: #898da2;
}

.filterable-btn .btn.active {
  background-color: #2F89FC;
  color: #fff;
}

.grid-item {
  padding: 2vw;
  width: 33.33333%;
}

.form-contact .form-control {
  background-color: #F2F4FE;
  border-color: transparent;
}

.form-contact .form-control:focus {
  background-color: transparent;
  border-color: #94c2fd;
  -webkit-box-shadow: 0 0 0 1px #94c2fd;
          box-shadow: 0 0 0 1px #94c2fd;
}

.maps-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #F2F4FE;
  overflow: hidden;
}

#google-maps {
  width: 100%;
  height: 100%;
}

.page-footer {
  position: relative;
  display: block;
  padding-top: 80px;
  padding-bottom: 20px;
  background-color: #33374B;
  color: #fff;
}

.page-footer hr {
  border-color: #464B61;
}

.page-footer h5 {
  margin-bottom: 24px;
}

.page-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-menu {
  position: relative;
  padding-left: 0;
  list-style: none;
}

.footer-menu li {
  margin-bottom: 8px;
}

.footer-menu a {
  color: #AFB7C1;
}

.footer-menu a:hover {
  color: #fff;
}

.sosmed-button a {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  outline: none !important;
}

/* Custom Plugin */
.owl-nav {
  display: block;
  margin: auto;
  text-align: center;
}

.owl-carousel .owl-nav button.owl-next,
.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  display: inline-block;
  margin: auto;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  text-align: center;
  background-color: #2F89FC;
  color: #fff;
}

.owl-carousel .owl-nav button.owl-next:focus,
.owl-carousel .owl-nav button.owl-prev:focus {
  outline: none;
}

.owl-carousel .owl-nav button.owl-next {
  right: 10px;
}

.owl-carousel .owl-nav button.owl-prev {
  left: 10px;
}

.owl-carousel .owl-dots {
  display: block;
  margin: 16px auto;
  text-align: center;
}

.owl-carousel button.owl-dot {
  display: inline-block;
  margin: 0 4px;
  width: 36px;
  height: 4px;
  background-color: #c6ccd3;
  -webkit-transition: all .2s ease;
  transition: all .2s ease;
}

.owl-carousel button.owl-dot:focus {
  outline: none;
}

.owl-carousel button.owl-dot.active {
  background-color: #2F89FC;
}

.ul-vertical {
   /*width: 180px;*/
   list-style: square;
   font-size: 18px;
   /*margin: 0;
   padding: 0;
   border: 1px solid #2c9c28;*/
}
 
/*.ul-vertical li {
   border-bottom: 2px solid #2c9c28;
   border-top: 2px solid #FFF;
   background: #2F89FC;
}*/
/*# sourceMappingURL=theme.css.map */

/* Contact Section
--------------------------------*/

#contact {
  padding: 60px 0;
}

#contact .contact-info {
  margin-bottom: 20px;
  text-align: center;
}

#contact .contact-info i {
  font-size: 60px;
  display: inline-block;
  margin-bottom: 10px;
  color: #0F0F94;
}

#contact .contact-info address,
#contact .contact-info p {
  margin-bottom: 0;
  color: #2A7AE0;
}

#contact .contact-info h3 {
  font-size: 30px;
  margin-bottom: 15px;
  font-weight: bold;
  color: #000000;
}

#contact .contact-info a {
  color: #000;
  font-size: 18px;
}

#contact .contact-info a:hover {
  color: #2A7AE0;
}

#contact .contact-address,
#contact .contact-phone,
#contact .contact-email {
  margin-bottom: 8px;
}

/* Clients Section
--------------------------------*/

#clients {
  padding: 60px 0;
}

#clients img {
  max-width: 100%;
  opacity: 0.5;
  transition: 0.3s;
  padding: 15px 0;
}

#clients img:hover {
  opacity: 1;
}

#clients .owl-nav,
#clients .owl-dots {
  margin-top: 5px;
  text-align: center;
}

#clients .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
}

#clients .owl-dot.active {
  background-color: #18d26e;
}

/* boton desplegable vertical Section
--------------------------------*/

.dropdown {
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: rgba(136, 252, 194, 0.5);
  min-width: 12vw;
  box-shadow: 0vw 1vw 1.2vw 0vw rgba(10,202,189,0.9);
  z-index: 10;
}

.dropdown-content a {
  color: green;
  padding: 0.4vw 0.5vw;
  text-decoration: none;
  display: absolute;
  text-align: left;
}

.dropdown-content a:hover {background-color: rgba(136, 181, 139, 0.4);}

.dropdown:hover .dropdown-content {
  display: inline-block;
}

/*Botones iluminados*/
.button {
  position: relative;
  width: 120px;
  height: 40px;
  background-color: rgba(32,35,88,255);
  display: flex;
  align-items: center;
  color: GREEN;
  flex-direction: column;
  justify-content: center;
  border: none;
  padding: 12px;
  gap: 12px;
  border-radius: 10px;
  cursor: pointer;
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  left: -4px;
  top: -1px;
  margin: auto;
  width: 128px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(-45deg, rgba(55,86,151,255) 0%, rgba(136, 252, 194, 255) 100% );
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.button::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, rgba(80,151,255) 0%, rgba(80,86,151,255) 100% );
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.button:hover::after {
  filter: blur(30px);
}

.button:hover::before {
  transform: rotate(-180deg);
}

.button:active::before {
  scale: 0.7;
}



/*otro*/
.shadow__btn {
  padding: 10px 10px;
  border: none;
  font-size: 12px;
  color: white;
  border-radius: 10px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
  transition: 0.5s;
  transition-property: box-shadow;
}

.shadow__btn {
  background: #007BFF;
  box-shadow: 0 0 25px rgb(0,80,255);
}

.shadow__btn:hover {
  box-shadow: 0 0 5px rgba(0,80,255,1),
              0 0 25px rgba(0,80,255,1),
              0 0 50px rgba(0,80,255,1),
              0 0 100px rgba(0,80,255,1);
}

/*nuevo buton bar*/
/*
.wrapper {
  --font-color-dark: #35CF0E;
  --font-color-light: #FFF;
  --bg-color: rgba(32,35,88,255);
  --main-color: #16B30B;
  font-size: 0.75rem;
  position: relative;
  width: 36.5vw;
  height: 2.7vh;
  background-color: var(--bg-color);
  border: 0.2vw solid var(--main-color);
  border-radius: 3.66vw;
  display: flex;
  flex-direction: row;
  box-shadow: 0.3vw 0.45vw var(--main-color);
}

.option {
  width: 5.85vw;
  height: 2.05vh;
  position: relative;
  top: 0.15vw;
  left: 0.15vw;
}

.input {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  appearance: none;
  cursor: pointer;
}

.btn2 {
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  border-radius: 3.66vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.span {
  color: var(--font-color-dark);
}

.input:checked + .btn2 {
  background-color: var(--main-color);
  box-shadow: 0 0 5px rgba(0,80,255,1),
              0 0 25px rgba(0,80,255,1),
              0 0 50px rgba(0,80,255,1),
              0 0 100px rgba(0,80,255,1),
			  0 0 150px rgba(0,80,255,1),
			  0 0 200px rgba(0,80,255,1),
			  0 0 250px rgba(0,80,255,1);
}

.input:checked + .btn2 .span {
  color: var(--font-color-light);
}

.wrapper:hover {
  box-shadow: 0 0 5px rgba(0,80,255,1),
              0 0 25px rgba(0,80,255,1),
              0 0 50px rgba(0,80,255,1),
              0 0 100px rgba(0,80,255,1),
			  0 0 150px rgba(0,80,255,1),
			  0 0 200px rgba(0,80,255,1),
			  0 0 250px rgba(0,80,255,1);
*/
/* nuevo botón bar */
.wrapper {
  --font-color-dark: #35CF0E;
  --font-color-light: #FFF;
  --bg-color: rgba(32, 35, 88, 255);
  --main-color: #16B30B;
  font-size: 15px;
  width: 100%; /* Cambiado a un ancho del 100% para ser más responsivo */
  max-width: 80vw; /* Cambiado a un ancho máximo para evitar que se estire demasiado */
  margin: 0 auto; /* Centra el contenedor */
  display: flex;
  justify-content: space-between; /* Espacio entre los botones */
  padding: 10px; /* Añade algo de espacio alrededor de los botones */
  border: 0.5vw solid var(--main-color);
  border-radius: 15vw;
  box-shadow: 0.5vw 0.45vw var(--main-color);
  /*overflow: hidden;  Evita que los botones se desborden si son demasiados */
}

.option {
  width: 6vw; /* Ajusta el ancho de cada botón según el número de botones */
  height: 3vh;
  position: relative;
  top: 0.15vw;
  left: 0.15vw;
}

.input {
  width: 6vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  appearance: none;
  cursor: pointer;
}

.btn2 {
  width: 6vw;
  height: 100%;
  background-color: var(--bg-color);
  border-radius: 5vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.span {
  color: var(--font-color-dark);
}

.input:checked + .btn2 {
  background-color: var(--main-color);
  box-shadow: 0 0 5px rgba(0, 80, 255, 1),
    0 0 25px rgba(0, 80, 255, 1),
    0 0 50px rgba(0, 80, 255, 1),
    0 0 100px rgba(0, 80, 255, 1),
    0 0 150px rgba(0, 80, 255, 1),
    0 0 200px rgba(0, 80, 255, 1),
    0 0 250px rgba(0, 80, 255, 1);
}

.input:checked + .btn2 .span {
  color: var(--font-color-light);
}

.wrapper:hover {
  box-shadow: 0 0 5px rgba(0, 80, 255, 1),
    0 0 25px rgba(0, 80, 255, 1),
    0 0 50px rgba(0, 80, 255, 1),
    0 0 100px rgba(0, 80, 255, 1),
    0 0 150px rgba(0, 80, 255, 1),
    0 0 200px rgba(0, 80, 255, 1),
    0 0 250px rgba(0, 80, 255, 1);
}