/* vim: set ft=scss: */

[data-bs-theme="light"] {
    --bs-body-color: $3f3f3f;
    --bs-body-bg-blend-with-gradient: #ebeaf0;
    --bs-body-bg-gradient: linear-gradient(0deg,rgba(163,212,252,0),#a3d4fc);
    --navbar-color: #004677;
}

[data-bs-theme="dark"] {
    --bs-primary-bg-subtle: #000;
    --bs-primary-bg-subtle-dark: #000;
    --bs-body-bg-blend-with-gradient: #000;
    --bs-body-bg: #181818;
}

body {
    font-family: 'Rubik', sans-serif;
    background-color: var(--bs-body-bg-blend-with-gradient);
    color: var(--bs-body-color);
}

body:before {
    content: "";
    border-image: linear-gradient(90deg,#0f69b4 50%,#eb3c46 0) 1;
    border-width: 3px;
    display: block;
    width: 100%;
    position: fixed;
    border-style: solid;
    top: 0;
    z-index: 2;
}

.gradiente:before {
    content: "";
    height: 100%;
    position: absolute;
    z-index: -2;
    top: 0;
    width: 100%;
    background: #a3d4fc;
    background: -moz-linear-gradient(0deg,rgba(163,212,252,0) 0,#a3d4fc 100%);
    background: -webkit-linear-gradient(0deg,rgba(163,212,252,0),#a3d4fc);
    background: var(--bs-body-bg-gradient);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a3d4fc",endColorstr="#a3d4fc",GradientType=1);
}

.navbar {
    font-weight: 700;
    font-family: Raleway, sans-serif;
}

body > .flex-grow-1 > div.container {
    background-color: var(--bs-body-bg);
    color: var(--bs-body-color);
    margin-top: 10px;
    padding: 32px;
    border-top: 4px solid rgb(66, 144, 208);
    border-radius: 10px 10px 0px 0px;
}

section.hijos {
    h3 {
        font-size: 1.3rem;
        a {
            text-decoration: none;
        }
    }
}

.pie {
    background-color: #003960;
    margin-top: 60px;
    padding-top: 60px;
    padding-bottom: 60px;
}

.footer {
    max-width: 1140px;
    margin: auto;
    color: #fff;
    img {
      height: 70px;
      float: right;
    }
    a {
      color: #fff;
    }
}

textarea.form-control {
  min-height: 8rem;
}
