/* - - - - - - - - - - - - - - -
CSS principal
Desarrollado por: Upgrade Diseño Interactivo
Para:
Fecha:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ */


/* ====== F O N T S ====== */

@font-face {
    font-family: 'Barlow-Bold';
    src: url('../../_fonts/barlow-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow-SemiBold';
    src: url('../../_fonts/barlow-semibold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow-Medium';
    src: url('../../_fonts/barlow-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow-Regular';
    src: url('../../_fonts/barlow-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Barlow-Light';
    src: url('../../_fonts/barlow-light-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Bold';
    src: url('../../_fonts/poppins-bold-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Poppins-Medium';
    src: url('../../_fonts/poppins-medium-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Bentham-Regular';
    src: url('../../_fonts/bentham-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/* ====== F O N T S (end) ====== */


/*Eliminamos márgenes del "body" */

html,
body {
    margin: 0px;
    padding: 0px;
    height: 100%;
}

#big-container
/* Div que va a manterner el "footer" siempre al fondo */

{
    overflow: hidden;
    /* height: 100% !important;
    min-height: 100% !important; */
}


/***************** GENERAL ******************/

a {
    text-decoration: none;
    cursor: pointer;
}

.btn-white {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    font-size: .9em;
    color: #522862;
    background-color: white;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-style: none;
    cursor: pointer;
}

.btn-purple {
    background-color: #522862;
    color: white;
    font-family: 'Barlow-Bold';
    font-weight: 700;
    font-size: .9em;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: center;
    letter-spacing: 4px;
    width: 150px;
    text-transform: uppercase;
    border-style: none;
    cursor: pointer;
}

.title {
    font-family: 'Barlow-Regular';
    font-weight: 400;
    color: #522862;
    font-size: 2.3em;
    letter-spacing: 0.135em;
    text-transform: uppercase;
}

.shadow {
    box-shadow: 0px 0px 10px 5px rgba(0, 0, 0, 0.1);
    width: 190px;
}

.btn-inactivo {
    background-color: #C4C4C4;
    color: white;
    font-family: 'Barlow-Bold';
    font-weight: 700;
    font-size: .9em;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: center;
    letter-spacing: 4px;
    text-transform: uppercase;
    border-style: none;
    width: 190px;
}

.btn-activo {
    background-color: #522862;
    color: white;
    padding: 20px;
    width: 190px;
}


/*Animación botones*/

.btn-white {
    color: #522862;
    border: 3px solid white;
    background-image: -webkit-linear-gradient(30deg, white 50%, transparent 50%);
    background-image: linear-gradient(30deg, white 50%, transparent 50%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
}

.btn-white:hover {
    background-position: 100%;
    /* color: white; */
    background-color: transparent;
    box-shadow: 0px 0px 10px 5px rgb(82 40 98 / 40%);

}

.btn-purple {
    color: white;
    border: 3px solid #522862;
    background-image: -webkit-linear-gradient(30deg, #522862 40%, transparent 40%);
    background-image: linear-gradient(30deg, #522862 40%, transparent 40%);
    background-size: 500px;
    background-repeat: no-repeat;
    background-position: 0%;
    -webkit-transition: background 300ms ease-in-out;
    transition: background 300ms ease-in-out;
}

.btn-purple:hover {
    background-position: 100%;
    color: #522862;
    background-color: transparent;
}


/***************** HEADER ******************/

header {
    position: absolute;
    z-index: 9999;
    width: 100%;
    height: 100px;
    font-family: 'Poppins-Bold';
}

.align-header {
    display: flex;
    width: 90%;
    margin: 50px auto;
    justify-content: space-between;
    align-items: center;
}

.logo_index {
    position: absolute;
    width: 16vw;
}

.nav-header {
    width: 65%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.redes {
    width: 15%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.redes img {
    cursor: pointer;
}

.white a {
    color: white;
}

.purple a {
    color: #5B315E;
    padding: 5px 20px;
}

.purple a:hover {
    color: white;
    padding: 5px 20px;
    background: #522862;
    border-radius: 10px;
}

.logo_index2 {
    width: 130px;
}

.logo_indexResp {
    display: none;
}

.tel a {
    width: 15%;
}

.tel p {
    margin: 0;
}


/***************** HEADER (end) ******************/


/***************** INICIO ******************/

.main-header {
    display: flex;
    height: auto;
    padding-top: 150px;
    padding-bottom: 150px;
}

#vector-b {
    position: absolute;
    top: 0;
    width: 100vw;
    z-index: -1;
}

#elem_left {
    width: 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    top: 11em;
    height: fit-content;
}

#arrows {
    width: 5vw;
    margin-top: 4em;
    display: flex;
    justify-content: space-between;
}

#arrows img {
    width: 23px;
}

#ct-banner {
    width: 80%;
    display: flex;
}

#left-b {
    display: flex;
    flex-direction: column;
    width: 50%;
}

#clouds {
    width: 20vw;
    position: relative;
    left: 45%;
}

#left-b h1 {
    font-family: 'Barlow-Light';
    color: #F6EBC8;
    font-size: 4.5vw;
    letter-spacing: 0.225em;
    font-weight: 300;
    margin: 10px 0;
}

#play {
    width: 60px;
    margin: 10px 0;
}

#left-b a {
    width: 150px;
    margin: 20px 0;
}

#heart {
    position: absolute;
    right: 6%;
    width: 6vw;
}

#dog {
    position: absolute;
    top: 120px;
    right: 3%;
    z-index: 1;
    width: 45vw;
    /* 50vw */
}

#frame_dog {
    position: absolute;
    right: 10%;
    top: 72%;
    width: 6vw;
}


/**** Seccion La colina*****/

.sec-colina {
    width: 100%;
}

.align_content {
    width: 90%;
    margin: auto;
}

#colina {
    display: flex;
}

#img-col {
    width: 50%;
    position: relative;
}

#vect1 {
    width: 40vw;
    position: relative;
    top: -50px;
}

