@font-face {
    font-family: "Optie";
    src: url("/fuentes/OPTIEdgarBold-Extended.otf");
}

@font-face {
    font-family: "Avenir";
    src: url("/fuentes/AvenirLTStd-Book.ttf");
}

.logo {
    max-height: 15vh;
}

body, main, header {
    height: 100%;
    width: 100%;
    min-width: 100%;
    font-family: "Avenir";
    margin: 0;
}

.color-pagary { 
    color: #c33636!important; 
}

.text-pagary {
    font-family: "Avenir";
}

.titulo-pagary { 
    font-family: "Optie";
}

a {
    text-decoration: none;
}
  
a:hover {
    color: #555;
}

.header {
    background-color: #555;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    max-height: 100vh;
}

.header-min {
    background-color: #000;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 30vh;
    max-height: 30vh;
}

.bg-img {
    background-color: #000;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 55vh;
    max-height: 55vh;
}

.header::before, .header-min::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.62);
}

.header,
.header-min > h1,
h6,
img,
div {
  position: relative;
}

.img-animated {
    object-fit: cover;
    transform: scale(1);
    animation: movimg 25s 3s alternate infinite ease-in-out;
    -webkit-animation: movimg 25s 3s alternate infinite ease-in-out;
    -moz-animation: movimg 25s 3s alternate infinite ease-in-out;
    -o-animation: movimg 25s 3s alternate infinite ease-in-out;
}

@keyframes movimg {
    from {
        transform: scale(1); 
        -webkit-transform: scale(1); 
        -moz-transform: scale(1); 
        -o-transform: scale(1); 
    }
    to {
        transform: scale(1.2); 
        -webkit-transform: scale(1.2); 
        -moz-transform: scale(1.2); 
        -o-transform: scale(1.2); 
    }
}

.pagary-bg{
    background-color: #000;
}

.pagary-img {
    height: 100px;
    width: 100px;
    background-color: #555;
}

.pagary-focus {
    min-height: 10vh;
}

.img-card {
    max-width: 100%;
    height: auto;
    margin: auto;
}

.img-aling-center {
    display: flex;
    align-items: center;
}

#navbar-pg {
    position: fixed; /* Make it stick/fixed */
    top: 0; /* Stay on top */
    width: 100%; /* Full width */
    transition: top .5s; /* Transition effect when sliding down (and up) */
}

.navbar-toggler {
    border-width: 1px !important;
    border-color: rgba(255, 255, 255, 0.85) !important;
}