html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; 
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

* {
  background-repeat: no-repeat; 
  box-sizing: inherit;
  padding: 0; 
  margin: 0;
  transition: .3s;
}



hr {
  overflow: visible; 
  height: 0;
  color: inherit; 
}

details,
main {
  display: block; 
}

summary {
  display: list-item; 
}

small {
  font-size: 80%; 
}

[hidden] {
  display: none; 
}

abbr[title] {
  border-bottom: none; 
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent;
  text-decoration: none;
}

a:active,
a:hover {
  outline-width: 0; 
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; 
}

pre {
  font-size: 1em; 
}

b,
strong {
  font-weight: bolder; 
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; 
  text-indent: 0; 
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto; 
}

[type='search'] {
  -webkit-appearance: textfield; 
  outline-offset: -2px; 
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none; 
}

textarea {
  overflow: auto; 
  resize: vertical; 
}

button,
input,
optgroup,
select,
textarea {
  font: inherit; 
}

optgroup {
  font-weight: bold; 
}

button {
  overflow: visible; 
}

button,
select {
  text-transform: none; 
}

button,
[type='button'],
[type='reset'],
[type='submit'],
[role='button'] {
  cursor: pointer;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; 
}


button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none; 
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none; 
}

select::-ms-value {
  color: currentColor; 
}

legend {
  border: 0; 
  color: inherit; 
  display: table; 
  max-width: 100%; 
  white-space: normal; 
  max-width: 100%; 
}

::-webkit-file-upload-button {
  
  -webkit-appearance: button;
  color: inherit;
  font: inherit; 
}

[disabled] {
  cursor: default;
}

img {
  border-style: none; 
}

progress {
  vertical-align: baseline;
}

[aria-busy='true'] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled='true'] {
  cursor: default;
}

/*custom css reeduca.cl*/

body{
  font-family: 'Outfit';
}

.topbar{
  width: 100%;
  height: 30px;
  background-color: #006837;
  display: flex;
  padding-left: 1rem;
  padding-right: 1rem;
}

.topbar .left-topbar{
  width: 15%;
  display: flex;
}

.topbar ul{
  width: 50%;
  display: flex;
  list-style: none;
  margin: 0 auto;
}

.topbar ul li{
  width: 33.3%;
  display: flex;
  align-items: center;
}

.topbar ul li a{
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
}

.topbar ul li a:hover{
  opacity: .5;
}

