body {
    margin: 0;
}

.carousel-indicators [data-bs-target] {
  margin-top: 4%;
  width: 10px !important;
  height: 10px !important;
  border-radius: 50% !important;
  background-color: #26c9ff !important;
  margin-right: 10px;
}

.carousel-indicators {
  position: inherit !important;
}


/* --- Fonts and titles --- */
.texto_modal{
   font-family: 'Poppins', sans-serif !important;
    font-size: 21px;
	color:#0099ff;
	font-weight: 500;
	line-height: 60px;
    
}

.textH1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 50px;
    line-height: 60px;
}
.textH2 {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 600;
    margin-bottom: 10px;
}
.textH3 {
    font-family: 'Poppins', sans-serif;
    font-size: 22px;
    font-weight: 500;
}
.textH4{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.textH5 {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
}
.textParagraph {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    padding-left: 0 !important;
    padding-right: 0 !important;
}
.textContentTitle{
    color: #0099ff;
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    line-height: 52px;
    font-weight: 500;
}
.textActivity{
    color: #9A9292;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 500;
}
.textBlack {
    color: black;
}
.textWhite {
    color: #fff;
}
.textBlue {
    color: #0099ff;
}
/* --- Fonts and titles END --- */


/* --- margins and paddings --- */
.paddingLR {
    padding-left: 8%;
    padding-right: 8%;
}
.paddingLRExtra {
    padding-left: 4%;
    padding-right: 4%;
}
.paddingTop {
    padding-top: 0;
}
.paddingBottom {
    padding-bottom: 0;
}
.paddingTopBot {
    padding-top: 3%;
    padding-bottom: 3%;
}
/* --- margins and paddings END --- */


/* --- Navbar --- */
.navContainer {
    position: fixed;
    width: 100%;
	z-index:999999;
}
.navBarBlueDesktop {
    background-color: #0099ff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 5px;
}
.navBar__Left {
    display: flex;
}
.navLogo {
    width: 120px;
    margin: 10px;
}
.navBar__menu {
    display: flex;
    align-items: center;
}
.navBar__menu ul li {
    display: inline-block;
    padding-right: 20px;
}
.navBar__menu ul li a{
    text-decoration: none;
    color: #fff;
}
.navBar__navitems {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
}
.navBar__right {
    display: flex;
    align-content: flex-end;
    align-items: center;
    gap: 10px;
}
.navBar__ButtonBlue {
    background-color: #083ba1;
    border-radius: 3px;
    font-size: 14px;
    color: #fff !IMPORTANT;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 5px 12px;
}
.navBar__ButtonBlue:hover {
    background-color: #2fd9ff;
}
.navBar__ButtonBlack {
    background-color: #222225;
    border-radius: 3px;
    font-size: 14px;
    color: #fff !IMPORTANT;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 5px 12px;
}
.navBar__ButtonBlack:hover {
    background-color: #2fd9ff;
}
.navBar__Bandera {
    width: 30px;
}
.navBarBlueMobile {
    display: none;
}
/* --- Navbar  END--- */


/* --- Header --- */
.mainHeader {
    padding-top: 5%;
    display: flex;
    flex-direction: row;
    background-color: #0099ff;
    height: 600px;
}
.secondHeader {
    padding-top: 5%;
    display: flex;
    flex-direction: row;
    background-color: #0099ff;
}
.mainHeader__left {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.secondHeader__left {
    width: 80%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.mainHeader__right {
    width: 40%;
    display: flex;
    align-items: flex-end;
}
.imgBottom {
    bottom: 0;
    width: 100%;
}
.redButton {
    background-color: #e34a45;
    border-radius: 5px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 600;
    padding: 12px 30px;
    border: 0;
    border-bottom: solid 5px #ca312c;
    text-decoration: none;
    margin: 14px 0 14px 0;
}
.redButton:hover {
    background-color: #ca312c;
}
.redButtonDisabled{
    background-color: #C9CCD4;
    border-radius: 5px;
    color: #ffF;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 30px;
    border: 0;
    border-bottom: solid 5px #b5b8bf;
    text-decoration: none;
    margin: 14px 0 14px 0;
}
.generalInput{
    background-color: #fff;
    border: solid 1px #C9CCD4;
    padding: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    width: 300px;
    margin-right: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
.generalSelect{
    background-color: #fff;
    border: solid 1px #C9CCD4;
    padding: 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    width: 318px;
    margin-right: 10px;
    border-radius: 5px;
    margin-bottom: 20px;
}
input[type=radio] {
    border: 0px;
    width: 20px;
    height: 20px;
}
.generalLabel{
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    padding-right: 20px;
    padding-top: 2px;
}
.formTest__asignatura{
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}
.formTest__submit{
    margin-bottom: 30px;
}
.formTest__asignaturaOp1{
    display: flex;
    flex-direction: row;
    gap:10px;
    margin-bottom: 12px;
}







/* --- Header END --- */


/* --- Edades contenidos publicos --- */
.contPublic__icons {
    padding-top: 2%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 2%;
}
.contPublic__iconContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 180px;
    margin-bottom: 20px;
    cursor: pointer;
}
.contPublic__iconContainer_icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 130px;
    height: 130px;
    border-radius: 100%;
}
.contPublic__iconTxt {
    margin: 5px 0 0 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 60px;
    font-weight: 600;
    text-align: center;
    line-height: 60px;
    padding: 0;
}
.contPublic__iconSubTxt {
    margin: 0;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
}
.contPublic__iconColor_6years {
    background-color: #fea51f;
}
.contPublic__iconColor_7years {
    background-color: #84d4c4;
}
.contPublic__iconColor_8years {
    background-color: #26c9ff;
}
.contPublic__iconColor_9years {
    background-color: #9a6361;
}
.contPublic__iconColor_10years {
    background-color: #ba7aca;
}
.contPublic__iconColor_11years {
    background-color: #3660e6;
}
.contPublic__iconColor_12years {
    background-color: #61eb61;
}
.contPublic__iconColor_13years {
    background-color: #d484a9;
}
.contPublic__iconColor_14years {
    background-color: #fa3261;
}
.contPublic__iconColor_15years {
    background-color: #74619a;
}
.contPublic__iconColor_16years {
    background-color: #ca9d7a;
}
.contPublic__iconColor_17years {
    background-color: #57a9c8;
}
/* --- Edades contenidos publicos END --- */


/* --- listado contenidos publicos --- */
.contPublic__asignatura{
    background-color: #fff;
    border-top: solid 1px #cfcfcf ;
    border-bottom: solid 1px #cfcfcf;
    border-left: 0;
    border-right: 0;
    width: 100%;
    text-align: left;
    padding: 15px 10px 15px 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.contPublic__asignatura:hover{
    background-color: #f9fcff;
    color: #0099ff;
}
.contPublic__asignaturaArrow{
    width: 15px;
}
.contPublic__unidad{
    background-color: #fff;
    width: 100%;
    text-align: left;
    padding: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 500;
}
.contPublic__contenido{
    background-color: #F9FCFF;
    border-top: solid 1px #cfcfcf ;
    border-bottom: 0;
    border-left: 0;
    border-right: 0;
    width: 100%;
    text-align: left;
    padding: 15px 10px 15px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
}
.contPublic__contenido:hover{
    background-color: #E6F1FF;
    border-top: solid 1px #8a8a8a;
    border-bottom: solid 1px #8a8a8a;
}
.contPublic__contenidoArrow{
    width: 6px;
    padding-right: 10px;
}
/* --- listado contenidos publicos END --- */

/* --- info contenidos --- */
.contentContainer{
    display: flex;
    flex-direction: row;
}
.contentContainer__menu{
    padding-left: 3%;
    width: 20%;
}
.contentContainer_content{
    width: 80%;
    padding-right: 6%;
    padding-left: 2%;
}
.contentContainer__menuTitle{
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
}
.contentContainer__menuItem{
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 12px 0 12px 0;
}
.contentContainer__menuButton{
    text-decoration: none;
    color: #000;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
}
.contentContainer__menuButton:hover{
    color: #0099ff;
}
.contentContainer__menuIcon{
    width: 25px;
    padding-right: 10px;
}
/* --- info contenidos END--- */


/* --- Por que Wited --- */
.whyWited {
    background-color: #E8E8E8;
}
.whyWited__icons {
    padding-top: 3%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    gap: 2%;
}
.whyWited__iconContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    margin-bottom: 20px;
}
.whyWited__iconContainer_icon {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    background-color: #0099ff;
    display: flex;
    justify-content: center;
    align-items: center;
}
.whyWited__iconContainer_txt {
    text-align: center;
}
.whyWited__iconColor_met {
    background-color: #26C9FF;
}
.whyWited__iconColor_curr {
    background-color: #51ddaf;
}
.whyWited__iconColor_diag {
    background-color: #a434d8;
}
.whyWited__iconColor_sinc {
    background-color: #fea51f;
}
.whyWited__iconColor_tod {
    background-color: #e844a3;
}
.whyWited__iconAnimation {
    width: 80%;
}
/* --- Por que Wited END--- */


/* --- Spots y medios --- */
.spots {
    background-color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.spots__title {
    padding-bottom: 1%;
}
.spots__carousel {
    display: flex;
    justify-content: center;
    gap: 2%;
}
.spots__carouselVideo {
    width: 25%;
}
.spots__buttons {
    padding: 20px;
    display: flex;
    flex-direction: row;
    gap: 8px;
}
.spots__button {
    width: 10px;
    height: 10px;
    background-color: #0099ff;
    border-radius: 100%;
    cursor: pointer;
}

/* --- Spots y medios END --- */

/* --- FAQS --- */
.faqs {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.faqs__title {
    padding-bottom: 2%;
}
.faqs__questions {
    width: 85%;
}
.faqs__acordion {
    width: 100%;
    background-color: #F1F4F7;
    border-radius: 10px;
    margin-bottom: 15px;
}
.faqs__acordionButton {
    background-color: #F1F4F7;
    border-radius: 10px;
    width: 100%;
    text-align: left;
    border: none;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
}
.faqs_textTitle {
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    width: 80%;
    margin-bottom: 0;
}
.faqs__acordionCircle {
    background-color: #FEA51F;
    width: 15px;
    height: 15px;
    border-radius: 100%;
    margin-right: 10px;
    margin-left: 10px;
}
.faqs__acordionPanel {
    background-color: #F1F4F7;
    border-radius: 10px;
}
.faqs__acordionPanel,
.textParagraph {
    font-size: 14px;
    line-height: 24px;
    padding: 12px;
    margin: 0;
}
/* --- FAQS END--- */



/* --- banner --- */
.banner{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #1e1e1e;
}
.banner__mensaje{
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 0 30px 40px 30px;
	text-align:center;
}
.banner__texto{
    color: #fff;
    font-family: Open-sans, sans-serif;
    font-size: 16px;
    padding-bottom: 10px;
    padding-top: 10px;
}
.banner__button{
    background-color: #e34a45;
    text-decoration: none;
    color: #fff;
    padding: 10px 30px;
    border-radius: 5px;
    font-family: Poppins, sans-serif;
}
.banner__button:hover{
    background-color: #ca312c;
}
.banner__closeimg{
    padding-top: 5px;
    width: 30px;
    position: absolute;
    right: 0;
}





.modal-header {
  border-bottom: 0px solid #dee2e6 !important;
}
.cointainerBoton {
  width: 40%;
  margin: auto;
}

  
  .titleModalSpots {
  font-size: 16px;
  line-height: 24px;
  font-weight: bold;
  font-family: Open Sans;
  color: #000;
  margin-top: 5%;
  margin-bottom: 5%;
}

.textModalSpots {
  font-size: 13px;
  line-height: 25px;
  font-weight: 300;
   font-family: Open Sans  !important;
  color: #000;
  margin-bottom: 5%;
}








/* ---- mediaQuery tablet --- */
@media screen and (max-width:880px) {
/*#zona_mensaje_seguir{ width:100%; float:left; position: relative;}*/
.zona_mensaje_seguir_i{width:100%; float:left; text-align:center; font-weight:bold; margin-top:70px; margin-bottom:20px}
.zona_mensaje_seguir_i_{text-align:center; }
/*
.zona_mensaje_seguir_i__{color:#FFFFFF !important; background-color:#0099FF !important; cursor:pointer!important;}
*/

a.zona_mensaje_seguir_i__:hover{ color:#FFFFFF !important;}
.zona_mensaje_seguir_i__:visited{ color: #000000 !important;}
a.zona_mensaje_seguir_i__:visited{ color:#FFFFFF !important;}


.class_estilo_cortar_descripcion_publica{ background-color: #FFFFFF;float:left;float:left; line-height:28px; width:100%;max-height:1000px;
overflow: hidden;font-family: Open Sans,Helvetica, Arial,sans-serif; 

  -webkit-mask-image: -webkit-gradient(linear, center bottom,center top,  
  color-stop(1.00,  rgba(0,0,0,1)),
  color-stop(0.9,  rgba(0,0,0,1)),
  color-stop(0.5,  rgba(0,0,0,1)),
  color-stop(0.4,  rgba(0,0,0,1)),
  color-stop(0.3,  rgba(0,0,0,1)),
  color-stop(0.2,  rgba(0,0,0,1)),
  color-stop(0.1,  rgba(0,0,0,1)),
  color-stop(0.0,  rgba(0,0,0,0)));
  
  }
 .class_estilo_cortar_descripcion_publica_completo{}


    /* --- Fonts and titles --- */
    .textH1 {
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        font-size: 38px;
        line-height: 48px;
    }
    .textContentTitle{
        font-size: 30px;
        line-height: 40px;
    }
    /* --- Fonts and titles END --- */

    /* --- margins and paddings --- */
    .paddingLR {
        padding-left: 10%;
        padding-right: 10%;
    }
    .paddingLRExtra {
        padding-left: 0;
        padding-right: 0;
    }
    .paddingTop {
        padding-top: 10%;
    }
    .paddingBottom {
        padding-bottom: 5%;
    }
    /* --- margins and paddings END--- */


    /* --- Navbar --- */
    .navBarBlueDesktop {
        display: none;
    }
    .navBarBlueMobile {
        background-color: #0099ff;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 5px 20px 5px 20px;
    }
    .navBarMobile__icon {
        width: 35px;
    }
    /* --- Navbar END --- */


    /* --- Header --- */
    .mainHeader {
        padding-top: 100px;
        flex-direction: column;
        height: auto;
    }
    .secondHeader {
        padding-top: 100px;
        flex-direction: column;
        height: auto;
        justify-items: center;
        text-align: center;
    }
    .mainHeader__left {
        width: fit-content;
        justify-content: center;
        text-align: center;
    }
    .secondHeader__left {
        width: fit-content;
        justify-content: center;
        align-items: center;
    }
    .mainHeader__right {
        width: fit-content;
        justify-content: center;
    }
    .imgBottom {
        width: 70%;
    }
    /* --- Header END --- */

    /* --- info contenidos --- */
    .contentContainer__menu{
        display: none;
    }
    .contentContainer{
        display: block;
        padding: 5%;
    }
    .contentContainer_content{
        width: 100%;
        padding: 0;
    }
    /* --- info contenidos ENd --- */


    /* --- Spots y medios --- */
    .spots__carouselVideo {
        width: 35%;
    }
    /* --- Spots y medios END --- */


    /* --- FAQS --- */
    .faqs__questions {
        width: 100%;
    }

    /* --- FAQS END --- */
}


/* ---- mediaQuery mobile --- */
@media screen and (max-width:600px) {
    /* --- Fonts --- */
    .textH1 {
        font-size: 32px;
        line-height: 42px;
    }
    .textH2 {
        font-size: 28px;
    }
    .textH3 {
        font-size: 20px;
    }
    .textH5 {
        font-family: 'Poppins', sans-serif;
        font-size: 14px;
        font-weight: 600;
    }
    /* --- Fonts END --- */

    /* --- Header --- */
    .mainHeader {
        padding-top: 20%;
    }
    .mainHeader__right{
        width: 100%;
    }
    /* --- Header END --- */


    /* --- margins and paddings --- */
    .paddingTopBot {
        padding-top: 8%;
        padding-bottom: 8%;
    }
    /* --- margins and paddings END --- */


    /* --- Edades contenidos publicos --- */
    .contPublic__icons {
        padding-top: 10%;
        padding-bottom: 10%;
        gap: 5%;
    }

    .contPublic__iconContainer {
        width: 140px;
    }

    .contPublic__iconContainer_icon {
        width: 120px;
        height: 120px;
    }

    /* --- Edades contenidos publicos ENd --- */

    /* --- Por que Wited --- */
    .whyWited__icons {
        padding-top: 10%;
        padding-bottom: 10%;
        gap: 5%;
    }

    .whyWited__iconContainer {
        max-width: 140px;
    }

    .whyWited__iconContainer_icon {
        width: 120px;
        height: 120px;
    }

    /* --- Por que Wited END--- */

    /* --- Spots y medios --- */
    .video2 {
        display: none;
    }

    .video3 {
        display: none;
    }

    .spots__carouselVideo {
        width: 100%;
    }

    /* --- Spots y medios END --- */

    /* --- FAQs --- */
    .faqs__questions {
        padding-top: 20px;
    }
    /* --- FAQs END--- */


    /* --- footer --- */
    .iconWidth {
        width: 28px;
    }
    /* --- footer END --- */
}

/* ---- mediaQuery mobile xs --- */
@media only screen and (max-width:417px) {
    /* --- Fonts --- */
    .textH1 {
        font-size: 28px;
        line-height: 38px;
    }
    .textContentTitle{
        font-size: 24px;
        line-height: 30px;
    }
    .textH2 {
        font-size: 24px;
    }
    /* --- Fonts END --- */


    /* --- Edades contenidos publicos --- */
    .contPublic__icons {
        padding-top: 10%;
        padding-bottom: 10%;
        gap: 5%;
    }
    .contPublic__iconContainer {
        width: 120px;
    }
    .contPublic__iconContainer_icon {
        width: 100px;
        height: 100px;
    }
    /* --- Por que Wited --- */
    .whyWited__iconContainer {
        max-width: 120px;
    }
    .whyWited__iconContainer_icon {
        width: 100px;
        height: 100px;
    }


   
    .generalInput{
        margin-right: 0;
        width: 240px
    }
    .generalSelect{
        width: 260px
    }
    .formTest__asignatura{
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }
    .formTest__asignaturaOp1{
        margin-bottom: 20px;
    }
}

@media screen and (min-width:880px) {


#zona_mensaje_seguir{background-color:#FFFFFF !important; width:100%; float:left; position: relative	}
.zona_mensaje_seguir_i{width:100%; float:left; text-align:center; font-weight:bold; margin-top:70px}
.zona_mensaje_seguir_i_{width:100%; float:left; text-align:center; margin-top:20px; margin-bottom:140px}
.zona_mensaje_seguir_i__{color:#FFFFFF !important; background-color:#0099FF !important; cursor:pointer!important;}


a.zona_mensaje_seguir_i__:hover{ color:#FFFFFF !important;background-color: #0099FF !important;}
.zona_mensaje_seguir_i__:visited{ color: #000000 !important;}
a.zona_mensaje_seguir_i__:visited{ color:#FFFFFF !important;}

.class_estilo_cortar_descripcion_publica{float:left;float:left; line-height:28px; width:100%;max-height:1100px;
overflow: hidden;font-family: Open Sans,Helvetica, Arial,sans-serif;

  -webkit-mask-image: -webkit-gradient(linear, center bottom,center top,  
  color-stop(1.00,  rgba(0,0,0,1)),
  color-stop(0.9,  rgba(0,0,0,1)),
  color-stop(0.5,  rgba(0,0,0,1)),
  color-stop(0.4,  rgba(0,0,0,1)),
  color-stop(0.3,  rgba(0,0,0,1)),
  color-stop(0.2,  rgba(0,0,0,1)),
  color-stop(0.1,  rgba(0,0,0,1)),
  color-stop(0.0,  rgba(0,0,0,0)));}
 .class_estilo_cortar_descripcion_publica_completo{float:left;float:left; line-height:28px; width:100%;
overflow: hidden;font-family: Open Sans,Helvetica, Arial,sans-serif;}


}


