/*
importo este tipo de letra para hacer tipografia like disney
*/
@font-face {
  font-family: DisneyFont;
  src: url("../font/Walt.ttf");
}

/*
Al inicio, todo a 0, y set bg
*/
body {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: linear-gradient(45deg, #c8e7ff, rgba(216, 187, 255, 0.5));
  /*
Footer
*/
  /*
NAVBAR
*/
  /*
Link de nav y footer
*/
}

body .footerBar {
  background-image: linear-gradient(45deg, #c8e7ff, rgba(216, 187, 255, 0.5));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 5px;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

body .footerBar a {
  /*
Aca debajo, se agregan los iconos que se ven en el footer
*/
  padding-left: 30px;
  padding-right: 30px;
}

body .footerBar a .facebook_rrss_icon {
  content: url("../images/icon/facebook_icon.png");
  width: 22px;
  height: 22px;
}

body .footerBar a .instagram_rrss_icon {
  content: url("../images/icon/instagram_icon.png");
  width: 22px;
  height: 22px;
}

body .footerBar a .mail_rrss_icon {
  content: url("../images/icon/mail_icon.png");
  width: 22px;
  height: 22px;
}

body .footerBar a .twitter_rrss_icon {
  content: url("../images/icon/twitter_icon.png");
  width: 22px;
  height: 22px;
}

body .footerBar a:hover {
  border-color: #421e58;
  background-color: #d8bbff;
}

body .navBar .navbar {
  background-image: linear-gradient(45deg, #c8e7ff, rgba(216, 187, 255, 0.5));
}

body .navBar .navbar div .nav-link-item:hover {
  background-color: #d8bbff;
  font-weight: 500;
}

body .navBar .navbar div div {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body a {
  text-decoration: none;
  color: black;
}

body a:hover {
  border-color: #deaaff;
  color: #421e58;
}

/*
operacion para container
*/
/*
MAIN (Carousel)
*/
.mainSection {
  /*
Aca debajo seteo el background del div en el carousel de la primera pagina (index.html)
*/
}

.mainSection .carousel__box .carousel-item {
  height: 88vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.mainSection .carousel__box__item1 {
  background-image: linear-gradient(45deg, rgba(208, 209, 255, 0.6), rgba(192, 253, 255, 0.6)), url("../images/somos1.jpg");
}

.mainSection .carousel__box__item2 {
  background-image: linear-gradient(45deg, rgba(208, 209, 255, 0.6), rgba(192, 253, 255, 0.6)), url("../images/somos2.jpg");
}

.mainSection .carousel__box__text {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  color: black;
  z-index: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

.mainSectionSec .mainDivSecondary .phrase-text1, .mainSectionSec .mainDivSecondary .phrase-text2 {
  color: black;
  font-family: "DisneyFont";
}

/*
Bio
*/
.bioDiv {
  min-height: 88vh;
  background-image: linear-gradient(45deg, rgba(192, 253, 255, 0.6), rgba(208, 209, 255, 0.6));
  text-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;
  padding: 20px;
}

.bioDiv .bioDiv__img {
  width: 40%;
}

.bioDiv .bioDiv__parrafo {
  width: 70%;
}

/*
Blog
*/
.blogDiv {
  background-image: linear-gradient(45deg, #c8e7ff, rgba(216, 187, 255, 0.5));
  text-align: center;
  padding: 20px;
}

.blogDiv .blogDiv__card {
  background: rgba(255, 203, 242, 0.3);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.blogDiv .blogDiv__card .blogDiv__card__img {
  width: 40%;
  padding: 10px;
}

/*
error page
*/
.errorDiv {
  min-height: 88vh;
  background-image: linear-gradient(45deg, rgba(192, 253, 255, 0.6), rgba(208, 209, 255, 0.6));
  text-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;
  padding: 20px;
}

.errorDiv .errorDiv__titulo {
  color: red;
  font-size: 40px;
}

.errorDiv a {
  color: black;
}

.errorDiv a:hover {
  color: black;
  background-color: #d8bbff;
}

.errorDiv .errorDiv__img {
  width: 30%;
}

/*
PEOPLE
*/
.peopleDiv {
  background-image: linear-gradient(45deg, rgba(192, 253, 255, 0.6), rgba(208, 209, 255, 0.6));
  text-align: center;
  background-position: center;
  background-attachment: fixed;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 20px;
}

.peopleDiv .peopleDiv__itemContainer {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.peopleDiv .peopleDiv__itemContainer .card {
  height: 41rem;
  padding: 5px;
  background-color: rgba(255, 203, 242, 0.3);
  margin-bottom: 10px;
}

.peopleDiv .peopleDiv__itemContainer .card:hover {
  -webkit-transform: rotate(1deg);
          transform: rotate(1deg);
}

/*
Contact
*/
.contactDiv {
  min-height: 88vh;
  background-image: linear-gradient(45deg, rgba(192, 253, 255, 0.6), rgba(208, 209, 255, 0.6));
  height: 88vh;
  padding: 20px;
}

.contactDiv button:hover {
  background-color: #d8bbff;
  border-color: #deaaff;
}

.contactDiv button {
  background-color: #deaaff;
  border-color: #d8bbff;
}

/*
operacion para letra
*/
/*
fonts pc and tablet
*/
@media (min-width: 700px) {
  h1,
  .main-title {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 40px;
    font-weight: 100;
  }
  h2 {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 500;
  }
  .textMain h2 {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 22px;
    font-weight: 200;
  }
  h3 {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 400;
  }
  h4 {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 300;
  }
  h5 {
    font-style: italic;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 300;
  }
  p {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 100;
  }
  a {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 300;
  }
  .footerBar a {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
  }
  li {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 100;
  }
}

/*
fonts mobile
*/
@media (max-width: 699px) {
  h1,
  .main-title {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 30px;
    font-weight: 100;
  }
  h2 {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 500;
  }
  .textMain h2 {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    font-weight: 200;
  }
  h3 {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 15px;
    font-weight: 400;
  }
  h4 {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 13px;
    font-weight: 300;
  }
  h5 {
    font-style: italic;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 300;
  }
  p {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 100;
  }
  a {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 300;
  }
  .footerBar a {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 300;
  }
  li {
    font-style: normal;
    font-family: "Roboto", sans-serif;
    font-size: 12px;
    font-weight: 100;
  }
}
/*# sourceMappingURL=style.css.map */