#vect2 {
    position: relative;
    bottom: 18vw;
    left: 9vw;
    width: 23vw;
}

#txt-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    font-family: 'Barlow-Regular';
    width: 40%;
    margin: 0 auto;
    margin-top: 200px;
    z-index: 1;
    margin-bottom: 40px;
}

#txt-col h1 {
    margin: 20px 0;
}

#txt-col p {
    color: #202C4C;
    font-size: 1.2em;
    margin: 20px 0;
}

#txt-col a {
    width: 200px;
    margin: 20px 0;
}


/**** Seccion Proceso de despedida *****/

.sec-proceso {
    display: flex;
    flex-direction: column;
    margin-top: -150px;
}

#frames-proc {
    width: 80%;
    display: flex;
    justify-content: space-between;
    position: absolute;
    right: 0;
}

#huella {
    position: relative;
    top: 60px;
    width: 6vw;
}

#fr1 {
    position: relative;
    left: 40px;
    width: 40vw;
    z-index: -1;
}

.align-proc {
    width: 80%;
    margin: auto;
    padding-top: 250px;
}

.align-proc h1 {
    padding-left: 100px;
}

.line-dots {
    width: 80%;
    border: 2px dashed #52355D;
    position: relative;
    top: 60px;
}

.align-pr {
    display: flex;
    justify-content: space-between;
}

.pr {
    width: 20%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    z-index: 1;
}

.circle1 {
    background-color: #EAE5D5;
    border-radius: 50%;
    width: 94px;
    height: 94px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle2 {
    background-color: #522862;
    border-radius: 50%;
    width: 94px;
    height: 94px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pr h3 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    text-align: center;
    letter-spacing: 0.245em;
    text-transform: uppercase;
    font-size: 1.2em;
}

.pr p {
    font-family: 'Barlow-Regular';
    color: #202C4C;
    font-weight: 400;
    text-align: center;
    font-size: 1.1em;
}

#ct-proc a {
    width: 150px;
    margin: 50px auto;
}


/**** Seccion Planes *****/

.verP {
    display: none;
}

.sec-planes {
    width: 95%;
    margin: auto;
    /* height: 65vw; */
}

.align-title {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#ct-planes {
    position: relative;
    height: auto;
}

.fondo-pl {
    width: 60%;
    position: relative;
    top: -70px;
    left: 20vw;
}

#align-plan {
    display: flex;
    justify-content: center;
    position: absolute;
    top: 19vw;
    width: 80%;
    /* margin: auto; */
    left: 11vw;
}

.plan {
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.plan h2 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    text-align: center;
    letter-spacing: 0.245em;
    text-transform: uppercase;
    font-size: 1.6em;
    margin: 20px 0;
}

.sub-pl {
    position: absolute;
    width: 100%;
    top: 100px;
}

#plan_sub {
    font-family: 'Barlow-Medium';
    color: #522862;
    font-weight: 400;
    text-align: center;
    font-size: 1.2em;
    width: 40%;
    margin: auto;
}

.plan a {
    margin: 20px 0;
}

.imgpl {
    width: 60px;
}

.circle-pl {
    background-color: #DFDFDF;
    width: 266px;
    height: 266px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 35px;
    z-index: 1;
    position: relative;
}

#chih {
    position: relative;
    bottom: 80px;
}

#zpet {
    position: relative;
    bottom: 30px;
    left: 50px;
}

#cat {
    position: relative;
    left: 50px;
    bottom: 50px;
}

#pl1 {
    position: absolute;
    top: -10px;
    left: 0px;
}

#pl2 {
    position: absolute;
    top: -80px;
    right: 40%;
}

#pl3 {
    position: absolute;
    top: -55px;
    left: 120px;
}

#foot1 {
    position: absolute;
    left: 29vw;
    top: 20vh;
}

#foot2 {
    position: absolute;
    top: 40vw;
    
}

#pl-line {
    position: absolute;
    top: 130px;
    left: -20px;
}

#pl-line2 {
    position: absolute;
    top: 150px;
    left: 250px;
}


/***** Seccion Servicios ******/

.sec-servicios {
    width: 100%;
    margin-top: 50px;
}

#elem-title {
    width: 100%;
    margin: auto;
    display: flex;
    justify-content: space-evenly;
}

#e2 {
    width: 50%;
}

#e2 p {
    font-family: 'Barlow-Medium';
    font-weight: 500;
    color: #202C4C;
    text-align: center;
    font-size: 1.2em;
}

#e1,
#e3 {
    position: relative;
    width: 10%;
}

#foot3 {
    position: relative;
    top: 7vw;
}

#elipse1 {
    background-color: #522862;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    position: relative;
    top: 60px;
    left: 60px;
}

#elipse2 {
    background-color: #522862;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    position: relative;
    top: 80px;
    left: 80px;
}

#clouds2 {
    position: absolute;
    bottom: 0;
}

#ct-servicios {
    width: 70%;
    margin: 30px auto;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.serv {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.serv h2 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    text-align: center;
    letter-spacing: 0.245em;
    text-transform: uppercase;
    font-size: 1.6em;
    margin: 20px 0;
}

.serv p {
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 1em;
    color: #202C4C;
    margin: 20px 0;
}

.serv a {
    margin: 20px 0;
}

#frame4 {
    position: absolute;
    right: -130px;
    bottom: -30px;
}
.fondo_prod {
    width: 100%;
    position: absolute;
    z-index: -1;
    padding-top: 60px;
}

/***** Seccion Productos ******/

.sec-prod{
    width: 100%;
    padding-top: 200px;
    overflow-y: hidden;
    position: relative;
    box-shadow: 0px 1px 40px rgb(0 0 0 / 10%);
}
#prodtop h1{
    margin-left: 50px;
    margin-top: 0;
    margin-bottom: 50px;
}

