/* common */

body {
    position: relative;
    min-width: 1200px;
}

html,
body,
.container {
    width: 100%;
    height: 100%;
    scroll-behavior:smooth; 
}

.wrap {
    width: 1200px;
    margin: 0 auto;
}

.center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.col-center {
    display: flex;
    align-items: center;
}


/* img */

.header-logo img,
.download-icon img {
    display: block;
    height: 100%;
}

.download-logo img,
.foot-icon img,
.pull-icon img {
    display: block;
    width: 100%;
}

.clear::after {
    content: "";
    display: block;
    clear: both;
}


/* bideo */

#container {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
}

#background_video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    height: 100%;
    width: 100%;
}

#video_cover {
    position: absolute;
    width: 100%;
    height: 100%;
    /* background: url('../video_cover.jpeg') no-repeat; */
    background-size: cover;
    background-position: center;
}

#overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.margin-left-30px{
  margin-left: 30px;
}

/* bootstrap */

@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }
}