.topbar .icon{
  width: 15px;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.topbar span{
  color: white;
  font-size: 10px;
}

.topbar .center-topbar{
  width: 70%;
  display: flex;
  align-items: center;
}

.topbar .right-topbar{
  width: 15%;
}

.header-desktop{
  width: 100%;
  height: 110px;
  display: flex;
  padding-left: 3rem;
  padding-right: 3rem;
  padding-top: 1rem;
  margin-bottom: 2rem;
  background-color: white;
}

.header-desktop .logo-header{
  width: 20%;
}

.logo-desktop{
  width: 420px;
}

.header-desktop-menu{
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-desktop-menu .menu-list{
  display: flex;
}

.menu-list .btn-menu{
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #006837;
  margin-right: 3rem;
  position: relative;
}

.menu-list .btn-menu::after{
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  width: 50px;
  height: 3px;
  background-color: black;
  opacity: 0;
  transition: .3s;
}

.menu-list .btn-menu:hover{
  color: black;
  cursor: pointer;
}

.menu-list .btn-menu:hover::after{
  opacity:1;
}

.header-desktop-donation{
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-desktop-donation .btn-donation{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 40px; 
  background-color: #006837;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
}

.header-desktop-donation .btn-donation:hover {
  background-color: black;
}

.swiper-slide img{
  width: 100%;
  max-width: 100%;
}

.articles-content{
  display: flex;
  width: 80%;
  margin: 0 auto;
}

h2{
  font-style: normal;
  font-weight: 600;
  font-size: 40px;
  color: #006837;
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 3rem;
}

article{
  width: 33.3%;
  padding: 2rem;
}

article h3{
  font-style: normal;
  font-weight: 600;
  font-size: 25px;
  color: black;
  margin-bottom: 1rem;
}

article p{
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  margin-top: 1rem;
}

article img{
  width: 100%;
  max-width: 100%;
}

section{
  margin-top: 4rem;
  margin-bottom: 6rem;
}

.gallery{
  width: 100%;
  min-height: 600px;
  background-color: #006837;
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
}

.gallery-content{
  display: flex;
  width: 80%;
  margin: 0 auto;
}

.gallery-content .left-content{
  width: 30%;
}

.gallery-content .right-content{
  width: 70%;
}

.logo-blanco{
  width: 210px;
  margin: 0 auto;
}

.gallery-title{
  font-style: normal;
  font-weight: 600;
  font-size: 28px;
  line-height: 35px;
  text-align: center;
  color: white;
  margin-top: 2rem;
}

.gallery-description{
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  color: white;
  margin-top: 2rem;
}

.gallery-description ul{
  list-style: none;
}

.gallery-description ul li{
  font-size: 16px;
  text-align: center;
  margin-bottom: 10px;
  list-style: none;
}

.thumbnail-content{
  margin: 0 auto;
  width: 70%;
}

.thumbnail-content .thumbnail{
  display: inline-block;
  margin: .5rem;
}

.thumbnail-content .thumbnail:hover{
  opacity: .7;
  cursor: pointer;
}

.equipo-content{
  width: 90%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.equipo{
  width: 300px;
  margin: 0 auto;
  text-align: center;
}

.equipo img{
  width: 250px;
  height: 250px;
  display: block;
  margin: 0 auto;
}

.equipo .nombre{
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  margin-top: 1rem;
}

.equipo .descripcion{
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-top: 1rem;
  padding-left: 1rem;
  padding-right: 1rem;
}

.swiper-pagination-bullet-active{
  background-color: #006837 !important;
}

.quote {
  width: 70%;
  margin: 0 auto;
  text-align: center;
  border-top: solid 1px #D9D9D9;
  border-bottom: solid 1px #D9D9D9;
}

.quote p{
  font-style: normal;
  font-weight: 200;
  font-size: 22px;
  line-height: 40px;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

footer{
  margin-top: 2rem;
  padding-top: 2rem;
}

.footer-content{
  display: flex;
  width: 80%;
  margin: 0 auto;
}

.footer-left{
  width: 30%;
}

.footer-middle{
  width: 30%;
  padding-left: 8rem;
  padding-top: 2rem;
}

.footer-right{
  width: 40%;
}

.logo-footer{
  width: 230px;
  margin: 0 auto;
}

.footer-left ul{
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-around;
  margin: 1rem auto;
}

.footer-left ul li{
  width: 100%;
  padding: 1rem;
}

.footer-left ul li a{
  display: flex;
  width: 100%;
}

.footer-left ul li a:hover{
  opacity: .6;
}

.footer-rrss{
  width: 220px;
  margin: 0 auto;
}

.footer-left ul li a img{
  display: block;
  width: 100%;
  max-width: 100%;
}

.footer-title{
  font-style: normal;
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 2rem;
}

.footer-item{
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  margin-top: 2rem;
}

.footer-item a{
  color: #006837;
}

.footer-item a:hover{
  color: black;
  text-decoration: underline;
}

.footer-item a:active, .footer-item a:visited, .footer-item a:focus{
  color: #006837;
}

footer .legal{
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
}

.form-content{
  width: 70%;
}

.form-content .campo{
  border: solid 1px black;
}

.form-line{
  width: 100%;
  margin-bottom: 2rem;
}

.form-line label{
  display: block;
  width: 100%;
}

.form-line .campo{
  width: 100%;
  height: 40px;
  border-radius: 50px;
  padding: 10px;
}

.form-line .textarea{
  border: solid 1px black;
  border-radius: 20px;
  width: 100%;
  height: 130px;
  padding: 10px;
}

.btn-enviar{
  width: 220px;
  height: 40px; 
  background-color: #006837;
  color: white;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
}

.btn-enviar:hover{
  background-color: black;
}

.slider-opacity{
  position: absolute;
  width: 40%;
  height: 100%;
  z-index: 2;
}

.slider-opacity .opacity{
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 3;
  top:0;
  opacity: .5;
}

.slider-opacity .text-content{
  position: absolute;
  top: 20%;
  left: 10%;
  width: 60%;
  z-index: 4;
}

.slider-opacity .text-content .bajada-1{
  color: white;
  font-size: 2rem;
}

.slider-opacity .text-content .bajada-2{
  color: white;
  font-size: 1.2rem;
  margin-top: 1rem;
}

.btn-contactanos{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 220px;
  height: 40px; 
  background-color: white;
  color: #006837;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border-radius: 50px;
  text-align: center;
  margin-top: 2rem;
}

.btn-contactanos:hover{
  background-color: black;
  color: white;
}

.swiper-wrapper{
  height: 600px !important;
}

h1{
  color: white;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tratamiento ul li{
  margin-top: 10px;
}

.foto-galeria{
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  z-index: 200;
}

.foto-galeria img{
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.fullscreen{
  display: none;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: .7;
  position: fixed;
  z-index: 200;
}

.close{
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20%;
  top: 5%;
  z-index: 400;
  cursor: pointer;
  display: none;
}

.close img{
  width: 30px;
  height: 30px;
}

.comprueba{
 margin-top: 2rem;
 margin-bottom: 2rem;
}

.comprueba input {
  width: 50px;
  height: 50px;
  text-align: center;
  font-weight: bold;
}

.resultado {
  border: solid 1px #1e2861;
  border-radius: 10px;
}

.headroom--unpinned {
  position: fixed;
  top: 0;
  z-index: 100;
  -webkit-box-shadow: 3px 3px 5px 0 #757575;
  -moz-box-shadow: 3px 3px 5px 0 #757575;
  box-shadow: 3px 3px 5px 0 #757575;
}

.headroom--unpinned .logo-desktop {
  width: 280px;
}

.headroom--unpinned .header-desktop-menu {
  height: 70px;
}

.gallery-description-2{
  display: none;
}

.whatsapp{
  position: fixed;
  bottom: 10%;
  right: 5%;
  z-index: 900;
  width: 50px;
  height: 50px;
}

.whatsapp img{
  width: 80px;
  height: 80px;
}

.btn-menu-mobile{
  display: none;
  width: 30px;
  height: 30px;
  margin-right: 50px;
  cursor: pointer;
}

.img-silider-mobile{
  display: none;
}

.menu-mobile{
  width: 320px;
  height: 100%;
  max-height: 100%;
  background-color: #ffffff;
  position: fixed;
  left: -320px;
  top: 0;
  z-index: 300;
  display: none;
}

.menu-mobile .btn-menu::after{
  display: none;
}

.menu-mobile .menu-list{
  margin-top: 100px;
  margin-left: 50px;
}

.contact-mobile {
  background-color: #006837;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
}

.contact-mobile ul{
  width: 100%;
}

.contact-mobile ul li{
  width: 100%;
  padding: 1rem;
}

.contact-mobile ul li a{
  color: #ffffff;
  display: flex;
}

.contact-mobile ul li .icon{
  width: 20px;
  margin-right: 1rem;
}

.logo-menu{
  width: 200px;
  margin-top: 2rem;
  margin-left: 2rem;
}

@media only screen and (max-width: 2222px){
  .thumbnail-content {
    width: 80%;
  }
}
@media only screen and (max-width: 1950px){
  .thumbnail-content {
    width: 90%;
  }
}

@media only screen and (max-width: 1730px){
  .gallery-content {
    width: 95%;
  }
}

@media only screen and (max-width: 1440px){
  .logo-desktop {
    width: 340px;
  }
  .header-desktop{
    height: 80px;
    align-items: center;
  }
  .swiper-wrapper {
    height: 540px !important;
  }
  .articles-content {
    width: 90%;
  }
  article h3 {
    height: 60px;
  }
  .thumbnail img{
    display: block;
    width: 160px;
  }
  .gallery-description{
    display: none;
  }
  .gallery-description-2{
    display: block;
    width: 90%;
    margin: 0 auto;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 23px;
    color: white;
    margin-top: 2rem;
    text-align: center;
  }
  .gallery-description-2 ul {
    list-style: none;
  }
  .gallery-description-2 ul li{
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .equipo-content {
    width: 90%;
  } 
  .equipo {
    padding: 0;
  }
  .quote{
    width: 100%;
  }
  .footer-content{
    width: 100%;
  }
}

@media only screen and (max-width: 1250px){
  .header-desktop-menu .menu-list {
    display: none;
  }
  .btn-menu-mobile{
    display: block;
  }
  .slider-opacity{
    width: 60%;
  }
  .slider-opacity .opacity{
    height: 462px;
  }
  .articles-content{
    display: block;
  }
  article{
    width: 100%;
  }
  .close{
    right: 2%;
  }
  .footer-content{
    display: block;
  }
  .footer-left {
    width: 100%;
  }
  .footer-middle {
    width: 100%;
    padding-left: 0;
    padding-top: 0;
  }
  .footer-right {
    width: 100%;
  }
  .footer-middle{
    text-align: center;
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
  .footer-right{
    text-align: center;
  }
  .form-content{
    width: 40%;
    margin: 0 auto;
  }
  .menu-mobile{
    display: block;
  }
  .menu-list .btn-menu{
  margin: 60px 0;
}
}

@media only screen and (max-width: 1250px){
  .topbar{
    display: none;
  }
  .swiper{
    height: 500px;
  }
  .slider-opacity{
    width: 100%;
  }
  .equipo-content{
    width: 100%;
    display: block;
  }
  .gallery-content{
    width: 100%;
    display: block;
  }
  .gallery-content .left-content{
    width: 100%;
    margin-bottom: 3rem;
  }
  .gallery-content .right-content{
    width: 100%;
  }
  .thumbnail-content {
    width: 54%;
  }
  .equipo{
    width: 100%;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }
  .foto-galeria img{
    width: 90%;
  }
  .close {
    top: 35%;
    right: 10%;
  }
}

@media only screen and (max-width: 40em){
  .whatsapp {
    right: 6%;
    width: 40px;
    height: 40px;
  }
  .whatsapp img{
    width: 40px;
    height: 40px;
  }
  .tratamiento ul{
    list-style: none;
  }
  .thumbnail-content{
    width: 90%;
  }
  .form-content{
    width: 90%;
  }
  .header-desktop{
    padding: 0;
    height: inherit;
  }
  .header-desktop .logo-header{
    width: 80%;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
  }
  .btn-menu-mobile{
    margin-right: 0;
    width: 20%;
    padding-left: 2rem;
    padding-right: 1rem;
  }
  .logo-desktop {
    width: 100%;
  }
  .header-desktop-menu{
    display: none;
  }
  .header-desktop-donation{
    display: none;
  }
  .slider-opacity .text-content{
    top: 4%;
  }
  .img-silider-mobile{
    display: block;
  }
  .slider-opacity .opacity {
    height: 506px;
  }
  .form-line label{
    text-align: left;
    font-size: 12px;
    padding-left: 18px;
  }
  .form-line .campo{
    font-size: 14px;
  }
  .form-line .textarea{
    font-size: 14px;
  }
}

