@charset "UTF-8";
@font-face {
  font-family: 'Gotham-Light';
  src: url("../fonts/Gotham-Light.otf");
}

@font-face {
  font-family: 'Gotham-Extra-Light';
  src: url("../fonts/Gotham-Extra-Light.otf");
}

@font-face {
  font-family: 'Gotham-Regular';
  src: url("../fonts/Gotham-Regular.ttf");
}

@font-face {
  font-family: 'Gotham-Bold';
  src: url("../fonts/Gotham-Bold.otf");
}

@font-face {
  font-family: 'Gotham-Book';
  src: url("../fonts/Gotham-Book.otf");
}

/*Color palette*/
.pink {
  color: #f7e1dc !important;
}

.pink-bg {
  background-color: #f7e1dc !important;
}

.blue {
  color: #152746 !important;
}

.blue-bg {
  background-color: #152746 !important;
}

.orange {
  color: #e17c60 !important;
}

.orange-bg {
  background-color: #e17c60 !important;
}

.grey {
  color: #f1f1f2 !important;
}

.grey-bg {
  background-color: #f1f1f2 !important;
}

.white {
  color: #ffff !important;
}

.white-bg {
  background-color: #ffff !important;
}

/*------------------Utils---------------------*/
@media screen and (max-width: 768px) {
  .invert-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}

@media screen and (max-width: 576px) {
  .invert-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}

