#logo {
    width: 40px;
    height: 40px;
}

body {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

main {
    margin-top: 66px;
    flex: 1 0 auto;
}

.hero-image {
    background-image: url("image1-filtered.jpg");
    height: 45vh;
    /* Position and center the image to scale nicely on all screens */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

@media screen and (min-width: 768px) {
    .hero-image {
        background-image: url("image10-filtered.jpg");
        background-position: 0% 10%;
        height: 40vh;
    }
}

.bg-color-1 {
    background-color: #428dff;
    color: white;
}

.bg-color-2 {
    background-color: white;
    color: black;
    padding: 15px;
    border-radius: 20px;
}

.col h4 {
    font-weight: 600;
    font-size: 20px;
}

.col img {
    margin-bottom: 10px;
}

.navbar,
footer {
    background-color: #428dff;
    color: white;
}

.navbar a {
    color: white;
    font-weight: 500;
}

.navbar-brand a {
    color: white;
    font-weight: 700;
}

footer a {
    color: white;
    font-weight: 700
}

footer a:hover {
    color: white;
    font-weight: 700
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
    border: 1px solid black;
    border-radius: 5px;
    background-color: white;
}

#nosotros p {
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
}

#contacto a {
    font-size: 18px;
    font-weight: 500;
}

#contacto a h4 {
    color: black;
}

#contacto a:hover {
    text-decoration: none;
}

.navbar .icon {
    width: 30px;
    height: 30px;
    animation-name: vibracion;
    animation-duration: 2.5s;
    animation-iteration-count: infinite;
}

@keyframes vibracion {
    0% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    30% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    40% {
        transform: translate(1px, -1px) rotate(0deg);
    }
    50% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    60% {
        transform: translate(1px, -1px) rotate(0deg);
    }
    70% {
        transform: translate(1px, 1px) rotate(0deg);
    }
    100% {
        transform: translate(1px, 1px) rotate(0deg);
    }
}

.bg-special-navbar {
    background-color: white;
    border-radius: 5px;
    padding: 1px 2px 3px 2px;
    color: black;
    border: 1px solid black;
}