/*
Theme Name: UNOi 2024
Theme URI:
Author: rockin media
Autor URI: https://rockinmedia.es/
Description: Tema Wordpress
Version: 1.0
Tags: HTML5, CSS3, JavaScript
*/


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  body {
    padding: 0;
    margin: 0;
    font-family: 'objectivitybold', sans-serif;
    text-decoration: none;
    list-style: none;
    box-sizing: border-box;
    overflow-x: hidden;
  }
  
  /********************************** NAVBAR **********************************/
  
  ul {
    list-style: none;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: inherit;
  }
  button {
    border: none;
    background-color: transparent;
    cursor: pointer;
    color: inherit;
  }
  .btn {
    display: block;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 5px;
  }
  .icon {
    padding: 0.5rem;
    background-color: var(--light-grey);
    border-radius: 10px;
  }
  .logo {
    margin-right: 1.5rem;
  }
  .logo img{
    width: 85px;
    height: 85px;
  }
  #nav-menu {
    border-bottom: var(--border);
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .nav-link.active {
    color: #75B547;
    border-radius: 5px;
  }
  .container-nav-unoi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    column-gap: 2rem;
    height: 90px;
    padding: 1.2rem 3rem;
  }
  .menu {
    position: relative;
  }
  .menu-bar li{
    color: #fff;
  }
  .menu-bar li:first-child .dropdown {
    flex-direction: initial;
    min-width: 480px;
  }
  .menu-bar li:first-child ul:nth-child(1) {
    border-right: var(--border);
  }
  .menu-bar li:nth-child(n + 2) ul:nth-child(1) {
    border-bottom: var(--border);
  }
  .menu-bar .dropdown-link-title {
  }
  .slide-text-two{
    font-size: 1.1rem;
    width: 60%;
    margin: auto;
  }
  .menu-bar .nav-link {
    font-size: 1rem;
    font-weight: 100;
    letter-spacing: -0.6px;
    padding: 0.3rem;
    min-width: 60px;
    margin: 0 0.6rem;
    font-style: normal;
  }
  .menu-bar .nav-link:hover,
  .dropdown-link:hover {
    color: #75B547;
  }
  .nav-start,
  .nav-end,
  .menu-bar,
  .right-container,
  .right-container .search {
    display: flex;
    align-items: center;
  }
  .nav-start{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
  .nav-end{
    display: none;
  }
  .dropdown {
    display: flex;
    flex-direction: column;
    min-width: 230px;
    background-color: rgba(0,0,0,0.8);
    border-radius: 10px;
    position: absolute;
    top: 72px;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    transform: scale(0.97) translateX(-5px);
    transition: 0.1s ease-in-out;
    box-shadow: var(--shadow);
  }
  .dropdown.active {
    visibility: visible;
    opacity: 1;
    transform: scale(1) translateX(5px);
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  }
  .dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem 1rem 1rem 1rem;
    font-size: 0.95rem;
  }
  .dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.15rem;
  }
  .dropdown-link {
    display: flex;
    gap: 0.5rem;
    padding: 0.5rem 0;
    border-radius: 7px;
    transition: 0.1s ease-in-out;
    letter-spacing: -0.4px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  .dropdown-link:hover {
    transform: translateX(5px);
  }
  .dropdown-link p {
    font-size: 0.8rem;
    color: var(--medium-grey);
  }
  .right-container {
    display: flex;
    align-items: center;
    column-gap: 1rem;
  }
  .right-container .search {
    position: relative;
  }
  .right-container img {
    border-radius: 50%;
  }
  .search input {
    background-color: var(--ash);
    border: none;
    border-radius: 6px;
    padding: 0.7rem;
    padding-left: 2.4rem;
    font-size: 16px;
    width: 100%;
    border: var(--border);
  }
  .search .bx-search {
    position: absolute;
    left: 10px;
    top: 50%;
    font-size: 1.3rem;
    transform: translateY(-50%);
    opacity: 0.6;
  }
  .btn-edi-unoi{
    background: linear-gradient(to right, #16abe2, #75b547);
    padding: 8px;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    text-align: center;
  }
  .edi-padding{
    padding: 8px 40px;
    margin-top: 30px;
  }
  .btn-edi-unoi:hover {
    background: linear-gradient(to right, #16abe2, #75b547);
    color: #000;
  }
  .btn-edi-unoi::after {
    content: "";
    background: #fff;
    position: absolute;
    z-index: -1;
    padding: 4px;
    display: block;
    left: 0;
    right: 0;
    top: 100%;
    bottom: -100%;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
  .btn-edi-unoi:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
  .gi-button{
    background: linear-gradient(to right, #16abe2, #75b547);
    padding: 8px;
    width: 40%;
    color: #fff;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    text-align: center;
  }
  .gi-button:hover {
    background: linear-gradient(to right, #16abe2, #75b547);
    color: #fff;
  }
  .gi-button::after {
    content: "";
    background: #111;
    position: absolute;
    z-index: -1;
    padding: 8px;
    display: block;
    left: 0;
    right: 0;
    top: 100%;
    bottom: -100%;
  -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
  .gi-button:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
    #hamburger {
    display: none;
    padding: 0.1rem;
    margin-left: 1rem;
    font-size: 1.9rem;
    color: #fff;
  }
  
  /************************** BOTONES GENERALES **************************/
  
  .ov-btn-slide-bottom {
    background: #fff;
    color: #16ABE2;
    padding: 16px 20px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    overflow: hidden;
    display: inline-block;
    text-align: center;
  }
  .color-ov{
    background: #24ADD6 !important;
    margin-top: 20px;
    color: #fff;
  }
  .second-color-ov{
    background: #fff !important;
    margin-top: 20px;
    color: #75B547;
  }
  .ov-box{
    display: flex;
    justify-content: center;
  }
  .center-ov{
    margin: auto;
  }
  .ov-btn-slide-bottom:hover {
    color: #fff;
  }
  .ov-btn-slide-bottom::after {
    content: "";
    background: #111;
    position: absolute;
    z-index: -1;
    padding: 16px 20px;
    display: block;
    left: 0;
    right: 0;
    top: 100%;
    bottom: -100%;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
  .ov-btn-slide-bottom:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }

  .error-message {
    color: red;
    font-size: 0.8em;
  }

  .alert {
    position: fixed;
    right: 20px;             
    bottom: 50px;        
    background-color: #fff;
    color: #75b547;  
    font-weight: bold;        
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(20px);
    opacity: 0;
    margin: auto;
    width: auto;
    max-width: 60%;
    text-align: center;
}

.hidden {
    visibility: hidden;
}

.alert.show {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}


 
  
  /************************** HERO SLIDER **************************/
  
  #container-slider {
    position: relative;
    display: block;
    width: 100%;
    margin-top: -90px;
  }
  #slider {
    position: relative;
    display: block;
    width: 100%;
   /*  height: 100vh; */
    min-height: 700px;
  }
  #slider li {
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100%;
    height: 100%;
    display: block;
    -webkit-transition: opacity 1s;
    -moz-transition: opacity 1s;
    -ms-transition: opacity 1s;
    -o-transition: opacity 1s;
    transition: opacity 1s;
    z-index: -1;
    opacity: 0;
  }
  #container-slider .arrowPrev,
  #container-slider .arrowNext {
    font-size: 30pt;
    color: rgba(204, 204, 204, 0.65);
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50px;
    z-index: 2;
  }
  #container-slider .arrowNext {
    left: initial;
    right: 50px !important;
  }
  .content_slider {
    padding: 15px 30px;
    color: #fff;
    width: 100%;
    height: 100%;
  }
  .content_slider div {
    text-align: center;
    margin-top: 200px;
  }
  .content_slider h1 {
    font-size: 25pt;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  .content_slider h2 {
    font-size: 25pt;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
  }
  .content_slider p {
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.4;
  }
  .title-slide-unoi{
    width: 65%;
    margin: auto;
  }
  #slider li .content_slider {
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 125px;
  }
  .content_slider {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .btnSlider {
    color: #fff;
    font-size: 15pt;
    letter-spacing: 1px;
    padding: 10px 50px;
    background: linear-gradient(to right, #16abe2, #75b547);
    border-radius: 15px;
    text-decoration: none;
    transition: 0.5s all;
  }
  .btnSlider:hover {
    background: #fff;
    color: #111;
  }
  .listslider {
    position: absolute;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: space-between;
    align-items: center;
    left: 50%;
    bottom: 5%;
    list-style: none;
    z-index: 2;
    transform: translateX(-50%);
  }
  .listslider li {
    border-radius: 50%;
    width: 10px;
    height: 10px;
    cursor: pointer;
    margin: 0 5px;
  }
  .listslider li a {
    background: #ccc;
    border-radius: 50%;
    width: 100%;
    height: 100%;
    display: block;
  }
  .item-select-slid {
    background: #fff !important;
  }
  .slogan{
    font-size: 21px !important;
  }
  @media screen and (max-width: 700px) {
  .content_slider h1 {
    font-size: 1.4rem !important;
  }
  .content_slider h2 {
    font-size: 1.4rem !important;
  }
  .title-slide-unoi{
    width: 100%;
  }
  .slide-text-two {
    margin-bottom: 30px;
    width: 100%;
  }
  .content_slider p{
    font-size: 1rem;
    line-height: 1.2;
  }
  .slogan{
    font-size: 16px !important;
  }
  #container-slider .arrowPrev,
  #container-slider .arrowNext {
    font-size: 20pt;
   
  }
  #container-slider .arrowPrev {
    left: 15px;
    display: none;
  }
  #container-slider .arrowNext {
    right: 15px !important;
    display: none;
  }
  #slider {
  /* height: 400px; */
    /* min-height: 400px; */
  }
  #slider li .content_slider {
    padding: 10px 20px;
  }
  .btnSlider {
  padding: 10px 30px;
  font-size: 10pt;
  }
  }
  
  /********************** HERO **********************/
  
  .unoi-hero-container{
    top: -80px;
    position: relative;
    z-index: -1;
  }
  .hero-img-unoi {
    width: 100%;
    height: auto;
    display: block;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }
  .hero-section {
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/03/img-cabecera.jpg');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
  }
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #16ABE2;
    opacity: 0.3;
  }
  .hero-section p {
    font-size: 1.4em;
    animation: slideUpFadeIn 1s ease-out forwards;
  }
  .unoi-text-hero{
    width: 60%;
    margin: auto;
    position: relative;
    z-index: 3;
  }
  .unoi-text-h1{
    margin: 0;
    font-size: 3.2em;
    margin-bottom: 20px;
    animation: slideUpFadeIn 1s ease-out forwards;
  }
  .unoi-cta-1{
    margin-top: 20px;
    padding: 10px 30px;
    font-size: 1em;
    color: #fff;
    background: #16ABE2;
    border: none;
    border-radius: 10px;
    outline: none;
    cursor: pointer;
    animation: slideUpFadeIn 1s ease-out forwards;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
  }
  .unoi-cta-1:hover{
    background: #129FD3;
  }
  
  /********************** VIDEO SECTION**********************/
  
  .video-section {
    position: relative;
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/03/seccion-2.jpg');
    background-size: cover;
    background-position: center;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  
  .unoi-minute-text {
    color: white;
    margin-bottom: 50px;
    font-size: 2.2rem;
  }
  .video-wrapper {
    position: relative;
    width: 76%;
    height: 500px;
    padding-top: 45%;
    background-color: white;
    border-radius: 15px;
    margin: auto;
  }
  
  /* NUEVO VIDEO */
  
  .video-wrapper-video-unoi {
    position: relative;
    display: inline-block;
    text-align: center;
    vertical-align: middle;
  }
  
  .video-wrapper-video-unoi img {
    border-radius: 20px;
  }
  
  .play-button {
    position: absolute;
    top: 43%;
    left: 47%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: white;
    border-radius: 50%;
    cursor: pointer;
    animation: pulse-blue 2s infinite;
  }
  
  @keyframes pulse-blue {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 30px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
  }
  
  .play-button::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-top: 15px solid transparent;
    border-bottom: 15px solid transparent;
    border-left: 20px solid black;
  }
  
  .video-wrapper-video-unoi img {
    width: 90%;
    border-radius: 15px;
  }
  .video-wrapper-video-unoi::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    clip-path: polygon(35% 20%, 35% 80%, 75% 50%);
  }
  .video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 95%;
    height: 90%;
    margin:auto;
  }
  .modal-video-unoi {
    display: none;
    position: fixed;
    z-index: 5000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
  }
  .modal-content-video-unoi {
    position: relative;
    margin: 10% auto;
    padding: 20px;
    width: 90%;
    max-width: 960px;
  }
  .video-iframe-video-unoi {
    display: block;
    width: 100%;
    height: auto;
  }
  .close-video-unoi {
    position: absolute;
    top: 10px;
    right: 15px;
    color: black;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    background-color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 1;
    z-index: 5001;
  }
  .close-video-unoi:hover {
    background-color: #f1f1f1;
  }
  
  /********************************** BENEFICIOS COMPONENT **********************************/
 
  .unoi-clic-button{
    width: 300px !important;
  }
  .image-background {
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/03/Group-233w.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: auto;
    aspect-ratio: attr(width) / attr(height);
    padding: 0 60px;
  }
  .column-title-unoi{
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .blue-color{
    color: #16ABE2;
  }
  .column-next{
    margin-top: 170px;
  }
  .column-text-unoi{
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.3;
  }
  .columns-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 600px;
  }
  .columns-container-1-unoi{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: 600px;
    padding-top: 50px;
  }
  .column-1-unoi{
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 40px 20px;
    width: 50%;
    justify-content: center;
    color:#75B547;
  }
  .column-hidden-unoi{
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
    width: 50%;
    justify-content: center;
    color:#75B547;
  }
  .column {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
    width: 50%;
    justify-content: center;
    color:#75B547;
  }
  .btn-column-unoi {
    background: #fff;
    padding: 10px 40px;
    width: 200px;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
    border: none;
    font-size: 1em;
    cursor: pointer;
    display: inline-block;
    color: transparent;
    border-radius: 15px;
    background: linear-gradient(#16ABE2, #75B547);
    -webkit-background-clip: text;
    background-clip: text;
    text-align: center;
    text-decoration: none;
  }
  .btn-column-unoi:hover{
    background:#75B547;
    color: #fff;
  }

  /* NUEVOS BENEFICIOS */

  .contenedor-unoi-flex {
    display: flex;
    /* height: 80vh; */
    min-height: 700px;
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/04/ninos-unoi-1.png');
    background-size: cover;
    background-position: left top;
    background-repeat: no-repeat;
    position: relative;
    z-index: 3;
}
.columna-izquierda, .columna-derecha {
    flex: 1;
    min-width: 0;
}
.columna-derecha {
    display: flex;
    flex-direction: column;
    align-items: left;
    justify-content: start;
    padding: 190px 20px 20px 20px;
    /* background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%); */
}
h2{
	margin: 10px 0;
} 
p, button {
    margin: 10px;
}
.h2-unoi-school{
    font-size: 2.2rem;
    margin-bottom: 20px;
    margin-left: 0;
    color: #75B547;
}
.p-unoi-school{
    font-size: 1.1rem;
    margin-bottom: 40px;
    margin-left: 0;
    line-height: 1.3;
    color: #75B547;
}
.btn-unoi-school{
    width: 40%;
}

.btn-edi-unoi{
    background: linear-gradient(to right, #16abe2, #75b547);
    
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    text-align: center;
    cursor: pointer;
	width: 100px;
  }
  .edi-padding{
    padding: 8px 40px;
    margin-top: 30px;
  }
  .btn-edi-unoi:hover {
    background: linear-gradient(to right, #16abe2, #75b547);
    color: #000;
  }
  .btn-edi-unoi::after {
    content: "";
    background: #fff;
    position: absolute;
    z-index: -1;
    
    display: block;
    left: 0;
    right: 0;
    top: 100%;
    bottom: -100%;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
  .btn-edi-unoi:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
  .gi-button{
    background: linear-gradient(to right, #16abe2, #75b547);
    padding: 8px;
    width: 40%;
    color: #fff;
    border-radius: 8px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-block;
    text-align: center;
  }
  .gi-button:hover {
    background: linear-gradient(to right, #16abe2, #75b547);
    color: #fff;
  }
  .gi-button::after {
    content: "";
    background: #111;
    position: absolute;
    z-index: -1;
    padding: 8px;
    display: block;
    left: 0;
    right: 0;
    top: 100%;
    bottom: -100%;
  -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }
  .gi-button:hover::after {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  -webkit-transition: all 0.35s;
    transition: all 0.35s;
  }

  .second-btn-style{
    width: 22% !important;
  }

/*  whatsapp */
 .whatsapp-button {
  position: fixed;
  bottom: 20px;
  right: 20px;
  text-align: center;
  z-index: 88;
}

.whatsapp-button > button {
  border-radius: 50%;
  background-color: #25D366;
  border: none;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.contact-options {
  display: none;
  position: absolute;
  bottom: 70px;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  backdrop-filter: blur(10px);
}
.w-btn-one {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  white-space: nowrap;
  text-align: left;
}
.w-btn-one:hover {
  color: #75B547;
}
.w-btn-one:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px 5px 0 0;
}
.w-btn-two {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 10px;
  white-space: nowrap;
  text-align: left;
}
.w-btn-two:hover {
  color: #75B547;
}
.w-btn-two:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 0 0 5px 5px;
}
.w-line-unoi{
  width: 95%;
  margin: auto;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.whatsapp-button > button i {
  font-size: 40px;
}


  
/* UNO */

.ola {
  display: none;
}
.ola3{
  display: none;
}
.contenedor-alterno-unoi {
  display: flex;
  flex-direction: row;
  /* height: 90vh; */
  min-height: 700px;
  background-image: url('https://unoi.com.mx/wp-content/uploads/2024/04/first-unoi.png');
  background-size: cover;
  background-position: right top;
  background-repeat: no-repeat;
  justify-content: space-between;
  position: relative;
  z-index: 2;
  margin-bottom: -100px;
}
.contenido-alterno-unoi {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: start;
  padding: 150px 90px 20px 90px;
  /* background: rgba(255, 255, 255, 0.5); */
  position: relative;
  z-index: 5;
}
.titulo-alterno-unoi, .parrafo-alterno-unoi, .boton-alterno-unoi {
  margin: 10px;
}
.titulo-alterno-unoi {
  font-size: 2.7rem;
  color: #16ABE2;
  margin-left: 0;
}
.parrafo-alterno-unoi {
  font-size: 1.3rem;
  line-height: 1.3;
  color: #16ABE2;
  margin-left: 0;
  margin-bottom: 40px;
  width: 50%;
}
.boton-alterno-unoi {
  width: 40%;
}
.second-btn-docentes{
  width:20% !important;
}

/* DOS */

.ola {
    display: none;
}
.contenedor-alterno {
    display: flex;
    flex-direction: row;
    /* height: 90vh; */
    min-height: 900px;
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/04/uno-docentes-web.png');
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    justify-content: space-between;
    position: relative;
    z-index: 5;
    margin-top: -120px;
}
.contenido-alterno {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px 90px 20px 90px;
    /* background: rgba(255, 255, 255, 0.5); */
    position: relative;
    z-index: 5;
}
.titulo-alterno, .parrafo-alterno, .boton-alterno {
    margin: 10px;
}
.titulo-alterno {
    font-size: 2.2rem;
    color: #16ABE2;
    margin-left: 0;
}
.parrafo-alterno {
    font-size: 1.1rem;
    line-height: 1.3;
    color: #16ABE2;
    margin-left: 0;
    margin-bottom: 40px;
    width: 50%;
}
.boton-alterno {
    width: 40%;
}
.second-btn-docentes{
  width:20% !important;
}

/* TRES */

.ola2 {
    display: none;
}
.contenedor-nuevo {
    margin-top: -110px;
    display: flex;
    flex-direction: row;
    height: 70vh;
    /* min-height: 700px; */
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/04/uno-padres-web.png');
    background-size: cover;
    background-position: top left;
    background-repeat: no-repeat;
    position: relative;
    z-index: 5;
}
.imagen-nuevo {
    flex: 1;
    display: block;
    background: none;
}
.contenido-nuevo {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 4px;
}
.titulo-nuevo, .parrafo-nuevo, .boton-nuevo {
    margin: 10px;
}
.titulo-nuevo {
    font-size: 2.2rem;
    color: #75B547;
    margin-left: 0;
}
.parrafo-nuevo {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-left: 0;
    color: #75B547;
    margin-bottom: 40px;
}
.boton-nuevo {
    width: 40%;
}
  
  /********************************** SERVICES COMPONENT **********************************/
  
  .container-unoi-service {
    display: flex;
    flex-wrap: wrap;
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/04/servicios-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    height: auto;
  }
  .text-column-unoi-service h2 {
    font-size: 2.2rem;
  }
  .text-column-unoi-service p {
    font-size: 1.3rem;
  }
  .text-column-unoi-service > *:not(:last-child) {
    margin-bottom: 20px;
  }
  .flex-unoi-service{
    width:80%;
    height: 100%;
    display: flex;
    margin: auto;
    align-items: center;
    gap: 90px;
  }
  .text-column-unoi-service {
    flex: 1;
    padding: 20px;
    width: 90%;
  }
  .image-column-unoi-service {
    flex: 1;
    background-size: cover;
    background-position: center;
  }
  .image-img-unoi-service{
    width: 100%;
    border-radius: 30px;
  }
  
  /********************************** ACORDION COMPONENT **********************************/
  
  .humans-unoi{
    background-image: linear-gradient(to bottom, #16ABE2 0%, #75B547 80%, #16ABE2 100%);
    padding: 110px 0 220px 0;
  }
  .contenedor-acordeon {
    width: 100%;
    max-width: 1200px;
    margin: auto;
  }
  .contenedor-acordeon h2 {
    text-align: center;
    font-size: 2.1rem;
    color: #fff;
    width: 70%;
    margin: 0 auto 40px auto;
  }
  .top-text-acordion{
    color: #fff;
    font-size: 1.2rem;
    width: 80%;
    text-align: center;
    margin: 0 auto 40px auto;
  }
  .contenedor-acordeon h3 {
    text-align: center;
    font-size: 1.5rem;
    color: #fff;
    width: 50%;
    margin: 60px auto 35px auto;
  }
  .acordeon {
    background: #fff;
    border-radius: 30px;
    margin-bottom: 30px;
  }
  .acordeon label {
    display: block;
    padding: 20px 20px 0 20px;
    font-size: 1.6rem;
    color: #75B547;
    cursor: pointer;
    margin-bottom: 2px;
    transition: all 300ms ease;
  }
  .contenido-acordeon{
    text-align: center;
    color: #75B547;
    text-align: center;
    color: #75B547;
    padding: 15px 10px 30px 10px;
    margin: 0px 20px;
    overflow: hidden;
    transition: all 300ms ease;
    max-height: 0; 
  }

  .btn-acordeon:checked + label + .contenido-acordeon {
    max-height: 1000px;
    padding-bottom: 30px;
}
  .p-acordeon-unoi{
    margin-bottom: 10px;
    line-height: 1.4;
    font-size: 1.2rem;
  }
  .acordeon .contenido-acordeon {
    padding: 0px;
    margin: 0px 20px;
    overflow: hidden;
    transition: all 300ms ease;
    max-height: none;
    padding: 15px 10px 30px 10px;
  }
  .btn-acordeon {
    display: none;
  }
  .btn-acordeon-box {
    display:flex;
    justify-content: center;
    border-radius: 30px 30px 0 0;
    text-align: center;
  }
  .btn-box-text{
    display: flex;
    justify-content: center;
    width: 100%;
    margin:auto;
  }
  .btn-box-text p{
  font-size: 1.6rem;
  margin-left: 10px;
  font-weight: 600;
  }
  .btn-box-text-mobil{
  display: none;
  }
  .second-btn-unoi{
  display: flex;
  width: 60%;
  margin: 40px auto 0 auto;
  justify-content: center;
  background-color: white;
  border-radius: 15px;
  padding: 15px 20px;
  border: none;
  cursor: pointer;
  color: #75b547;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.2);
  }
  .second-btn-unoi:hover{
  background: #75b547;
  color: #fff;
  }
  .color-text-btn{
  display: inline-block;
  text-align: center;
  }

    /* modificación */
  
    .contenedor-acordeon{
    padding: 0px 20px 0px 20px;
    }
    .btn-acordeon-box {
    display:flex;
    justify-content: left;
    border-radius: 30px 30px 0 0;
    text-align: left;
    }
    .btn-box-text-mobil{
    display: flex;
   /*  flex-direction: column; */
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 10px 15px 10px;
    gap: 20px;
    }
    /* .first-mobil-text{
    font-size: 2.5rem;
    font-weight: 600;
    } */
    .arrow-modil-text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap:20px;
    }
    .material-symbols-outlined{
    font-size: 2.5rem;
    }
    .p-acordeon-unoi{
    margin: 10px 10px 10px 10px;
    line-height: 1.3;
    }
    .btn-box-text{
    display: none;
    }
    .contenedor-acordeon h3 {
    font-size: 1.2rem;
    width: 95%;
    }
    .contenido-acordeon {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    }
    .btn-acordeon:checked + label + .contenido-acordeon {
    max-height: 1000px;
    }
    .material-symbols-outlined.arrow-icon::before {
    content: "expand_more";
    }
    .btn-acordeon:checked + label .material-symbols-outlined.arrow-icon::before {
    content: "expand_less";
    }
    .btn-acordeon {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    margin: 0;
    padding: 0;
    padding: 90px 10px 30px 10px;
    }
    .btn-acordeon:checked ~ .contenido-acordeon {
    max-height: 600px;
    }
    .acordeon .contenido-acordeon {
    max-height: 0;
    padding: 0 0 0 0;
    }
    .humans-btn-unoi{
    width: 100%;
    margin: 40px auto 0 auto;
    }
    .second-btn-unoi{
    width: 100%;
    margin: 40px auto 0 auto;
    }
  
  /********************************** CARDS CAROUSEL **********************************/
  
  .text-comunity-unoi{
  width: 80%;
  margin: 80px auto 0 auto;
  }
  .comunity-unoi{
  display: flex;
  }
  .comunity-unoi h2{
  font-size: 2.2rem;
  color: #16ABE2;
  }
  
  .logo-comunity-unoi{
  width: 60px;
  }
  .wrapper {
  width: 90%;
  position: relative;
  margin: 0 auto 60px auto;
  border-radius: 40px;
  }
  .wrapper i {
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 3px 6px rgba(0,0,0,0.23);
  transform: translateY(-50%);
  transition: transform 0.1s linear;
  }
  .wrapper i:active{
  transform: translateY(-50%) scale(0.85);
  }
  .wrapper i:first-child{
  left: -22px;
  }
  .wrapper i:last-child{
  right: -22px;
  }
  .wrapper .carousel{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 1) + 60px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 40px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: 40px;
  padding: 50px 50px 10px 50px;
  padding-left: 10px;
  
  }
  .carousel::-webkit-scrollbar {
  display: none;
  }
  .carousel.no-transition {
  scroll-behavior: auto;
  }
  .carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
  }
  .carousel.dragging .card {
  cursor: grab;
  user-select: none;
  }
  .carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
  }
  .carousel .card {
  padding:0px 80px;
  margin: 10px auto;
  scroll-snap-align: start;
  height: 342px;
  list-style: none;
  cursor: pointer;
  padding-bottom: 15px;
  border-radius: 40px;
  }
  .carousel .card .card-content-unoi{
  display:flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  padding: 0 60px 0 90px;
  box-shadow: 15px 0 15px 15px rgba(22, 171, 226, 0.3), -10px 0 15px 10px rgba(22, 171, 226, 0.3);
  }
  .card-content-unoi .card-text-unoi{
  margin: 0 0 0 60px;
  }
  .carousel .card .card-content-unoi .img {
  height: 148px;
  width: 148px;
  border-radius: 50%;
  }
  .card .card-content-unoi .img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  }
  .carousel .card .card-content-unoi h2 {
  font-size: 1.7rem;
  margin: 0 0 5px;
  color: #16ABE2;
  }
  .carousel .card .card-content-unoi span {
  color: #16ABE2;
  font-size: 1.3rem;
  }
  .carousel .card .card-content-unoi p {
  color: #16ABE2;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-top: 20px;
  }
  #left, #right{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #16ABE2;
  }
  
  #left:hover, #right:hover{
  background-color: #111;
  color: #fff;
  }
  
  /********************************* INFINITE CAROUSEL LOGOS*********************************/
  
  @keyframes slide {
  from {
  transform: translateX(0);
  }
  to {
  transform: translateX(-100%);
  }
  }
  
  .carousel-title{
  color: #16ABE2;
  text-align: center;
  font-size: 1.6rem;
  width: 60%;
  margin: auto;
  padding: 80px 0 0 0;
  }
  .logos-carousel {
  overflow: hidden;
  padding: 90px 0 130px 0;
  background: white;
  white-space: nowrap;
  position: relative;
  }
  .logos-carousel:before,
  .logos-carousel:after {
  position: absolute;
  top: 0;
  width: 250px;
  height: 100%;
  content: "";
  z-index: 2;
  }
  .logos-carousel:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), white);
  }
  .logos-carousel:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
  }
  /* .logos-carousel:hover .logos-slide-carousel {
  animation-play-state: paused;
  } */
  .logos-slide-carousel {
  display: inline-block;
  animation: 35s slide infinite linear;
  }
  .logos-slide-carousel img {
  height: 50px;
  margin: 0 40px;
  }
  
  /********************************* FOOTER **************************************/
  
  footer {
  background: linear-gradient(to right, #16abe2, #75b547);
  padding: 80px 0;
  color: #fff;
  }
  .logo-footer-unoi {
  width: 90px;
  height: 40px;
  margin-bottom: 40px;
  }
  .footer-container-unoi {
  width: 90%;
  margin: auto;
  overflow: hidden;
  }
  .footer-row-unoi {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  }
  .footer-column-unoi {
  flex-basis: 25%;
  min-width: 200px;
  }
  .logo-column-unoi,
  .footer-column-unoi h3 {
  display: block;
  margin-bottom: 30px;
  font-size: 25px;
  }
  .logo-column-unoi {
  flex-basis: 30%;
  max-width: 30%;
  }
  .footer-column-unoi:not(.logo-column-unoi) {
  flex-basis: calc(70% / 4);
  max-width: calc(70% / 4);
  }
  .second-box-unoi {
  margin-top: 30px;
  }
  .second-box-unoi a {
  color: #fff;
  text-decoration: underline;
  }
  .desktop-text-footer-unoi {
  display: block;
  margin: 2px 0;
  font-size: 16px;
  }
  .mobile-text-footer-unoi {
  display: none;
  }
  .logos-row-unoi {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding-top: 80px;
  }
  .logos-row-unoi img {
  margin-right: 10px;
  width: auto;
  height: 50px;
  }
  .accordion-content-unoi {
  list-style-type: none;
  padding-left: 0;
  margin-left: 0;
  }
  .accordion-content-unoi li {
  list-style-type: none;
  margin: 5px 0;
  }
  .social-logos img {
  width: 26x;
  height: 26px;
  margin: 10px 20px 0 0;
  transition: transform 0.3s ease;
  }
  .social-logos img:hover {
  transform: translateY(-5px);
  cursor: pointer;
  }
  .accordion-content-unoi a {
  color: #fff;
  text-decoration: underline;
  display: inline-block;
  transition: transform 0.3s ease, color 0.3s ease;
  }
  .accordion-content-unoi a:hover {
  color: #396271;
  transform: translateX(5px);
  }
  
  /******************************************* PÁGINA DIRECTORES *******************************************/
  
  .background-container {
  position: relative;
  width: 100%;
  min-height: 900px;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/Formulariou.jpg') no-repeat center center;
  background-size: cover;
  }
  .container {
  position: relative;
  margin-top: -90px;
  }
  .first-contenedor-unoi{
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/hero-director.jpg') no-repeat top center;
  }
  .first-docentes-unoi {
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/hero-docentes.jpg') no-repeat top center;
  }
  .first-padres-unoi {
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/hero-padres.jpg') no-repeat top center;
  }
  .first-contenedor-unoi, .first-docentes-unoi, .first-padres-unoi {
  position: relative;
  justify-content: space-between;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 800px;
  }
  .first-columna-unoi {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 50%;
  padding: 20px 60px 20px 20px;
  box-sizing: border-box;
  color: #fff;
  }
  .first-box-text-mobile{
  padding: 40px 20px;
  }
  .first-titulo-unoi {
  font-size: 2.5rem;
  margin-bottom: 30px;
  }
  .first-texto-unoi {
  margin-bottom: 10px;
  margin-left: 0px;
  font-size: 1.2rem;
  margin-bottom: 30px;
  }
  .first-boton-unoi {
  padding: 10px 20px;
  border-radius: 10px;
  width: 40%;
  font-size: 17px;
  font-weight: 300;
  background-color: #ffffff;
  color: #16ABE2;
  border: none;
  cursor: pointer;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
  }
  .first-boton-unoi:hover {
  color: #fff;
  background: #111;
  }
  .first-contenedor-unoi-mobile {
  display: none;
  }
  .first-docentes-unoi-mobile {
  display: none;
  }
  .first-padres-unoi-mobile {
  display: none;
  }
  
  /************************ SEGUNDO COMPONENTE DIRECTORES ************************/
  
  .second-content-unoi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/Recurso-2.png') no-repeat top center;
  background-size: cover;
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: -100px;
  padding: 90px 0;
  }
  .second-left-column-unoi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 50%;
  margin-top: 60px;
  padding: 30px;
  }
  .second-left-text-unoi {
  margin: 10px auto 10px auto;
  width: 60%;
  }
  .second-left-column-unoi h2 {
  color: #24ADD6;
  font-size: 2.1rem;
  margin-bottom: 20px;
  }
  .second-left-column-unoi p {
  margin-bottom: 20px;
  font-size: 1.2rem;
  line-height: 1.3;
  color: #000;
  }
  .second-right-column-unoi {
  flex: 50%;
  }
  .second-button-unoi {
  display: inline-block;
  text-decoration: none;
  background-color: #24ADD6;
  color: white;
  padding: 15px 40px;
  text-align: center;
  border-radius: 10px;
  font-size: 17px;
  font-weight: 300;
  margin: 20px auto 10px auto;
  box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.1);
  }
  .second-button-unoi:hover {
  color: #fff;
  background: #111;
  }
  
  /************************ TERCER COMPONENTE ************************/
  
  .third-content-unoi {
  width: 100%;
  height: 400px;
  padding-top: 60px;
  background: linear-gradient(to bottom, #45B097, #58B278);
  position: relative;
  z-index: -1;
  margin-bottom: -100px;
  }
  .third-content-unoi h2 {
  color: #fff;
  width: 60%;
  text-align: center;
  font-size: 2rem;
  margin: auto;
  }
  
  /************************ CUARTO COMPONENTE ************************/
  
  .two-column-container {
  display: flex;
  width: 100%;
  justify-content: center;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/imgunoirr2.png') no-repeat top center;
  background-size: cover;
  align-content: center;
  margin-top: -120px;
  flex-wrap: wrap;
  padding: 160px 0;
  }
  .two-column-docentes {
  display: flex;
  width: 100%;
  justify-content: center;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/04/docentes-unoi-1.png') no-repeat top center;
  background-size: cover;
  align-content: center;
  margin-top: -120px;
  flex-wrap: wrap;
  padding: 120px 0;
  }
  .h2-text-content{
  margin-top: 50px;
  }
  .column-one-unoi,
  .column-two-unoi {
  flex-basis: 50%;
  box-sizing: border-box;
  }
  .column-two-unoi {
  flex-basis: 50%;
  box-sizing: border-box;
  
  }
  .text-column-content{
  flex-basis: 50%;
  width:90%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 20px;
  }
  .h2-text-content{
  font-size: 2.1rem;
  color: #24ADD6;
  }
  .p-text-content{
  font-size: 1.1rem;
  line-height: 1.4;
  }
  .accordion-item{
  margin-bottom: 20px;
  }
  .accordion-content {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: opacity 0.3s ease, max-height 0.3s ease;
  }
  .accordion-content.active {
  opacity: 1;
  max-height: 1000px;
  padding: 0 20px 20px 20px;
  border-radius: 0px 0px 15px 15px;
  background-color: #f7f7f7;
  color: #24ADD6;
  line-height: 1.4;
  }
  .accordion-title {
  padding: 20px 20px;
  border-radius: 15px 15px 15px 15px;
  font-size: 1.4rem;
  background-color: #f7f7f7;
  color: #24ADD6;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  }
  .arrow {
  transition: transform 0.3s ease;
  }
  .arrow.up {
  transform: rotate(-180deg);
  }
  .acordeon-version-unoi{
  height: auto;
  }
  .btn-version-unoi{
  background-color: #24ADD6;
  margin: auto;
  width: 50%;
  color: #fff;
  padding: 10px 0;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  }
  .btn-version-unoi:hover {
  background-color: #111 !important;
  color: #fff;
  }
  
  /************************ FORMULARIOS ************************/
  .nf-form-title{
	display: none !important;
  }
  .nf-response-msg p{
	text-align: center !important;
  }
  .form-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  max-width: 700px;
  padding: 30px;
  background: rgba(255, 255, 255);
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  }
  .form-header {
  margin-bottom: 20px;
  text-align: center;
  color: #16ABE2;
  }
  .form-box-unoi {
  /* display: flex;
  flex-direction: column;
  justify-content: center; */
  }
  .form-box-unoi input,
  .form-box-unoi textarea,
  .form-box-unoi button {
  margin-bottom: 10px;
  }
  .nf-field-element textarea {
    height: 120px !important;
  }
  .ninja-forms-form-wrap *{
    text-align: left !important;
  }
  .form-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  }
  .form-row>div {
 /*  width: calc(50% - 10px); */
  margin-bottom: 10px !important;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
  /* width: calc(100% - 0px); */
  padding: 10px !important;
  border: 1px solid #16ABE2 !important;
  border-radius: 10px !important;
  box-sizing: border-box !important;
  background-color: transparent !important;
  }
  input::placeholder,
  textarea::placeholder {
  color: #16ABE2 !important;
  opacity: 1 !important;
  }
  /* For Microsoft Edge */
  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
  color: #16ABE2 !important;
  }
  .submit-button {
  width: calc(80% - 0px);
  padding: 10px;
  border: none;
  border-radius: 10px;
  background-color: #16ABE2;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin: 20px auto 0 auto;
  box-sizing: border-box;
  }
  .submit-button:hover {
  background-color: #139bcc;
  }
  .submit-ninja-btn {
  width: 100% !important;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background-color: #16ABE2;
  color: white;
  font-size: 16px;
  cursor: pointer;
  margin: 20px auto 0 auto;
  text-align: center !important;
  box-sizing: border-box;
  }

  .nf-form-fields-required{
    display: none !important;
  }
  
  /* PÁGINA DOCENTES */
  
  .second-docentes-unoi{
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/docentes.png') no-repeat top center;
  }
  .second-padres-unoi{
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/padres-educacion.png') no-repeat top center;
  }
  .second-docentes-unoi, .second-padres-unoi{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background-size: cover;
  position: relative;
  z-index: 3;
  width: 100%;
  margin-top: -100px;
  padding: 90px 0;
  }
  .two-column-docentes {
  display: flex;
  width: 100%;
  justify-content: center;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/04/docentes-unoi-1.png') no-repeat top center;
  background-size: cover;
  align-content: center;
  margin-top: -120px;
  }
  
  /* PÁGINA PADRES */
  
  .svg-curve{
  margin: -140px;
  }
  /*************************************** PÁGINA AUDIOS ****************************************/

  @charset "utf-8";