#prodbott{
    width: 80%;
    display: flex;
    justify-content: space-evenly;
    margin: auto;
    flex-wrap: wrap;
}
#prodbott span{
    margin: 15px;
    cursor: pointer;
}
.categprod{
    background-color: #522862;
    color: white;
    font-family: 'Barlow-Bold';
    font-weight: 700;
    font-size: .9em;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    justify-content: center;
    letter-spacing: 4px;
    width: 150px;
    text-transform: uppercase;
    border-style: none;
}
.categprod:hover{
    box-shadow: 0px 8px 16px 0px rgb(82 40 98 / 57%);
}


.menprodk{
    /* background-color: #A65588; */
    box-shadow: 0px 8px 16px 0px rgb(82 40 98 / 57%);
}

.categ_prod{
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
    justify-content: flex-start;
    padding: 100px 0;
    gap: 2em;
}

.card_prod{
    width: 30%;
    border-radius: 10px;
    border: 1px solid #522862;
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: 'Barlow-Bold';
    transition: .5s;
    cursor: pointer;

}

.card_prod h6{
    font-size: 1.2em;
    color: #522862;
    margin-bottom: 10px;
    padding: 0 15% 20px;
    text-align: center;
    border-bottom: 1px solid #D9D9D9;
}
.card_prod p{
    font-size: 1.2em;
    color: #522862;
    margin: 20px auto;

}

.card_prod:hover{
    box-shadow: 0px 8px 16px 0px rgb(82 40 98 / 57%);
}

.imgProd{
    width: 70%;
    height: 150px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

/***************** Pop Up ******************/
.mainpop {
    width: 50%;
    border-radius: 24px;
    background: white;
    box-shadow: -1px 0px 28px -1px rgba(131, 102, 169, 0.15);
    overflow: hidden;
    padding-bottom: 60px;
    height: 470px;
    margin: 20vh auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cd-popup-container {
    position: relative;
    max-width: 40%;
    background: #FFF;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
    /* Force Hardware Acceleration in WebKit */
    -webkit-backface-visibility: hidden;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.3s;
    -moz-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

.head_pop {
    background-color: #522862;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    align-items: center;
}

.head_pop p {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: white !important;
}

.tit_pop {
    letter-spacing: 0.305em;
    font-size: 1.6em;
    text-transform: uppercase;
}

.price_pop {
    font-size: 1.5em;
}

.price_pop span {
    font-size: 1.7em;
    margin-left: 10px;
}
.ct_pop{
    width: 85%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 250px;
}

.desc_pop{
    width: 40%;
    color: #202C4C;
    font-family: 'Barlow-Regular';
    font-weight: 400;
}
.img_pop{
    width: 45%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.img_pop img{
    /* width: 100%; */
    height: 200px;
}

.btns-pop {
    width: 70%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}
.btns-pop button{
    width: 190px;
}

/* ----------------------- */


.cd-popup {
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(82, 40, 98, .3);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
    transition: opacity 0.3s 0s, visibility 0s 0.3s;
  }
  .cd-popup.is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
    -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
    transition: opacity 0.3s 0s, visibility 0s 0s;
  }


/***** Seccion Instalaciones ******/

.sec-inst {
    width: 100%;
    height: auto;
    margin-top: 100px;
}

#fondo-i {
    background-image: url(../../_images/_svg/fondo_inst.svg);
    background-repeat: no-repeat;
    /* background-size: 100%; */
    background-size: cover;
}

#title-inst {
    padding-top: 120px;
}

#ct-inst {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 50px;
}

#inst-izq {
    width: 40%;
    display: flex;
    flex-direction: column;
}

#inst-izq img {
    width: 11vw;
}

#inst-izq h2 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    font-size: 1.5em;
    letter-spacing: 0.445em;
}

#inst-izq p {
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 1.1em;
    color: #522862;
}

#inst-izq a {
    margin: 20px 0;
}

#inst-der {
    width: 50%;
    position: relative;
}

#v1 {
    position: absolute;
}

#img-inst {
    position: absolute;
    top: -100px;
    left: -55px;
}

#huellas-inst {
    position: absolute;
    width: 70%;
    height: 250px;
    background-color: transparent;
    z-index: 1;
    right: 0;
    top: -253px;
}

#foot-g1 {
    position: absolute;
    right: 0;
    bottom: 0;
}

#foot-g2 {
    position: absolute;
    top: 50px;
    right: 55px;
}

#foot-g3 {
    position: absolute;
    top: 100px;
    right: 200px;
}


/********/

#ct2-inst {
    width: 80%;
    margin: 100px auto;
    display: flex;
    justify-content: space-between;
}

.instalacion {
    width: 25%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.instalacion p {
    font-family: 'Poppins-Medium';
    font-weight: 500;
    font-size: 1.1em;
    color: #522862;
    text-align: center;
}

.img-i {
    position: relative;
}

#imgc1 {
    position: absolute;
    left: -30px;
    top: -50px;
}

#imgc2 {
    position: absolute;
    left: 5px;
    top: -20px;
}

#imgc3 {
    position: absolute;
    top: -100px;
    left: -25px;
}


/********/

.sec-grd {
    width: 100%;
    height: auto;
}

#align-grd {
    width: 75%;
    margin: auto;
    display: flex;
}

.title-guardian {
    width: 50%;
    display: flex;
    flex-direction: column;
}

.title2 {
    font-family: 'Barlow-Light';
    font-weight: 300;
    letter-spacing: 0.225em;
    font-size: 4em;
    color: #522862;
}

.cont-stars {
    width: 90%;
    margin: 100px auto 50px;
}

#stars {
    width: 7vw;
}

.img-guardian {
    width: 70%;
    position: relative;
    top: 150px;
    right: 93px;
}

#guardian {
    position: absolute;
    top: 0;
    width: 85%;
    height: -webkit-fill-available;
}

#spiral {
    position: absolute;
    bottom: 55px;
    left: -190px;
}

.hpet {
    position: relative;
    top: -80px;
    margin: auto;
    width: 100%;
    height: 400px;
}

#pet-grd {
    position: absolute;
    top: -30px;
    left: -20px;
    z-index: 2;
    /* width: 51vw; */
    width: 40em;
}

