@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;900&display=swap');

* {
    box-sizing: border-box;
}

body {
    overflow-x: hidden;
    font-family: 'Montserrat', sans-serif;
    background-color: #fff;
}

@keyframes pulse {
    0% {
        transform: scale(0.6);
        opacity: 0.7;
    }

    50% {
        transform: scale(0.4);
        opacity: 1;
    }

    100% {
        transform: scale(0.6);
        opacity: 0.3;
    }
}

.video-pointer2 {
    animation: pulse 1.5s infinite;
}

.nav-div {
    position: fixed;
    width: 100%;
    background-color: rgb(0, 0, 0);
    z-index: 1;
    box-shadow: 2px 2px 3rem rgba(0, 0, 0, .5);
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

.navbar-nav a {
    font-size: 1.3rem;
    letter-spacing: 0.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.navbar img {
    height: 4rem;
    right: -50px;
}


.navbar-dark {
    color: rgb(255, 255, 255);
    font-size: 2.4rem;
    letter-spacing: 0.7rem;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

.navbar-dark .navbar-nav .nav-link {
    color: #fff;
    font-weight: bold;
}

.navbar-nav {
    text-align: center;
}

.nav-link {
    padding: .2rem 1rem;
}

.navbar-toggler {
    padding: 1px 5px;
    font-size: 18px;
    line-height: 0.3;
    color: #000;
}

.navbar-nav>li {
    background-color: #000;
}

html {
    scroll-behavior: smooth;
}

.fullscreen-video-wrap {
    position: relative;
    overflow: hidden;
}

.v-header {
    min-width: 100%;
    height: auto;
    width: 100%;
}

.fullscreen-video-wrap {
    padding: 0;
    min-width: 100%;
    height: auto;
    top: 10px;
}

.fullscreen-video-wrap video {
    min-width: 100%;
    max-height: 100%;
    height: auto;
}

@media only screen and (max-width: 767px) {
    .navbar-nav.ml-auto {
        background: transparent;
    }

    .navbar-nav a {
        font-size: 14px;
        font-weight: normal;
    }
    .navbar img {
        height: 2rem;
    }

}

.showcase-text h2 {
    font-weight: 400;
}

.showcase-text p {
    font-weight: 300;
    font-size: 1.1rem;
}

.video-pointer1 {
    position: relative;
    display: block;
}

.video-pointer2 {
    position: absolute;
    margin: auto;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    cursor: pointer;
}

.demo-container {
    position: relative;
    padding-top: 56.25%;
    display: none;
}

.demo-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

footer.footer {
    background-color: black;
    color: #fff;
    font-size: 20px;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.address_name {
    font-size: 26px;
    font-weight: 900;
    letter-spacing: 1px;
}

.mobile {
    display: none;
}

@media (max-width: 1300px) {
    .pc {
        display: none;
    }

    .mobile {
        display: block;
    }
}

@media (max-width: 900px) {
    .showcase-text h2 {
        margin: 3rem;
        margin-bottom: 0.3rem;
    }

    .showcase-text p {
        margin: 3rem;
        margin-top: 0;
    }

    video {
        width: 100%;
        max-height: 100%;
    }
}

@media screen and (min-width: 810px) and (max-width: 1170px) and (-webkit-min-device-pixel-ratio: 1) {
    video {
        width: 100%;
        max-height: 100%;
    }

    .showcase-text h2 {
        margin: 3rem;
        margin-bottom: 0.3rem;
    }

    .showcase-text p {
        margin: 3rem;
        margin-top: 0;
    }
}

/*-- Bootstrap Mobile Gutter Fix --*/
.row,
.container-fluid {
    margin-left: 0px !important;
    margin-right: 0px !important;
}
