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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

nav {
    background: #4484CD;
}

.navbar-brand {
    margin-left: 10px;
    display: flex !important;
    justify-content: center;
    align-items: center;
}

#logo {
    height: 50px;
    width: 100px;
}

#logo-holder {
    padding: 0px;
    margin-bottom: 10px;
    margin-left: 20px;
}

#navbarNavAltMarkup {
    flex-direction: row-reverse;
}

#toggler-icon {
    color: #4484CD;
}

#navbar-button {
    background: white;
}

.navbar-nav > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #d9d9d9;
    margin-left: 15px;
    transition: all 0.3s ease-in-out;
    border-radius: 15px;
    font-size: 15px;
    height: 40px;
    text-align: center;
}

.navbar-nav > a:hover {
    cursor: pointer;
}

.nav-link {
    color: #d9d9d9 !important;
    text-align: left;
}

.nav-link:hover {
    color: white !important;
}

.banner {
    background: rgb(244,243,244);
    padding-top: 65px;
}

.d-block {
    margin: 0 auto;
    background-size: contain;
    height: 200px;
    width: 100%;
}

.carousel-inner > .carousel-item > video {
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.flex-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    background: #d9d9d9;
}

.videodisplay {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 350px;
    width: 300px;
    position: relative;
    border-radius: 10px;
    background: #4484CD;
    text-align: center;
    margin: 20px;
    border: 4px solid #d9d9d9;
    transition: all 1s cubic-bezier(.25, .8, .25, 1);
    cursor: pointer;
}

.videodisplay:hover {
    box-shadow: 0 14px 28px rgba(78, 142, 213, .5), 0 15px 15px rgba(78, 142, 213, 0.75);
    background-color: rgb(34, 70, 114);
    -webkit-transition: background-color 300ms linear;
    -ms-transition: background-color 300ms linear;
    transition: background-color 300ms linear;
    transform: scale(1.02);
}

.videothumbnail > img {
    width: 270px;
    height: 160px;
}

.video-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 168px;
    padding: 20px;
    font-family: 'Roboto', sans-serif;
    color: #d9d9d9;
}

.videotitle {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    height: 60px;
}

.video-logistics {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    width: 100%;
}

.video-logistics > p {
    font-size: 14px;
    margin: 0;
}

.fa-heart, .fa-heart-broken {
    color: rgb(221, 105, 105);
}

#footer {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4484CD;
    color: #d9d9d9;
    height: 60px;
    font-family: 'Roboto', sans-serif;
}

#copyright {
    font-size: 12px;
}

#up-arrow-container {
    display: flex;
    justify-content: center;
    background: #d9d9d9;
    width: 100%;
}

#up-arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #4484CD;
    border-radius: 50px;
    height: 70px;
    width: 70px;
    background: -webkit-gradient(
		linear, left top, left bottom,
		from(#4484CD),
		color-stop(0.45, #4484CD),
		color-stop(0.92, rgb(34, 70, 114)),
        to(rgb(34, 70, 114))
        );
}

#up-arrow:hover {
    animation: bounce 2s ease-in-out infinite alternate;
}

.warning {
    color: rgb(167, 2, 2);
}

@keyframes bounce {
    0% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
    50% {
        transform: scale(1.2);
        -webkit-transform: scale(1.2);
    }
    100% {
        transform: scale(1.0);
        -webkit-transform: scale(1.0);
    }
}

#extra-space {
    height: 20px;
    width: 100%;
    background: #d9d9d9;
}

.fa-arrow-up {
    color: #d9d9d9;
    font-size: 60px;
    justify-self: end;
}

textarea:focus,
input[type="text"]:focus,
input[type="password"]:focus,
.uneditable-input:focus {   
  border-color: #4484CD;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px #4484CD;
  outline: 0 none;
}

button:focus {
    outline: 0px auto !important;
}

.meettheteam {
    cursor: pointer;
    text-decoration: none;
    color: #d9d9d9;
}

@media screen and (min-width: 600px) {

    .videotitle {
        font-size: 18px;
    }

    .video-logistics > p {
        font-size: 16px;
    }

    .carousel-inner {
        height: 350px;
    }
    .carousel-inner > .carousel-item > img {
        height: 300px;
    }

    .carousel-inner > .carousel-item > video {
        height: 350px;
    }

    .d-block {
        height: 350px;
        width: 80%;
    }

    #up-arrow-container {
        justify-content: flex-end;
    }

    #up-arrow {
        margin-right: 50px;
    }

}

@media screen and (min-width: 992px) {

    .navbar-nav > a:hover {
        color: #4484CD !important;
        background: #d9d9d9;
        border-radius: 15px;
        cursor: pointer;
    }

    #copyright {
        font-size: 16px;
    }
}

@media screen and (min-width: 1024px) {

    .carousel-inner {
        height: 450px;
    }

    .carousel-inner > .carousel-item > img {
        height: 500px;
    }

    .carousel-inner > .carousel-item > video {
       height: 500px;
    }

}

@media screen and (min-width: 1368px) {

    .carousel-inner > .carousel-item > video {
        height: 500px;
    }

    .d-block {
        width: 60%;
    }

}