#line-grd1 {
    position: absolute;
    z-index: 1;
    top: 250px;
    left: -40px;
}

#line-grd2 {
    position: absolute;
    z-index: 1;
    right: -20px;
    bottom: -70px;
}


/***************** INICIO (end) ******************/


/***************** PROCESO ******************/

.align_content2 {
    width: 80%;
    margin: auto;
}

.sec-p {
    width: 100%;
    padding-top: 150px;
}

#title-p {
    display: flex;
    justify-content: center;
    text-align: center;
}

#title-p h1 {
    text-transform: uppercase;
}

#circ-one {
    width: 251px;
    height: 251px;
    border-radius: 50%;
    background: #EAE5D5;
    display: flex;
    margin-bottom: 20px;
}

.num {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.num h2 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    text-align: center;
    letter-spacing: 0.245em;
    text-transform: uppercase;
    font-size: 1.6em;
    margin: 20px 0;
}

.num p {
    font-family: 'Barlow-Regular';
    font-weight: 400;
    text-align: center;
    font-size: 1.2em;
    margin: 20px 0;
}

.cont-num {
    position: relative;
}

.style-proc {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
}

.style-proc a {
    width: 150px;
}

#fondo-two {
    position: relative;
    top: 100px;
    z-index: -2;
}

#fondo-three {
    position: relative;
    top: 100px;
}


/******/

#pone {
    top: 80px;
}

#pone p {
    width: 70%;
}

.beige {
    border-radius: 50%;
    background-color: #EAE5D5;
    position: absolute;
}

.c1-1 {
    width: 24px;
    height: 24px;
    top: -40px;
}

.c2-1 {
    width: 62px;
    height: 62px;
    top: 0;
    right: 0px;
}

#ptwo {
    top: -140px;
    left: -70px;
}

#ptwo p {
    width: 50%;
}

#group1 {
    position: relative;
    left: 50px;
    bottom: -20px;
}

#shadow {
    position: absolute;
    left: 60px;
    bottom: 35px;
    z-index: -1;
}

.blue {
    border-radius: 50%;
    background-color: #ADCEC9;
    position: absolute;
}

.c1-2 {
    width: 27px;
    height: 27px;
    right: -10px;
    bottom: 0;
}

.c2-2 {
    width: 39px;
    height: 39px;
    top: 45%;
    left: 40px;
}

#pthree {
    top: -100px;
}

#pthree p {
    width: 80%;
}

#corona {
    width: 102px;
    height: 28px;
    border: 3px solid #522862;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 100px;
}

.purp {
    border-radius: 50%;
    background-color: #522862;
    position: absolute;
}

.c1-3 {
    width: 19px;
    height: 19px;
    top: 200px;
}

.c2-3 {
    width: 36px;
    height: 36px;
    right: 0;
    bottom: -70px;
}

#figuras-p {
    display: flex;
    justify-content: center;
}

#bird {
    position: relative;
    left: 430px;
}

#next-p {
    width: 55%;
    margin: 50px auto;
}

#pfour {
    top: -100px;
    left: -30px;
}

#pfour img {
    position: relative;
    left: 20px;
}

#pfour p,
#pfive p {
    width: 70%;
}

#pfive {
    top: -65px;
}

.pink {
    border-radius: 50%;
    background-color: #EBD7EB;
    position: absolute;
    width: 62px;
    height: 62px;
    left: -50px;
}


/***************** PROCESO (end) ******************/


/***************** INSTALACIONES ******************/

.sec-i {
    width: 100%;
    padding-top: 200px;
}

#ti {
    display: flex;
    align-items: center;
}

#ti img {
    width: 70px;
    margin-right: 60px;
}

.item {
    border-radius: 20px;
    border: 3px solid #ffffff;
    background: white;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.item2 {
    border-radius: 20px;
    border: 3px solid #ffffff;
    background: white;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 40%;
}

.gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr;
    height: 100vw;
    margin: 30px 0 50px;
}

.uno {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
}

.dos,
.tres {
    grid-row-start: 1;
    grid-row-end: 2;
}

.cuatro {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 3;
}

.cinco {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 3;
    grid-row-end: 5;
}

.seis {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 3;
    grid-row-end: 4;
}

.siete {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 4;
    grid-row-end: 5;
}

.ocho {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 5;
}

.nueve {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 5;
    grid-row-end: 6;
}

.diez {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 5;
    grid-row-end: 6;
}

.once {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 6;
    grid-row-end: 7;
}

.doce {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 5;
    grid-row-end: 7;
}

#frame-inst {
    width: 45%;
}


/***************** INSTALACIONES (end) ******************/


/***************** SERVICIOS ******************/

.align-s {
    width: 80%;
    margin: auto;
    display: flex;
    padding-top: 200px;
    align-items: center;
}

#izq-s {
    width: 30%;
}

#izq-s h1 {
    font-family: 'Barlow-Light';
    font-weight: 300;
    letter-spacing: 0.225em;
    font-size: 3em;
    color: #522862;
}

#izq-s img {
    width: 25%;
}

#izq-s a {
    width: 200px;
}

#canv {
    position: absolute;
    font-family: 'Barlow-Light';
    margin-left: -30px;
}

#der-s {
    width: 70%;
    position: relative;
}

#chih2 {
    position: relative;
    top: 50px;
    left: -80px;
}

#bone {
    position: absolute;
    bottom: 20%;
    left: 20%;
}

#chih-o {
    background: rgba(82, 40, 98, 0.1);
    width: 49px;
    height: 49px;
    border-radius: 50%;
    position: absolute;
    right: 20%;
    top: 20%;
    z-index: -1;
}

#title-s2 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    text-align: center;
    letter-spacing: 0.615em;
    text-transform: uppercase;
    font-size: 1.5em;
    width: 50%;
    margin: 80px auto 100px;
    line-height: 1.5;
}


/*******/

