/*
 * Custom code goes here.
 * A template should always ship with an empty custom.css
 */
* {
  font-family: Lato;
}

@media (max-width: 480px) {
      #leo_search_block_top #leosearchtopbox {
        right: -60px; }
}
.ApColumn .title_block {
    z-index: 1;
}

.popup-over .popup-content{
    left: inherit;
    right: 0;
}

 /**** Thumbs home page ****/   
    
/* Parent Container */
.content_img{
 position: relative;
 width: 230px;
 height: 230px;
 margin-right: 10px;
}
.content_img-dual_line{
 position: relative;
 width: 230px;
 height: 230px;
 margin-right: 10px;
}

/* Child Text Container */
.content_img div{
 font-family: 'Lato', sans-serif;
 position: absolute;
 text-align:center;
 bottom: 0;
/** right: 20px;**/
margin-right: 10px;
 font-weight: 700; /* bold */
 font-size: 22px;
 color: white;
 margin-bottom: 180px;
 width: 230px;
}

/* Child Text Container */
.content_img-dual_line div{
 font-family: 'Lato', sans-serif;
 position: absolute;
 text-align:center;
 bottom: 0;
/** right: 20px;**/
 margin-right: 20px;
 margin-top: 5px;
 font-weight: 700; /* bold */
 font-size: 22px;
 color: white;
 margin-bottom: 170px;
 width: 230px;
}

/* Hover on Parent Container */
.content_img:hover {
 cursor: pointer;
}

.content_img-dual_line:hover{
 cursor: pointer;
}

.content_img:hover div{
 margin-bottom: 180px;
 text-align:center;
 bottom: 0;
/** right: 20px;**/
margin-right: 10px;
 font-weight: 700; /* bold */
 font-size: 22px;
 width: 230px;
 visibility: visible;
 opacity: 0.7; 
}

.content_img-dual_line:hover div{
 margin-bottom: 170px;
 text-align:center;
 bottom: 0;
/** right: 20px;**/
margin-right: 10px;
margin-top: 10px;
 font-weight: 700; /* bold */
 font-size: 22px;
 width: 230px;
 visibility: visible;
 opacity: 0.7; 
}

 /**** End Thumbs home page ****/


/* -----------------> can start accordion style copy from here ------------------------*/