.title-box-audio{
  display:flex;
  width: 50%;
  margin:90px auto 0 auto;
  justify-content: center;
  height: 80px;
  border-radius: 8px 8px 0 0;
  align-items: center;
  background-image: linear-gradient(to left, #75B547 0%,  #16ABE2 80%);
}
.audio-title{
  color: #fff;
  margin: 0;
}
.accordion-audios-unoi {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 50%;
    height: auto;
    border: 1px solid #dedede;
    border-radius: 0 0 8px 8px;
    margin:0 auto;
    margin-bottom: 60px;
} 
/*Contenedor común plegar/desplegar*/
.accordion-toggle-audios,
.accordion-header-audios{
    font-size: 15px;
    width: 100%;
    height: 4em;
    margin: 0;
    line-height: 4em;
    cursor: pointer;
}
/*El botón que pliega/despliega*/
.accordion-toggle-audios {
    opacity: 0;
    background-color: transparent;
    z-index: 1;
    margin-bottom: 2px;
}
/*Bloque para el título*/
.accordion-header-audios{
    background-color: #ffffff;
    color: #7f8787;
    position: relative;
    font-size: 1.5rem;
    margin-top: -3em;
    padding-left: 10px;
}
.first-ul-audios{
  padding: 20px 5px;
}

/*Bloque replegable con el contenido */
.accordion-content-audios {
  box-sizing: border-box;
  background-color: #f7f7f7;
  color: #7f8787;
  overflow: auto;
  position: relative;
  width: 100%;
  max-height: 0;
  padding: 0 20px;
  transition: max-height 0.3s ease 0.1s;
  }
.accordion-toggle-audios:checked + .accordion-header-audios + .accordion-content-audios {
  max-height: 100vh;
  margin-right: 0;
}
.accordion-header-audios::before,
.accordion-toggle-audios:checked + .accordion-header-audios::before {
  content: '+';
  display: inline-block;
  text-align: center;
  width: 1em;
  font-size: 1.em;
}
.accordion-toggle-audios:checked + .accordion-header-audios::before {
  content:'-';
}

.accordion-toggle-audios:hover + .accordion-header-audios{
  background-color: #f7f1f1;
}
.accordion-toggle-audios:checked + .accordion-header-audios {
  background-color: #fff;
} 

.btn-audios-unoi{
  background-color: red;
  border-radius: 10px;
  padding: 5px 20px;
  color: #fff;
}

.btn-audios-box{
  margin: 5px;
}
.first-ul-audios > li{
  text-align: center;
  margin: 20px 0;
}
.download-link {
  text-decoration: none;
  color: white;
  padding: 5px 10px;
  border-radius: 20px;
  background-color: #75B547;
  display: flex;
  text-align:center;
  width: 50%;
  margin: 5px auto 5px auto;
  position: relative;
  padding-right: 30px;
}
.download-link:hover {
  background-color: #558d2d;
}
.download-link .fa-download {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* PAGINA APOYO PUBLICITARIO */
.header-publi{
	text-align:center;
}

.portada {
  width: 600px;       /* ajusta el tamaño */
  height: auto;
  border-radius: 10px; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  }

.media-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-items: center;
  margin-top: 20px;
  margin-bottom:100px;
}

.media-item {
  text-align: center;
}

.media-item img {
  width: 200px;
  margin-top: 20px;
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

.media-item img:hover {
  transform: scale(1.05);
}

/* Video ocupa las dos columnas */
.media-video {
  grid-column: span 2; /* se expande en las dos columnas */
  width: 80%;
}

.media-video video {
  width: 100%;
  height: 450px; /* ajusta según prefieras */
  margin-top: 20px;
  border-radius: 10px;
  object-fit: cover;
  display: block;
  box-shadow: 0px 4px 15px rgba(0,0,0,0.2);
}

/* Efecto hover */
.portada:hover {
  transform: scale(1.05); /* zoom suave */
  box-shadow: 0 6px 16px rgba(0,0,0,0.25);
}



/* BLOG */
.container-image {
  background-image: url("https://unoi.com.mx/wp-content/uploads/2024/06/unoi__blog.png");
  background-position: center 0;
  background-repeat: no-repeat;
  background-size: cover;
  height: 540px;
  display: flex;
  justify-content: left;
  align-items: end;
  margin-top: -100px;
}

.logo__blog{
	width: 360px;
	margin-left: 50px;
    padding-bottom: 50px;
}
.container-image h1{
  color: #fff;
  font-size: 7rem;
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}
.blog_itm_title{
  height: 100px;
}
.inner_container{
  width: 80%;
  margin: 60px auto 60px auto;
}
.inner_container h2{
  font-size: 2.6rem;
}
.line-div-unoi{
  border-bottom: 1px solid black;
}
.inner_txt_title{
  color: #fff;
}
.home_blog_container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.home_blog_itm {
  flex: 0 0 calc(50% - 20px);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin-bottom: 20px;
  height: 100%;
}
.podcast_menu{
	margin: 0;
}
.blog_itm_img {
  width: 100%;
  height: 450px;
  overflow: hidden;
}
.blog_itm_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.blog_itm_title {
  padding: 20px;
  font-size: 1.5rem;
  background-color: #009675;
  border-radius: 20px 20px 0 0;
  font-weight: bold;
}
.itm_footer{
  color: #fff;
  background-color: #161616;
  padding: 20px;
  border-radius: 0 0 20px 20px;
}

.left-box-blog{
	display:block;
	width:60%;
}
@media (max-width: 1380px) {
	.container-image {
    background-image: url(https://unoi.com.mx/wp-content/uploads/2024/06/unoi__blog.png);
    background-position: center 30px;
    background-repeat: no-repeat;
    background-size: cover;
    height: 440px;
    display: flex;
    justify-content: left;
    align-items: end;
    margin-top: -100px;
}
	
	.logo__blog{
	width: 230px;
	margin-left: 50px;
    padding-bottom: 70px;
}
}
@media (max-width: 950px) {
  .container-image {
    height: 390px;
    display: flex;
    justify-content: left;
    background-position: center 80px;
    align-items: end;
    margin-top: -140px;
  }
	
	.logo__blog{
	width: 170px;
	margin-left: 50px;
    padding-bottom: 50px;
}
  .container-image h1{
    color: #fff;
    font-size: 4rem;
    width: 95%;
  }
  .inner_container h2{
    font-size: 2rem;
  }
  .inner_container{
    width: 90%;
    margin: 20px auto 20px auto;
  }
  .blog_itm_title{
    height: auto;
  }
  .home_blog_itm {
      flex: 0 0 100%;
      margin-bottom: 20px;
  }
  .blog_itm_img {
    height: 320px;
  }
  .inner_txt_title{
    font-size: 1.1rem;
  }
}
@media (max-width: 768px) {
  .container-image {
    height: 270px;
    display: flex;
    justify-content: left;
    background-position: center 40px;
    align-items: end;
    margin-top: -100px;
  }
	.logo__blog{
	width: 150px;
	margin-left: 50px;
    padding-bottom: 30px;
}
  .container-image h1{
    color: #fff;
    font-size: 3rem;
    width: 95%;
  }
	.left-box-blog{
	display:block;
	width:100%;
}
	
	.slider-itm-container-single {
  min-height: 500px;
}
  .inner_container h2{
    font-size: 1.4rem;
  }
  .inner_container{
    width: 90%;
    margin: 20px auto 20px auto;
  }
  .blog_itm_title{
    height: auto;
  }
  .home_blog_itm {
      flex: 0 0 100%;
      margin-bottom: 20px;
  }
  .blog_itm_img {
    height: 250px;
  }
  .inner_txt_title{
    font-size: 1.1rem;
  }
}
@media (max-width: 586px) {
	.container-image {
    height: 270px;
    display: flex;
    justify-content: left;
    background-position: center 60px;
    align-items: end;
    margin-top: -100px;
  }
	.logo__blog{
	width: 110px;
	margin-left: 50px;
    padding-bottom: 40px;
}
}

/* SINGLE */

.inner-container-fw-single {
  max-width: 100%;
  box-sizing: border-box;
}
.center-contentV-single {
  display: flex;
  justify-content: center;
  /* min-height: 100vh; */
}
.slider-itm-container-single {
  display:flex;
  width: 100%;
  /*min-height: 500px;*/
  overflow: hidden;
}
.color-red-single{
   color:#16abe2;;
  font-size: 1.5rem;
}
.slider-img-single {
  width: 100%;
  display:flex;
  flex-direction: column-reverse;
  flex-wrap: nowrap;
  align-content: stretch;
  justify-content: flex-start;
  align-items: stretch;
  background-size: cover;
  background-position: center;
}
.slider-text-single {
  padding: 20px;
  background-color: #a01b33;
  color: #fff;
}
.slider-text-single p{
  line-height: 1.4;
  margin: 10px 0;
}
.slider-authorDate{
  background-color: #000;
  padding: 15px;
  color: #fff;
  position: relative;
  bottom:0;

}
.back-red-single {
  /*background-color: #a01b33;*/
  background: linear-gradient(to right, #16abe2, #75b547);
  width: 100%;
}
.max-w-1180-single {
  max-width: 1180px;
  margin: 0 auto;
}
.main-content-wrapper-single {
  padding: 20px;
  display: flex;
}
.article-content-single {
  padding: 20px;
  background-color: #fff;
  line-height: 1.3;
}
.article-content-single p{
  margin: 0 0 20px 0;
}
.back-btn{
  padding: 10px 30px 10px 30px;
  color: #fff;
  border-radius: 10px;
  margin-top: 10px;
}
.wp-block-image img{
  margin-bottom: 20px;
}

/* Responsive para tablets */
@media (max-width: 768px) {
  .slider-itm-container-single{
    flex-direction:column;
  }
  .slider-img-single {
    height: 260px;
  }

  .back-red-single{
    width: 100%;
  }
  .slider-img-single {
      height: 260px;
  }
  .main-content-wrapper-single {
      padding: 15px;
      flex-direction: column;
  }
	.color-red-single{
		color:#16abe2;
	}
  .color-red-single h2{
    font-size: 1.3rem;
	color:#16abe2;
  }

  .content-btn-single{
    display: flex;
    justify-content: center;
  }

  .back-btn{
   width: 100%;
   text-align: center;
  }
}
/* Responsive para móviles */
@media (max-width: 480px) {
  .center-contentV-single {
      min-height: auto;
      flex-direction: column;
  }
  .main-content-wrapper-single, .article-content-single {
      padding: 10px;
  }
}
  /******************************************** RESPONSIVE ************************************************/

  @media (max-width: 1200px) {
    .flex-unoi-service {
      width: 90%;
      height: 100%;
      display: flex;
      flex-direction:column;
      margin: auto;
      align-items: center;
      gap: 20px;
      }

      .image-column-unoi-service{
        display:flex;
        justify-content:center;
      }

      .image-img-unoi-service{
        width: 80%;
        border-radius: 30px;
        margin: auto;
      }
  }
  
  @media (max-width: 1000px) and (min-width: 600px) {
  
  /* HOME */
  /*************************** SERVICES COMPONENT ***************************/
  .flex-unoi-service {
  width: 90%;
  height: 100%;
  display: flex;
  flex-direction:column;
  margin: auto;
  align-items: center;
  gap: 20px;
  }

  #slider li .content_slider{
    padding: 10px 20px;
  }

  .title-slide-unoi{
    width: 80%;
  }

  .slide-text-two{
    width: 80%;
    }

  /* Carousel card */

  .wrapper .carousel {
    grid-auto-columns: 100%;
    }
    
    .carousel .card .card-content-unoi{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    border-radius: 40px;
    padding:30px 30px 30px 30px;
    box-shadow: 15px 0 15px 15px rgba(22, 171, 226, 0.3), -10px 0 15px 10px rgba(22, 171, 226, 0.3);
    }
    
    .card .card-content-unoi .img img {
    width: 150px;
    height: 150px;
    }
    .carousel .card .card-content-unoi h2{
    font-size: 1.5rem;
    margin-top: 10px;
    }
    .carousel .card .card-content-unoi p {
    font-size: 1rem;
    }
    .card-content-unoi .card-text-unoi{
    margin: 0 0 0 0;
    text-align: center;
    }
    .card-content-unoi .card-text-unoi span{
    font-size: 1rem;
    }

    .contenedor-alterno-unoi {
      height: 100vh;
  }

    .contenedor-alterno {
      height: 100vh;
  }
  
  .columna-izquierda-unoi {
    background-position: bottom;
    height: 299px;
}
  .columna-izquierda {
      background-position: bottom;
      height: 299px;
  }

  /* DIRECTORES */
  
  .first-contenedor-unoi {
  display: flex;
  justify-content: space-between;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/hero-director.jpg') no-repeat top center;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 800px;
  }
  
  .first-docentes-unoi {
  display: flex;
  justify-content: space-between;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/hero-docentes.jpg') no-repeat top center;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 800px;
  }
  .first-padres-unoi {
  display: flex;
  justify-content: space-between;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/hero-docentes.jpg') no-repeat top center;
  background-size: cover;
  background-position: center;
  width: 100%;
  min-height: 800px;
  }
  .first-columna-unoi {
  width: 50%;
  padding: 20px 40px 20px 20px;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  }
  .first-titulo-unoi {
  font-size: 2.2rem;
  padding-right: 20px;
  font-weight: bold;
  margin-bottom: 30px;
  }
  .first-texto-unoi {
  padding-right: 20px;
  }
  .first-boton-unoi {
  padding: 10px 20px;
  background-color: #ffffff;
  color: #16ABE2;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  }
  .first-boton-unoi:hover {
  background-color: rgba(0, 0, 0, 0.9);
  color: #fff;
  }
  .second-left-text-unoi {
  margin: 10px auto 10px auto;
  width: 100%;
  }
  .director-content-column {
  flex-basis: auto;
  }
  
 
  /* CUARTO COMPONENTE */
  
  .two-column-container{
  display: flex;
  width: 100%;
  justify-content: center;
  background: url(https://unoi.com.mx/wp-content/uploads/2024/03/imgunoirr2.png) no-repeat;
  background-size: cover;
  align-content: center;
  background-position: -200px center;
  }
  .two-column-docentes{
  display: flex;
  width: 100%;
  justify-content: center;
  background: url(https://unoi.com.mx/wp-content/uploads/2024/04/docentes-unoi.png) no-repeat;
  background-size: cover;
  align-content: center;
  /* background-position: -200px center; */
  }
  }
  
  @media (max-width: 1100px) {
  .nav-end{
  display: flex;
  }
  #hamburger {
  display: block;
  }
  .container-nav-unoi {
  padding: 1.2rem;
  }
  .menu {
  display: none;
  position: absolute;
  top: 85px;
  left: 0;
  min-height: 100vh;
  width: 100vw;
  }
  .menu-bar li:first-child ul:nth-child(1) {
  border-right: none;
  border-bottom: var(--border);
  }
  .dropdown {
  display: none;
  min-width: 100%;
  border: none !important;
  border-radius: 5px;
  position: static;
  top: 0;
  left: 0;
  visibility: visible;
  opacity: 1;
  transform: none;
  box-shadow: none;
  /* max-height: 90vh;
  overflow-y: auto; */
  }
  .menu.show,
  .dropdown.active {
  display: block;
  background-color: #111;
  }
  .dropdown ul {
  padding-left: 0.3rem;
  }
  .menu-bar {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  padding: 3rem 2rem 4rem 2rem;
  }
  .menu-bar .nav-link {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  }
  .menu-bar li:first-child .dropdown {
  min-width: 100%;
  }
  .menu-bar > li:not(:last-child) {
  padding-bottom: 0.5rem;
  }
  }
  
  @media screen and (max-width: 950px) {
  
  /*************************** HERO ***************************/
  
  .enlace{
  padding-left: 20px;
  }
  nav ul .li-button-unoi a{
  font-size: 16px;
  }
  .unoi-text-hero{
  width: 90%;
  }
  .unoi-text-h1{
  font-size: 2.0em;
  }
  
  /*************************** VIDEO COMPONENT ***************************/
  
  .unoi-minute-text{
  font-size: 2.0em;
  }
  
  .modal-content-video-unoi {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 90%;
  }
  
  .video-iframe-video-unoi {
  max-width: 100%;
  max-height: 100%;
  }
  
  .close-video-unoi {
    top: 30vh;
  }
  
  /*************************** ACORDION COMPONENT ***************************/
  .contenedor-acordeon h2{
  font-size: 1.8rem;
  }
  
  /*************************** BENEFICIOS ***************************/
  
  .humans-unoi {
  padding: 110px 30px 170px 30px;
  }
  
  .column-next{
  margin-top: 80px;
  }
  
  .contenedor-acordeon h3{
  width: 80%;
  }

  /* PÁGINA DE AUDIOS */

  .title-box-audio{
    width: 95%;
  }
  
  .accordion-audios-unoi{
    width: 95%;
  }
  /*************************** CARD CAROUSEL ***************************/

  }
  
  @media (max-width: 820px) {
  
  /*************************** VIDEO SECTION ***************************/
  
  .video-container {
  margin: 0 20px;
  }
  .unoi-minute-text{
  font-size: 1.5rem;
  width: 90%;
  margin: 0 auto 40px auto;
  }
  .video-section {
  min-height: 600px;
  padding-bottom: 30px;
  }
  .video-wrapper {
  width: 100%;
  padding-top: 56.25%;
  height: auto;
  }
  
  .play-button {
  top: 33%;
  left: 41%;
  transform: translate(-50%, -50%);
  }
  .video-wrapper-video-unoi img {
  border-radius: 20px;
  width: 100%;
  }
  
  /*************************** BENEFICIOS COMPONENTE ***************************/
  
  .image-background {
  background-image: url('https://unoi.com.mx/wp-content/uploads/2024/03/mobile-back-scaled.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  height: auto;
  aspect-ratio: attr(width) / attr(height);
  padding-bottom: 300px;
  padding: 0 20px;
  }
  .columns-container-1-unoi{
  padding-top: 0px;
  }
  .column-title-unoi{
  font-size: 1.5rem;
  }
  .columns-container{
  align-items: start;
  height: 800px;
  }
  .extra-top-mobile{
  margin-top: 180px;
  }
  .column-hidden-unoi{
  display: none;
  }
  .btn-column-unoi {
  width: 40%;
  padding: 10px 20px;
  }
  .columns-container-1-unoi {
  height: 550px;
  }
  .column-next{
  margin-top: 80px;
  }
  
  /*************************** SERVICES COMPONENT ***************************/
  
  .container-unoi-service {
  flex-direction: column;
  height: auto;
  padding: 60px 0;
  }
  .flex-unoi-service{
  width: 100%;
  flex-direction: column;
  gap: 0px;
  }
  .text-column-unoi-service h2 {
  font-size: 1.5rem;
  }
  .text-column-unoi-service p {
  font-size: 1.1rem;
  line-height: 1.4;
  }
  .image-img-unoi-service{
  width: 90%;
  margin: 20px 20px 0 20px;
  }
  
  /*************************** ACORDION COMPONENT ***************************/
  
  .humans-unoi{
  padding: 70px 0 90px 0;
  }
  .contenedor-acordeon h2 {
  font-size: 1.5rem;
  width: 80%;
  margin: 0 auto 40px auto;
  }
  .contenedor-acordeon{
  padding: 0px 20px 120px 20px;
  }
  .btn-acordeon-box {
  display:flex;
  justify-content: left;
  border-radius: 30px 30px 0 0;
  text-align: left;
  }
  .btn-box-text-mobil{
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: left;
  width: 100%;
  gap:0px;
  padding: 0 10px 15px 10px;
  }
  .first-mobil-text{
  font-size: 2.5rem;
  font-weight: 600;
  }
  .arrow-modil-text{
  display: flex;
  align-items: center;
  justify-content: space-between;
  }
  .material-symbols-outlined{
  font-size: 2.5rem;
  }
  .p-acordeon-unoi{
  margin: 10px 10px 30px 10px;
  line-height: 1.3;
  }
  .btn-box-text{
  display: none;
  }
  .contenedor-acordeon h3 {
  font-size: 1.2rem;
  width: 95%;
  }
  .contenido-acordeon {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  }
  .btn-acordeon:checked + label + .contenido-acordeon {
  max-height: 1000px;
  }
  .material-symbols-outlined.arrow-icon::before {
  content: "expand_more";
  }
  .btn-acordeon:checked + label .material-symbols-outlined.arrow-icon::before {
  content: "expand_less";
  }
  .btn-acordeon {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  padding: 90px 10px 30px 10px;
  }
  .btn-acordeon:checked ~ .contenido-acordeon {
  max-height: 600px;
  }
  .acordeon .contenido-acordeon {
  max-height: 0;
  padding: 0 0 0 0;
  }
  .humans-btn-unoi{
  width: 100%;
  margin: 40px auto 0 auto;
  }
  .second-btn-unoi{
  width: 100%;
  margin: 40px auto 0 auto;
  }
  
  /*************************** CARD CAROUSEL ***************************/
  
  .wrapper{
  width:100%;
  }
  .logo-comunity-unoi {
    width: 46px;
    padding-bottom: 2px;
  }
  .wrapper .carousel {
  grid-auto-columns: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% / 1) + 60px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 60px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  border-radius: 40px;
  padding: 50px 50px 10px 50px;
  padding-left: 10px;
  }
  .carousel .card {
  padding: 0 20px;
  margin: 0 0;
  scroll-snap-align: start;
  height: auto;
  list-style: none;
  cursor: pointer;
  padding-bottom: 15px;
  /* flex-direction: column; */
  border-radius: 40px;
  }
  .carousel .card .card-content-unoi{
  display:flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 100%;
  border-radius: 40px;
  padding-top: 20px;
  box-shadow: 15px 0 15px 15px rgba(22, 171, 226, 0.3), -10px 0 15px 10px rgba(22, 171, 226, 0.3);
  }
  .card .card-content-unoi .img img{
  width: 130px;
  height: 130px;
  }
  .carousel .card .card-content-unoi h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  }
  .carousel .card .card-content-unoi span{
  font-size: 1rem;
  }
  .carousel .card .card-content-unoi p{
  font-size: 1rem;
  margin-bottom: 30px;
  }
  #left, #right{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  color: #16ABE2;
  margin-left: 30px;
  margin-right: 30px;
  }
  
  /*************************** INFINITE CAROUSEL LOGOS***************************/
  
  .carousel-title{
  width: 100%;
  margin: auto;
  padding: 0 0 0 0;
  font-size: 1.1rem;
  }
  .logos-carousel {
  overflow: hidden;
  padding: 70px 0 70px 0;
  }
  
  /************************** FOOTER **************************/
  
  footer {
  padding: 120px 0;
  }
  .footer-container-unoi {
  width: 80%;
  }
  .footer-row-unoi {
  flex-direction: column;
  }
  .logo-footer-unoi {
  margin-bottom: 0px !important;
  }
  .footer-column-unoi,
  .logo-column-unoi {
  flex-basis: 100%;
  max-width: 100%;
  margin-bottom: 0px !important;
  }
  .logo-column-unoi,
  .footer-column-unoi h3 {
  display: block;
  margin-bottom: 30px;
  font-size: 20px;
  }
  .footer-column-unoi h3 {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  }
  .footer-column-unoi h3::after {
  content: "▼";
  display: inline-block;
  margin-left: 5px;
  color: #fff;
  font-size: 14px;
  }
  .footer-column-unoi h3.open-unoi::after {
  content: "▲";
  }
  .footer-column-unoi,
  .logo-column-unoi {
  width: 100%;
  }
  .desktop-text-footer-unoi {
  display: none;
  }
  .box-mobile-footer-unoi {
  margin-top: 30px;
  }
  .mobile-text-footer-unoi {
  display: block;
  order: 4;
  margin: 5px 0;
  }
  .accordion-content-unoi {
  display: none;
  }
  .accordion-content-unoi.open-unoi {
  display: block;
  }
  .social-logos img {
  width: 25x;
  height: 25px;
  margin: 10px 20px 0 0;
  }
  .logos-row-unoi {
  padding-top: 30px;
  }
  
  /************************** PÁGINA DIRECTORES ***************************/
  
  /* HERO */
  
  .first-contenedor-unoi {
  flex-direction: column;
  align-items: center;
  background-position: -160px center;
  min-height: 700px;
  }
  .first-docentes-unoi {
  flex-direction: column;
  align-items: center;
  background-position: -160px center;
  min-height: 700px;
  }
  .first-padres-unoi {
  flex-direction: column;
  align-items: center;
  background-position: -160px center;
  min-height: 700px;
  }
  .first-titulo-unoi {
  font-size: 2rem;
  }
  .first-texto-unoi {
  font-size: 1rem;
  }
  .first-columna-unoi {
  width: 100%;
  padding: 20px;
  margin-top: 50px;
  }
  .first-boton-unoi {
  width: 60%;
  }
  
  /****************** DESPLEGABLES ******************/
  
  .image-column {
  height: 900px;
  }
  
  .two-column-container {
  flex-direction: column;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/03/fer1.png') no-repeat top center;
  background-size: cover;
  }
  .two-column-docentes {
  flex-direction: column;
  background: url('https://unoi.com.mx/wp-content/uploads/2024/04/docentes-unoi-m.png') no-repeat top center;
  background-size: cover;
  }
  .image-column,
  .director-content-column {
  flex-basis: 100%;
  margin-top: 200px;
  }
  .director-content-column {
  padding: 20px 20px 20px 20px;
  }
  .director-content-column h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  width: 90%;
  }
  .director-content-column p {
  font-size: 1.3rem;
  }
  .submit-director-button {
  width: 80%;
  }
  
  /* desplegables */
  
  .director-contenedor-acordeon h2 {
  font-size: 1.8rem;
  width: 80%;
  margin: 0 auto 40px auto;
  }
  .director-contenedor-acordeon {
  padding: 0 0;
  }
  .btn-director-acordeon-box {
  display: flex;
  justify-content: left;
  border-radius: 30px 30px 30px 30px;
  text-align: left;
  }
  .btn-director-text-mobil {
  display: flex;
  justify-content: left;
  width: 100%;
  padding: 0 10px 15px 10px;
  }
  .director-mobil-text {
  font-size: 3rem;
  }
  .director-arrow-modil-text {
  display: flex;
  align-items: center;
  }
  .material-symbols-outlined {
  font-size: 2.5rem;
  }
  .director-p-acordeon-unoi {
  margin-bottom: 30px;
  color: #16ABE2;
  }
  .btn-box-text {
  display: none;
  }
  .director-contenedor-acordeon h3 {
  font-size: 1.2rem;
  width: 95%;
  }
  .director-contenido-acordeon {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  }
  .btn-acordeon-director:checked+label+.director-contenido-acordeon {
  max-height: 1000px;
  }
  .material-symbols-outlined.arrow-icon::before {
  content: "expand_more";
  }
  .btn-acordeon-director:checked+label .material-symbols-outlined.arrow-icon::before {
  content: "expand_less";
  }
  .btn-acordeon-director {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  padding: 90px 10px 30px 10px;
  }
  .btn-acordeon-director:checked~.director-contenido-acordeon {
  max-height: 600px;
  }
  .director-acordeon-unoi .director-contenido-acordeon {
  max-height: 0;
  padding: 0 0 0 0;
  }
  .humans-btn-unoi {
  width: 100%;
  margin: 40px auto 0 auto;
  }
  
  /****************** FORMULARIO ******************/
  
  .form-header h2 {
  font-size: 18px;
  color: #fff;
  }
  .form-container {
  width: 90%;
  background: rgba(255, 255, 255, 0.0);
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.0);
  }
  .form-row {
  flex-direction: column;
  }
  .form-row>div {
  width: 100%;
  margin-bottom: 10px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
  width: 100%;
  border: 2px solid #ffffff !important;
  background-color: transparent;
  }
  input::placeholder,
  textarea::placeholder {
  color: #ffffff !important;
  opacity: 1;
  }
  /* For Microsoft Edge */
  input::-ms-input-placeholder,
  textarea::-ms-input-placeholder {
  color: #ffffff;
  }
  .background-container {
 /*  min-height: 800px; */
  height:auto;
  background-position: 20% center;
  }
  
  /* DIRECTORES */
  }

  @media (max-width: 700px) {

    .close-video-unoi {
      top: 37vh;
    }


  .contenedor-unoi-flex{
    flex-direction: column-reverse;
    background-image: none;
    height: auto;
    min-height: auto;
}
.p-unoi-school{
    width: 80%;
    font-size: 1rem;
}
.columna-izquierda, .columna-derecha {
    flex: none;
    height: auto;
   
}
.columna-derecha{
    padding: 20px 20px 20px 20px;
}
.columna-izquierda {
    background-image: url('/img/primer_movil.png');
    background-size: cover;
    background-position: center;
    height: 490px;
    position: relative;
}
.columna-izquierda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}
.columna-derecha {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
}
.second-btn-docentes{
  width:80% !important;
}





/* DOS */

.ola {
    display: block;
    margin-top: -60px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 4;
}
.contenedor-unoi-flex {
    flex-direction: column-reverse;
    background-image: none;
    height: auto;
}
.parrafo-alterno {
    font-size: 1.1rem;
    line-height: 1.3;
    color: #16ABE2;
    margin-bottom: 40px;
    width: 90%;
}

.p-unoi-school {
    width: 80%;
    font-size: 1rem;
}
.columna-izquierda, .columna-derecha {
    flex: none;
    height: auto;
}
.columna-izquierda {
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/04/unoi-ninos-movil.png');
    background-size: cover;
    background-position: center;
    height: 299px;
    position: relative;
}
.columna-izquierda::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}
.columna-derecha {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 100%);
}