.align-s2 {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.service {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#rec {
    /* padding-top: 70px; */
}

.stext {
    width: 40%;
}

.stext h1 {
    font-family: 'Barlow-Medium';
    font-weight: 500;
    color: #522862;
    letter-spacing: 0.27em;
    text-transform: uppercase;
    font-size: 3em;
}

.stext p {
    font-family: 'Barlow-Regular';
    color: #202C4C;
    font-weight: 400;
    font-size: 1.2em;
}

.stext a {
    margin: 50px 0;
}
.stext .btn-purple{
    display: none;
}

.simg {
    width: 50%;
    position: relative;
}

#simg1 {
    position: absolute;
    top: -40px;
    left: 100px;
}

#simg2 {
    position: relative;
    top: -60px;
}

#simg3 {
    position: absolute;
    top: 0;
    left: 40px;
    opacity: .9;
}


/***************** SERVICIOS (end) ******************/


/***************** PLANES ******************/

.sec-pl {
    width: 100%;
    padding-top: 200px;
}

#align-pl {
    width: 90%;
    margin: auto;
}

#planes {
    display: flex;
    justify-content: space-evenly;
}

#tpl {
    margin: 0px auto 150px;
    margin-left: 50px;
}

.pplan {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFFFFF;
    box-shadow: 0px 4px 24px -4px rgba(0, 0, 0, 0.2);
    border-radius: 54px;
    padding: 80px 0 60px;
    position: relative;
}
.pplan button{
    width: 55%;
}
.pl,
#p2 {
    position: absolute;
    top: -120px;
}

.pplan h2 {
    font-size: 1.4em;
    color: #522862;
}

.pplan p {
    font-size: .9em;
    width: 60%;
    color: #522862;
    line-height: 1.5;
}

.descpl {
    font-family: 'Barlow-Medium';
    font-weight: 500;
    text-align: center;
}

.style-tit {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.245em;
    text-transform: uppercase;
}

.pplan h1 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    font-size: 3em;
    margin: 0;
}

.ct-plan ul {
    list-style: none;
    padding: 0;
    text-align: center;
    margin: 35px 0;
}

.ct-plan li {
    font-family: 'Barlow-Medium';
    font-weight: 500;
    font-size: 1em;
    color: #522862;
    padding: 15px 0;
    border-top: 1px solid rgba(82, 40, 98, 0.22);
}

.pplan2 {
    width: 30%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #522862;
    box-shadow: 0px 4px 24px -4px rgba(0, 0, 0, 0.2);
    border-radius: 54px;
    padding: 80px 0 60px;
    position: relative;
}

.pplan2 a {
    width: 150px;
    margin: 30px 0;
}

.pplan2 h2 {
    font-size: 1.4em;
    color: #FFFFFF;
}

.pplan2 p {
    font-size: 1.2em;
    color: #FFFFFF;
    font-family: 'Barlow-Medium';
    font-weight: 500;
}

.descpl2 {
    font-size: .9em !important;
    width: 70%;
    text-align: center;
    line-height: 1.5;
}

.ct-plan2 {
    display: flex;
    flex-direction: column;
}

.paq {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 30px 0;
}

#p3 {
    position: absolute;
    top: -150px;
    z-index: -1;
}


/***************** PLANES (end) ******************/


/***************** CONTACTO ******************/

.sec-contact {
    width: 100%;
    padding-top: 200px;
}

.ctc-sup {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-bottom: 100px;
}

#align-tc {
    display: flex;
    align-items: flex-start;
}

#align-tc img {
    width: 35%;
}

#align-tc h1 {
    margin-top: 50px;
}

#cat_c {
    position: absolute;
    right: 0;
    z-index: -1;
    top: -50px;
}

#mapa {
    width: 100%;
    background-color: transparent;
    position: absolute;
}

.map {
    width: 100%;
    height: 800px;
}

#container_svg {
    width: 100%;
    height: 140px;
    position: relative;
}

#container_svg svg {
    width: 100%;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0px;
}


/*---------------------------------------*/

.info-float {
    width: 40%;
    background: #FFFFFF;
    box-shadow: 23px 23px 18px rgba(0, 0, 0, 0.13);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.info-float ul {
    padding: 0;
}

.info-float .redes {
    width: 50%;
}

.info-float .redes img {
    width: 30px;
}

#contactt {
    width: 30%;
    position: relative;
    top: -50px;
    z-index: 1;
}

.head_float {
    background-color: #522862;
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: white;
    text-align: center;
    padding: 10px;
}

.ct_float {
    color: #522862;
    font-family: 'Barlow-Medium';
    font-weight: 500;
    line-height: 1.5;
    font-size: 1.2em;
}

#content {
    padding: 50px 50px 50px 150px;
}

#content span {
    color: #202C4C;
}

#titContact {
    color: white;
}


/* blog */

#categ {
    width: 5%;
    z-index: 5;
    position: fixed;
    top: 200px;
}

#head_categ {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#ct_categ {
    padding: 20px 50px;
    font-size: 1em;
    display: none;
}

#tit_float {
    display: none;
    margin: 0;
    color: white;
}

#categ .redes {
    width: 90%;
}

#btn_float {
    content: url(../../_images/_svg/mostrar.svg);
    height: 42px;
    width: 55px;
    padding: 10px;
    cursor: pointer;
}

#categ.visible #btn_float {
    content: url(../../_images/_svg/ocultar.svg);
}

#categ.visible {
    width: 25%;
    transition: width 1s;
    -webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}

#categ.visible #ct_categ {
    display: block;
}

#categ.visible #tit_float {
    display: block;
}

.tags {
    display: flex;
    flex-wrap: wrap;
}

.tags span {
    background-color: #F2DBF2;
    border-radius: 5px;
    color: #5B315E;
    padding: 5px;
    margin: 3px;
    cursor: pointer;
}


/***************** CONTACTO (end) ******************/


/***************** BLOG ******************/

.sec-blog {
    width: 100%;
    padding-top: 200px;
    padding-bottom: 50px;
}

.ct1_blog {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 50px;
}