@media screen and (max-width: 360px) {
  .invert-order {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
}

@media screen and (max-width: 768px) {
  .removeFixedheight,
  .removeFixedheight.fp-slide,
  .removeFixedheight.fp-tableCell {
    height: auto !important;
  }
}

@media screen and (max-width: 576px) {
  .removeFixedheight,
  .removeFixedheight.fp-slide,
  .removeFixedheight.fp-tableCell {
    height: auto !important;
  }
}

.row.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.row.no-gutters > [class^="col-"],
.row.no-gutters > [class*=" col-"] {
  padding-right: 0;
  padding-left: 0;
}

.center-text {
  text-align: center !important;
}

.no-side-padding {
  padding-right: 0;
  padding-left: 0;
}

.line {
  width: 100%;
  height: 4px;
  background-color: white;
  position: relative;
  margin-top: 3em;
  margin-bottom: 3em;
}

.line .circle {
  position: absolute;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  left: 0;
  right: 0;
  top: -15px;
  margin-left: auto;
  margin-right: auto;
}

.line .right-arrow {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid white;
  margin-right: -20px;
  right: 0;
  margin-right: -3px;
  margin-top: -18px;
}

.line .left-arrow {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid white;
  margin-left: -20px;
  left: 0;
  margin-left: -3px;
  margin-top: -18px;
}

@media only screen and (max-width: 768px) {
  .line {
    display: none;
  }
}

.left {
  text-align: left;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.pop-btn {
  border-radius: 10px;
  max-width: 10em;
  padding: 0.2em 1em 0.2em 1em;
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
  margin-top: 1em;
  text-align: center;
  font-family: 'Gotham-Regular';
  font-size: 1.3em;
  color: #ffff;
  font-weight: 500;
}

.pop-btn:hover {
  color: #ffff;
  text-decoration: none;
  -webkit-box-shadow: 2px 8px 20px -13px rgba(0, 0, 0, 0.75);
          box-shadow: 2px 8px 20px -13px rgba(0, 0, 0, 0.75);
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: ease 0.5s all;
  transition: ease 0.5s all;
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  display: block;
  text-align: center;
  font-size: 20px;
  z-index: 100;
  text-decoration: none;
  text-shadow: 0;
  width: 25px;
  height: 25px;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  z-index: 2;
  -webkit-transform: translate(-50%, 0%) rotate(45deg);
          transform: translate(-50%, 0%) rotate(45deg);
  -webkit-animation: fade_move_down 1s ease-in-out infinite;
          animation: fade_move_down 1s ease-in-out infinite;
}

/*animated scroll arrow animation*/
@-webkit-keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@keyframes fade_move_down {
  0% {
    -webkit-transform: translate(0, -10px) rotate(45deg);
            transform: translate(0, -10px) rotate(45deg);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translate(0, 10px) rotate(45deg);
            transform: translate(0, 10px) rotate(45deg);
    opacity: 0;
  }
}

@media only screen and (max-width: 575px) {
  .center-on-mobile {
    text-align: center;
  }
}

.auto-align-on-mobile {
  margin: auto;
}

.margin-top {
  margin-top: 5em;
}

.perfect-align-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.perfect-align-center-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.perfect-align-center-spaced {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.perfect-align-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.perfect-align-left-spaced {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.perfect-align-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

textarea:focus,
textarea.form-control:focus,
input.form-control:focus,
input[type=text]:focus,
input[type=password]:focus,
input[type=email]:focus,
input[type=number]:focus,
[type=text].form-control:focus,
[type=password].form-control:focus,
[type=email].form-control:focus,
[type=tel].form-control:focus,
[contenteditable].form-control:focus {
  -webkit-box-shadow: inset 0 -1px 0 #ddd;
          box-shadow: inset 0 -1px 0 #ddd;
}

.force-left {
  left: 50%;
}

@font-face {
  font-family: "Averta Bold";
  src: url("Font/Averta Bold.otf");
}

@font-face {
  font-family: "Averta";
  src: url("Font/Averta.otf");
}

@font-face {
  font-family: "Report Bold";
  src: url("Font/Report Bold.ttf");
}

@font-face {
  font-family: "Report Regular";
  src: url("Font/Report Regular.ttf");
}

@font-face {
  font-family: "Rubik Regular";
  src: url("Font/Rubik-Regular.ttf");
}

.btn-warning {
  background-color: #f0bc4c;
}

.btn-u {
  text-align: center;
  padding: .6em .8em .8em;
  border: none;
  color: white;
  margin: 5px;
  border-radius: 5px;
  cursor: pointer;
  -webkit-box-shadow: inset 0 -0.2em rgba(0, 0, 0, 0.2);
          box-shadow: inset 0 -0.2em rgba(0, 0, 0, 0.2);
  outline: 0;
  -webkit-transition: .2s;
  transition: .2s;
  will-change: transform;
  height: 55px;
  width: 250px;
  background-color: #dc3834;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: 'Averta';
}

.btn-u:active {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.boton-descargas {
  height: 55px;
  width: 250px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1em;
  font-family: 'Averta';
  margin-top: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-container {
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1326px;
}

@media only screen and (min-width: 1326px) {
  .nav-container {
    margin-left: calc(50% - (1326px / 2));
  }
}

.nav-container .boton {
  margin-right: 25px;
  line-height: 15px;
  color: white;
}

@media only screen and (min-width: 576px) {
  .nav-container .boton {
    margin-right: 25px;
  }
}

@media only screen and (min-width: 992px) {
  .nav-container .boton {
    margin-right: 25px;
  }
}

.number {
  font-family: "Rubik Regular";
  font-size: 1.355em;
}

.number2 {
  font-family: "Rubik Regular";
  font-size: 4.9em;
}

texto-carta {
  display: none;
}

.contendor-logo {
  margin: 2em;
}

.contendor-logo .image-setting {
  width: 10em;
}

.contendor-logo .imge-small {
  width: 4em;
}

@media only screen and (min-width: 769px) {
  .lo-importante {
    display: none;
  }
}

.lo-importante-botones {
  display: none;
}

@media only screen and (min-width: 769px) {
  .lo-importante-botones {
    display: block;
  }
}

body {
  max-width: 1326px;
  min-width: 350;
}

@media only screen and (min-width: 1326px) {
  body {
    margin-left: calc(50% - (1326px / 2));
  }
}

.container-button {
  padding-top: 4em;
  padding-bottom: 4em;
}

.container-button .margin-less {
  margin-right: 0px;
  margin-left: 0px;
}

.img-container {
  margin-top: 35px;
  margin-bottom: 35px;
}

.icon-container .width-icon {
  max-width: 12em;
}

.icon-container .top-margin {
  margin-top: 2em;
}

.fonttitle {
  font-size: 35px;
  font-family: "Averta Bold";
  line-height: 1em;
  margin-bottom: 40px;
}

@media only screen and (min-width: 769px) {
  .fonttitle {
    font-size: 55px;
  }
}

.font-sub-title {
  font-size: 2em;
  font-family: "Averta Bold";
  line-height: 1em;
}

.content-girl {
  position: relative;
  display: inline-block;
  text-align: center;
  margin-top: 120px;
}

.content-girl .img {
  max-width: 100%;
}

.container-text-girl {
  font-size: 3em;
  display: none;
}

@media only screen and (min-width: 769px) {
  .container-text-girl {
    display: block;
  }
}

.container-text-girl .texto-encima-girl-estarjuntos {
  position: absolute;
  bottom: 0px;
  left: 40px;
  font-family: "Averta Bold";
  line-height: 1em;
  color: #090057;
}

.container-text-girl .texto-encima-girl-loimportante {
  position: absolute;
  bottom: 35px;
  left: 40px;
  font-family: "Averta";
  line-height: 1em;
  color: #090057;
}

.container-text-girl .text-yellow {
  color: #f0bc4c;
}

.centrado {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.center-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.title {
  max-width: 20em;
  line-height: 1em;
}

#osito img {
  max-width: 100%;
}

.btn-danger {
  background-color: #dc3834 !important;
}

#cita2 {
  background-color: #dc3834;
}

#cita {
  background-color: #dc3834;
}

#blue {
  background-color: #1598d3;
}

.blue-text {
  color: #1598d3;
  line-height: 1em;
}

.blue-shadown {
  color: #022535;
  line-height: 1em;
}

.center-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.justify-text {
  text-align: justify;
}

.top-center-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.center-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.center-element-ling-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  left: 30px;
}

@media only screen and (max-width: 991px) {
  .center-element-ling-right {
    left: auto;
  }
}

.right-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  -webkit-box-align: right;
      -ms-flex-align: right;
          align-items: right;
}

.left-element {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -webkit-box-align: left;
      -ms-flex-align: left;
          align-items: left;
}

.cita-container {
  padding-top: 11em;
  padding-bottom: 11em;
}

.cita {
  max-height: 10em;
  color: #fff;
  font-family: "Averta";
}

.autorcita {
  font-size: 25px;
}

.worddirect {
  color: #dc3834;
}

.teleton-numero {
  color: #1598d3;
}

.color-gray {
  color: #585858;
}

.teleton-explicacion {
  color: #585858;
  font-size: 1.4em;
  line-height: 1.2em;
}

.teleton-parrafo {
  font-size: 1.2em;
  line-height: 1.3em;
}

.referencia {
  font-family: "Report Regular";
}

.iconteletonnumero {
  max-width: 5em;
}

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

@media only screen and (max-width: 575px) {
  .center-text {
    text-align: left;
  }
}

.fonttitle-number {
  font-size: 3em;
}

@media only screen and (min-width: 769px) {
  .fonttitle-number {
    font-size: 5em;
  }
}

.text-white {
  color: #fff;
}

.margin-boton-em, .margin-card-em {
  margin-bottom: 3em;
}

.margin-botton-block {
  margin-bottom: 6em;
}

.border-less {
  border-style: none;
}

.simple-text {
  line-height: 165%;
}

.aling-numbers {
  padding-right: 100px;
}

.letter-spacing-small {
  letter-spacing: -1px;
  line-height: 1em;
}

.letter-spacing-hard {
  letter-spacing: -4px;
  line-height: 0.8em;
}

.letter-spacing-millon {
  letter-spacing: -4px;
  font-family: "Averta";
  font-size: 40px;
  line-height: 1em;
}

.letter-spacing-compress {
  letter-spacing: -2px;
  line-height: 0.9;
}

.cuadrado {
  width: 14em;
  height: 8.6em;
  background: #fff;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

@media only screen and (min-width: 769px) {
  .cuadrado {
    width: 16em;
    height: 13em;
  }
}

.small-font {
  font-family: "Averta Bold";
  line-height: 1;
  margin-bottom: unset;
  line-height: 1em;
}

.less-margin-botton {
  margin-bottom: -1px;
}

.border-botton {
  border-bottom: 2.6px solid #f1f2f2;
}

.border-rightg {
  border-bottom: 1.6px solid #c2d3d3;
  margin-top: 3em;
}

@media only screen and (min-width: 1025px) {
  .border-rightg {
    border-right: 1.6px solid #c2d3d3;
    border-bottom: none;
  }
}

@media only screen and (min-width: 992px) {
  .border-rightg {
    border-right: 1.6px solid #c2d3d3;
    border-bottom: none;
  }
}

.border-rightgg {
  margin-top: 3em;
}

@media only screen and (min-width: 1025px) {
  .border-rightgg {
    border-bottom: none;
    border-bottom: 1.6px solid #c2d3d3;
  }
}

@media only screen and (min-width: 992px) {
  .border-rightgg {
    border-bottom: none;
  }
}

.intermediate-color {
  background-color: #f1f2f2;
}

.card-width {
  width: 500px;
}

.container-size {
  height: 60px;
}

.circle-container {
  position: relative;
  margin-top: 3em;
}

.circle-container .circulo1 {
  -webkit-transform: translate(188%, -250%);
          transform: translate(188%, -250%);
  position: absolute;
  max-width: 30%;
}

@media only screen and (max-width: 575px) {
  .circle-container .circulo1 {
    text-align: left !important;
    -webkit-transform: translate(100%, -300%);
            transform: translate(100%, -300%);
  }
}

.circle-container .circulo2 {
  -webkit-transform: translate(-35%, -107%);
          transform: translate(-35%, -107%);
  position: absolute;
  max-width: 26%;
}

@media only screen and (max-width: 575px) {
  .circle-container .circulo2 {
    text-align: left !important;
    -webkit-transform: translate(125%, -50%);
            transform: translate(125%, -50%);
  }
}

.circle-container .circulo-centro {
  max-width: 80%;
}

@media only screen and (max-width: 575px) {
  .circle-container .circulo-centro {
    text-align: left !important;
    -webkit-transform: translate(12%, 0);
            transform: translate(12%, 0);
  }
}

.galery-container {
  padding: 0;
  border: 0;
}

.galery-container .img-element {
  height: 12em;
  position: relative;
  -webkit-transition: ease all 0.5s;
  transition: ease all 0.5s;
  background-color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.galery-container .img-element .link-wrapper {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.galery-container .img-element:hover {
  cursor: pointer;
  -webkit-transition: ease all 0.5s;
  transition: ease all 0.5s;
  z-index: 1;
  opacity: 0.75;
}

.galery-container .img-element:hover .inner-black-text {
  opacity: 1;
  -webkit-transition: ease all 0.5s;
  transition: ease all 0.5s;
}

.galery-container .img-element .inner-black-text {
  letter-spacing: 0.3em;
  color: white;
  padding: 1em;
  opacity: 0.001;
  font-weight: 800;
  font-size: 2.6em;
  -webkit-transition: ease all 0.5s;
  transition: ease all 0.5s;
  text-align: center;
  margin: 0;
}

.galery-container:hover {
  background-color: black;
}

.galery-container .ninos-y-jovenes {
  background-color: #595a5c;
  background-image: url("../../image/final/compress/landing-Teleton-2020-4.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.galery-container .adultos {
  background-color: #595a5c;
  background-image: url("../../image/final/compress/landing-Teleton-2020-5.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.galery-container .adultos-mayores {
  background-color: #595a5c;
  background-image: url("../../image/final/compress/landing-Teleton-2020-6.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.text-aling-right {
  text-align: right !important;
}

@media only screen and (max-width: 991px) {
  .text-aling-right {
    text-align: left !important;
  }
}
/*# sourceMappingURL=style.css.map */
