/*
colors plate:
Blue - #172d67
golden - #FFD700
*/
@keyframes logo-color {
    0% {
        color: goldenrod;
    }

    100% {
        color: blue;
    }
}

@keyframes link-color {
    0% {
        color: goldenrod;
    }

    100% {
        color: blue;
    }
}

@keyframes btn-bg {
    0% {
        background-color: goldenrod;
        opacity: 1;
    }

    100% {
        background-color: blue;
        opacity: 0.5;
    }
}
body {
    /*background: rgb(28, 50, 107);
    background: linear-gradient(180deg, rgba(28, 50, 107, 1) 0%, rgba(76, 94, 140, 1) 15%, rgba(255, 255, 255, 1) 100%);
    background-repeat: no-repeat;*/
    padding: 0;
    font-family: 'Open Sans', sans-serif;
}
.h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.25rem !important;
}

.btn-primary {
    background-color: goldenrod;
    color: white;
    border: none;
    font-size: 18px;
    animation: btn-bg 3s ease-in-out infinite alternate;
}
.bg-gold {
    background-color: goldenrod;
    padding: 20px;
    border-radius: 15px;
    height: 100%;
}
.bg {
    background-color: rgba(8,56,111,0.1);
    padding: 20px;
    border-radius: 15px;
    height: 100%;
}
.bg-gold h3 {
    color: white;
}
header {
    box-shadow: 0px 10px 15px -3px rgba(23, 45, 123, 0.1);
}
.logo {
    margin: 15px 0 10px;
    font-family: 'Bitter', serif;
    text-transform: uppercase;
    text-align: center;
    line-height: 22px;
    color: goldenrod;
    animation: logo-color 3s ease-in-out infinite alternate;
}

.logo span {
    font-size: 48px;
}
.logo span span {
    font-size: 22px;
    font-family: 'Roboto', sans-serif;

}
.nav-link {
    color: #FFD700;
    text-transform: capitalize;
    font-size: 18px;
    animation: link-color 3s ease-in-out infinite alternate;
}
.col-bg {
    background-image: linear-gradient(159deg, #09386f 0%, #0498ca 100%);
    background-color: #08386f;
}
.hero-banner {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    background-size: cover;
}
.social-icons {
    padding: 0;
    margin: 0;
    list-style: none;
}
.social-icons li {
    display: inline-block;
}
.social-icons li i {
    font-size: 2rem;
}
footer {
    background-color: goldenrod;
    color: white;
    padding: 20px 0 5px;
    margin-top: 20px;
    /*animation: btn-bg 3s ease-in-out infinite alternate;*/
}
footer a {
    color: white;
}

/* Mobile Style */
@media screen and (max-width: 991px) {
    .navbar-toggler {
        position: fixed;
        right: 15px;
        top: 15px;
    }
    .navbar-collapse {
        position: fixed;
        background: white;
        padding: 20px 50px;
        right: 0px;
        top: 70px;
    }
    .bg {
        margin-bottom: 20px;
        height: auto;
    }
}