.ct1_blog img {
    width: 45%;
}

#align-titb {
    width: 50%;
    display: flex;
    align-items: flex-start;
}

#align-titb img {
    width: 35%;
}

#align-titb h1 {
    margin: auto 0 auto -40px;
    font-size: 3em;
}

.align-blogs {
    width: 90%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.principal {
    display: flex !important;
    align-items: center;
    margin: 10px;
    padding: 2%;
    position: relative;
}

.imgblogs {
    width: 50%;
    height: 400px;
    border-radius: 50px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-color: #ccc;
}

.txtblogs {
    width: 35%;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.b_date {
    display: flex;
    align-items: center;
}

.p-fecha {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    font-size: .9em;
}

.fechab {
    color: #522862;
    font-family: 'Barlow-Medium';
    font-weight: 500;
    font-size: .9em;
}

.b_date img {
    width: 20px;
    margin-left: 30px;
}

.b_content h1 {
    color: #522862;
    font-family: 'Barlow-Bold';
    font-weight: 700;
    font-size: 1.5em;
    text-decoration: none;
    display: inline-block;
    position: relative;
}


/***********/

.effect-hover:hover {
    text-decoration: underline;
}


/***********/

.b_content p {
    font-family: 'Barlow-Regular';
    color: #605F60;
    font-weight: 400;
    font-size: 1.2em;
}

.b_author {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.img_author {
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    margin-right: 10px;
}

.name_author h3 {
    color: #522862;
    font-family: 'Barlow-Bold';
    font-weight: 700;
    font-size: .9em;
    margin: 0;
}

.name_author p {
    font-family: 'Barlow-Regular';
    color: #522862;
    font-weight: 400;
    font-size: .9em;
    margin: 0;
}

.secundarios {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-sec {
    display: flex;
    flex-direction: column;
    margin: 10px;
    padding: 2%;
    position: relative;
}

.blog-sec .imgblogs {
    width: 100%;
    height: 210px;
    margin: 0 0 20px;
}

.blog-sec .txtblogs {
    width: 100%;
    margin: 0;
}


/***************** BLOG2 ******************/

.main {
    font-family: Arial;
    width: 90%;
    display: block;
    margin: 0 auto;
}

.slick-prev,
.slick-next {
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background-color: #522862 !important;
    color: transparent;
    bottom: -45px !important;
    top: unset !important;
    z-index: 2;
}

.slick-next:before {
    background-image: url(../../_images/_svg/nextb.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    opacity: 1;
    background-position-x: 7px;
}

.slick-prev:before {
    background-image: url(../../_images/_svg/prevb.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center;
    background-position-x: 3px;
}

.slick-prev:before,
.slick-next:before {
    color: transparent !important;
}

.slick-dots li {
    width: 10px !important;
    height: 10px !important;
    border-radius: 50%;
    background-color: #522862 !important;
}

.slick-dots li.slick-active button:before {
    opacity: .75;
    color: transparent;
    background-color: white;
}

.slick-dots li button::before {
    color: transparent !important;
}

.slick-prev {
    left: 40% !important;
}

.slick-next {
    right: 40% !important;
}


/*--- DETALLE BLOG -----*/

.sec-details {
    width: 100%;
    padding-top: 170px;
}

.portada {
    width: 100%;
    height: 500px;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    background-color: white;
}

.line {
    border-style: none;
    background-color: #522862;
    height: 1px;
    margin-top: 10px;
    margin-bottom: 20px;
}

.detailsb {
    width: 90%;
    margin: auto;
    display: flex;
    padding-top: 50px;
    justify-content: center;
}

.date-and-author {
    width: 12%;
    padding-right: 100px;
}

.content-blog {
    width: 55%;
}

.content-blog h1 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    font-size: 2.2em;
}

.content-blog p {
    font-family: 'Barlow-Regular';
    color: #202C4C;
    font-weight: 400;
    font-size: 1.1em;
    line-height: 1.5;
}

.blog_article {
    position: relative;
    width: 100%;
}

.blog_article h1,
h2 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
}

.img-blog {
    display: block;
    margin: auto;
}

.quote #comillas {
    font-family: 'Bentham-Regular';
    color: #522862;
    font-size: 144px;
    margin: 0;
    position: absolute;
    top: -25px;
    left: -9px;
}

.quote #cita {
    font-family: 'Barlow-SemiBold';
    color: #202C4C;
    font-size: 1.1em;
    padding-top: 70px;
    margin: 50px 0;
}

.share {
    width: 12%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 100px;
    padding-top: 80px;
}

.share img {
    margin-bottom: 50px;
}

.share {
    display: none;
}


/***************** BLOG (end) ******************/


/***************** PASOS PLAN ******************/

.position-bar {
    width: 90%;
    margin: auto;
    padding-top: 150px;
}

.position-bar .title {
    font-size: 3em;
}

.line-nav {
    border-style: none;
    border: 2px solid #522862;
    width: 75%;
    margin: auto;
    position: relative;
    top: 30px;
    z-index: -1;
}

#align_pasos {
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin: auto;
    margin-bottom: 30px;
}

.paso {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.paso span {
    color: #522862;
    font-family: 'Barlow-Medium';
    font-weight: 500;
    font-size: .9em;
    margin-top: 15px;
}

.circ-paso {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #522862;
    background-color: #522862;
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}

.circ-paso.active {
    background-color: white;
    color: #522862;
}

.paso1 {
    width: 100%;
}

.datosp1 {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}

#formp1 {
    width: 50%;
}

#imgp1 {
    width: 50%;
}

#imgp1 img {
    float: right;
}

#align_inputp1 {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.estiloInputp1 {
    border-style: none;
    border-radius: 12px;
    background-color: white;
    border: 1px solid #5B315E;
    padding: 20px 30px;
    color: #522862;
    font-family: 'Barlow-Medium';
    font-weight: 500;
    letter-spacing: 0.245em;
    text-transform: uppercase;
    margin: 20px 0;
}

