:root {
    --violet: #4E3885;
    --violet-light: #A677AE;
    --violet-dark: #6F4A76;
    --yellow: #EAC63A;
    --gray: #4a4f54;
    --white: #F3F4F5;
    --gray-light: #7b7a7a;
    --border: rgba(0,0,0,0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    --heading-font: "Raleway",  sans-serif;
    --nav-font: "Inter",  sans-serif;
    scroll-behavior: smooth;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
    --background-color: #ffffff; /* Background color for the entire website, including individual sections */
    --default-color: #444444; /* Default color used for the majority of the text content across the entire website */
    --heading-color: #273d4e; /* Color for headings, subheadings and title throughout the website */
    --accent-color: #ff4a17; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
    --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
    --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

.light-background {
    --background-color: #f1f4fa;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #000910;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #28323a;
    --contrast-color: #ffffff;
}

.text-violet {color: var(--violet) !important;}
.text-violet-light {color: var(--violet-light) !important;}
.text-violet-dark {color: var(--violet-dark) !important;}
.text-yellow {color: var(--yellow) !important;}
.text-gray {color: var(--gray) !important;}
.btn-violet {border-color: var(--violet);background-color: var(--violet);color: #fff;}
.btn-violet:hover {background-color: var(--violet-dark);border-color: var(--violet-dark);color: #fff;}
.btn-violet-light {border-color: var(--violet-light);background-color: var(--violet-light);color: #fff;}
.btn-violet-light:hover {background-color: var(--violet);border-color: var(--violet);color: #fff;}
.btn-gray {border-color: var(--gray);background-color: var(--gray);color: #fff;}
.btn-gray:hover {background-color: #2e3134;border-color: #2e3134;color: #fff;}
.btn-yellow {background: var(--yellow);color: #000;border-color: var(--yellow);}
.btn-yellow:hover {background: #d9b42f;border-color: var(--yellow);color: #000}
.btn-outline-violet {color: var(--violet);border: 2px solid var(--violet);background-color: transparent;}
.btn-outline-violet:hover,
.btn-outline-violet:focus {color: #fff !important;background-color: var(--violet);border-color: var(--violet);text-decoration: none;}
.btn-outline-violet-light {color: var(--violet-light);border: 2px solid var(--violet-light);background-color: transparent;}
.btn-outline-violet-light:hover,
.btn-outline-violet-light:focus {color: #fff !important;background-color: var(--violet-light);border-color: var(--violet-light);}
.btn-outline-gray {color: var(--gray);border: 2px solid var(--gray);background-color: transparent;}
.btn-outline-gray:hover,
.btn-outline-gray:focus {color: #fff !important;background-color: var(--gray);border-color: var(--gray);}
.btn-getstarted,
.btn-getstarted:focus {
    font-size: 14px;
    padding: 8px 25px;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: "Raleway",  sans-serif;
}

h1, h2, h3, h4, h5, h6 ,
.display-1,.display-2,.display-3,.display-4 {
    font-weight: 700;
    color: var(--gray);
    font-family: "Raleway",  sans-serif;
}

/* navbar */
.navbar .navbar-nav .nav-link {
    color: var(--gray);
    padding: 18px 15px;
    font-size: 16px;
    margin-right: 10px;
    font-family: "Inter",  sans-serif;
    font-weight: 400;
    border-bottom: 3px solid transparent;
}
.navbar .navbar-nav .nav-link:hover {border-bottom: 3px solid var(--violet);color: white;}
.navbar .navbar-nav .nav-link.menuactivo {border-bottom: 3px solid var(--violet);}
.navbar .navbar-nav .nav-link:hover {color: var(--violet);}
.navbar-brand {font-size: 28px;font-weight: 700;}
.navbar-brand img{max-height: 55px;}
.navbar .navbar-toggler{border-color: transparent;}
.navbar.bg-transparent .navbar-toggler-icon {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");}
.navbar.bg-white .navbar-toggler-icon {background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(34,34,34,1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");}
@media (max-width: 991px) {
    #navmenu.nav-top {background: transparent !important;backdrop-filter: none !important;}
    #navmenu.nav-scrolled {background: #fff !important;backdrop-filter: none !important;}
    #navmenu.nav-open-blur {background: rgba(255, 255, 255, 0.12) !important;backdrop-filter: blur(12px) !important;}
    #navmenu.nav-open-white {background: #fff !important;backdrop-filter: none !important;}
}

/*footer*/
.footer{background: var(--gray-light);}
.footer a{text-decoration: none;color: white; font-weight: 400}
.footer p{color: white}
.footer i{font-size: 17px}
.footer a:hover{color: var(--violet)}
.footer .social-icons a {
    width: 43px;
    height: 43px;
    margin-left: 2px;
    margin-right: 2px;
    border-radius: 50%;
    display: inline-flex;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
}
.footer .social-icons i{font-size: 20px;}
.footer .list-group a.btn-link:hover .icon-before {transform: translateX(3px);}
.cajamapa{
    margin-top:15px;
    text-align: center;
    color: var(--gray) !important;
    background:#b3b3b3;
    padding:10px 20px;
    border:1px solid #ececec;
}
.footer .copyright {padding: 25px 0;border-top: 1px solid rgba(256, 256, 256, .1);}
@media(min-width:1301px){
    #trengif{left:70px;top:226px;position:relative;}
    .img-footer{
        min-height:500px;
        background: url("../img/plantilla/footer2000.png") no-repeat;
        background-size:cover;
        margin-bottom:0;
        width:100%;
    }
}
@media(max-width:1300px){
    #trengif{left:50px;top:136px;position:relative;}
    .img-footer{
        min-height:400px;
        background: url("../img/plantilla/footer2000.png") no-repeat;
        background-size: cover;
        margin-bottom:0;
        width: 100%;
    }
}
@media(max-width:1200px){
    #trengif{left:60px;top:100px;position:relative;}
    .img-footer{
        min-height:360px;
        background: url("../img/plantilla/footer1300.png") no-repeat;
        background-size: cover;
        margin-bottom:0;
        width: 100%;
    }
}
@media(max-width:990px){
    #trengif{left:60px;top:52px;position:relative;scale:0.8;}
    .img-footer{
        min-height:270px;
        background: url("../img/plantilla/footer1300.png") no-repeat;
        background-size: cover;
        margin-bottom:0;
        width: 100%;
    }
}
@media (max-width:600px){
    #trengif{scale:0.4;left:-34px;top:0;position:relative;}
    .img-footer{
        min-height:50px;
        background: url("../img/plantilla/footer500.png") no-repeat;
        background-size: cover;
        margin-bottom:-20px;
        width: 100%;
    }
    .megamenu .row .col-md-3{min-height:200px;}
}
@media (max-width:450px) {
    #trengif {scale: 0.4;left: -34px;top: 0;position: relative;}
    .img-footer {
        min-height: 50px;
        background: url("../img/plantilla/footer500.png") no-repeat;
        background-size: cover;
        margin-bottom: -10px;
        width: 100%;
    }
}

/* scroll top */
.scroll-top {
    position: fixed;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    background-color: var(--violet);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    text-decoration: none;
    transform: scale(0.7);
    transition: all 0.4s ease;
}
.scroll-top i {font-size: 24px;line-height: 0;}
.scroll-top:hover {background-color: color-mix(in srgb, var(--violet), transparent 20%);}
.scroll-top:hover i{color: white;}

/* spinner */
#spinner i{font-size: 55px;color: var(--violet);}
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    background-color: #f6f6f6;
    z-index: 99999;
}
#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 30%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
    position: relative;
}

.section-title h2::after {
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--accent-color);
    margin: 4px 10px;
}

.section-title p {
    color: var(--heading-color);
    margin: 0;
    font-size: 36px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--heading-font);
}

@media (max-width: 768px) {
    .section-title p {
        font-size: 24px;
    }
}

/*--------------------------------------------------------------
# Stats Section
--------------------------------------------------------------*/
.stats .stats-item {
    background-color: var(--surface-color);
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
}

.stats .stats-item i {
    color: var(--accent-color);
    font-size: 42px;
    line-height: 0;
    margin-right: 20px;
}

.stats .stats-item span {
    color: var(--heading-color);
    font-size: 36px;
    display: block;
    font-weight: 600;
}

.stats .stats-item p {
    padding: 0;
    margin: 0;
    font-family: var(--heading-font);
    font-size: 16px;
}



/*--------------------------------------------------------------
# Portfolio Details Section
--------------------------------------------------------------*/
.portfolio-details .portfolio-details-slider img {
    width: 100%;
}

.portfolio-details .portfolio-details-slider .swiper-pagination {
    margin-top: 20px;
    position: relative;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: color-mix(in srgb, var(--default-color), transparent 85%);
    opacity: 1;
}

.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
    background-color: var(--accent-color);
}

.portfolio-details .portfolio-info {
    background-color: var(--surface-color);
    padding: 30px;
    box-shadow: 0px 0 30px rgba(0, 0, 0, 0.1);
}

.portfolio-details .portfolio-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.portfolio-details .portfolio-info ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.portfolio-details .portfolio-info ul li+li {
    margin-top: 10px;
}

.portfolio-details .portfolio-description {
    padding-top: 30px;
}

.portfolio-details .portfolio-description h2 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
    padding: 0;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .services-list {
    background-color: var(--surface-color);
    padding: 10px 30px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 20px;
}

.service-details .services-list a {
    display: block;
    line-height: 1;
    padding: 8px 0 8px 15px;
    border-left: 3px solid color-mix(in srgb, var(--default-color), transparent 70%);
    margin: 20px 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    transition: 0.3s;
}

.service-details .services-list a.active {
    color: var(--heading-color);
    font-weight: 700;
    border-color: var(--accent-color);
}

.service-details .services-list a:hover {
    border-color: var(--accent-color);
}

.service-details .services-img {
    margin-bottom: 20px;
}

.service-details h3 {
    font-size: 26px;
    font-weight: 700;
}

.service-details h4 {
    font-size: 20px;
    font-weight: 700;
}

.service-details p {
    font-size: 15px;
}

.service-details ul {
    list-style: none;
    padding: 0;
    font-size: 15px;
}

.service-details ul li {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.service-details ul i {
    font-size: 20px;
    margin-right: 8px;
    color: var(--accent-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}