@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;900&family=Quicksand:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body, html {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-size: 18px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Quicksand", sans-serif;
  line-height: 1.4;
  font-weight: 700;
}

a {
  text-decoration: none !important;
}

.skill {
  font-size: 55px;
  font-weight: 500;
  color: #140648;
}

.form-control {
  border-radius: 30px;
  height: 55px;
  outline-none: none;
  color: #000000;
  background: #f5f5f5;
  border-color: #f5f5f5;
}
.form-control.textarea {
  min-height: 10rem;
}
.form-control:focus {
  background: #d4daff;
  outline: none;
  box-shadow: none;
}

.separator {
  padding-top: 120px;
  padding-bottom: 120px;
}

.separator-top {
  padding-top: 120px;
}

@media only screen and (max-width: 992px) {
  .separator {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .separator-top {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 600px) {
  .separator {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .separator-top {
    padding-top: 70px;
  }
}
/** TAMAÑO DE TEXTO **/
/** ************************* **/
/** ************************* **/
.font-11 {
  font-size: 11px !important;
}

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

.font-13 {
  font-size: 13px !important;
}

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

.font-15 {
  font-size: 15px !important;
}

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

/** PROGRESS-BAR **/
/** ************************* **/
/** ************************* **/
.progress-bar.progress-bar-gray {
  background-color: #2a2b6d !important;
}

/** BEGIN COLORES **/
/** ************************* **/
/** ************************* **/
.color-info {
  color: #51bcda !important;
}

.color-danger {
  color: #f5593d !important;
}

.color-success {
  color: #6bd098 !important;
}

/** COLORES DE FUENTES **/
/** **************************** **/
/** **************************** **/
.text-color-gradient {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(126deg, #140648 42%, #2948ff);
  -webkit-background-clip: text;
  background-clip: text;
}

/** FUENTES **/
/** ************************** **/
.bebas-neue-regular {
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-style: normal;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}
/** BEGIN BOTONES **/
/** ******************************* */
/** ******************************* */
.cmn-btn {
  font-family: "Montserrat", serif;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  color: #fff;
  background-color: #2948ff;
  border-radius: 30px;
  border: none !important;
  padding-right: 28px;
  padding-left: 32px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
  background: linear-gradient(180deg, #2948ff 0, #1D167F 100%);
  box-shadow: 0 3px 16px 0 rgba(56, 125, 255, 0.5);
  transition: all 0.2s ease;
  box-sizing: border-box;
}
.cmn-btn:hover {
  color: #2948ff !important;
  text-decoration: none;
  background: #d4daff;
  cursor: pointer;
}

.cmn-btn-2 {
  display: inline-block;
  color: #2948ff;
  background-color: #d4daff;
  border-radius: 30px;
  padding-right: 30px;
  padding-left: 28px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-left: 10px;
  height: 50px;
  line-height: 50px;
}
.cmn-btn-2:hover {
  background: #2948ff;
  color: #d4daff;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 600px) {
  .cmn-btn, .cmn-btn-2 {
    padding-right: 15px;
    padding-left: 20px;
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
}
.codes {
  position: relative;
}
.codes ul.nav-tabs {
  border-bottom: 1px solid #2948ff;
}
.codes ul.nav-tabs li.nav-item a.nav-link {
  display: block;
  padding: 20px 50px;
}
.codes ul.nav-tabs li.nav-item a.nav-link:hover {
  color: #2948ff;
  border-color: #d4daff #d4daff #2948ff;
  background: #d4daff;
}
.codes ul.nav-tabs li.nav-item a.nav-link.active {
  color: #495057;
  background-color: #fff;
  border-color: #2948ff #2948ff #2948ff;
  background: #2948ff;
  color: white;
}

.codes-details {
  background: #f9fbfe;
}

.contact h2 {
  animation: fadeInUp 1s ease-out;
}
.contact p {
  animation: fadeInUp 1s ease-out 0.3s both;
}
.contact .error-form {
  color: white;
  background: red;
  padding: 5px;
  font-size: 12px;
  border-radius: 15px;
  display: inline-block;
}
.contact #map {
  height: 100%;
}
.contact .inner-head {
  background-color: #140648;
  padding-top: 50px;
  padding-bottom: 40px;
  margin-right: 40px;
  margin-left: 40px;
  border-bottom: 5px solid #d4daff;
  border-radius: 7px;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
  color: white;
}
.contact .inner-head h3 {
  font-size: 1em;
}
.contact form {
  padding: 40px 40px 25px;
  border-radius: 10px;
  border: 5px solid rgba(0, 0, 0, 0.05);
}
.contact .box-inner {
  color: #ffffff;
  background-color: #140648;
  padding: 60px 40px;
  border-width: 2px;
  border-color: rgba(126, 50, 220, 0.08);
  border-radius: 10px;
}

.header-desktop .header-logo {
  width: 250px;
}

.header-mobile {
  position: fixed;
  left: 0px;
  right: 0px;
  top: 0px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  height: 70px;
  min-height: 60px;
  box-shadow: 0px 4px 30px -4px rgba(0, 51, 90, 0.1);
  background-color: #140648;
}
.header-mobile .header-mobile-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-mobile .header-mobile-logo a {
  text-decoration: none;
  color: white;
  font-size: 28px;
  font-family: "Quicksand";
  font-weight: bold;
}
.header-mobile .header-mobile-toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.header-mobile .header-mobile-toolbar .header-mobile-toolbar-toggle {
  display: inline-block;
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
  font-size: 0;
  text-indent: -9999px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  border-radius: none;
  border: none;
  cursor: pointer;
  background: none;
  outline: none !important;
  width: 26px;
  height: 26px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.header-mobile .header-mobile-toolbar .header-mobile-toolbar-toggle span {
  background: #9aabff;
  display: block;
  position: absolute;
  top: 12px;
  height: 2px;
  min-height: 2px;
  width: 100%;
  border-radius: 2px;
  transition: all 0.4s ease;
}
.header-mobile .header-mobile-toolbar .header-mobile-toolbar-toggle span::before {
  transition: all 0.4s ease;
  left: auto;
  right: 0px;
  width: 50%;
  top: -8px;
  background: #9aabff;
}
.header-mobile .header-mobile-toolbar .header-mobile-toolbar-toggle span::after, .header-mobile .header-mobile-toolbar .header-mobile-toolbar-toggle span::before {
  transition: all 0.4s ease;
  left: auto;
  right: 0px;
  width: 75%;
  position: absolute;
  display: block;
  height: 2px;
  min-height: 2px;
  content: "";
  border-radius: 2px;
  bottom: -8px;
  background: #9aabff;
}

.aside-overlay {
  background: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 998;
  animation: kt-animate-fade-in 0.3s linear 1;
  display: none;
}

.aside {
  background: #ffffff;
  box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.75);
  position: fixed;
  z-index: 999;
  top: 0;
  bottom: 0;
  overflow-y: auto;
  -webkit-backface-visibility: hidden;
  width: 275px !important;
  left: -280px;
}
.aside .aside-wrapper .aside-menu {
  margin: 15px 0;
}
.aside .aside-wrapper .aside-menu .aside-menu-nav {
  margin: 0;
  list-style: none;
  padding: 15px 10px;
}
.aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-section {
  margin: 0px 0 0 0;
  height: 40px;
  padding: 0 20px;
}
.aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-section span {
  font-weight: bold;
  font-family: "Quicksand";
}
.aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-section .aside-close {
  font-size: 20px;
  color: red;
}
.aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-item .aside-menu-link {
  padding: 9px 20px;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  flex-grow: 1;
  -webkit-box-align: stretch;
  align-items: stretch;
  margin: 0;
  text-decoration: none;
  position: relative;
}
.aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-item .aside-menu-link .icon {
  vertical-align: middle;
  font-size: 18px !important;
  color: #99a4bb;
}
.aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-item .aside-menu-link span {
  font-weight: 500;
  font-size: 1rem;
  text-transform: initial;
  color: #7380a0;
  font-weight: 500;
}
.aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-item .aside-menu-link:hover .icon, .aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-item .aside-menu-link:hover span {
  color: #2840b6 !important;
}
.aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-item .aside-menu-link.active {
  background: #e1e6ff;
  border-radius: 10px;
}
.aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-item .aside-menu-link.active .icon, .aside .aside-wrapper .aside-menu .aside-menu-nav .aside-menu-item .aside-menu-link.active span {
  color: #2840b6 !important;
}

.header-desktop {
  height: auto;
  background: #140648;
  padding: 20px;
  position: fixed;
  z-index: 2;
  border-bottom: 2px solid #e1e6ff;
  left: 0px;
  right: 0px;
}
.header-desktop .header-desktop-logo a {
  font-size: 40px;
  font-weight: bold;
  font-family: "Quicksand", sans-serif;
  color: #e1e6ff;
  text-decoration: none;
}
.header-desktop .header-desktop-menu ul.menu-desktop {
  list-style: none outside none;
  margin: 0px;
  padding: 0px;
}
.header-desktop .header-desktop-menu ul.menu-desktop li {
  float: left;
  margin-left: 2px;
  margin-right: 2px;
}
.header-desktop .header-desktop-menu ul.menu-desktop li a {
  display: block;
  text-decoration: none;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: #e1e6ff;
  font-size: 16px;
  padding: 30px 20px;
  border: 1px solid transparent;
}
.header-desktop .header-desktop-menu ul.menu-desktop li a:hover, .header-desktop .header-desktop-menu ul.menu-desktop li a.active {
  padding: 30px 20px;
  border-radius: 15px;
  color: #2e54ea;
  border-color: #2e54ea;
}

@media (min-width: 768px) and (max-width: 992px) {
  .header-desktop .header-logo {
    width: 200px;
  }
  .header-desktop .header-desktop-menu ul.menu-desktop li a {
    font-size: 12px;
    padding: 18px 13px;
  }
  .header-desktop .header-desktop-menu ul.menu-desktop li a:hover, .header-desktop .header-desktop-menu ul.menu-desktop li a.active {
    padding: 18px 13px;
    border-radius: 10px;
  }
}
/** BEGIN BANNER-AREA **/
/** ******************************* */
/** ******************************* */
.banner-area {
  height: 920px;
  position: relative;
  overflow: hidden;
  background: #140648;
}
.banner-area .banner-shape img {
  position: absolute;
  width: 600px;
}
.banner-area .banner-shape img:nth-child(1) {
  top: 145px;
  right: 0px;
  z-index: -1;
  max-width: 885px;
}
.banner-area .d-table {
  display: table !important;
  width: 100%;
  height: 100%;
}
.banner-area .d-table .d-table-cell {
  display: table-cell !important;
  vertical-align: middle;
}
.banner-area .d-table .d-table-cell .container-fluid {
  width: 1450px;
}
.banner-area .d-table .d-table-cell .container-fluid .banner-content span {
  display: block;
  color: #cccae3;
  font-size: 20px;
  margin-bottom: 10px;
  animation: fadeInUp 1s ease-out;
}
.banner-area .d-table .d-table-cell .container-fluid .banner-content h1 {
  font-family: "Bebas Neue", serif;
  font-weight: 900;
  font-size: 60px;
  color: #FFFFFF;
  animation: fadeInUp 1s ease-out 0.3s both;
}
.banner-area .d-table .d-table-cell .container-fluid .banner-content p {
  font-size: 18px;
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
  width: 100%;
  color: #9293cb;
  animation: fadeInUp 1s ease-out 0.6s both;
}
.banner-area .d-table .d-table-cell .container-fluid .banner-content .banner-btn {
  animation: fadeInUp 1s ease-out 0.9s both;
}
.banner-area .d-table .d-table-cell .container-fluid .banner-content .banner-btn .banner-btn-right {
  display: inline-block;
}
.banner-area .d-table .d-table-cell .container-fluid .banner-content .img-index {
  animation: fadeInUp 1s ease-out 0.6s both;
}

@media (max-width: 1501px) {
  .banner-area .banner-shape img:nth-child(1) {
    top: 200px;
    max-width: 55%;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content h1 {
    font-size: 50px;
    width: 65%;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content p {
    width: 55%;
  }
}
@media (min-width: 1201px) and (max-width: 1600px) {
  .banner-area .banner-shape img:nth-child(1) {
    max-width: 55%;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content h1 {
    font-size: 60px;
    width: 65%;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content p {
    width: 55%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .banner-area {
    height: 650px;
  }
  .banner-area .banner-shape img:nth-child(1) {
    top: 120px;
    max-width: 53%;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content h1 {
    font-size: 35px;
    width: 50%;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content p {
    width: 40%;
    font-size: 17px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .banner-area {
    height: 550px;
  }
  .banner-area .banner-shape img:nth-child(1) {
    top: 140px;
    max-width: 50%;
  }
  .banner-area .d-table .d-table-cell {
    display: table-cell !important;
    vertical-align: middle;
  }
  .banner-area .d-table .d-table-cell .container-fluid {
    width: 100%;
    margin-top: 90px;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content {
    max-width: 50%;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content h1 {
    font-size: 35px;
    width: 100%;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content p {
    width: 100%;
    font-size: 17px;
  }
}
@media (min-width: 201px) and (max-width: 767px) {
  .banner-area {
    height: auto;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .banner-area .banner-shape img:nth-child(1) {
    right: 0;
    left: 0;
    max-width: 100%;
    position: relative;
    top: 0;
  }
  .banner-area .d-table {
    height: auto;
  }
  .banner-area .d-table .d-table-cell .container-fluid {
    width: 100%;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content {
    text-align: center;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content h1 {
    width: 100%;
    font-size: 32px;
    line-height: 44px;
  }
  .banner-area .d-table .d-table-cell .container-fluid .banner-content p {
    font-size: 16px;
    width: 100%;
  }
}
/**
@media only screen and (max-width: 600px) {
    .banner-area {
        height: auto;
        text-align: center;
        padding-top: 30px;
        padding-bottom: 40px;
        .banner-shape {
            img {
                &:nth-child(1) {
                    right: 0;
                    left: 0;
                    max-width: 100%;
                    position: relative;
                    top: 0;
                }
            }
        }
        .d-table {
            height: auto;
            .d-table-cell {
                .container-fluid {
                    width: 100%;
                    .banner-content {
                        span {

                        }
                        h1 {
                            font-size: 32px;
                            line-height: 44px;
                        }
                        p {
                            font-size: 16px;
                            width: 100%;
                        }
                    }
                }
            }
        }
    }
}
*/
/** BEGIN SERVICIOS **/
/** ******************************* */
/** ******************************* */
.servicios {
  background: #f9fbfe;
}
.servicios .service-item {
  margin-bottom: 30px;
  position: relative;
  border-radius: 5px;
  padding: 30px 30px 26px;
  z-index: 1;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  overflow: hidden;
  background-color: #fff;
  text-align: center;
}
.servicios .service-item i {
  color: #2948ff;
  font-size: 50px;
  line-height: 50px;
  margin-bottom: 15px;
  display: inline-block;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: relative;
  padding-bottom: 18px;
}
.servicios .service-item h3 {
  font-size: 28px;
  margin-bottom: 12px;
  font-family: "Quicksand", sans-serif;
  font-weight: 500;
}
.servicios .service-item p {
  color: #565353;
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  margin-bottom: 0;
}

/** BEGIN HELPS **/
/** ***************************** **/
/** ***************************** **/
.helps {
  background: white;
  position: relative;
  border-top: 2px solid #f9fbfe;
  z-index: 0;
}
.helps .helps-shape img {
  position: absolute;
}
.helps .helps-shape img:nth-child(1) {
  top: 100px;
  right: 0px;
  z-index: -1;
}
.helps .container [class*=col-] {
  /* border: 1px solid rgba(255, 255, 255, 0.35); */
  /**border: 1px solid rgba(255, 255, 255, 0.4); */
  border: 1px solid #2948ff;
  border-top: 0;
  border-left: 0;
}
.helps .container [class*=col-]:last-child {
  border-right: 0;
}
.helps .container .bottom-line [class*=col-] {
  border-bottom: 0;
}
.helps .container .info {
  padding: 40px 0 40px;
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
}
.helps .container .info i {
  font-size: 3.5em;
  color: red;
}
.helps .container .info h4 {
  font-size: 30px;
  padding: 20px 0px 10px 0px;
}
.helps .container .info p {
  padding: 10px 0 10px;
}
.helps .container .info .cmn-btn {
  margin-top: 10px;
}

/** BEGIN JOBS **/
/** **************************** **/
/** **************************** **/
.jobs {
  position: relative;
  background: #f9fbfe;
  overflow: hidden;
}
.jobs .rtin-flex {
  display: flex;
  align-items: center;
  margin: 10px 0px;
}
.jobs .rtin-flex .rtin-icon {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  line-height: 1;
  border-radius: 50%;
  -webkit-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  margin-right: 1.25rem;
}
.jobs .rtin-flex .rtin-icon i {
  font-size: 4rem;
  padding: 30px;
  color: #2948ff;
}
.jobs .rtin-flex .rtin-content h3 {
  font-size: 22px;
  line-height: 34px;
  font-weight: 600;
}

/** BEGIN CONTACT **/
/** ******************************* **/
/** ******************************* **/
.contact {
  border-top: 2px solid #d9dffe;
  position: relative;
  overflow: hidden;
}
.contact .contact-shape img {
  position: absolute;
}
.contact .contact-shape img:nth-child(1) {
  top: -50px;
  right: -300px;
  z-index: -1;
}
.contact .contact-shape img:nth-child(2) {
  top: 300px;
  left: -200px;
  z-index: -1;
}

/** BEGIN EXAMPLES **/
/** ***************************** **/
/** ***************************** **/
.examples {
  position: relative;
  overflow: hidden;
}
.examples .examples-shape img {
  position: absolute;
}
.examples .examples-shape img:nth-child(1) {
  top: 200px;
  left: 0px;
}
.examples .item i {
  font-size: 70px;
  color: #f44ea1;
}
.examples .item {
  padding: 35px 20px;
  background: #e6eafe;
  border-radius: 20px;
  margin: 20px;
}
.examples .item h6 {
  color: blue;
  font-size: 22px;
  padding: 20px 0px;
}

/** BEGIN INQUIRY AREA **/
/** ******************************* **/
/** ******************************* **/
.inquiry-area {
  background-color: #140648;
  position: relative;
  overflow: hidden;
}
.inquiry-area .inquiry-shape img {
  position: absolute;
}
.inquiry-area .inquiry-shape img:nth-child(1) {
  top: -235px;
  left: 0;
}
.inquiry-area .inquiry-shape img:nth-child(2) {
  bottom: 0;
  left: 0;
}
.inquiry-area .inquiry-shape img:nth-child(3) {
  top: 0;
  right: 0;
}
.inquiry-area .inquiry-shape img:nth-child(4) {
  bottom: 0;
  right: 0;
}
.inquiry-area .inquiry-shape img:nth-child(5) {
  top: 165px;
  right: 70px;
  -webkit-animation: inquiry-ani-one 5s infinite linear;
  animation: inquiry-ani-one 5s infinite linear;
}
.inquiry-area .inquiry-content .section-titles {
  margin-bottom: 40px;
}
.inquiry-area .inquiry-content .section-titles span.sub-title {
  display: block;
  margin-bottom: 2px;
  color: white;
}
.inquiry-area .inquiry-content .section-titles h2 {
  color: #fff;
  font-size: 40px;
}
.inquiry-area .inquiry-content a {
  text-decoration: none;
}

@media only screen and (max-width: 600px) {
  .inquiry-area .inquiry-img img {
    width: 100%;
  }
  .inquiry-area .inquiry-content .section-titles h2 {
    font-size: 30px;
  }
}
.profile .card .card-body h4 {
  color: #221668;
}
.profile .card .card-body p {
  color: rgba(0, 0, 0, 0.5);
}
.profile.profile-pag .header-wrapper-profile .header-pag-profile {
  min-height: 65vh !important;
  max-height: 700px;
  background: #140648 !important;
}
.profile.profile-pag .header-wrapper-profile .header-pag-profile .content-center {
  text-align: center;
  padding-top: 5em;
  padding-bottom: 5em;
}
.profile.profile-pag .header-wrapper-profile .header-pag-profile .content-center .profile-picture .file-input-new img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 10px;
  background: white;
  border: 7px solid rgba(0, 0, 0, 0.1);
}
.profile.profile-pag .header-wrapper-profile .header-pag-profile .content-center h2,
.profile.profile-pag .header-wrapper-profile .header-pag-profile .content-center h3,
.profile.profile-pag .header-wrapper-profile .header-pag-profile .content-center h4 {
  color: white;
}
.profile.profile-pag .header-wrapper-profile .header-pag-profile .content-center .icon i {
  color: white;
  padding: 0px 100px 20px;
  margin-bottom: 10px;
  color: #c0cafe;
  border-bottom: 1px dashed #c0cafe;
}
.profile.profile-pag {
  /**
  .header-wrapper-small {
      .page-header-small {
          min-height: 65vh !important;
          max-height: 700px;
          //background-color: #B2AFAB;
          //background-color: #180022;
          background-color: #140648 !important;
          background-position: center center;
          background-size: cover;
          min-height: 100vh;
          max-height: 999px;
          overflow: hidden;
          position: relative;
          width: 100%;
          z-index: 1;

          .filter {
              background-color: rgba(24, 0, 34, 0.2);
              content: "";
              display: block;
              height: 100%;
              left: 0;
              position: absolute;
              top: 0;
              width: 100%;
              z-index: 2;
          }

          .content-center {
              position: absolute;
              top: 50%;
              left: 50%;
              z-index: 2;
              -ms-transform: translate(-50%, -50%);
              -webkit-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
              text-align: center;
              color: #FFFFFF;
              width: 100%;

              .container {
                  color: #FFFFFF;
                  position: relative;
                  z-index: 3;

                  h2 {
                      animation: fadeInUp 1s ease-out;
                  }

                  h3 {
                      animation: fadeInUp 1s ease-out 0.3s both;
                  }

                  h4 {
                      animation: fadeInUp 1s ease-out 0.6s both;
                  }

                  .profile-picture {
                      .file-input-new {
                          img {
                              width: 150px;
                              height: 150px;
                              border-radius: 50%;
                              margin-bottom: 10px;
                              background: white;
                              border: 7px solid rgba(0, 0, 0, 0.1);
                          }
                      }
                  }
              }
          }
      }
  }
  */
}
.profile.section-2 {
  background: #f9fbfe;
}
.profile.section-2 .info {
  padding-top: 20px;
  padding-bottom: 20px;
}
.profile.section-2 .info .icon i {
  font-size: 55px;
  color: #2948ff;
}
.profile.section-2 .info .description h4 {
  padding-top: 5px;
  padding-bottom: 10px;
  color: #221668;
}
.profile.section-2 .phone-responsive {
  position: relative;
  z-index: 0;
}
.profile.section-2 .phone-responsive .phone-content {
  display: block;
  position: absolute;
  background: #140648;
  top: 30px;
  left: 80px;
  right: 25px;
  z-index: -1;
  padding-top: 30px;
  padding-bottom: 110px;
}
.profile.section-3 .info {
  padding: 40px;
  border-radius: 20px;
  background-color: rgb(245, 247, 255);
  border: 1px solid #140648;
  min-height: 300px;
  margin-top: 10px;
  margin-bottom: 10px;
}
.profile.section-5 {
  background: #f9fbfe;
  position: relative;
  margin-bottom: 0px;
  padding-bottom: 0px;
  z-index: -2;
}
.profile.section-5 .no-gutters {
  margin-right: 0;
  margin-left: 0;
}
.profile.section-5 .no-gutters .boxed {
  padding: 64px 84px;
  color: white;
}
.profile.section-5 .no-gutters .boxed::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: #140648;
}
.profile.section-5 .no-gutters .boxed.boxed-dark-1 {
  background: rgba(0, 0, 0, 0.12);
}
.profile.section-5 .no-gutters .boxed.boxed-dark-2 {
  background: rgba(0, 0, 0, 0.23);
}
.profile.section-5 .no-gutters .boxed.boxed-dark-3 {
  background: rgba(0, 0, 0, 0.3);
}
.profile.section-5 .no-gutters .boxed h6 {
  font-size: 20px;
}
.profile.section-5 .no-gutters .boxed i {
  font-size: 60px;
}
.profile.section-5 .no-gutters .boxed p {
  color: #cccccc;
}

@media only screen and (max-width: 430px) {
  .profile.profile-pag .header-wrapper-small .page-header-small .content-center .container h2 {
    font-size: 23px;
  }
  .profile.profile-pag .header-wrapper-small .page-header-small .content-center .container h3 {
    font-size: 18px;
  }
  .profile.profile-pag .header-wrapper-small .page-header-small .content-center .container h4 {
    font-size: 18px;
  }
  .profile.section-5 .no-gutters .boxed {
    padding: 44px 34px;
  }
}
/** BEGIN TECNOLOGY **/
/** ******************************* */
/** ******************************* */
.tecnology {
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.tecnology .tecnology-shape img {
  position: absolute;
}
.tecnology .tecnology-shape img:nth-child(1) {
  top: 100px;
  left: 0;
  z-index: -1;
}
.tecnology .tecnology-shape img:nth-child(2) {
  bottom: 100px;
  right: 0;
  z-index: -1;
}
.tecnology .section-1 .feature-img {
  margin-bottom: 30px;
}
.tecnology .section-1 .feature-content .feature-top span {
  display: inline-block;
  width: 55px;
  height: 55px;
  line-height: 55px;
  color: #2948ff;
  border: 1px dashed #2948ff;
  text-align: center;
  border-radius: 50%;
  font-size: 17px;
  margin-bottom: 18px;
  -webkit-box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.4784313725);
  box-shadow: 0px 0px 20px 0px rgba(221, 221, 221, 0.4784313725);
}
.tecnology .section-1 .feature-content .feature-top h2 {
  margin-bottom: 15px;
  font-size: 35px;
}
.tecnology .section-1 .feature-content .feature-top p {
  margin-bottom: 0;
}
.tecnology .section-1 .feature-content .feature-inner {
  margin-bottom: 30px;
}
.tecnology .section-1 .feature-content .feature-inner i {
  display: inline-block;
  color: #2948ff;
  font-size: 35px;
  margin-bottom: 12px;
  line-height: 35px;
}
.tecnology .section-1 .feature-content .feature-inner h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #221668;
}

/** BEGIN TITLES **/
/** ******************************* */
/** ******************************* */
.section-title {
  text-align: center;
  margin: 60px 0 60px 0;
  position: relative;
  z-index: 1;
}
.section-title .icon i {
  padding: 0px 100px 20px;
  margin-bottom: 10px;
  color: #c0cafe;
  border-bottom: 1px dashed #c0cafe;
}
.section-title span {
  display: block;
  color: #2948ff;
  margin-bottom: 2px;
  text-transform: uppercase;
}
.section-title h2 {
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  font-size: 45px;
}
.section-title p {
  margin-bottom: 0;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

@media only screen and (max-width: 600px) {
  .section-title h2 {
    font-size: 30px;
  }
}
:root {
  --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  --dark-bg: #140648;
  --card-bg: rgba(255, 255, 255, 0.1);
  --text-light: rgba(255, 255, 255, 0.9);
  --text-muted: rgba(255, 255, 255, 0.7);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Hero Section */
.hero {
  min-height: 70vh;
  background: #140648;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 700;
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out;
  font-family: "Bebas Neue", serif;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  color: white;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.btn-gradient {
  background: var(--primary-gradient);
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  color: white;
  display: inline-block;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.btn-gradient::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-gradient:hover::before {
  left: 100%;
}

.btn-gradient:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
}

/* Floating Animation */
.floating-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.shape:nth-child(1) {
  width: 60px;
  height: 60px;
  background: var(--accent-gradient);
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.shape:nth-child(2) {
  width: 80px;
  height: 80px;
  background: var(--secondary-gradient);
  top: 60%;
  right: 10%;
  animation-delay: 2s;
}

.shape:nth-child(3) {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

@media only screen and (max-width: 430px) {
  .hero-title {
    font-size: 2rem;
    text-align: center;
  }
  .hero-subtitle {
    font-size: 1.15rem;
    text-align: center;
  }
  .hero-description {
    font-size: 0.9rem;
    text-align: center;
  }
}
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #141420;
  --glass-bg: rgba(20, 20, 32, 0.25);
  --glass-border: rgba(255, 255, 255, 0.1);
  --accent-primary: #7c3aed;
  --accent-secondary: #f59e0b;
  --accent-tertiary: #10b981;
  --text-primary: #ffffff;
  --text-secondary: #a1a1aa;
  --text-muted: #71717a;
  --gradient-main: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-accent: linear-gradient(45deg, #7c3aed, #f59e0b, #10b981);
  --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.3);
  --shadow-deep: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
}

#portfolio .cmn-btn_ko {
  background: linear-gradient(180deg, #8C83F7 0, #655BE2 100%);
  box-shadow: 0 6px 12px rgba(118, 109, 232, 0.5019607843);
  background: linear-gradient(180deg, #2948ff 0, #1D167F 100%);
  box-shadow: 0 3px 16px 0 rgba(56, 125, 255, 0.5);
  transition: all 0.2s ease;
  box-sizing: border-box;
}
#portfolio .filter-left {
  background: linear-gradient(-90deg, #EEF5FF 0, #FFF 100%) !important;
  filter: drop-shadow(4px 4px 20px rgba(23, 47, 131, 0.25));
}
#portfolio .filter-right {
  background: linear-gradient(90deg, #EEF5FF 0, #FFF 100%) !important;
  filter: drop-shadow(4px 4px 20px rgba(23, 47, 131, 0.25));
}
#portfolio .burble-prim {
  width: 300px;
  height: 300px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8rem;
  color: white;
}
#portfolio .how {
  padding: 52px 0 58px;
  position: relative;
  display: flex;
  align-items: center;
  /**
  .how__container {
      width: 100%;
      max-width: 1150px;
      margin: 0 auto;
      padding: 0 30px;
      position: relative;
      .how__steps_line {
          position: absolute;
          left: 50%;
          transform: translateX(-50%);
          height: 75%;
          width: 1px;
          top: 160px;
          background-color: #1D167F;
      }
      .how__cards_wrapper {
          background: transparent;
          display: flex;
          justify-content: space-between;
          flex-wrap: wrap;
          gap: 150px 0;
          padding-bottom: 180px;
          .how__card {
              .project-tech {
                  display: flex;
                  gap: 10px;
                  flex-wrap: wrap;
                  margin-bottom: 15px;
                  justify-content: center;
                  .tech-badge {
                      background: #1D167F;
                      padding: 4px 12px;
                      border-radius: 0.8rem;
                      color: white;
                      backdrop-filter: blur(5px);
                      font-size: 12px;
                  }
              }
              .how__container {
                  display: flex;
                  gap: 10px;
                  flex-wrap: wrap;
                  margin-top: 15px;
                  margin-bottom: 15px;

              }
              padding: 32px 56px;
              min-height: 180px;
              display: flex;
              justify-content: center;
              flex-direction: column;
              border-radius: 20px;
              max-width: 440px;
              position: relative;
              background: linear-gradient(-90deg, #F9F3FE 0, #FFF 100%);
              &:before {
                  content: '';
                  position: absolute;
                  border-bottom: solid 18px transparent;
                  border-top: solid 18px transparent;
                  top: 50%;
                  transform: translateY(-50%);
                  will-change: filter;
              }
              &:nth-child(odd) > .how__card_step {
                  left: 116%;
              }
              &:nth-child(even) {
                  transform: translateY(178px);
                  > .how__card_step {
                      right: 116%;
                  }
              }
              &:nth-child(1)::before,
              &:nth-child(3)::before {
                  border-left: solid 42px #EEF5FF;
                  right: -41px;
              }
              &:nth-child(2)::before,
              &:nth-child(4)::before {
                  border-right: solid 42px #EEF5FF;
                  left: -41px;
              }
              .how__card_step {
                  position: absolute;
                  width: 68px;
                  top: 0;
                  bottom: 0;
                  margin: auto 0;
                  border-radius: 50px;
                  span {
                      width: 60px;
                      height: 60px;
                      border-radius: 50%;
                      font-weight: bold;
                      color: white;
                      font-size: 25px;
                      background: #1D167F !important;
                  }
              }
          }
      }
  }
  */
}
#portfolio {
  /** *** Begin::Nuevo Portafolio *** */
  /* Portfolio */
}
#portfolio .portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
#portfolio .portfolio-view {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #667eea 0%, #140648 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 3rem;
  flex-direction: column;
  padding: 2rem;
}
#portfolio .portfolio-item:hover {
  transform: scale(1.05);
}
#portfolio .portfolio-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: all 0.3s ease;
}
#portfolio .portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(245, 87, 108, 0.9));
  background: linear-gradient(135deg, #140648, rgba(245, 87, 108, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.3s ease;
  padding: 2rem;
  color: white;
}
#portfolio .portfolio-item:hover .portfolio-overlay {
  opacity: 1;
}
#portfolio .portfolio-item:hover .portfolio-img {
  transform: scale(1.1);
}
#portfolio .project-tech {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: center;
}
#portfolio .tech-tag {
  padding: 0.4rem 1rem;
  background: rgba(124, 58, 237, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  font-size: 0.5rem;
  font-weight: 500;
  backdrop-filter: blur(10px);
}
#portfolio .project-link {
  color: var(--accent-primary);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
#portfolio .project-link:hover {
  transform: translateX(5px);
  color: var(--accent-primary);
}
#portfolio {
  /** *** End::Nuevo Portafolio *** */
}

@media only screen and (max-width: 430px) {
  #portfolio .burble-prim {
    width: 120px;
    height: 120px;
    transform: translateY(-30px);
    transition: transform 0.25s;
  }
}
footer {
  background: #140648;
  position: relative;
  overflow: hidden;
}
footer .footer-shape img {
  position: absolute;
}
footer .footer-shape img:nth-child(1) {
  top: -195px;
  left: 0;
}
footer .footer-shape img:nth-child(2) {
  bottom: 0;
  right: 0;
}
footer .footer-shape img:nth-child(3) {
  top: 100px;
  left: 100px;
}
footer .footer-shape img:nth-child(4) {
  right: 100px;
  bottom: 150px;
}
footer .container h6 {
  font-size: 70px;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  color: white;
}
footer .container p {
  padding: 35px;
  color: white;
}
footer .container span {
  font-size: 25px;
  color: white;
}
footer .container .btns-redes {
  padding: 50px 0px;
}
footer .container .btns-redes a {
  border: 1px solid white;
  margin: 0px 5px;
  width: 60px;
  height: 50px;
}
footer .container .btns-redes a i {
  font-size: 25px;
  color: white;
}
footer .container-fluid {
  background-color: #140648;
  padding: 40px 20px;
}
footer .container-fluid span {
  color: white;
}
footer .container-fluid ul {
  list-style: none outside none;
  float: left;
  margin: 0px;
  padding: 0px;
}
footer .container-fluid ul li {
  display: inline-block;
  margin-left: 20px;
  padding: 0px;
}
footer .container-fluid ul li a {
  color: white;
}

@media only screen and (max-width: 992px) {
  footer .footer-shape img:nth-child(4) {
    right: 100px;
    bottom: 200px;
  }
  footer .container .footer-img img {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  footer .container h6 {
    font-size: 40px;
  }
  footer .container .footer-img img {
    width: 100%;
  }
  footer .container-fluid span {
    font-size: 13px;
  }
  footer .container-fluid ul li a {
    font-size: 13px;
  }
}
.top-bar {
  background-color: #161b22;
  border-bottom: 1px solid #30363d;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.input-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.auth-row {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 8px;
}

.url-input {
  flex: 1;
  padding: 8px 12px;
  background-color: #21262d;
  border: 1px solid #30363d;
  border-radius: 6px;
  color: #e6edf3;
  font-size: 14px;
}

.url-input:focus {
  outline: none;
  border-color: #58a6ff;
}

.token-input {
  flex: 1;
  padding: 8px 12px;
  background-color: #21262d;
  border: 1px solid #30363d;
  border-radius: 6px;
  color: #e6edf3;
  font-size: 14px;
  font-family: ui-monospace, monospace;
}

.token-input:focus {
  outline: none;
  border-color: #58a6ff;
}

.auth-label {
  font-size: 14px;
  color: #8b949e;
  white-space: nowrap;
}

.auth-toggle {
  padding: 6px 12px;
  background-color: #21262d;
  color: #e6edf3;
  border: 1px solid #30363d;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.2s;
}

.auth-toggle:hover {
  background-color: #30363d;
}

.auth-toggle.active {
  background-color: #1f6feb;
  border-color: #1f6feb;
  color: white;
}

.load-btn,
.refresh-btn {
  padding: 8px 16px;
  background-color: #238636;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: background-color 0.2s;
}

.load-btn:hover,
.refresh-btn:hover {
  background-color: #2ea043;
}

.load-btn:disabled,
.refresh-btn:disabled {
  background-color: #484f58;
  cursor: not-allowed;
}

.refresh-btn {
  background-color: #1f6feb;
}

.refresh-btn:hover {
  background-color: #388bfd;
}

.sidebar {
  width: 320px;
  background-color: #161b22;
  border-right: 1px solid #30363d;
  overflow-y: auto;
  resize: horizontal;
  min-width: 250px;
  max-width: 500px;
}

.sidebar-header {
  padding: 16px;
  border-bottom: 1px solid #30363d;
  background-color: #21262d;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky;
  top: 0;
  z-index: 1;
}

.repo-info {
  font-size: 12px;
  color: #8b949e;
  margin-top: 4px;
}

.file-tree {
  padding: 8px 0;
}

.tree-item {
  display: flex;
  align-items: center;
  padding: 6px 16px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.1s;
  white-space: nowrap;
  font-size: 14px;
}

.tree-item:hover {
  background-color: #262c36;
}

.tree-item.selected {
  background-color: #1f6feb;
  color: white;
}

.tree-item.folder {
  font-weight: 500;
}

.tree-item .icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  flex-shrink: 0;
}

.tree-item .folder-icon {
  color: #58a6ff;
}

.tree-item .file-icon {
  color: #8b949e;
}

.tree-item.expandable .expand-icon {
  margin-right: 4px;
  transition: transform 0.2s;
  color: #8b949e;
  font-size: 12px;
}

.tree-item.expanded .expand-icon {
  transform: rotate(90deg);
}

.tree-children {
  margin-left: 24px;
}

.tree-children.hidden {
  display: none;
}

.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.code-header {
  padding: 16px;
  background-color: #161b22;
  border-bottom: 1px solid #30363d;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.file-path {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  color: #e6edf3;
  font-size: 14px;
  font-weight: 600;
}

.file-info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #8b949e;
}

.code-container {
  flex: 1;
  overflow: auto;
  background-color: #0d1117;
  position: relative;
}

.code-content {
  position: relative;
  min-height: 100%;
}

pre[class*=language-] {
  margin: 0;
  background: transparent !important;
  font-size: 13px;
  line-height: 1.45;
  padding: 16px;
  padding-left: 70px;
  white-space: pre;
  word-wrap: normal;
  overflow-x: auto;
}

code[class*=language-] {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  background: transparent;
  color: #e6edf3;
}

/* Prism token colors for GitHub dark theme */
.token.comment,
.token.prolog,
.token.doctype,
.token.cdata {
  color: #8b949e;
  font-style: italic;
}

.token.punctuation {
  color: #e6edf3;
}

.token.property,
.token.tag,
.token.boolean,
.token.number,
.token.constant,
.token.symbol,
.token.deleted {
  color: #79c0ff;
}

.token.selector,
.token.attr-name,
.token.string,
.token.char,
.token.builtin,
.token.inserted {
  color: #a5d6ff;
}

.token.operator,
.token.entity,
.token.url,
.language-css .token.string,
.style .token.string {
  color: #ff7b72;
}

.token.atrule,
.token.attr-value,
.token.keyword {
  color: #ff7b72;
}

.token.function,
.token.class-name {
  color: #d2a8ff;
}

.token.regex,
.token.important,
.token.variable {
  color: #ffa657;
}

.line-numbers {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 60px;
  background-color: #0d1117;
  border-right: 1px solid #21262d;
  padding: 16px 8px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 13px;
  color: #8b949e;
  user-select: none;
  text-align: right;
  line-height: 1.45;
}

.welcome-message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #8b949e;
}

.welcome-content h2 {
  margin-bottom: 16px;
  color: #e6edf3;
}

.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  flex-direction: column;
  gap: 16px;
}

.syntax-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(13, 17, 23, 0.9);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #30363d;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.syntax-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #30363d;
  border-top: 2px solid #58a6ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.highlight-btn {
  padding: 6px 12px;
  background-color: #238636;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  margin-left: 8px;
  transition: background-color 0.2s;
}

.highlight-btn:hover {
  background-color: #2ea043;
}

.highlight-btn:disabled {
  background-color: #484f58;
  cursor: not-allowed;
}

.spinner {
  width: 32px;
  height: 32px;
  border: 3px solid #30363d;
  border-top: 3px solid #58a6ff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.error-message {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #f85149;
  flex-direction: column;
  gap: 8px;
}

.binary-file {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: #8b949e;
  flex-direction: column;
  gap: 16px;
}

.file-extensions {
  margin-top: 8px;
  font-size: 11px;
  color: #8b949e;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: #161b22;
}

::-webkit-scrollbar-thumb {
  background: #30363d;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #484f58;
}

/*# sourceMappingURL=maxkode.css.map */