.estiloInputp1::placeholder {
    color: #522862;
}

.formpaso1 input:focus {
    border: 2px solid #5B315E;
}

.estiloSelectp1 {
    border-style: none;
    border-radius: 12px;
    background-color: white;
    border: 1px solid #5B315E;
    padding: 20px 30px;
    color: #522862;
    font-family: 'Barlow-Medium';
    font-weight: 500;
    letter-spacing: 0.245em;
    text-transform: uppercase;
}

#input_peso {
    width: 30%;
}

#btn_guardar {
    margin: 20px 0;
}

.downp1 {
    width: 100%;
}

.fondo_datos {
    width: 100%;
    position: absolute;
    z-index: -1;
}

.fondo1 {
    width: 100%;
    height: 135vh; 
}

.caracol1 {
    position: absolute;
    left: -40px;
    bottom: 25%;
}

#cont_p1 {
    width: 70%;
    margin: auto;
    padding: 200px 0 100px 0;
}

#align_contp1 {
    display: flex;
    justify-content: space-between;
}

.tuServ {
    width: 20%;
    background-color: #522862;
    border-radius: 24px;
    box-shadow: -1px 0px 28px -1px rgba(131, 102, 169, 0.15);
    padding: 40px;
    height: 690px;
}

.caractServ {
    display: flex;
    align-items: center;
}

.caractServ img {
    width: 15px;
    margin-right: 15px;
}

.caractServ p {
    font-family: 'Barlow-Regular';
    font-weight: 400;
    color: white;
}

/**** Div Plan ***/

.detalleServ {
    width: 65%;
    border-radius: 24px;
    background: white;
    box-shadow: -1px 0px 28px -1px rgba(131, 102, 169, 0.15);
    overflow: hidden;
    padding-bottom: 60px;
    height: 470px;
}

#head_det {
    background-color: #522862;
    display: flex;
    justify-content: space-between;
    padding: 0 50px;
    align-items: center;
}

#head_det p {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: white !important;
}

#tit_det {
    letter-spacing: 0.305em;
    font-size: 1.1em;
}

#num_det {
    font-size: 1.5em;
}

#num_det span {
    font-size: 1.7em;
    margin-left: 10px;
}

.acomp {
    width: 70%;
    margin: auto;
}

.subtit_det {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    letter-spacing: 0.305em;
    font-size: .9em;
    margin: 30px 0;
    text-transform: uppercase;
}

.acomp label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    margin: 30px 0;
    cursor: pointer;
    position: relative;
}

.acomp input {
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.estiloRadio {
    width: 20px;
    height: 20px;
    border: 1px solid #522862;
    border-radius: 100%;
    margin-right: 16px;
    position: relative;
}

.estiloRadio::before,
.estiloRadio::after {
    content: "";
    display: block;
    width: inherit;
    height: inherit;
    border-radius: inherit;
    position: absolute;
    transform: scale(0);
    transform-origin: center center;
}

.estiloRadio:before {
    background: #522862;
    opacity: 0;
    transition: .3s;
}

input:checked+.estiloRadio::before {
    opacity: 1;
    transform: scale(.8);
}

.txtPasos {
    color: #522862;
    font-family: 'Barlow-Medium';
    font-weight: 500;
    font-size: .9em;
}

.linep1 {
    border: 1px solid rgba(82, 40, 98, 0.22);
    margin: 30px auto;
    width: 82%;
}

.desp {
    width: 70%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

#align_switch {
    display: flex;
    align-items: center;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 26px;
    margin: 0 20px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 19px;
    width: 19px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #522862;
}

input:focus+.slider {
    box-shadow: 0 0 1px #522862;
}

input:checked+.slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.btns-serv {
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}


/***************** PASOS PLAN (end)******************/





/***************** FOOTER ******************/

#footer_cut {
    padding-top: 50px;
    clear: both;
}

footer {
    /* margin-top: -50px;
    height: 50px; */
}

.sec-form {
    width: 100%;
    height: auto;
}

.ct-contacto {
    width: 80%;
    margin: auto;
    display: flex;
    flex-direction: column;
}

#figuras-c1,
#figuras-c2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
    position: relative;
}

.contact-o {
    width: 26px;
    height: 27px;
    border-radius: 50%;
    background-color: #522862;
}

#fondo_contact {
    background-image: url(../../_images/_svg/fondo_contact.svg);
    background-repeat: no-repeat;
    background-size: contain;
    height: 900px;
    background-position: center;
    width: 100%;
}

#pf1 {
    position: absolute;
    transform: rotate(285deg);
    width: 7vw;
    top: 150px;
}

#pf2 {
    position: absolute;
    right: 150px;
    top: 0px;
    width: 9vw;
    transform: rotate(342deg);
}

.formulario {
    width: 90%;
    margin: auto;
}

#fpunto {
    position: absolute;
    bottom: 170px;
    left: 80px;
}

#pf3 {
    position: absolute;
    right: 250px;
    bottom: 90px;
    width: 7vw;
    transform: rotate(12deg);
}


/**************/

.form {
    width: 40%;
    margin: auto;
    position: relative;
    top: 70px;
    left: -30px;
}

#title-contact {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: auto;
}

#title-contact img {
    width: 10vw;
    margin: auto;
}

#title-contact h1 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: white;
    font-size: 2.3em;
    letter-spacing: 0.235em;
    text-transform: uppercase;
    text-align: center;
}

#formC {
    margin: 20px auto;
    width: 70%;
}

.align-inputs {
    display: flex;
    justify-content: space-between;
}

.estiloInputC {
    background-color: rgba(210, 203, 255, .4);
    border-style: none;
    width: 42%;
    margin: 10px 0;
    padding: 15px;
    font-family: 'Barlow-Medium';
    font-weight: 500;
    color: white;
    outline: none;
    font-size: 1.1rem;
}

#formC input::placeholder,
#formC textarea::placeholder {
    color: rgba(255, 255, 255, .4);
}

