/* sweet alert custom */
.alertButton{
    font-family: Quicksand !important;
    background-color: #883B57;
    color: #ffb762;
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    display: block;
    font-weight: 900;
    font-size: 15px;
    transition: background-color 0.5s ease, color 0.5s ease;
}

.alertButton:hover{
    background-color: #9B2E56;
    color: #FFFFFF;
}

.alert-title,
.alert-text,
.swal2-html-container.alert-text {
    font-family: Quicksand !important;
    color: #883B57;
}

.custom-icon-container {
    border: none !important;
}


@font-face {
    font-family: 'Quicksand';
    src: url('../fonts/Quicksand-Regular.ttf');
    font-display: swap;
}

@font-face {
    font-family: 'Quicksand-Bold';
    src: url('../fonts/Quicksand-Bold.ttf');
    font-weight: bold;
    font-style: normal;
}

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

html {
    scroll-behavior: smooth
}

button {
    color: #883B57;
    font-size: 16px; 
    border: none; 
    border-radius: 4px;
    cursor: pointer; 
    padding: 5px;
    font-family:Quicksand !important;
}

a, ul{
    text-decoration: none;
    list-style: none;
    color:#883B57;
    font-family:Quicksand !important;
}

h1{
    font-family:Quicksand !important;
    font-size: 55px;
    letter-spacing: 2px;
}

h2  {
    font-family:Quicksand-Bold !important;
    font-size: 25px;
    color: #883B57;
    padding: 5px;
}

h3 {
    font-family:Quicksand !important;
    font-size: 40px;
    color: #DBA05B;
    padding-top: 10px;
    letter-spacing: 2px;
}

p {
    font-family:Quicksand !important;
    font-size: 17px;
    color: #883B57;
}

.m-container {
    margin: auto;
    width: 100%;
    max-width: 1170px;
    height: inherit;
    padding: 0 5px;
}

.sabermas-boton{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #883B57;
    color: #ffb762;    
    width: 100px;
    text-align: center;
    justify-content: center;
    align-items: center;
    margin: auto;
    margin-bottom: 30px;
}

.sabermas-boton:hover{
    background-color: #ffb762; 
    color: #9B2E56;
    -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
    transform: scale(1.1);
}

/* nav-bar*/

nav {
    background-color: #9B2E56;
    height: 80px;
    width: 100%;
    position: fixed;
    z-index: 1000;
    -webkit-box-shadow: 0 0 5px rgba(74, 74, 74, 0.8);
            box-shadow: 0 0 5px rgba(74, 74, 74, 0.8);
}

.nav-container{
    height: 80px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}


.menu-toggle{
    display: none;
}

.nav-logo img {
    height: 60px;
}

