@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --main-font: 'Montserrat', sans-serif;
    --font-size: 16px;
    --primary: #673ECD;
    --second: #F0E3D0;
    --third: #B9E6D4;
    --font-color: #333333;
    --main-modal-color: #ffffff;
    --second-modal-color: rgba(0,0,0,0.85);
    --container-width: 100%;
}

html {
    box-sizing: border-box;
    font-family: var(--main-font);
    font-size: var(--font-size);
    overflow-x: hidden;
    scroll-behavior: smooth;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

* {
    margin: 0 auto;
    padding: 0px;
	margin: 0px;
    text-decoration: none;
	list-style: none;
}

input, textarea, select, button  { margin:0; padding:0; outline:0; border:0;                                
                                    box-sizing: border-box;}


body {
    font-family: 'Montserrat', 'san-serif';
    background-color: #ffffff;
    margin: 0 auto;
    color: var(--font-color);
}

main {
    margin: 0 auto;
}

a {
    text-decoration: none;
}

.header-container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-container {
    width: 95%!important;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@media (min-width: 1200px) {
    .container {
        width: 90%!important;
        max-width: 1400px!important;
    }
}


@media (min-width: 576px) {
    .container-sm, .container {
        max-width: 90%!important;
    }
}

.header-nav {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background-color: var(--primary);
    z-index: 9999;
}

.navbar-brand img {
    width: 250px;
}


.top {
    position: absolute;
    width: 100%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 9999!important;
    transition: all 1s ease-in-out;
}

.top-scroll {
    position: fixed;
    background-color: rgba(255,255,255,0.9);
    height: 50px;
}

.panel-btn {
	display: none; 
}

.icon-cancel { display:none;}


.menu  {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
}

.menu li {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: center;
}

.menu a {
    color: #ffffff;
    display: flex;
    padding: 0.5rem;
    font-weight: 300;
    font-size: 15px;
}


.block { display: block; }
.none { display: none; }
.hidden {
    visibility: hidden;
    opacity: 0;
}
.show { display:block; }



@media (max-width: 1024px) {

    /**** MENU MOBILE ****/

    .principal { display: none; }

    .panel-menu .menu {
        position: fixed;
        z-index: 998;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        opacity: 0;
        visibility: hidden;
        transition: transform 0.5s ease, opacity 0.5s ease;
    }

    .panel-btn.is-active .icon-align-right { display:none;}
    .panel-btn.is-active .icon-cancel { display:block;}


    .panel-menu.is-active .menu {
        visibility: visible;
        opacity: 1;
    }

    .panel-btn {
        display: block;
        position: fixed;
        z-index: 999;
        bottom: 1.5rem;
        right: 1.5rem;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        font-size: 2rem;
        font-weight: bold;
        background-color: var(--main-color);
        color: #ffffff;
        cursor: pointer;
        outline: 0;
        border: 0;
        transition: all 0.3s ease-out;
    }

    .panel-menu .menu  {
        display: flex;
        padding:0;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
    }

    .panel-menu .menu {
        width: 100%;
        flex-direction: column;
    }

    .panel-menu .menu a button {
        font-size: 1.5rem;
        text-decoration: none;
        color: #ffffff!important;
        transition: all 0.3s ease;
    }

    .panel-menu .menu a button:hover {
        color: #ffffff;
    }

    .panel-menu .menu a {
        padding: 1rem 4rem;
        width: 100%!important;
        display: block;
        font-size: 1.2rem;
        text-decoration: none;
        color: #ffffff;
        transition: all 0.3s ease;
    }

    .panel-menu .menu a:hover {
        width: 100%!important;
        font-weight: bold;
        color: #ffffff;
        background-color: #ffffff;
    }
}







 /* ********  Scroll Top Btn ********* */

.scroll-top-btn {
    position: fixed;
    z-index: 999;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: bold;
    background-color: var(--primary);
    color: #ffffff;
    cursor: pointer;
    outline: 0;
    border: 0;
    transition: all 0.3s ease-out;
}

.scroll-top-btn:hover {
    background-color: var(--font-color);
    color:  var(--second);
}


.hidden {
    visibility: hidden;
    opacity: 0;
}

.hide {
    display: none!important;
    visibility: hidden;
    opacity: 0;
}


/*** CONTACTAME *****/
.contacto { padding: 2rem 0;}
#formulario {  display: flex;  flex-wrap: wrap; flex-direction: column; margin-top: 2rem; }
#formulario form label { margin-bottom: 0.2rem; }
#formulario form input { background-color: #f1f1f1; height: 45px; margin-bottom: 10px; width: 100%; padding:1rem; }
#formulario form textarea { resize: none;  background-color: #f1f1f1; height: 100px; width: 100%; padding:1rem;}
#formulario #btn-formulario input {  
    width: 30%; 
    display: block; cursor: pointer; 
    margin-top:1rem; 
    float: right; 
    background-color: var(--primary);
    color: #ffffff;
    border-radius: 0;
    font-weight: 700;
    padding: 10px 20px;
}
#formulario #btn-formulario input:hover { background-color: #333333; cursor: pointer;}
.contact-form-error {font-size: 80%; font-weight: 400; color: var(--main-color)!important; transition: all 800ms ease;}
.contact-form-error.is-active {display: block; animation: show-message 1s 1 normal 0s ease-out both;}
.contact-form-loader {text-align: center;}
#formulario form input:active, #formulario form input:visited, #formulario form input:target { background-color: transparent!important; color:#ffffff!important;}
#formulario form textarea:active { background-color: transparent!important; color: #ffffff!important;}
.contact-form-loader { display: block; margin: 0 auto; width: 100%;}
.contact-form-response { clear: both; display: block; width: 100%; margin: 0 auto; text-align: center; color:var(--font-color); font-size: 0.8rem;}
.g-recaptcha {
    float: left;
}
.form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

@keyframes show-message {
    0% {
        visibility: hidden;
        opacity: 0;
    }
    100% {
        visibility: visible;
        opacity: 1;
    }
}
.none {display: none;}
.block {display: block;}
.flex {display: flex; flex-direction: column;}


/*** HOME ***/

section.hero {
    background-image: url('../assets/img/hero-image.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 550px;
    display: flex;
    align-items: center;
}

.hero .hero-content h1 {
    color: var(--primary);
    font-weight: 400;
    font-size: 36px;
}

.hero .hero-content h2 {
    color: var(--text-color);
    font-weight: 400;
    font-size: 28px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .hero .hero-content h1 {
        font-size: 28px;
    }
    
    .hero .hero-content h2 {
        font-size: 21px;
    }
}

@media (max-width: 600px) {
    section.hero {
        background-position: -270px;
        height: 450px;
    }
    .hero .hero-content h1 {
        font-size: 22px;
    }
    
    .hero .hero-content h2 {
        font-size: 18px;
    }
}

@media (max-width: 576px) {
    .hero .hero-content h1 {
        width: 60%;
    }
    
    .hero .hero-content h2 {
        width: 50%;
    }
}

.hero .hero-content a {
    font-weight: 700;
    font-size: 18px;
    padding: 10px 50px;
    margin-top: 30px;
    border-radius: 10px;
}

.copete {
    font-family: 'Lora', serif;
    color: var(--primary);
    font-size: 24px;
}

.title {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.title h1 {
    font-size: 36px;
    font-weight: 400;
}

.plain {
    font-size: 16px;
}

.parrafo1 {
    font-size: 18px;
}

.parrafo2 {
    font-size: 21px;
}

.span-primary {
    color: var(--primary);
    font-size: 36px;
    display: block;
}

.span-secondary {
    color: var(--primary);
    font-size: 18px;
}

.plain span {
    color: var(--primary);
}

.second-color h1, .third-color h1 {
    color: var(--primary);
}

.third-color {
    background-color: var(--third);
}

.second-color {
    background-color: var(--second);
}

.second-color .copete {
    margin-top: 100px;
}

.second-color .plain {
    margin-top: 50px;
    margin-bottom: 80px;
}

@media (max-width: 768px) {
    .second-color .plain {
        margin-bottom: 40px;
    }
}

.img-responsive {
    max-width: 100%;
}

@media (min-width: 911px) {
    button.btn-primary.public.mas.mt-5,
    button.btn-primary.public.menos.mt-5 {
        width: 20%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 600px) {
    .btn-primary {
        width: 100%;
    }
}


/*** QUIENES SOMOS ***/

.more-content-list-item {
    padding: 0px 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px; 
    margin: 5px 0 0 0;
    font-size: 18px;
}

@media (max-width: 768px) {
    .col-xs-12.col-md-6.row-center-start {
        margin-top: 40px;
        margin-bottom: 40px;
    }
}



/*** SERVICIOS ***/

.servicio {
    background-color: rgba(240, 227, 208, 0.4);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: all 0.4s ease-in;
    margin: 20px 0 10px 0;
    border-bottom: 3px solid var(--primary);
    cursor: pointer;
}

.servicio h1 {
    font-weight: 400;
    color: var(--primary);
    font-size: 24px;
    line-height: 1.3;
    min-height: 120px;
}

.servicio h1 span {
    font-family: 'Lora', serif;
    font-weight: 700;
}

.servicio p {
    font-weight: 400;
    color: var(--primary);
    font-size: 16px;
    line-height: 1.3;
    min-height: 120px;
}

.servicio .btn-servicio {
    padding: 10px 25px;
    border: solid 1px var(--primary);
    color: var(--primary);
    text-align: center;
    font-size: 18px;
    border-radius: 10px;
}

.servicio:hover {
    background-color: var(--primary);
}

.servicio:hover .btn-servicio {
    color: #ffffff!important;
    border: solid 1px #ffffff!important;
}

.servicio:hover > h1 {
    color: #ffffff!important;
}

.servicio:hover > p {
    color: #ffffff!important;
}




/*** TESTIMONIOS ***/

.comillas {
    display: block;
    width: 100%;
    max-width: 50px;
    position: absolute;
    bottom: 30px;
    right: 30px;
}

.cliente-card.item {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    padding: 30px;
    margin: 10px;
}

@media (max-width: 768px) {
    .cliente-card.item {
        min-height: 500px;
    }
}

@media (max-width: 600px) {
    .cliente-card.item {
        min-height: 400px;
    }
}

.cliente-nombre {
    font-family: 'Lora', serif;
    color: var(--primary);
    font-size: 24px;
    font-weight: 400;
}

.cliente-texto {
    margin-top: 20px;
    min-height: 300px;
}

/*** OWL CAROUSEL ***/

.owl-nav {
    position: absolute;
    top: 45%;
    font-size: 36px;
    width: 100%;
}

button.owl-prev {
    position: absolute;
    left: -20px;
}

button.owl-next {
    position: absolute;
    right: -20px;
}

.owl-dots {
    text-align: center;
}

.owl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin: 5px;
    border: solid 1px #d9d9d9!important;
    background-color: #ffffff!important;
}

.owl-dot.active {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: solid 1px var(--primary)!important;
    background-color: var(--primary)!important;
}


/*** PREGUNTAS FRECUENTES ***/

.questBtn .icon-hide {display: none;}
.questBtn.is-active > .icon-show { display:none!important; }
.questBtn.is-active > .icon-hide { display:block!important; }


.quest {
    font-size: 22px;
    color: var(--primary);
    background-color: var(--second);
    text-align: left;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease-in;
    margin-bottom: 10px;
}

.quest.violet {
    color: #ffffff;
    background-color: var(--primary);
}

.content {
    display: none;
    padding: 20px;
    transform: translateY(0px); 
    transition: all 0.5 ease-in; 
    animation-name:response; 
    animation-duration: 0.5s;
}

@keyframes response {
    0% {transform: translateY(-20px); opacity:0; }
    100% {transform: translateY(0px); opacity:0.8;}
}


.content.block {
    display: block;
}

.questBtn {
    font-size: 24px; 
    font-weight: 700;
    cursor: pointer;
    background-color: transparent;
    color: var(--primary);
}

.questBtn.is-active {
    background-color: var(--primary);
    color: #ffffff;
}

/*** CLIENTES ***/

/*.clientes { padding: 3rem 0;}*/
.clientes { width: 100%; display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;}
.clientes figure { width: 15%;}
.clientes figure img { width: 100%; filter:grayscale(1); transition: all 0.5s ease;}
.clientes figure img:hover { filter: grayscale(0);}




/*** BLOG ***/

header.header-post {
    background-color: var(--primary);
    color: #fff;
    height: 75px;
}

header.header-post h2{
    font-size: 18px;
    margin-bottom: 0;
    padding: 10px 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 60px;
}

.mb-4 {
    margin-bottom: 0.5rem !important;
}

.card-post {
    position: relative;
    min-height: 520px;
    margin-bottom: 25px;
}

.card-post-content {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    min-height: 520px;
}

.card-post-btn-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    position: absolute;
    bottom: 20px;
}

.card-post-content .mb-5 {
    padding: 0 20px;
}

.blog-image {
    height: 200px;
    overflow: hidden;
    margin: 0 0 0.5rem;
}

.blog-badge, .blog-date {
    display: none;
}

/*.card-post .btn {
    position: absolute;
    bottom: 20px;
}

.card-post .btn-delete {
    left: 150px;
}

.card-post .btn-edit {
    left: 300px;
}*/


/**** FOOTER ****/
footer {
    background-color: var(--primary);
    color: #ffffff;
    padding: 50px 0;
}

footer .space {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

footer .flex-end {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}

footer .data-footer {
    margin-bottom: 50px;
}

footer .data-footer h2 {
    font-family: 'Lora', serif;
    font-weight: 400;
    color: var(--second);
    font-size: 18px;
}

footer .data-footer a {
    color: #ffffff;
    font-size: 24px;
}

.redes-footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 25px;
}

.redes-footer a {
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}


/*** LANDINGS SERVICIOS ***/

.title-landings {
    background-color: var(--second);
    height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.landing-btn-close {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.landing-btn-close button {
    background: none;
    padding-bottom: 5px;
    color: var(--primary);
}

.service-list-item {
    background-color: rgba(103,62,205,0.1);
    padding: 10px 20px;
    display: flex;
    align-items: flex-start;
    gap: 10px; 
    margin: 5px 0;
    font-size: 18px;
}

.service-list-item img {
    padding-top: 7px;
}

.landing-title {
    font-weight: 400;
    font-size: 24px;
}

.landing-title span {
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 36px;
    color: var(--primary)
}

.wrapper-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-landing {
    margin: 50px auto!important;
}

@media (min-width: 768px) {
    .btn-landing {
        width: 30%!important;
        margin: 50px auto!important;
    }
}



/***************************************************************************************/
/***************************************************************************************/
/***************************************************************************************/
/***************** MEDIA QUERIES **************************************************/




@media screen and (max-width: 1024px) {

      /**** MENU MOBILE ****/

      .panel-menu {
        position: fixed;
        display: flex;
        align-items: center;
        z-index: 998;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        background-color: var(--second-modal-color);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s ease, opacity 0.5s ease;
       /* display: flex;
        align-items: center;*/
    }

	.panel-btn.hamburger.hamburger--vortex { display:block;}
    
    .panel-menu.is-active {
        /*transform: translate(0,0);*/
        visibility: visible;
        opacity: 1;
    }

    .panel-btn {
        display: block;
        position: absolute;
        z-index: 999;
        top: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
        border-radius: 50%;
        font-size: 1.5rem;
        font-weight: bold;
        background-color: var(--main-color);
        color: var(--second);
        cursor: pointer;
        outline: 0;
        border: 0;
        transition: all 0.3s ease-out;
    }
    
    .menu {
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
    }

    .menu li {
        width: 100%;
        flex-direction: column;
    }

    .menu li a button {
        font-size: 1.5rem;
        text-decoration: none;
        color: var(--main-color);
        transition: all 0.3s ease;
    }

    .menu li a button:hover {
        color: #ffffff;
    }
    
    .menu a {
        padding: 1rem 4rem;
        width: 100%!important;
        display: block;
        font-size: 1.5rem;
        text-decoration: none;
        color: #FFF3ED;
        transition: all 0.3s ease;
    }
    
    .menu a:hover {
        width: 100%!important;
        font-weight: bold;
        color: #ffffff;
        background-color: var(--main-color);
    }   
}








/*estilo paginacion*/
.paginacion{
	display: flex;
	margin-top: 0px;
	margin-bottom: 20px;
    font-size: 20px;
}
.paginacion a{
	text-decoration: none;
	padding: 5px;
}
/*estilo sesion perfil*/


.card {
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px 0 rgba(0,0,0,.06);

}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 0 solid rgba(0,0,0,.125);
    border-radius: .25rem;

}

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1rem;
}

.card-body .input-group form {
    width: 100%;
    display: flex;
    gap: 10px;
}

.gutters-sm {
    margin-right: -8px;
    margin-left: -8px;
}

.gutters-sm>.col, .gutters-sm>[class*=col-] {
    padding-right: 8px;
    padding-left: 8px;
}
.mb-3, .my-3 {
    margin-bottom: 1rem!important;
}

.bg-gray-300 {
    background-color: #e2e8f0;
}
.h-100 {
    height: 100%!important;
}
.shadow-none {
    box-shadow: none!important;
}

.account-settings .user-profile {
    margin: 0 0 1rem 0;
    padding-bottom: 1rem;
    text-align: center;
}
.account-settings .user-profile .user-avatar {
    margin: 0 0 1rem 0;
}
.account-settings .user-profile .user-avatar img {
    width: 90px;
    height: 90px;
    -webkit-border-radius: 100px;
    -moz-border-radius: 100px;
    border-radius: 100px;
}
.account-settings .user-profile h5.user-name {
    margin: 0 0 0.5rem 0;
}
.account-settings .user-profile h6.user-email {
    margin: 0;
    font-size: 0.8rem;
    font-weight: 400;
    color: #9fa8b9;
}
.account-settings .about {
    margin: 2rem 0 0 0;
    text-align: center;
}
.account-settings .about h5 {
    margin: 0 0 15px 0;
    color: #007ae1;
}
.account-settings .about p {
    font-size: 0.825rem;
}
.form-control {
    border: none;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    padding: 15px;
    font-size: .825rem;
    background: #ffffff;
    color: #333333;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.card-perfil {
    background: #ffffff;
    border: 0;
    margin-bottom: 1rem;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
.card {
    background: #ffffff;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    border: 0;
    padding: 20px;
    margin-bottom: 1rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
/*fin estilo editar perfil*/

/*** GALERIA ***/

.lightbox-gallery{
    color: #000;
    overflow-x: hidden
}

.lightbox-gallery p{
    color:#333333;
    font-size: 14px;
    padding-top: 5px;
}
.lightbox-gallery h2{font-weight:bold;margin-bottom:40px;padding-top:40px;color:#fff}

@media (max-width:767px)

{.lightbox-gallery h2{margin-bottom:25px;padding-top:25px;font-size:24px}}.lightbox-gallery .intro{font-size:16px;max-width:500px;margin:0 auto 40px}.lightbox-gallery .intro p{margin-bottom:0}.lightbox-gallery .photos{padding-bottom:20px}.lightbox-gallery .item{padding-bottom:30px}



@media (max-width: 768px) {
    /*** CLIENTS ***/
    .clientes figure { width: 25%;}
}

@media (max-width: 600px) {
    /*** CLIENTS ***/
    .clientes figure { width: 33%;}
}

@media (max-width: 768px) {
    .margin-space {
        margin-top: 20px!important;
        margin-bottom: 30px;
    }
}