/* =====================================
GENERAL
===================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    overflow-x:hidden;
    background:#fff;
}

/* =====================================
FULLSCREEN BACKGROUND VIDEO
===================================== */

#bgVideo{
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    object-fit:cover;
    z-index:-2;
}

/* Dark overlay */

.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.45);
    z-index:-1;
}

/* =====================================
NAVBAR
===================================== */

.navbar{
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);
    transition:.3s;
}

.navbar-brand{
    font-weight:bold;
    font-size:28px;
}

.nav-link{
    color:#fff !important;
    margin-left:15px;
}

.nav-link:hover{
    color:#00c6ff !important;
}

/* =====================================
HERO SECTION
===================================== */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    color:#fff;
}

.hero h1{
    font-size:60px;
    font-weight:700;
}

.hero p{
    font-size:20px;
    margin:25px 0;
}

/* =====================================
BUTTONS
===================================== */

.btn-primary{
    border-radius:50px;
    padding:12px 35px;
}

/* =====================================
SECTIONS
===================================== */

section{
    position:relative;
    z-index:2;
    padding:80px 0;
}

/* White content sections */

#about,
#services,
#gallery,
#contact,
footer{
    background:#fff;
    color:#222;
}

/* =====================================
CARDS
===================================== */

.card{
    border:none;
    border-radius:15px;
    overflow:hidden;
    transition:.3s;
    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

.card:hover{
    transform:translateY(-5px);
}

.card img{
    width:100%;
    height:230px;
    object-fit:cover;
}

.card video{
    width:100%;
    height:230px;
    object-fit:cover;
}

/* =====================================
CMS CONTENT
===================================== */

#cms-home .card{
    height:100%;
}

/* =====================================
HEADINGS
===================================== */

h1,h2,h3,h4,h5{
    font-weight:bold;
}

h2{
    margin-bottom:35px;
}

/* =====================================
FOOTER
===================================== */

footer{
    text-align:center;
    padding:25px 0;
}

/* =====================================
RESPONSIVE
===================================== */

@media(max-width:992px){

.hero{
    text-align:center;
}

.hero h1{
    font-size:45px;
}

}

@media(max-width:768px){

.hero h1{
    font-size:34px;
}

.hero p{
    font-size:18px;
}

.card img,
.card video{
    height:200px;
}

.navbar{
    background:rgba(0,0,0,.75);
}

}

@media(max-width:576px){

.hero h1{
    font-size:28px;
}

.hero p{
    font-size:16px;
}

.card img,
.card video{
    height:170px;
}

}