.nav-options {
    list-style-type: none;
    margin: 0;
    padding: 0;
    position:relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    color:#FFFFFF;
    float: right;
    gap: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.nav-options a {
    display: block;
    color: #ffb762;
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-options a:hover {
    background-color: #FFFFFF;
    color: #883B57;
    border-radius: 6px; 
    font-family:Quicksand-Bold!important;
}

#servicios-toggle{
    cursor: pointer;
}

.nav-servicios:hover > .submenu {
    display: block;
}

.submenu {
    display: none;
    position: absolute;
    background-color:rgb(155, 46, 86);
    -webkit-box-shadow: 0 8px 16px rgba(0,0,0,0.2);
            box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    border-radius: 6px;
    padding:10px;
    z-index: 1;
    cursor: pointer;
}

.redes-sociales-nav img{
    height: 40px;
    width: 40px;
}

.redes-sociales-nav{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
}

/* banner video home */

.m-banner-video {
    height: 400px;
    width: 100%;
    position: relative;
    top: 80px;
}

.m-banner-video-maleta {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

video {
    width: 100%;
    height: 95%;
    -o-object-fit: cover;
       object-fit: cover;  
}

.m-banner-titulo{
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 1;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(128, 128, 128, 0.5);
}

.banner-titulo{
    letter-spacing: 10px;
    padding: 5px;
}

.slogan{
    letter-spacing: 2px;
    padding: 5px;
    font-size: 20px;
    color: #FFFFFF;
}

/*servicios*/ 
.m-nuestros-servicios{
    text-align: center;
    margin-top: 150px;
    margin-bottom: 100px;
}

.m-galeria{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-line-pack: distribute;
        align-content: space-around;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 50px 0px;
    gap: 80px;
}

.m-servicio-foto{
    margin-bottom: 20px;
}

.m-servicio {
    background-color: #DBA05B;
    border-radius: 6px;
    padding: 5px;
    height: 420px;
    cursor: pointer;
    transition: transform 0.3s ease; 
}

.m-servicio:hover {
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
            transform: scale(1.1);
}

.m-servicios-titulo{
    padding-bottom: 10px;
    padding-top: 20px;
}

.m-galeria img{
    height: 220px;
    width: 300px;
    border-radius: 4px;
}

.m-galeria-descripcion{
    padding: 10px;
    max-width: 300px;
    text-align: center;
}

/*foto Vania*/ 

.m-vania-container{
    background-color: #883B57;
    background-size: cover;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    gap: 40px;
}

.m-fotovania{
    padding: 20px;
}

.m-fotovania img{
    height: 400px;
    width: 400px;
    border-radius: 300px;
}

.m-sobrevania{
    padding-bottom: 50px;
    color: white;
    text-align: left;
}

.sobrevania-titulo{
    padding: 60px 0px 0px 25px;
    text-align: left;
    color: #ffb762;
}

.sobrevania-descripcion{
    padding: 25px;
    width: 500px;
    color: #ffb762;
    text-align: justify;
}

.sobrevania-boton{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ffb762; 
    float: right;
    margin-top: 20px;
    margin-right: 30px;
}

.sobrevania-boton:hover{
    background-color: #FFFFFF;
    color: #883B57;
    -webkit-box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
            box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
    -webkit-transition: background-color 0.3s ease, color 0.3s ease;
    -o-transition: background-color 0.3s ease, color 0.3s ease;
    transition: background-color 0.3s ease, color 0.3s ease;
    transform: scale(1.1);
}

.m-colaboracion-container{
    height: 150px;
    text-align: center;
    margin: auto;
}

.m-colaboracion{
    height: 100px;
    margin-top: 60px;
}

.colaboracion-logo{
    height: 70px;
}


/* footer */

footer {
    background-color: #DBA05B;
    padding: 20px 0;
}

.footer-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.footer-top{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 0.5px solid #883B57;
    padding-bottom: 10px;
    font-size: 13px;
}

.footer-redes-sociales ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 5px;
}

.iconos-redes {
    height: 30px;
    width: 30px;
}

.iconos-redes:hover{
    -webkit-box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
            box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    border-radius: 30px;
}

.footer-contacto{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
    font-size: 15px;
}

.footer-contacto li{
    padding-top: 2px;
}

.footer-logo img {
    height: 60px; 
}

.copyright{
    padding-top: 10px;
    text-align: center;
}

.copyright li {
    font-size: 12px;
} 


/* sobre nosotros página */

.sobre-mj{
    padding-top: 150px;
}
  
.sobre-nosotros-titulo{
    color: #FFFFFF;
    border-bottom: solid 1.5px #DBA05B;
    width: 50%;
    margin: 20px auto;
}

 .titulo-proposito{
    font-size: 12px;
}

 .valores-imagen{
    height: 280px;
    width: 280px;
}

.valores-content-empatia{
    background: url(../images/photos/valor_empatia.png) no-repeat;
    background-size: cover;
    height: 280px;
    width: 280px;
    border-radius: 9px;
    background-position:center;
    cursor: pointer;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease; 
    overflow: hidden;
}

.valores-content-vocacion{
    background: url(../images/photos/valor_servicio.png) no-repeat;
    background-size: cover;
    height: 280px;
    width: 280px;
    border-radius: 9px;
    background-position:center;
    cursor: pointer;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease; 
    overflow: hidden;
}

.valores-content-amor{
    background: url(../images/photos/valor_amor.png) no-repeat;
    background-size: cover;
    height: 280px;
    width: 280px;
    border-radius: 9px;
    background-position:center;
    cursor: pointer;
    -webkit-transition: -webkit-transform 1s ease;
    transition: -webkit-transform 1s ease;
    -o-transition: transform 1s ease;
    transition: transform 1s ease;
    transition: transform 1s ease, -webkit-transform 1s ease; 
    overflow: hidden;
}

.valores-content-amor:hover{
    background: url(../images/photos/amor_texto.png) no-repeat;
    background-size: cover;
    background-position: center;
    -webkit-transform: scaleX(-1) rotateY(180deg);
            transform: scaleX(-1) rotateY(180deg); 
}


.valores-content-empatia:hover{
    background: url(../images/photos/empatia_texto.png) no-repeat;
    background-size: cover;
    background-position:center;
    -webkit-transform: scaleX(-1) rotateY(180deg);
            transform: scaleX(-1) rotateY(180deg); 
}

.valores-content-vocacion:hover{
    background: url(../images/photos/servicio_texto.png) no-repeat;
    background-size: cover;
    background-position:center;
    -webkit-transform: scaleX(-1) rotateY(180deg);
            transform: scaleX(-1) rotateY(180deg); 
}

 .valores-content-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 10px;
}

