/*
 Theme Name:   Patria Theme
 Theme URI:    https://hostingatope.com
 Description:  Tema para Patria
 Author:       Jesus Enrique Flores Nestozo
 Author URI:   https://enriqueNestozo.com
 Version:      1.0
*/

@import "login-styles.css";
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Lato&family=Ubuntu:ital,wght@0,500;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Saira:wght@100;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato&display=swap');
*,
*::after,
*::before {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh Im !important;
  display: flex !important;
  flex-direction: column !important;
  font-family: "Poppins", sans-serif !important;
  background-color: #E9F0FC !important;
  overflow-x: hidden;
}

.principal-container {
  flex:1;
}

html {
  max-width: 100% !important;
  overflow-x: hidden !important;
}


.hide-body{
  overflow-y: hidden !important;
}


h1,h2,h3,h4,h5{
  font-family: "Poppins", sans-serif;
  color: white;
}

.titular-azul{
  color: #2372d1;
}

.img-login:hover .div-img1 .img-rueda1 {
  transform: translate(-10%, 0%) rotate(-30deg) ;
  transition: transform 0.4s ease-in-out;
}
.img-login:hover .div-img2 .img-rueda2 {
  transform: translate(-10%, 0%) rotate(-30deg) ;
  transition: transform 0.4s ease-in-out;
}
.img-login:hover .img-libro {
  transform: translate(-5%, 0%) ;
  transition: transform 0.4s ease-in-out;
}
.img-login:hover .img-libro-contacto {
  transform: translate(0%, 5%) ;
  transition: transform 0.4s ease-in-out;
}

.img-rueda1, .img-rueda2, .img-libro, .img-rueda2-derecha{
  transition: .4s;
}

.img-rueda1{
  width: 30%;
}

.img-rueda2-derecha{
  width: 20%;
}

.img-libro{
  width: 70%;
}

.div-img1{
  position:absolute; 
  top:0%; 
  left:12%;
}

.div-img2-derecha{
  position:absolute; 
  bottom:25%; 
  right:20%;
}

.img-inicio:hover .div-img1 .img-rueda1 {
  transform: translate(-10%, 0%) rotate(-30deg) ;
  transition: transform 0.4s ease-in-out;
}
.img-inicio:hover .div-img2-derecha .img-rueda2-derecha {
  transform: translate(10%, 0%) rotate(30deg) ;
  transition: transform 0.4s ease-in-out;
}
.img-inicio:hover .img-libro {
  transform: translate(0%, -5%) ;
  transition: transform 0.4s ease-in-out;
}

/* ///////////..utility classes../////////// */

.container {
  /*max-width: 1200px;*/
  /*width: 100%;*/
  min-width: 90%;
  /*margin: auto;*/
  margin: 0%;
}

.btn {
  display: inline-block;
  padding: 0.5em 1.5em;
  text-decoration: none;
  border-radius: 50px;
  cursor: pointer;
  outline: none;
  margin-top: 1em;
  text-transform: uppercase;
  font-weight: small;
}

.btn-primary {
  color: #fff;
  background: #16a083;
}

.btn-primary:hover {
  background: #117964;
  transition: background 0.3s ease-in-out;
}