.accordion-bral {
  min-height: 0;
  min-width: 250px;
  width: 100%;
  height: 100%;
  background-color: #FFF;
  margin: 0px!important;
}
.accordion-bral .ac-label {
  font-family: Arial, sans-serif;
  padding: 5px 20px;
  position: relative;
  display: block;
  height: auto;
  cursor: pointer;
  color: #777;
  line-height: 33px;
  font-size: 19px;
  background: #efc00d;
  border: 1px solid #f1f1f1;
}
.accordion-bral .ac-label:hover {
  background: #777;
  color: #efc00d;
}
.accordion-bral input + .ac-label  {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion-bral input:checked + .ac-label,
.accordion-bral input:checked + .ac-label:active {
  background-color: #efc00d;
  color: #000;
  box-shadow: 0px 0px 0px 1px rgba(155, 155, 155, 0.3), 0px 2px 2px rgba(0, 0, 0, 0.1);
}
.accordion-bral input.ac-input {
  display: none;
}
.accordion-bral .article {
  background: rgb(240, 240, 240);
  overflow: hidden;
  height: 0px;
  max-height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.accordion-bral .article p {
  color: #777;
  line-height: 23px;
  font-size: 14px;
  padding: 20px;
}
.accordion-bral input:checked ~ .article i {
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
.accordion-bral input:checked ~ .article.ac-content {
  height: auto;
}

.accordion-bral i {
  position: absolute;
  transform: translate(-30px, 0);
  margin-top: 16px;
  right: 0;
}
.accordion-bral input:checked ~ .ac-label i:before {
  transform: translate(2px, 0) rotate(-45deg);
}
.accordion-bral input:checked ~ .ac-label i:after {
  transform: translate(-2px, 0) rotate(45deg);
}
.accordion-bral i:before, .accordion-bral i:after {
  content: "";
  position: absolute;
  background-color: #000000;
  width: 3px;
  height: 9px;
}
.accordion-bral i:before {
  transform: translate(-2px, 0) rotate(-45deg);
}
.accordion-bral i:after {
  transform: translate(2px, 0) rotate(45deg);
}
ul.ac-list {
  padding-left: 40px;
  list-style-type: disc;  
}

table.ac-table {
  margin: 20px 0 20px 20px;
}
table.ac-table th{
  text-align: left;
}

@media (max-width: 550px) {
  .accordion-bral .ac-label {
  font-family: Arial, sans-serif;
  padding: 5px 20px;
  position: relative;
  display: block;
  height: auto;
  padding-right: 40px;
  cursor: pointer;
  color: #777;
  line-height: 33px;
  font-size: 19px;
  background: #EFEFEF;
  border: 1px solid #CCC;
}
  .accordion-bral i {
  position: absolute;
  transform: translate(-30px, 0);
  margin-top: 2%;
  right: 0;
}
}
/* ---------- accordion style end --------------------------------------- */


/************* Color Tab Productos ------------*/
.tab-productos {
  background-color: #dfe0e4;
}

/************* Header title ------------*/
    .header-memosa {
        height: 50px;
        background-color: #fbdd00;
        transform: translateY(-10%);
    }

    .header-memosa p {
        font-size: calc(0.9em + 0.5vw);
        font-family: Lato, sans-serif;
        text-align: center;
        font-weight: bold;
    }

.title-line-yellow {
    font-size: 25px;
    font-weight: 700;
    border-bottom: 5px solid #EEC00A;
    display: inline-block;
    padding-bottom: 5px;
    color: #000000;

}

.border-radius-cms {
    border-radius: 10px;
    background-color: #efc00d;
}

.border-radius-cms-cat {
    border-radius: 10px;
    background-color: #e9e4de;
}

.border-radius-cms-clients {
    border-radius: 10px;
    background-color: #f7f6f4;
}

.border-radius-cms-categorias{
    border-radius: 10px;
    background-color: #f3f3f3;
}

.li_L1 a:link {
  color: #000;
  background-color: transparent;
  text-decoration: none;
}

.li_L1 a:hover {
  color: #fff;
  background-color: transparent;
  text-decoration: none;
}

.title-theme-gws {
  text-align: center;
  font-weight: 900;
  font-size: 16px;
}

.testi-img-gws {
display: flex;
justify-content: center;
}


.slider-cms-gws {
    position: relative;
    max-width: 1920px;
    width: 100%;
    height: 500px;
}

.slider-cms-gws ul {
	display: flex;
	padding: 0;
	width: 400%;
	
	animation: cambio 15s infinite alternate linear;
}

.slider-cms-gws li {
	width: 100%;
	list-style: none; 
}


@media (min-width: 768px) and (max-width: 991px) {
.slider-cms-gws h2 {
      position: absolute;
	  text-align:center;
	  font-size:4vw; 
	  color:#fff; 
	  font-weight: 900;
	  max-width: 1920px;
	  width: 100%;
	  height: 500px;
	  top: 50%;
	  transform: translateY(-50%);
}
.slider-cms-gws p {
      position: absolute;
	  text-align:center;
	  font-size:1.3vw; 
	  color:#eeeee9; 
	  font-weight: 600;
	  max-width: 1920px;
	  width: 100%;
	  height: 300px;
	  top: 40%;
	  transform: translateY(-40%);
}

@media (min-width: 992px) and (max-width: 1199px) {
.slider-cms-gws h2 {
      position: absolute;
	  text-align:center;
	  font-size:4vw; 
	  color:#fff; 
	  font-weight: 900;
	  max-width: 1920px;
	  width: 100%;
	  height: 500px;
	  top: 50%;
	  transform: translateY(-50%);
}
.slider-cms-gws p {
      position: absolute;
	  text-align:center;
	  font-size:1.3vw; 
	  color:#eeeee9; 
	  font-weight: 600;
	  max-width: 1920px;
	  width: 100%;
	  height: 200px;
	  top: 40%;
	  transform: translateY(-40%);
}

@media (min-width: 1200px) {
.slider-cms-gws h2 {
      position: absolute;
	  text-align:center;
	  font-size:4vw; 
	  color:#fff; 
	  font-weight: 900;
	  max-width: 1920px;
	  width: 100%;
	  height: 500px;
	  top: 50%;
	  transform: translateY(-50%);
}
.slider-cms-gws p {
      position: absolute;
	  text-align:center;
	  font-size:1.3vw; 
	  color:#eeeee9; 
	  font-weight: 600;
	  max-width: 1920px;
	  width: 100%;
	  height: 100px;
	  top: 40%;
	  transform: translateY(-40%);
}
}

.slider-cms-gws img {
	width: 100%;
}

@keyframes cambio {
	0% {margin-left: 0;}
	20% {margin-left: 0;}
	
	25% {margin-left: -100%;}
	45% {margin-left: -100%;}
	
	50% {margin-left: -200%;}
	70% {margin-left: -200%;}
	
	75% {margin-left: -300%;}
	100% {margin-left: -300%;}
}

.gws-button{background:#7f8c8d;color:#fff;display:inline-block;font-size:1.25em;margin:20px;padding:10px 0;text-align:center;width:200px;text-decoration:none;box-shadow:0px 3px 0px #373c3c;background:#feb501;box-shadow:0px 3px 0px #fff;width:350px;border-radius:50px;}
.gws-button:hover{box-shadow:0px 0px 0px;padding-top:7px;}

.a.gws-button {
    background: #7f8c8d;
    color: #fff;
    display: inline-block;
    font-size: 1.25em;
    margin: 20px;
    padding: 10px 0;
    text-align: center;
    width: 200px;
    text-decoration: none;
    box-shadow: 0px 3px 0px #373c3c;
    background: #feb501;
    box-shadow: 0px 3px 0px #fff;
    border-radius: 50px;
    width: 350px;
}

#a.gws-button {
    background: #7f8c8d;
    color: #fff;
    display: inline-block;
    font-size: 1.25em;
    margin: 20px;
    padding: 10px 0;
    text-align: center;
    width: 200px;
    text-decoration: none;
    box-shadow: 0px 3px 0px #373c3c;
    background: #feb501;
    box-shadow: 0px 3px 0px #fff;
    border-radius: 50px;
    width: 350px;
}

.gws-button{background:#7f8c8d;color:#fff;display:inline-block;font-size:1.25em;margin:20px;padding:10px 0;text-align:center;width:200px;text-decoration:none;box-shadow:0px 3px 0px #373c3c;}
.gws-button span{ margin-right:10px;}
.gws-button.blue{background:#feb501;box-shadow:0px 3px 0px #fff;}
.gws-button.medium {width:350px;}
.gws-button.radius { border-radius:50px;}
.gws-button:hover {box-shadow:0px 0px 0px;padding-top:7px;}



/*Estilos de la galeria CMS*/

.baseGallery {
	width: 40%;
	margin: auto;
	list-style: none;
	padding: 10px;
	box-sizing: border-box;
	
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
}

.baseGallery li {
	margin: 10px;
}

.baseGallery img {
	width: 200px;
	height: 100px;
}

/*Estilos del modalGallery*/

.modalGallery {
	display: none;
}

.modalGallery:target {
	
	display: block;
	position: fixed;
	background: rgba(0,0,0,0.8);
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.modalGallery h3 {
	color: #fff;
	font-size: 30px;
	text-align: center;
	margin: 15px 0;
}

.imagenGallery {
	width: 100%;
	height: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.imagenGallery a {
	color: #fff;
	font-size: 40px;
	text-decoration: none;
	margin: 0 10px;
}

.imagenGallery a:nth-child(2) {
	margin: 0;
	height: 100%;
	flex-shrink: 2;
}

.imagenGallery img {
	width: 300px;
	height: 50%;
	max-width: 100%;
	border: 7px solid #fff;
	box-sizing: border-box;
}

.cerrar {
	display: block;
	background: #fff;
	width: 25px;
	height: 25px;
	margin: 15px auto;
	text-align: center;
	text-decoration: none;
	font-size: 25px;
	color: #efc00d;
	padding: 5px;
	border-radius: 50%;
	line-height: 25px;
}
/*Fin Estilos de la galeria CMS*/




#gallery{
    text-align: center;
    width:90%;
    margin:auto;
    padding:0px;
}
.box{
    box-sizing:padding-box;
    width:22%;
    float: left;
    border:1px solid #afafaf;
    margin:10px;
    box-shadow: 1px 1px 10px 1px rgba(0,0,0,0.5) ,1px 1px 10px 1px rgba(0,0,0,0.3);
    opacity:0.7;
}

.box img{
    width:100%;
    margin:0;
    padding:0;
    object-fit: cover;
    height: 315px;
}

#gallery .caption{
    padding:10px;
    margin:0;
    font-size: 20px;
    font-weight: bold;
}

#gallery .box:hover{
    opacity: 1;
    transition: transform 0.5s ease-in-out;
    z-index: 999999;
    transform:scale(1.05);
}

@media(max-width:830px){
    .box{
        width:29%;
    }
}
@media(max-width:637px){
    .box{
        width:42%;
    }
}
@media(max-width:450px){
    .box{
        width:100%;
    }
}


.center-img-footer {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}


.buttonYellow a {
    position: absolute;
    top:50%;
    background-color:#edb42c;
    color: #fff;
    border:none; 
    border-radius:10px; 
    padding:15px;
    min-height:30px; 
    min-width: 120px;
  }

.buttonYellow a:hover {
    background-color:#000;
     transition: 0.7s;
  }
.top-gws {
-webkit-transform:translate(0%, -5%);
}

.center-cms-ven {
  margin-left: auto;
  margin-right: auto;
}

.border4 {
  border-radius: 15px;
}


.buttonGWSce {
  background-color: #edb42c; /* Yellow */
  border: none;
  color: white;
  padding: 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  border-radius: 30px;
}

.buttonGWSce:hover {
  background-color:#000;
  transition: 0.7s;
 }

.rounded-bottom-cases {
    border-bottom-right-radius: 20.00rem;
    border-bottom-left-radius: 20.00rem;
}

.border5 {
  border-radius: 20px;
}

.border-radius-casos {
    border-bottom-left-radius:25px;
    border-bottom-right-radius: 25px;
}


/******************/
/* Botones What-Pho  */
/******************/

.wa-order-button {
    background: #25d366 !important;
    color: #ffffff !important;
    transform: translateY(0);
    text-decoration: none !important;
    outline: 0 !important;
    -webkit-box-shadow: 0 4px 7px 0 rgba(0,0,0,.25);
    -moz-box-shadow: 0 4px 7px 0 rgba(0, 0, 0, .25);
    box-shadow: 0 4px 7px 0 rgba(0,0,0,.25);
    transition: top .1s ease;
    -webkit-transition: top .1s ease;
	border-color: #edb42c;
	    width: 265px;
    font-family: 'Lato', sans-serif;
    border-color: #edb42c;
    line-height: 51px;
    height: 51px;
    font-size: 1.2em;
}

.wa-order-button:hover {
opacity: 0.7;
    border-color: #000;
}

.wa-order-thankyou:before, a.wa-order-checkout:before, .gdpr_wa_button_input:before, .wa-order-button:before, a.wa-shop-button:before {
    content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="%23fff" d="M3.516 3.516c4.686-4.686 12.284-4.686 16.97 0 4.686 4.686 4.686 12.283 0 16.97a12.004 12.004 0 01-13.754 2.299l-5.814.735a.392.392 0 01-.438-.44l.748-5.788A12.002 12.002 0 013.517 3.517zm3.61 17.043l.3.158a9.846 9.846 0 0011.534-1.758c3.843-3.843 3.843-10.074 0-13.918-3.843-3.843-10.075-3.843-13.918 0a9.846 9.846 0 00-1.747 11.554l.16.303-.51 3.942a.196.196 0 00.219.22l3.961-.501zm6.534-7.003l-.933 1.164a9.843 9.843 0 01-3.497-3.495l1.166-.933a.792.792 0 00.23-.94L9.561 6.96a.793.793 0 00-.924-.445 1291.6 1291.6 0 00-2.023.524.797.797 0 00-.588.88 11.754 11.754 0 0010.005 10.005.797.797 0 00.88-.587l.525-2.023a.793.793 0 00-.445-.923L14.6 13.327a.792.792 0 00-.94.23z"/></svg>')!important;
    color: #fff;
    font-size: inherit;
    font-weight: inherit!important;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: -4px;
    margin-top: -15px;
    width: .875em;
    height: auto;
}

.button-gws-wa {
    color: #fff;
    font-family: 'Lato', sans-serif;
    border-color: #f3f3f3;
    font-size: 1em;
    line-height: 15px;
    height: 51px;
    font-style: normal;
    font-weight: 400;
    background-color: #545e63;
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;
    letter-spacing: 1px;
    border-width: 1px;
    width: 265px;
}

.button-gws-wa:hover {
background-color: #edb42c;
}
/*********************/
/* Fin Botones What-Pho  */
/********************/


/***************************/
/*     Botones Escuela Nuetra     */
/***************************/

.myButtonPreescolar {
	background-color:#ff6600;
	border-radius:28px;
	border:1px solid #ff6600;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.myButtonPreescolar:hover {
	background-color:#de6b24;
}
.myButtonPreescolar:active {
	position:relative;
	top:1px;
}

        
.myButtonSecundaria {
	background-color:#00902e;
	border-radius:28px;
	border:1px solid #18ab29;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.myButtonSecundaria:hover {
	background-color:#53a825;
}
.myButtonSecundaria:active {
	position:relative;
	top:1px;
}

.myButtonPrimaria {
	background-color:#006dd2;
	border-radius:28px;
	border:1px solid #006dd2;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	padding:16px 31px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.myButtonPrimaria:hover {
	background-color:#318ee6;
}
.myButtonPrimaria:active {
	position:relative;
	top:1px;
}
/***************************/
/* Fin Botones Escuela Nuestra  */
/***************************/
