@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap');

body {
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
    color: #1190CB;
}

.offset:before {
    display: block;
    content: "";
    height: 4rem;
    margin-top: -4rem;
}

/*--- Navigation ---*/
.navbar {
    text-transform: uppercase;
    font-weight: 700;
    font-size: .9rem;
    letter-spacing: .1rem;
    /*transparent*/
    /*background: rgba(0, 0, 0, 0)!important;*/
    background: white!important;
}
.navbar-brand img {
    height: 3rem;
}
.navbar-nav li {
    padding-right: .7rem;
}
.navbar-light .navbar-nav .nav-link {
    color: #1190CB;
    padding-top: .8rem;
}
.navbar-light .navbar-nav .nav-link.active,
.navbar-light .navbar-nav .nav-link:hover {
    /*color: #012e8a;*/
    text-shadow: .2rem .2rem .2rem #57697c;
}

/*--- Landing Page ---*/
.home-inner {
    background-image: url("../img/home-background.jpg");
}
.caption {
    width: 100%;
    max-width: 100%;
    position: absolute;
    top: 38%;
    z-index: 1;
    color: lightblue;
    text-transform: uppercase;
}
.caption h1 {
    font-size: 3.8rem;
    font-weight: 700;
    letter-spacing: .3rem;
    text-shadow: .1rem .1rem .1rem #301f1f;
    padding-bottom: 1rem;
}
.caption h3 {
    font-size: 2rem;
    text-shadow: .1rem .1rem .1rem #301f1f;
    padding-bottom: 1.6rem;
}
.btn-lg {
    border-width: thick;
    border-radius: 2rem;
    padding: .6rem 1.3rem;
    font-size: 1.1rem;
    text-shadow: .1rem .1rem .1rem #301f1f;
    color: lightblue;
    border-color: lightblue;
}

/*--- Course Section ---*/
.narrow {
    width: 75%;
    margin: 1.5rem auto;
    padding-top: 2rem;
}
.narrow h1 {
    font-size: 2.4rem;
}
.btn-secondary {
    border-width: medium;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 1.2rem;
    padding: .6rem 1.2rem;
    margin: 1rem;
    color: white;
    background-color: #1190CB;
    border-color: #1190CB;
}
.btn-secondary:hover {
    background-color: #18953b;
    border-color: #18953b;
}

/*--- Features Section ---*/
.jumbotron {
    margin-bottom: 0;
    padding: 2rem 0 3.5rem;
    border-radius: 0;
}
h3.heading {
    font-size: 1.9rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 1.9rem;
}
.heading-underline {
    width: 3rem;
    height: .2rem;
    background-color: lightblue;
    margin: 0 auto 2rem;
}
/*icon color*/
/*.feature svg.svg-inline--fa {*/
/*    color: #1ebba3;*/
/*}*/
.feature h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    padding-bottom: .4rem;
}
.feature p {
    font-size: 1.1rem;
}

/*--- Resources Section ---*/
.fixed {
    background-image: url("../img/resources-background.jpg");
    z-index: -1;
}
.dark {
    background-color: rgba(0, 0, 0, 0.45);
    color: #bcdbe9;
    padding: 7rem 2rem;
}
.fixed-background h3 {
    margin-bottom: 2rem
}
.fixed-background p {
    margin-top: 1.5rem;
}

/*--- Clients Section ---*/
.clients img {
    width: 100%;
    border-radius: 50%;
}
blockquote {
    margin: 1rem;
}
.clients-hr {
    border-top: .05rem solid lightblue;
}

/*--- Contact Section ---*/
footer {
    background-color: #40474e;
    color: #bcdbe9;
    padding: 2rem 0 2rem;
    margin-top: 1rem;
}
footer img {
    height: 4rem;
    margin: 1.5rem 0;
}
footer a {
    color: lightblue;
}
footer svg.svg-inline--fa {
    font-size: 1.6rem;
    margin: 1.2rem .5rem 0 0;
}
footer svg.svg-inline--fa:hover {
    color: lightgray!important;
}
hr.socket {
    width: 100%;
    border-top: .2rem solid #666b71;
    margin-top: 3rem;
}

/*--- Media Queries ---*/
@media (max-width: 767px) {
    .caption h1 {
        font-size: 2.3rem;
        letter-spacing: .15rem;
        padding-bottom: .5rem;
    }
    .caption h3 {
        font-size: 1.2rem;
        padding-bottom: 1.2rem;
    }
    .btn-lg {
        padding: .5rem 1rem;
        font-size: 1rem;
    }
    .narrow h1 {
        font-size: 1.5rem;
    }
    .clients img {
        max-width: 50%;
        display: block;
        margin: 0 auto;
    }
}

/*--- Rainbow Button ---*/
.button-anon-pen {
    text-transform: uppercase;
    width: 239px;
    background-color: #1190CB;
    text-align: center;
    margin: 0 auto;
    /*position: relative;*/
    color: white;
    text-decoration: none;
    display: block;
    top: 45vh;
    font-weight: normal;
    border-radius: 6px;
    overflow: hidden;
    /*-webkit-animation: play 1.6s ease-in infinite;*/
}

.button-anon-pen:hover {
    background-image: linear-gradient(115deg, #4fcf70, #fad648, #a767e5, #12bcfe, #44ce7b);
    -webkit-animation: play 1.6s ease-in infinite;
    text-decoration: none;
    color: white;
}

.button-anon-pen span {
    padding: .6rem 1.3rem;
    font-size: 1.2rem;
    display: block;

}

@-webkit-keyframes play {
    0% {
        background-position: 0px;
    }
    20% {
        background-position: -110px;
    }
    35% {
        background-position: -180px;
    }
    50% {
        background-position: -210px;
    }
    80% {
        background-position: -350px;
    }
    100% {
        background-position: -390px;
    }
}

/*============ BOOTSTRAP BREAK POINTS:

Extra small (xs) devices (portrait phones, less than 576px)
No media query since this is the default in Bootstrap

Small (sm) devices (landscape phones, 576px and up)
@media (min-width: 576px) { ... }

Medium (md) devices (tablets, 768px and up)
@media (min-width: 768px) { ... }

Large (lg) devices (desktops, 992px and up)
@media (min-width: 992px) { ... }

Extra (xl) large devices (large desktops, 1200px and up)
@media (min-width: 1200px) { ... }

=============*/