/* ............/navbar/............ *

/* desktop mode............/// */


  .navbar {
    /*box-shadow: 0px 5px 10px 0px #aaa;*/
    position: fixed;
    width: 100%;
    background: #2372d1;
    color: #000;
    opacity: 1;
    height: 80px;
    z-index: 12;
    display: none;
  }
 
  .navbar-container input[type="checkbox"],
  .navbar-container .hamburger-lines {
    display: block;
  }

  .navbar-container {
    display: block;
    height: 64px;
  }

  .navbar-container input[type="checkbox"] {
    position: absolute;
    display: block;
    height: 32px;
    width: 30px;
    top: 20px;
    right: 20px;
    z-index: 5;
    opacity: 0;
  }

  .navbar-container .hamburger-lines {
    display: block;
    height: 23px;
    width: 35px;
    position: absolute;
    top: 17px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .navbar-container .hamburger-lines .line {
    display: block;
    height: 4px;
    width: 100%;
    border-radius: 10px;
    background: #fff;
  }

  .navbar-container .hamburger-lines .line1 {
    transform-origin: 0% 0%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar-container .hamburger-lines .line2 {
    transition: transform 0.2s ease-in-out;
  }

  .navbar-container .hamburger-lines .line3 {
    transform-origin: 0% 100%;
    transition: transform 0.4s ease-in-out;
  }

  .navbar .menu-items {
    background: #2372d1;
    height: 100vh;

    position:absolute;
    top: 10px;
    left: 0;
    margin-top: 50px;
    flex-direction: column;
    align-items: center;
    transform: translateY(-150%);
    display: block;
    /*margin-left: -40px;*/
    /*padding-left: 50px;*/
    transition: transform 0.5s ease-in-out;
    /*box-shadow: 5px 0px 10px 0px #aaa;*/
  }

  .navbar .menu-items li {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 500;
    left: 0;
  }

  .navbar-container input[type="checkbox"]:checked ~ .menu-items {
    transform: translateX(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line1 {
    transform: rotate(35deg);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line2 {
    transform: scaleY(0);
  }

  .navbar-container input[type="checkbox"]:checked ~ .hamburger-lines .line3 {
    transform: rotate(-35deg);
  }

/* .menu-items {
  order: 2;
  display: flex;
} */

/* .menu-items li {
  list-style: none;
  margin-left: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
} */

.menu-items a:not(.contacto):not(sesion) {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s ease-in-out;
}

.normal-text {
  color: #fff !important;
  font-size: 85%;
}

.navbar .menu-items li:hover:not(.contacto):not(.sesion):not(.breadcrumb-item) {
  color: #fff;
  transform: scale(1.5);
  transition: ease-in-out transform .5s;
}

.menu-items a:hover:not(.contacto):not(sesion) {
  color: #fff;
}

.logo {
  order: 1;
  font-size: 2.3rem;
  margin-bottom: 0.5rem;
}

.footer{
  width: 100%;
  color: #fff;
  background-color: #2372d1;
  min-height: 100px;
  
}



.footer .text-footer p{
  text-align: center;
  font-size: 1.8rem;
}

.footer .logo-footer{
  display:flex;
  justify-content: center;
  padding: 20px 0px;
}

.navbar-nav ul{
  text-align: center;
  left: 0;
  right: 0;
  position: absolute;
}


/** codigo para redes sociales **/

.footer .title-footer h4{
  text-align: center;

}

.footer .iconos-redes-sociales{
  display: flex;
  justify-content: right;
  margin-top: 20px;
  margin-bottom: 30px;
}

.footer .iconos-redes-sociales ul{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .iconos-redes-sociales ul li{
  display: inline-block;
  padding: 0 5px;
  width: 50px;
  height: 50px;
  background-color: rgba(white,0.5);
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
}

.footer .iconos-redes-sociales ul li a{
  color: white;
  font-size: 28px;
  text-align: center;
}

/* switches */

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #93bae8;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: #10D400;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #93bae8;
}

input:focus + .slider {
  box-shadow: 0 0 1px #93bae8;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
  background-color: red;
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Rounded buttons */
.btn-circle.btn-xl {
  width: 100px;
  height: 100px;
  padding: 13px 18px;
  border-radius: 60px;
  font-size: 15px;
  text-align: center;
}

.triangulo-equilatero-bottom {
  width: 0;
  height: 0;
  border-right: 100px solid transparent;
  border-top: 100px solid transparent;
  border-left: 100px solid transparent;
  border-bottom: 100px solid #f0ad4e;
}

/* TRANSICIONES AUTOEVALUACIONES*/

.visible.title{
  opacity: 1;
  transform: translate(0, 0vh);
  transition: all 1s;
}

.invisible.title{
    visibility: hidden;
    transform: translate(0, -10vh);
    transition: all 1s;
    max-height: 0;
}

.visible.blocks{
  opacity: 1;
  transform: translate(0, 5vh);
  transition: all 1s;
  max-height: 100%;
}

.invisible.blocks{
    visibility: hidden;
    position: absolute; 
    transform: translate(0, -10vh);
    transition: all 1s;
    max-height: 0;
}



.completado {
  padding-right:10px; 
  padding-bottom:10px; 
  color:#46D640;
}

.incompleto {
  padding-right:10px; 
  padding-bottom:10px; 
  color:red;
}


/* Prevent scrollbars to appear when waves go out of bound */
/*
.sonar-wrapper {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 8rem 0;
}
*/

/* The circle answers*/
.sonar-wrapper {
  width: 100px;
  height: 100px;
  margin: 5em auto 1em;
  position: relative;
}
.down{
  color: #fff;
  margin-top: 50px;
  font-size: 50px;
}

.sonar-wrapper:hover{
  width: 100px;
  height: 100px;
  margin: 5em auto 1em;
  background-color: #4163DD;
  border-radius: 50%;
}

.correct{
  width: 100px;
  height: 100px;
  margin: 5em auto 1em;
  background-color: #00C930 !important;
  border-radius: 50%;
}

.incorrect{
  width: 100px;
  height: 100px;
  margin: 5em auto 1em;
  background-color: #E02F58 !important;
  border-radius: 50%;
}

.btn-sonar {
  background: none;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  display: inline-block;
  border: .3em solid white;
  position: relative;
}
.btn-sonar:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    top: 0;
    left: 0;
  }
.btn-sonar:hover::before {
    animation: sonar-effect 1.7s ease-in-out .1s infinite;
}


@keyframes sonar-effect {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 0.3;
    box-shadow: 0 0 0 0 #fff, 0 0 15px 15px #fff, 0 0 0 15px #fff;
  }
  60% {
    opacity: 0.2;
    box-shadow: 0 0 0 0 #fff, 0 0 15px 15px #fff, 0 0 0 15px #fff;
  }
  100% {
    box-shadow: 0 0 0 5px#fff, 0 0 10px 10px #fff, 0 0 0 10px #fff;
    transform: scale(1.3);
    opacity: .1;
  }
}

/* Progress bar */
body.swal2-shown > [aria-hidden="true"] {
  transition: 0.1s filter;
  filter: blur(10px);
}

.vertical-buttons {
  flex-direction: column;
}


/* Next arrow */
svg{
  position: relative;
  top: 0;
  margin-left: 10px;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke: black;
  stroke-width: 2;
  transition: all .3s ease;
}

.next-button:hover svg{
    transform: translateX(35px);
    stroke: black !important; 
}

.btn-resultados{
  background-color: white !important;
  color: #4163DD !important;
  text-transform: none !important;
}

/* Page videos*/
.input-widget, .input-widget-docente{
  display: none;
}

.label-widget{
  padding: 20px;
  font-size: 15px;
  width: 20%;
  opacity: 0.35;
  cursor: pointer;
  text-align: center;
}

.label-widget-docente{
  padding: 20px;
  opacity: 0.35;
  cursor: pointer;
  text-align: center;
  font-weight: 600; 
  font-size: 20px;
  overflow-wrap: break-word;
}

.widget{
  background: #E9F0FC;
  width: inherit;
  border-radius: 8px;
}

.tabs{
  width: 100%;
}

.content-widget{
  position: relative;
  overflow: hidden;
  min-height:100vh;
  width: inherit;
}

.content-inner{
  position: relative;
  top: 0;
  left: 0;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  width: 100%;
  transition: 0.3s;
}

.content-inner > div {
  width: inherit;
  padding: 20px;
  border-top: 1px solid gray;
}

.buttons-widget{
  position: relative;
  display: flex;
  
}

.underline{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 20%;
  height: 3px;
  background: #4163DD;
  transition: 0.2s;
}

.underline-docente{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background: #4163DD;
  transition: 0.2s;
}

.card-inicio{
  transition: background-color 0.3s ease;
}
.card-inicio:hover{
  background-color: #f5f5f5;
}

.tabs .input-widget:nth-child(1):checked ~ .buttons-widget .underline{
  translate: 0 0;
}
.tabs .input-widget:nth-child(2):checked ~ .buttons-widget .underline{
  translate: 100% 0;
}
.tabs .input-widget:nth-child(3):checked ~ .buttons-widget .underline{
  translate: calc(100% * 2) 0;
}
.tabs .input-widget:nth-child(4):checked ~ .buttons-widget .underline{
  translate: calc(100% * 3) 0;
}
.tabs .input-widget:nth-child(5):checked ~ .buttons-widget .underline{
  translate: calc(100% * 4) 0;
}

.tabs .input-widget:nth-child(1):checked ~ .buttons-widget .label-widget:nth-child(1),
.tabs .input-widget:nth-child(2):checked ~ .buttons-widget .label-widget:nth-child(2),
.tabs .input-widget:nth-child(3):checked ~ .buttons-widget .label-widget:nth-child(3),
.tabs .input-widget:nth-child(4):checked ~ .buttons-widget .label-widget:nth-child(4),
.tabs .input-widget:nth-child(5):checked ~ .buttons-widget .label-widget:nth-child(5){
  opacity: 1;
}


.tabs .input-widget-docente:nth-child(1):checked ~ .buttons-widget .underline-docente{
  translate: 0 0;
}
.tabs .input-widget-docente:nth-child(2):checked ~ .buttons-widget .underline-docente{
  translate: 100% 0;
}
.tabs .input-widget-docente:nth-child(3):checked ~ .buttons-widget .underline-docente{
  translate: calc(100% * 2) 0;
}
.tabs .input-widget-docente:nth-child(4):checked ~ .buttons-widget .underline-docente{
  translate: calc(100% * 3) 0;
}
.tabs .input-widget-docente:nth-child(5):checked ~ .buttons-widget .underline-docente{
  translate: calc(100% * 4) 0;
}

.tabs .input-widget-docente:nth-child(1):checked ~ .buttons-widget .label-widget-docente:nth-child(1),
.tabs .input-widget-docente:nth-child(2):checked ~ .buttons-widget .label-widget-docente:nth-child(2),
.tabs .input-widget-docente:nth-child(3):checked ~ .buttons-widget .label-widget-docente:nth-child(3),
.tabs .input-widget-docente:nth-child(4):checked ~ .buttons-widget .label-widget-docente:nth-child(4),
.tabs .input-widget-docente:nth-child(5):checked ~ .buttons-widget .label-widget-docente:nth-child(5){
  opacity: 1;
}

.content-widget > .content-inner .desplazamiento{
  translate: 0 0;
}
.content-widget > .content-inner .desplazamiento1{
  translate: calc(0px - 50%) 0;
}
.content-widget > .content-inner .desplazamient2{
  translate: calc(0px - 50% * 2) 0;
}
.content-widget > .content-inner .desplazamient3{
  translate: calc(0px - 20% * 3) 0;
}
.content-widget > .content-inner .desplazamiento4{
  translate: calc(0px - 20% * 4) 0;
}

.the-count {
  float: right;
  padding: 0.1rem 0 0 0;
  font-size: 0.875rem;
  font-family: 'Lato';
  font-size: 12px;
}


.btn-azul{
  background-color: #624EEC !important;
  color: white !important;
  font-family: "Poppins" !important;
  font-size: 18px !important;
  padding: 1em 1.5em !important;
}

.youtube1{
  margin: 0;
  width: 100%;
  max-width: 560px;
}

.preguntas-text{
  color:black; 
  font-size:25px; 
  font-family:Ubuntu, sans-serif;
}

.patria-logo-footer{
  width: 20%;
}

.img-autoevaluaciones{
  width: 30%;
}

/* Carousel*/
.carousel {
	margin: 30px auto 60px;
	padding: 0 80px;
}
.carousel .carousel-item {
	text-align: center;
	overflow: hidden;
  float:none; 
  transition: 0s !important;
}
.carousel .carousel-item h4 {
	font-family: 'Varela Round', sans-serif;
}
.carousel .carousel-item img {
	max-width: 100%;
	display: inline-block;
}
.carousel .carousel-item .btn {
	border-radius: 0;
	font-size: 12px;
	text-transform: uppercase;
	font-weight: bold;
	border: none;
	background: #a177ff;
	padding: 6px 15px;
	margin-top: 5px;
}
.carousel .carousel-item .btn:hover {
	background: #8c5bff;
}
.carousel .carousel-item .btn i {
	font-size: 14px;
	font-weight: bold;
	margin-left: 5px;
}
.carousel .thumb-wrapper {
	margin: 5px;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.1);  
  border: 1px solid #38387E24;
  padding:40px; 
  cursor: pointer;
}
.carousel .thumb-wrapper:hover {
	margin: 5px;
	box-shadow: 0px 2px 2px rgba(0,0,0,0.1);  
  border: 3px solid #11112724;
  padding:40px; 
  cursor: pointer;
}
.carousel .thumb-content {
	padding: 15px;
	font-size: 13px;
}
.carousel-control-prev, .carousel-control-next {

	border-radius: 50%;
	border: 3px solid rgba(0, 0, 0, 0.8);
}
.carousel-control-prev i, .carousel-control-next i {
	font-size: 36px;
	position: absolute;
  vertical-align: middle;
	display: inline-block;
  border-radius: 50%;
	color: rgba(0, 0, 0, 0.8);
	text-shadow: none;
	font-weight: bold;
  width: 80px;
  height: 80px;
  background-color:#d5e4ee ;
}

.circular-icon{
  padding-top:20px;
  vertical-align: middle;
  text-align: center;
}

.carousel-control-prev i {
  color: #174DD5;
  margin-right: 150px;
}
.carousel-control-next i {
	margin-right: -150px;
  color: #174DD5;
}
.carousel-indicators {
	bottom: -50px;
}
.carousel-indicators li, .carousel-indicators li.active {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	margin: 4px;
	border: none;
}
.carousel-indicators li {	
	background: #174DD5;
  opacity: 0.2;
}
.carousel-indicators li.active {	
	background: #174DD5;
}

.contacto, .sesion{
  font-size: 18px !important; 
  color: white !important;
}

.menu-items .contacto a, .menu-items .sesion a{
  color: white !important;
}

.hr-responsive {
  width: 10%;
  border-color: red;
  min-height: 10px;
  opacity: 1;
}

.text-recursos{
  font-family:'Ubuntu', sans-serif; 
  font-size:50px; 
  color:#282828; 
  font-weight:700;
}


.text2-recursos{
  font-family:'Ubuntu', sans-serif; 
  font-size:50px; color:#282828; 
  font-weight:300;
}

.img-carlos{
  max-width:500px; 
  max-height:500px;
}

.text-carlos{
  font-family:'Ubuntu', sans-serif; 
  font-size:52px; 
  font-weight: 700;
}

.text-prieto{
  font-family:'Ubuntu', sans-serif; 
  font-size:52px; 
  font-weight: 300;
}

@media (max-width: 768px) {
  .title1 {
    font-size: 2.3rem;
    padding-top: 10%;
  }
  .title2 {
    font-size: 1.5rem;
  }
  .hr-responsive {
    width: 20%;
    border-color: red;
    min-height: 5px;
    opacity: 1;
  }
  .lorem-inicio {
    padding-top: 10px;
    font-size: 1rem;
  }
  .img-rueda1{
    padding-top: 10px;
    width: 45%;
  }
  .img-rueda2-derecha{
    padding-top: 10px;
    width: 30%;
  }
  .img-libro{
    padding-top: 10px;
    width: 120%;
  }
  .div-img1{
    position:absolute; 
    top:0%; 
    left:0%;
  }
  .div-img2-derecha{
    position:absolute; 
    bottom:25%; 
    right:0%;
  }
  .text-recursos{
    font-family:'Ubuntu', sans-serif; 
    font-size:40px; 
    color:#282828; 
    font-weight:700;
  }
  
  .text2-recursos{
    font-family:'Ubuntu', sans-serif; 
    font-size:40px; 
    color:#282828; 
    font-weight:300;
  }
  .img-carlos{
    max-width:300px; 
    max-height:300px;
  }

  .text-carlos{
    font-size:40px; 
    padding-left: 10%;
  }
  
  .text-prieto{
    font-size:40px; 
    padding-left: 10%;
  }
  .resena-carlos{
    padding-left: 10%;
    padding-right: 10%;
  }
  .menu-items .contacto{
    margin-top: 20%;
  }
  .navbar .menu-items li:not(.contacto):not(.sesion) {
    margin-bottom: .5rem;
    padding-top: 10%;
    font-size: 1.5rem;
    font-weight: 500;
  }
  .visible.blocks{
    display: flex;
    align-items: center;
    max-height: 100%;
  }
  
  .invisible.blocks{
      display: none;
      position: absolute;
      max-height: 0;
  }
  .card-bloques{
    padding-bottom: 3rem;
  }
  .title-videos1{
    display: block;
  }
  .youtube1{
    margin: 0;
    width: 100%;
  }

  .preguntas-text{
    color:black; 
    font-size:1em; 
    font-family:Ubuntu, sans-serif;
  }

  .img-autoevaluaciones{
    width: 100%;
  }
  .label-widget-docente{
    padding: 20px;
    padding-left: 10px;
    padding-right: 10px;
    width: 33.33%;
    opacity: 0.35;
    cursor: pointer;
    text-align: center;
    font-size: 18px;
    overflow-wrap: break-word;
  }
  .underline-docente{
    position: absolute;
    bottom: 0;
    width: 50%;
    height: 3px;
    background: #4163DD;
    transition: 0.2s;
  }
  .patria-logo-footer{
    width: 30%;
  }
}

@media (max-width: 768px) {
  .carousel-inner .carousel-item > .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .carousel-inner .carousel-item > .row > .col-sm-4 {
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    scroll-snap-align: start;
  }
}