.estiloTextarea {
    width: 95%;
    background-color: rgba(210, 203, 255, .4);
    border-style: none;
    margin: 10px 0;
    padding: 15px;
    font-family: 'Barlow-Medium';
    font-weight: 500;
    color: white;
    outline: none;
    font-size: 1.1rem;
    height: 80px;
}

.check {
    display: flex;
    align-items: center;
    margin: 30px 40px;
}

.estiloCheck {
    margin: 0 30px 0 0px;
}

input[type="checkbox"]+label {
    font-family: 'Barlow-Medium';
    font-weight: 500;
    color: white;
    font-size: 1.1rem;
}

input[type="checkbox"]+label:before {
    content: "";
    width: 26px;
    height: 26px;
    float: left;
    margin-right: 30px;
    background: rgba(210, 203, 255, .4);
}

input[type="checkbox"]:checked+label:before {
    background: rgb(163, 84, 194);
}

input[type="checkbox"] {
    display: none;
}

#btn-contact {
    padding: 20px 30px;
    margin: auto;
    position: relative;
    left: -20px;
}


/***********/

.sec-footer {
    width: 100%;
    height: auto;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    font-family: 'Barlow-Medium';
    font-weight: 500;
}

#korimi-f {
    width: 12%;
    margin-left: 5%;
}

.footer-cat {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#align-footer {
    width: 70%;
    display: flex;
    align-items: flex-start;
    margin-left: 5%;
    justify-content: space-between;
    padding: 30px 0;
    z-index: 1;
}

#cat-f {
    width: 30%;
    position: relative;
}

#cat-f img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.colum-footer {
    width: 30%;
    display: flex;
    flex-direction: column;
}

.colum-footer h2 {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #202C4C;
    letter-spacing: 0.065em;
    font-size: 1.5em;
}

.colum-footer p {
    line-height: 2;
    font-size: 1.1em;
    margin: 0;
    color: #202C4C;
}

.colum-footer span {
    color: #522862;
}

#btn-footer {
    width: 170px;
    margin: 30px 0;
}

#colina-f {
    width: 60%;
}

.enlaces-korimi {
    display: flex;
    flex-direction: column;
    /* height: 200px; */
}

.enlaces-korimi a {
    color: rgba(32, 44, 76, .5);
    font-size: 1.1em;
    margin-bottom: 10px;
}

.enlaces-korimi a:hover {
    color: #202C4C;
}

.redes-footer {
    width: 80%;
    display: flex;
    justify-content: space-between;
    position: relative;
    top: 90px;
}

#derechos {
    background-color: #522862;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

#derechos p {
    font-family: 'Poppins-Medium';
    color: white;
}


/***************** FOOTER (end) ******************/


/** AVISO DE PRIVACIDAD / TERMINOS Y CONDICIONES **/

.sec-txt {
    width: 100%;
    height: auto;
    font-family: 'Barlow-Regular';
    color: #202C4C;
    padding-top: 150px;
}

.align-txt p,
.align-txt ul,
.align-txt ol {
    width: 90%;
    margin: 10px auto;
    font-size: 1.2em;
}

.align-txt h1 {
    width: fit-content;
    margin: 45px auto;
    font-family: 'Barlow-Bold';
    font-weight: 700;
    color: #522862;
    font-size: 3em;
}

.align-txt h6 {
    width: 90%;
    margin: auto;
    font-family: 'Barlow-Bold';
    font-weight: 400;
    color: #522862;
    font-size: 1.5em;
    margin-bottom: 0px;
}

.align-txt a {
    font-family: 'Barlow-Medium';
    color: #522862;
    text-decoration: underline;
}


/****************** SITEMAP *******************/

.sitemap {
    height: 500px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 230px 150px 0px;
    font-family: 'Barlow-Medium';
    font-weight: 500;
}

.sitemap a {
    color: #202C4C;
}

.sitemap a:hover {
    color: rgba(32, 44, 76, .5);
}

.divp {
    width: 30%;
}

.divh {
    width: 50%;
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    line-height: 1.5;
}

.sitemap .a-titulo:hover {
    text-decoration: none;
}

.a-titulo {
    font-family: 'Barlow-Bold';
    font-weight: 700;
    font-size: 1.3em;
    margin-bottom: 15px;
    width: fit-content;
    position: relative;
    text-decoration: none;
    color: #522862 !important;
}

.a-titulo::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 4px;
    border-radius: 4px;
    background-color: #522862;
    bottom: 0;
    left: 0;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform .3s ease-in-out;
}

.a-titulo:hover::before {
    transform-origin: left;
    transform: scaleX(1);
}

/* ====== O P E N P A Y ====== */ 

.logopenpay {
    display: flex;
    width: 100%;
    justify-content: center;
    margin: 50px auto 30px;
}

.logopenpay p {
    color: black;
    font-family: 'Barlow-Medium';
    font-size: .9em;
    margin: 0 auto 15px auto;
    width: 95%;
}

.logopenpay hr {
    border: 1px solid #dcdcdc;
    height: 90px;
    background-color: transparent !important;
    width: unset !important;
    margin: 0 50px;
}

.logopenpay .credito div {
    display: flex;
    align-items: center;
    justify-content: left;
}

.logopenpay .credito div img:nth-child(1) {
    width: 60px;
}

.logopenpay .credito div img:nth-child(2) {
    width: 70px;
}

.logopenpay .credito div img:nth-child(3) {
    width: 40px;
    margin: 0 15px 0 0;
}

.logopenpay .credito div img:nth-child(4) {
    width: 45px;
}

.logopenpay .debito div {
    display: flex;
    align-items: center;
}

.logopenpay .debito div img:nth-child(1) {
    width: 120px;
    margin-right: 20px;
}

.logopenpay .debito div img:nth-child(2) {
    width: 100px;
    margin-right: 20px;
}

.logopenpay .debito div img:nth-child(3) {
    width: 70px;
    margin-right: 20px;
}

.logopenpay .debito div img:nth-child(4) {
    width: 100px;
    margin-right: 20px;
}