.valores-titulo{
    text-align: center;
    padding: 20px;
    background-color: #883B57;
    max-width: 860px;
    margin: auto;
    margin-bottom: 10px;
}

.valores-content-morado{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    height: 280px;
    width: 280px;
    max-width: 100%;
    border-radius: 9px;
    background-color: #883B57;
    padding: 10px;
}

.valores-content-morado p{
    color: white;
}

.sobre-mi-container{
    padding-top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.sobre-mi-container-2{
    padding-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
}

.sobre-mi-titulo{
    text-align: left;
}

.sobre-mi-descripcion{
    max-width: 500px;
    text-align: justify;
    padding:30px 10px;
    -ms-flex-pack: distribute;
        justify-content: space-around;
}

.sobre-mi-foto{
    height: 500px;
    width: 450px;
    border-radius: 6px;
}

/* contacto página */

label{
    font-family: 'Quicksand-Bold'!important;
    color: #883B57;
}

.pag-contacto {
    padding-top: 150px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 100px;
}

.pag-contacto-subtitulo{
    padding-top: 20px;
    text-align: center;
}

form{
    margin-top: 50px;
    color: #483d3d;
    font-family: MemoriesAngular-yrB5;
}

.form-sections{
    padding-bottom: 40px;
}

.name_lname, .phone_question{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap:30px;
    letter-spacing: 0.5px;
   
}

.name_lname input {
    border-radius: 6px;
    border: .5px solid #b2b0ae;
    width: 150px;
    height: 30px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

input, select {
    border-radius: 6px;
    border: .5px solid #b2b0ae;
    width: 150px;
    height: 30px;
    margin-top: 10px;
    color:#883B57;
    font-family: 'Quicksand'!important;
}

#email{
    border-radius: 6px;
    border: .5px solid #b2b0ae;
    width: 330px;
    height: 30px;
    margin-top: 10px;
}

textarea{
    border-radius: 6px;
    border: .5px solid #b2b0ae;
    width: 330px;
    max-width: 330px;
    margin-top: 10px;
    color:#883B57;
    font-family: Quicksand!important;
}

.form-sections ::-webkit-input-placeholder{
    color: #883B57;
    font-family: Quicksand!important;
}

.form-sections ::-moz-placeholder{
    color: #883B57;
    font-family: Quicksand!important;
}

.form-sections :-ms-input-placeholder{
    color: #883B57;
    font-family: Quicksand!important;
}

.form-sections ::-ms-input-placeholder{
    color: #883B57;
    font-family: Quicksand!important;
}

.form-sections ::placeholder{
    color: #883B57;
    font-family: Quicksand!important;
}

.contactForm-send{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #883B57;
    color: #DBA05B;
    margin: auto;
    cursor: pointer;
    height: 30px;
    width: 80px;
    font-size: 16px;
}

.contactForm-send:hover{
    background-color: #DBA05B;
    color: #883B57;
}

.msg-formulario-enviado{
    text-align: center;
}

/* psicoterapia página */

.sobre-psicoterapia{
    padding: 110px 0px;
}

.titular-psicoterapia{
    padding-bottom: 20px;
}

.descripción-psicoterapia{
    line-height: 1.5;
    margin-bottom: 5px;
}

.psicoterapia-galeria{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.titular-subtitulo-psicoterapia-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
}

.p-psicoterapia-galeria{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-top: 30px;
}

.servicio-psicoterapia{
    margin:20px;
    background-color: #eaeaea;
    border-radius: 6px;
    min-height: 100%;
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 20px;
    -webkit-box-pack: space-between;
        -ms-flex-pack: space-between;
            justify-content: space-between;
    text-align: center;
}

.servicios-psicoterapia-photo{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 300px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.titulo-contenido-psicoterapia{
    padding: 25px;
}

/* búsqueda de empleo página */

.video-empleo-responsive{
    display: none;
}

.sobre-empleo-titulo, .sobre-empleo-subtitulo{
    padding-bottom: 20px;
}

.titular-subtitulo-empleo-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
    margin-top: 120px;

}

.empleo-galeria{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.e-galeria{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: distribute;
        align-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding-bottom: 40px;
}

.servicio-numero{
    height: 50px;
}

.servicio-empleo{
    margin:20px;
    background-color: #eaeaea;
    height: 520px;
    border-radius: 6px;
    width: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: space-between;
            flex-wrap: nowrap;
}

.servicio-empleo-list li{
    color: #883B57;
    padding-top: 5px;
    font-size: 17px;
    padding-bottom: 2px;
    padding-bottom: 10px;
}

.video-empleo-container{
    padding-top: 80px;
    display: block;
    overflow: hidden;
    width: 450px;
    margin: 0;
    -webkit-transform: scaleX(-1);
        -ms-transform: scaleX(-1);
            transform: scaleX(-1);
}

.video-empleo {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;  
}

.servicio-empleo-photo{
    height: 200px;
    width: 100%;
    border-radius: 4px;
}

/* asesoría legal */

.video-asesoria-container {
    padding-top: 80px;
    display: block;
    overflow: hidden;
    min-height: 620px;
    width: 500px;
    margin: 0;
    -webkit-transform: scaleX(-1) reverse;
        -ms-transform: scaleX(-1) reverse;
            transform: scaleX(-1) reverse; 
    position: relative;
}

.video-asesoria {
    height: 100%;
    width: 500px;
    -o-object-fit: cover;
       object-fit: cover; 
    position: absolute;
    right: 0;
}

.asesoria-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
}

.sobre-asesoria {
    width: 500px;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.asesoria-legal-titulo{
    text-align: center;
    padding: 10px;
    margin-top: 100px;
}

.texto-descriptivo-legal{
margin-top: 15px;
line-height: 1.5;
margin-bottom: 20px;
}

.icon-legal{
    height: 40px;
    width: 40px;
}

.titulo-icono-legal{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
}

/* circulo mujeres pág */

.sobre-circulo-mujeres {
    padding-top: 90px;
    text-align: center;
}

.circulo-mujeres-titulo{
    padding-bottom: 10px;
}

.circulo-mujeres-descripcion{
    padding-bottom: 20px;

}

.c-circulo-mujeres-galeria{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 40px;
}

.servicio-circulo-mujeres{
    margin:20px;
    background-color: #eaeaea;
    border-radius: 6px;
    min-height: 100%;
    width: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 20px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    text-align: center;
    padding:25px;
}

.titulo-caracteristicas-circulo-mujeres{
    margin-top: 30px;
    margin-bottom: 30px;
}

/* charlas y talleres */

.charlas-talleres-container{
    display: flex;
}

.talleres-galeria{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-line-pack: distribute;
        align-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    margin-bottom: 50px;
}

.video-talleres-container{
    width: 350px;
}

video.video-talleres {
    width: 350px;
    height: 100%;
}

.video-talleres-container-responsive{
    display: none;
}

.charlas-column-container{
    display: flex;
    flex-direction: row;
    align-content: space-between;
    justify-content: space-around;
    flex-wrap: wrap;
}

.charlas-column{
        margin:10px;
        background-color: #eaeaea;
        min-height: 460px;
        border-radius: 6px;
        width: 280px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding-top: 10px;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: space-between;
                flex-wrap: nowrap;
}

.charlas-column-description{
    padding: 20px;
}

.photos_charla{
    width: 280px;
    height: 200px;
    text-align: center;
}

.sobre-charlas{
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-around;
    align-content: center;
}

.sobre-charlas-titulo{
    padding-bottom: 10px;
    padding-top: 140px;
}

.descripcion-sobre-charlas-titulo{
    padding: 0px 50px;
    max-width: 900px;
}

@media screen and (max-width: 780px){

     /*charlas y talleres pag */

     .charlas-talleres-container{
        -ms-flex-wrap: wrap-reverse;
            flex-wrap: wrap-reverse;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
     }

    .sobre-charlas{
        padding-bottom: 20px;
        padding-left: 20px;
    }
    
    /*empleo pag */

    .empleo-galeria{
        padding-bottom: 50px;
    }

    .menu-toggle{
        display: block;
        height: 50px;
        float: right;
        cursor: pointer;
        position: relative;

    }

    .menu-toggle:hover{
        -webkit-box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
                box-shadow: rgba(0, 0, 0, 0.2) 0px 7px 29px 0px;
        border-radius: 100%;
    }

    .menu-toggle img {
        width: 30px;
        height: 30px;
    }

    .nav-options{
        display: none;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: #883B57;
        width: 100%;
        height: 100vh;
        gap: 0px;
    }

    .nav-options.active {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        padding-top: 30%;
        font-size: 30px;
    }    

    .nav-options a {
        padding-bottom: 0px;
        text-align: left;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        color: #ffb762;
    }
    
    .nav-options a:hover{
       color: #FFFFFF;
       background-color: transparent;
       -webkit-transition: color 0.3s ease;
       -o-transition: color 0.3s ease;
       transition: color 0.3s ease;
    }

    .nav-options li {
        margin: 10px 0;
        position: relative;
    }
    
    .submenu a {
        position: relative;
        padding: 5px;
        display: block;
        color: #ffb762;
        text-decoration: none;
        font-size: 18px;
        width: 200px;
    }

    .submenu a:hover {
        color:#FFFFFF;
        -webkit-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
        transition: color 0.3s ease;
    }

    .submenu.active {
        position: static;
        margin-left: 50px;
        background-color: #883B57;
        padding: 0;
        border-radius: 0;
        -webkit-box-shadow: none;
                box-shadow: none;
    }

    .submenu li:not(:last-child){
        border-bottom: 0;
    } 

    .sobrevania-titulo {
    padding-top:0;
    }

    .m-fotovania{
        padding-top: 40px;
        padding-bottom: 0px;
    }
}


@media screen and (max-width: 1348px) {

    /* empleo */

    .video-empleo-container{
        display: none;
    }

    .video-empleo-responsive{
        display: block;
        height: 300px;
        padding-top: 80px;
    }
    

    /* charlas y talleres */

    .video-talleres-container{
    display: none;
    }

    .video-talleres-container{
        width: 420px;
        height: 780px;
    }

    .video-talleres-container-responsive{
        display: block;
        height: 400px;
    }

    .sobre-charlas-titulo{
        padding-top: 40px;
    }
}


@media screen and (max-width: 430px) {

/*home*/    
    .m-fotovania img {
        height: 300px;
        width: 300px;
    }

    .sobrevania-titulo{
        width: 400px;
        margin: auto;
        padding: 0px 50px;
    }

    .sobrevania-descripcion{
        padding: 20px 100px;
    }

    .sobrevania-boton{
        float: none;
        margin: auto;
    }

/* sobre mi */ 

.sobre-mi-foto{
    width: 350px;
    height: 50%;
}


/* asesoria en extranjería*/

    .sobre-asesoria{
        width: 350px;
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .video-asesoria{
        display: none;
    }

    .video-asesoria-container {
        display: none;
    }


/* charlas y talleres*/

    .sobre-charlas-titulo{
        padding: 0px;
        margin-top: 20px;
        font-size: 35px;
    }

    .descripcion-sobre-charlas-titulo{
        padding: 20px;
    }

}