/* GLOBAL STYLES
-------------------------------------------------- */


/* Padding below the footer and lighter body text */

@import url('https://fonts.googleapis.com/css2?family=Black+Ops+One&display=swap');
body {
    font-family: 'Black Ops One', cursive;
    padding-top: 3rem;
    padding-bottom: 3rem;
    color: #5a5a5a;
}


/* CUSTOMIZE THE CAROUSEL
-------------------------------------------------- */

.active {
    border-bottom: 2px solid rgb(255, 255, 255);
    background-color: rgba(68, 68, 68, 0.808);
}


/* Carousel base class */

.carousel {
    margin-bottom: 0;
}


/* Since positioning the image, we need to help out the caption */

.carousel-caption {
    bottom: 20vh;
    z-index: 10;
}


/* Declare heights because of positioning of img element */

.carousel-item {
    height: 94vh;
    background-color: #777;
    top: 0;
}

.carousel-item>img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 43rem;
}


/* MARKETING CONTENT
-------------------------------------------------- */


/* Center align the text within the three columns below the carousel */

.marketing .col-lg-4 {
    margin-bottom: 1.5rem;
    text-align: center;
}

.marketing h2 {
    font-weight: 400;
}

.marketing .col-lg-4 p {
    margin-right: .75rem;
    margin-left: .75rem;
}


/* Featurettes
------------------------- */

.featurette-divider {
    margin: 5rem 0;
    /* Space out the Bootstrap <hr> more */
}


/* Thin out the marketing headings */

.featurette-heading {
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.05rem;
}


/* RESPONSIVE CSS
-------------------------------------------------- */

@media (min-width: 40em) {
    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 1.25rem;
        font-size: 1.25rem;
        line-height: 1.4;
    }
    .featurette-heading {
        font-size: 50px;
    }
}

@media (min-width: 62em) {
    .featurette-heading {
        margin-top: 7rem;
    }
}


/* Create Down Arrow */

.arrow {
    position: absolute;
    top: 84%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.arrow span {
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid #06A8FF;
    border-right: 5px solid #06A8FF;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}


/* === Black Arrow === */

.black_arrow {
    position: static;
    margin-top: 0px;
    margin-left: 66.5%;
    transform: translate(-50%, -50%);
}

a .black_arrow span {
    left: 50%;
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid black;
    border-right: 5px solid black;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.black_arrow span {
    left: 50%;
    display: block;
    width: 30px;
    height: 30px;
    border-bottom: 5px solid black;
    border-right: 5px solid black;
    transform: rotate(45deg);
    margin: -10px;
    animation: animate 2s infinite;
}

.black_arrow span:nth-child(2) {
    animation-delay: -0.2s;
}

.black_arrow span:nth-child(3) {
    animation-delay: -0.4s;
}

@keyframes animate {
    0% {
        opacity: 0;
        transform: rotate(45deg) translate(-20px, -20px);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: rotate(45deg) translate(20px, 20px);
    }
}

@media screen and (max-width: 481px) {
    .black_arrow {
        position: absolute;
        top: 360%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .black_arrow span {
        display: block;
        width: 30px;
        height: 30px;
        border-bottom: 5px solid black;
        border-right: 5px solid black;
        transform: rotate(45deg);
        margin: -10px;
        animation: animate 2s infinite;
    }
    .black_arrow span:nth-child(2) {
        animation-delay: -0.2s;
    }
    .black_arrow span:nth-child(3) {
        animation-delay: -0.4s;
    }
    @keyframes animate {
        0% {
            opacity: 0;
            transform: rotate(45deg) translate(-20px, -20px);
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            transform: rotate(45deg) translate(20px, 20px);
        }
    }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
    .black_arrow {
        position: relative;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .black_arrow span {
        display: block;
        width: 30px;
        height: 30px;
        border-bottom: 5px solid black;
        border-right: 5px solid black;
        transform: rotate(45deg);
        margin: -10px;
        animation: animate 2s infinite;
    }
    .black_arrow span:nth-child(2) {
        animation-delay: -0.2s;
    }
    .black_arrow span:nth-child(3) {
        animation-delay: -0.4s;
    }
    @keyframes animate {
        0% {
            opacity: 0;
            transform: rotate(45deg) translate(-20px, -20px);
        }
        50% {
            opacity: 1;
        }
        100% {
            opacity: 0;
            transform: rotate(45deg) translate(20px, 20px);
        }
    }
}


/* === Collapsible text=== */

.module {
    font-size: 1rem;
    line-height: 1.5;
}

.module .collapseExample.collapse:not(.show) {
    display: block;
    height: 4.5rem;
    overflow: hidden;
}

.module .collapseExample.collapsing {
    height: 3rem;
}

.module a.collapsed::after {
    content: '+ Read More';
}

.module a:not(.collapsed)::after {
    content: '- Read Less';
}