/********** CSS Styling **********/
:root {
    --primary: #06A3DA;
    --light: #EEF9FF;
    --dark: #091E3E;
}

html {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Press Start 2P', cursive;
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


/********** Headers **********/
h1 {
    font-size: 30px;
}

.display-1 {
    font-size: 50px;
}

h1,
h2,
.fw-bold {
    font-family: 'Press Start 2P', cursive;
    font-weight: 400 !important;
}

h3,
h4,
.fw-semi-bold {
    font-family: 'Press Start 2P', cursive;
    font-weight: 700 !important;
}

h5,
h6,
.fw-medium {
    font-family: 'Press Start 2P', cursive;
    font-weight: 600 !important;
}

.profile-image {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

/********** Navbar **********/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Press Start 2P', cursive;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: white;
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

/********** Carousel **********/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}

/********** Clips Section **********/
.video {
  position: relative;
  overflow: hidden;
  width: 100%;

}

@media screen and (max-width: 992px) {
  .video {
    padding-top: 56.25%;
  }

  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }
}

/********** Section Titles **********/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

/********** Contact Form **********/
.wrapper {

    display: flex;
    align-items: center;
    background: transparent;
    background-size: cover;
}

@media screen and (min-width: 992px) {
    .wrapper {
        display: flex;
        align-items: center;
        background: transparent;
        background-size: cover;
    }
}

.inner {
    max-width: 758px;
    margin: auto;
    background-image: url(https://tmilleon.com/img/Vaporwave-Contact.jpg);
    box-shadow: inset 0 0 0 1000px rgba(9, 30, 62, .7);
    background-size: 100% 100vh;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 60px 60px;
}


h3 {
    text-transform: uppercase;
    font-size: 45px;
    text-align: center;
    color: rgb(255, 255, 255);
    font-weight: bold;
    margin-bottom: 12px;
}

.contact-text {
    text-align: center;
    padding: 0 10px;
    margin-bottom: 55px;
    line-height: 1.8;
    color: white
}

.form-group {
    position: relative;
    display: block;
    margin-bottom: 48px;
}

.form-group span {
    font-size: 15px;
    color: #ffffff;
    position: absolute;
    top: 11px;

    cursor: text;
}

.form-group span.border {
    height: 2px;
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    top: 41px;
    transform: scaleX(0);
    transition: all .15s ease;
    background: #000000;
}

.form-control {
    border: none;

    display: block;
    width: 100%;
    height: 43px;
    font-size: 15px;
    background: white;
}

.label {
    color: white;
}

textarea.form-control {
    padding-top: 10px;
    padding-bottom: 10px;
}

/********** Footer **********/

.footer {
    background: var(--dark);
    padding-top: 70px;
}

.footer-about {
    margin-bottom: 30px;
}

.footer-about .footer-logo {
    margin-bottom: 30px;
}

.footer-about p {
    color: #b7b7b7;
    margin-bottom: 30px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-widget h6 {
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.footer-widget ul li {
    line-height: 36px;
    list-style: none;
}

.footer-widget ul li a {
    color: #b7b7b7;
    font-size: 15px;
}

.footer-copyright-text {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    margin-top: 40px;
}

.footer-copyright-text p {
    color: #b7b7b7;
    margin-bottom: 0;
}

/********** Mobile Styling **********/

@media screen and (max-width: 992px) {


    /*** Headers ***/
    h1 {
        font-size: 80%;

    }

    .display-1 {
        font-size: 30px;
    }

    h1,
    h2,
    .fw-bold {
        font-family: 'Press Start 2P', cursive;
        font-weight: 400 !important;
        font-size: 3vh;
    }

    h3,
    h4,
    .fw-semi-bold {
        font-family: 'Press Start 2P', cursive;
        font-weight: 700 !important;
    }

    h5,
    h6,
    .fw-medium {
        font-family: 'Press Start 2P', cursive;
        font-weight: 600 !important;
        font-size: 30px;
    }

    .navtitle {
        margin-left: -1vh;
        margin-top: 2vh;

    }

    /*** Navbar ***/
    .navtitle {
        color: white;
    }

    .navbar {
        background-image: url(https://tmilleon.com/img/Vaporwave-Image.jpg);
        box-shadow: inset 0 0 0 1000px rgba(9, 30, 62, .7);

    }

    .navbar-dark .navbar-nav .nav-link {
        font-family: 'Press Start 2P', cursive;
        position: relative;
        margin-left: 25px;
        padding: 25px 0;
        color: #FFFFFF;
        font-size: 18px;
        font-weight: 600;
        outline: none;
        transition: .5s;
    }

    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 20px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link.active {
        color: var(--primary);
    }

    .navbar-dark .navbar-brand h1 {
        color: #FFFFFF;
    }

    .navbar-dark .navbar-toggler {
        color: white !important;
        border-color: white !important;
    }

    @media (max-width: 991.98px) {
        .navbar {
            background-image: url(https://tmilleon.com/img/Vaporwave-Image.jpg);
            box-shadow: inset 0 0 0 1000px rgba(9, 30, 62, .7);
        }

        .sticky-top.navbar-dark {
            position: relative;
            background: #FFFFFF;
        }

        .navbar-dark .navbar-nav .nav-link,
        .navbar-dark .navbar-nav .nav-link.show,
        .sticky-top.navbar-dark .navbar-nav .nav-link {
            padding: 10px 0;

        }

        .navbar-dark .navbar-brand h1 {
            color: white;
        }
    }

    /*** Carousel ***/
    .carousel-caption {
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(9, 30, 62, .7);
        z-index: 1;
    }

    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 90%;
        font-weight: 600 !important;
    }


    .carousel-control-prev,
    .carousel-control-next {
        width: 10%;
    }

    .carousel-control-prev-icon,
    .carousel-control-next-icon {
        width: 3rem;
        height: 3rem;
    }


    /*** Section Title ***/
    .section-title::before {
        position: absolute;
        content: "";
        width: 150px;
        height: 5px;
        left: 0;
        bottom: 0;
        border-radius: 2px;
    }

    .section-title.text-center::before {
        left: 50%;
        margin-left: -75px;
    }

    .section-title.section-title-sm::before {
        width: 90px;
        height: 3px;
    }

    .logolink {
        margin-left: 4vh;
        font-size: 3vh;
    }

    /*** Button ***/
    .btn {
        font-weight: 600;
        transition: .5s;
        font-size: 10px;
    }
}