:root {
  --color-disponibilidad: #a9fe05;
  --color-r-sociales: #2D3389;
  --color-r-socialesh: #EF680E;
  --color-colegio: #2D3389;
}

/* @media (prefers-color-scheme: dark) {
  :root {
      --negro: #ececec;
      --blanco: #303030;
      --sombra-ppal: #242424;
      --sombra-sec: #3c3c3c;
      --borde-negro: #FFFFFF50;
  }
} */

/* Reboot */
*,
*:before,
*:after {
  margin: 0px;
  padding: 0px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/*---------------------------------------------*/
a:focus {
  outline: none;
}

a,
a:hover {
  text-decoration: none;
}

/*---------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0px;
}

ul,
li {
  margin: 0px;
}

/*---------------------------------------------*/
input,
textarea,
label {
  display: block;
  outline: none;
  border: none;
}


/*---------------------------------------------*/
button {
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
}

button:focus {
  outline: none;
}

/************************ Personal *************************/
@font-face {
  font-family: 'Lobster';
  src: url('../fonts/Lobster-Regular.ttf') format("truetype");
  font-family: 'Lora';
  src: url('../fonts/Lora-Regular.ttf') format("truetype");

}

/* body {
  background-image: url(../img/bg/Fondo2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
} */


.logo {
  width: 70px;
  height: 80px;
}

.texto-logo {
  font-family: "Lora";
  font-size: 25px;
  color: var(--color-colegio);
  font-weight: bold;
}

.dropdown-menu.show {
  background-color: var(--color-colegio) !important;
}

a.dropdown-item:hover {
  background-color: var(--color-r-socialesh) !important;
}

.contenedor-sociales {
  text-align: end;
}

.r-sociales {
  color: var(--color-r-sociales);
  text-align: center;
}

.r-sociales:hover {
  color: var(--color-r-socialesh);
}

.contenedor-nav {
  background-color: var(--color-r-sociales)
}

.house {
  background-color: var(--color-r-socialesh);
  /* #2c29e0; */
  border-radius: 5px;
  margin-right: 10px;
  font-size: 18px;
}

.house:hover {
  color: var(--color-r-sociales) !important;
}

.nav-link {
  font-size: 18px;
}

.nav-link:hover {
  background-color: var(--color-r-socialesh) !important;
  border-radius: 5px;
}

.separacion {
  margin-right: 40px;
}

@keyframes menu_sticky {
  0% {
      margin-top: -120px;
      opacity: 0;
  }

  50% {
      margin-top: -64px;
      opacity: 0;
  }

  100% {
      margin-top: 0;
      opacity: 1;
  }
}

.sticky-menu {
  position: fixed;
  width: 100%;
  z-index: 999;
  top: 0;
  animation-name: menu_sticky;
  animation-duration: 0.70s;
  animation-timing-function: ease-in-out;
  opacity: .95;
}

.contenedor-alto {
  width: 100%;
  height: calc(100vh - 155px);
}

.contenedor-img {
  width: 100%;
  /* height: calc(100vh - 155px); */
}

.texto1 {
  font-size: 25px;
  text-align: justify;
}

.titulo1 {
  font-family: "Lora";
  font-weight: bold;
  color: var(--color-r-socialesh);
  font-size: 30px;
  text-shadow: 1px 1px 0 #3e3d3d, 1px -1px 0 #3e3d3d, -1px 1px 0 #3e3d3d, -1px -1px 0 #3e3d3d;
}

.texto1-1 {
  font-size: 20px;
  text-align: justify;
}

.fondo1 {
  background-color: var(--color-colegio);
  padding: 20px 15px;
  text-align: justify;
  color: #fff;
  border: solid 2px var(--color-r-socialesh);
}

.dropdown-item {
  color: #fff;
}

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

.sangria {
  text-indent: 10%;
}

.seccion:target {
  scroll-margin-top: 150px;
}

.titulos-footer {
  font-family: "Lora";
  font-size: 28px;
  color: var(--color-colegio);
  font-weight: bold;
}

.a-footer {
  text-decoration: none;
  color: var(--color-colegio);
  /* font-weight: bold; */
}

.a-footer:hover {
  color: var(--color-r-socialesh);
}

.sociales-footer {
  color: var(--color-r-sociales);
  font-size: 25px;
  /* text-align: center; */
}

.sociales-footer:hover {
  color: var(--color-r-socialesh);
}

.logo-footer {
  width: 100px;
  height: 110px;
}

hr {
  margin: 10px 0px 5px 0px;
}

.btn-ir-inicio {
  display: none;
  position: fixed;
  width: 40px;
  height: 38px;
  bottom: 0px;
  right: 10px;
  /* background-color: #acacac; */
  background-color: var(--color-colegio);
  /* opacity: 0.5; */
  justify-content: center;
  align-items: center;
  z-index: 1000;
  cursor: pointer;
  transition: all .4s ease;
}

.btn-ir-inicio-activo {
  display: flex;
  transition: all .4 ease;
}

.symbol-btn-ir-inicio {
  font-size: 25px;
  color: #fff;
  line-height: 1em;
}

.btn-ir-inicio:hover {
  background-color: var(--color-colegio);
  opacity: 0.5;
}

.symbol-btn-ir-inicio:hover {
  color: #fff;
}

@media (max-width: 992px) {
  .container-fluid {
      display: inline-grid !important;
      text-align: center;
  }

  .house, .separacion {
    margin-right: 0 !important;
  }
}

@media (max-width: 576px) {

  .align-items-center,
  .contenedor-sociales {
      text-align: center;
  }

  .d-flex {
    display: block !important;
  }
  
  .res575 {
    margin-top: 595px;
    margin-bottom: 10px;
  }

  .margen {
    margin-top: 10px !important;
  }
}

@media (max-width: 465px) {

  .res575 {
    margin-top: 400px;
    margin-bottom: 10px;
  }

}