/* Ajustes para contenedor alterno en móvil */

/* UNO */
.contenedor-alterno-unoi {
  flex-direction: column-reverse;
  background-image: none;
  margin-top: -20px;
  /*  height: 90vh; */
  min-height: 700px;
  position: relative;
  z-index: 2;
}
.titulo-alterno-unoi{
  font-size: 1.5rem;
}
.contenido-alterno-unoi {
  order: 2;
  background: none;
  padding: 30px 20px 20px 20px;
  justify-content: top;
}

.parrafo-alterno-unoi {
  font-size: 1rem;
  width: 100%;
}
.imagen-alterno-unoi {
  order: 1;
  background-image: url('https://unoi.com.mx/wp-content/uploads/2024/04/ninos-unoi-movil.png');
  background-size: cover;
  background-position: top;
  height: 399px;
  position: relative;
}
.imagen-alterno-unoi::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%);
  z-index: 1;
}
/* DOS */
.contenedor-alterno {
    flex-direction: column-reverse;
    background-image: none;
    margin-top: -20px;
    height: 100vh;
    position: relative;
    z-index: 7;
}
.contenido-alterno {
    order: 2;
    background: none;
    padding: 0 20px 20px 20px;
    justify-content: top;
}
.imagen-alterno {
    order: 1;
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/04/unoi-docentes-movil.png');
    background-size: cover;
    background-position: top;
    height: 399px;
    position: relative;
}
.imagen-alterno::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 70%, rgba(255, 255, 255, 1) 100%);
    z-index: 1;
}
/* TRES */
.ola2 {
    display: block;
    margin-top: -60px;
    width: 100%;
    height: auto;
    position: relative;
    z-index: 8;
}
.ola3 {
  display: block;
  margin-top: 20px;
  width: 100%;
  height: auto;
  position: relative;
  z-index: 5;
}
.contenedor-nuevo {
    flex-direction: column-reverse;
    background-image: none;
    height: 100vh;
    /* min-height: auto; */
}
.imagen-nuevo {
    position: relative;
    background-image: url('https://unoi.com.mx/wp-content/uploads/2024/04/padres-unoi-movil.png');
    background-size: cover;
    background-position: 50% 25%;
    height: 499px;
}
.imagen-nuevo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 60%, rgba(255, 255, 255, 1) 100%);
    z-index: 2;
}
.contenido-nuevo {
    background: none;
    position: relative;
    z-index: 6;
    margin-top: 90px; 
}

  }
  
  @media (max-width: 600px) {

     /* ALERTA */
  .alert {
    position: fixed;
    right: 20px;             
    bottom: 50px;        
    background-color: #fff;
    color: #75b547;  
    font-weight: bold;        
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: opacity 0.3s, transform 0.3s;
    transform: translateY(20px);
    opacity: 0;
    margin: auto;
    width: 90%;
    max-width: 90%;
    text-align: center;
}

.unoi-clic-button{
  width: 80% !important;
}

input[type="text"], input[type="email"], textarea {
  color: #fff !important;
}
  
  /* NAVBAR */

  #nav-menu {
  background-color: #000;
  }
  .container-nav-unoi{
  height: 70px;
  }
  .right-container {
  display: none;
  }
  .logo img{
  width: 65px;
  height: 65px;
  }
  .dropdown ul {
  padding: 0 1rem 0 1rem;
  }
  .menu {
  top: 65px;
  }
  
  /* HERO */
  
  .container{
  margin-top: 0;
  }
  .first-contenedor-unoi {
  display: none;
  }
  .first-docentes-unoi {
  display: none;
  }
  .first-padres-unoi {
  display: none;
  }
  .content_slider div{
  margin-top: 100px;
  }
  
  .first-contenedor-unoi-mobile {
  display: block;
  height: auto;
  padding-bottom: 120px;
  background: linear-gradient(to top, #16ABE2, #001D68);
  }
  
  .first-docentes-unoi-mobile {
  display: block;
  height: auto;
  padding-bottom: 120px;
  background: linear-gradient(to top, #16ABE2, #001D68);
  }
  .first-padres-unoi-mobile {
  display: block;
  height: auto;
  padding-bottom: 120px;
  background: linear-gradient(to top, #16ABE2, #001D68);
  }
  
  .first-titulo-unoi-mobile {
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 0px;
  }
  
  .image-contenedor-unoi-mobile {
  width: 100%;
  height: 200px;
  object-fit: cover;
  }
  
  .first-texto-unoi-mobile {
  color: #fff;
  font-size: 1rem;
  padding: 20px 0px;
  line-height: 1.5;
  margin: 0px;
  }
  
  .first-boton-unoi-mobile {
  padding: 10px 20px;
  margin: 20px 20px;
  background-color: #ffffff;
  color: #16ABE2;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  width: 70%;
  }
  
  .edi-padding{
  margin-top: 5px;
  }
  
  /* SECOND */
  .second-content-unoi {
  height: auto;
  padding: 10px 0;
  }
  
  .second-left-column-unoi,
  .second-right-column-unoi {
  flex: 100%;
  margin-top: 10px;
  }
  
  .second-right-column-unoi {
  display: none;
  }
  
  .second-left-text-unoi {
  margin: 90px auto 10px auto;
  width: 100%;
  padding: 30px;
  color: #75B547 !important;
  background-color: rgb(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  }
  
  .second-button-unoi {
  width: 100%;
  }
  
  .second-left-column-unoi h2 {
  color: #75B547;
  font-size: 1.5rem;
  }
  
  .second-left-column-unoi p {
  color: #75B547;
  }

  .h2-unoi-school{
    font-size: 1.5rem;
}

.titulo-alterno {
  font-size: 1.5rem;
  margin-top: 40px;
}

.titulo-nuevo {
  font-size: 1.5rem;
  color: #75B547;
}
  
  /* CUARTO COMPONENTE */
  
  .two-column-container{
  padding: 120px 0 30px 0;
  }
  
  .two-column-docentes{
  padding: 120px 0 30px 0;
  }
  
  .text-column-content{
  margin: auto;
  }
  
  .h2-text-content {
  margin-top: 400px;
  font-size: 1.5rem;
  }
  
  /* COMUNIDAD */
  .comunity-unoi h2{
  font-size: 1.6rem;
  }

  /* ACORDEON  */

  .contenedor-acordeon {
    padding: 0px 20px 80px 20px;
  }

  /* CAROUSEL CARD */    
    .carousel .card .card-content-unoi{
    display:flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    border-radius: 40px;
    padding:30px 30px 30px 30px;
    box-shadow: 15px 0 15px 15px rgba(22, 171, 226, 0.3), -10px 0 15px 10px rgba(22, 171, 226, 0.3);
    }
    
    .card .card-content-unoi .img img {
    width: 150px;
    height: 150px;
    }
    .carousel .card .card-content-unoi h2{
    font-size: 1.5rem;
    margin-top: 10px;
    }
    .carousel .card .card-content-unoi p {
    font-size: 1rem;
    }
    .card-content-unoi .card-text-unoi{
    margin: 0 0 0 0;
    text-align: center;
    }
    .card-content-unoi .card-text-unoi span{
    font-size: 1rem;
    }
  
  /* PÁGINA DOCENTES */
  
    .second-docentes-unoi, .second-padres-unoi {
      height: auto;
      padding: 10px 0;
    }
    .gi-button{
      width: 80%;
      margin: auto;
    }
    .one-half first{
      width: 100%;
    }

    /* FORMULARIO MOBILE */

    .nf-form-cont .one-half, .nf-form-cont .three-sixths, .nf-form-cont .two-fourths {
      width: 100% !important;
    }
    .nf-form-cont .one-half{
     margin-left: 0 !important;
    }
	.ninja-forms-field {
	  color: #fff !important;
	  border-color: #fff !important;
	}
	.nf-response-msg p{
	  color: #fff !important;
  	}
  }

/* Blog*/

.redv{
	margin: 10px 10px 10px 0 !important;
}

.left-p{
	margin-left:10px;
	padding-top: 3px;
    padding-bottom: 3px;
}

/* 1. Estilo para el ANCLA (el botón contenedor) */
.unoi-cta-button {
  /* --- Contenedor Flexbox --- */
  display: flex; 
  align-items: center; /* <-- Esto centra VERTICALMENTE */
  justify-content: center; /* <-- ESTE ES EL CAMBIO: Centra HORIZONTALMENTE */
  
  /* --- Dimensiones --- */
  width: 150px; /* Ancho del botón */
  height: 50px; /* Alto del botón */
  
  /* --- Apariencia --- */
  background: linear-gradient(to right, #16abe2, #75b547);
  border-radius: 15px; 
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  
  /* --- CAMBIO: Quitamos el padding --- */
  /* Si dejamos padding, el centrado no será exacto */
  padding: 0; 
  
  text-decoration: none; 
  overflow: hidden; 
  transition: all 0.3s ease-out;
}

/* 2. Estilo para la IMAGEN (el ícono) */
.unoi-cta-icon {
  /* --- Dimensiones del ícono --- */
  height: 45px; 
  width: 45px;
  object-fit: contain; 
  display: block;
  
  /* --- CAMBIO: Quitamos el margen --- */
  /* El margen a la derecha también interfería con el centrado */
  /* margin-right: 15px; */ 
}

/* 3. Estilo HOVER (sin cambios) */
.unoi-cta-button:hover {
  transform: scale(1.03); 
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
  filter: brightness(1.1);
}
