/* ----------------------------------------------------------
   GLOBAL
---------------------------------------------------------- */
html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: black;
    cursor: pointer;
}

h1 {
    text-align: center;
    font-weight: bold;
    color: white;
}

/* Background placeholder if needed */
.background {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -999;
}

/* Main wrapper */
.main {
    width: 100%;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
}

/* ----------------------------------------------------------
   HEADER
---------------------------------------------------------- */
.header {
    width: 100%;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    padding: 10px 5%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: transparent;
}
.header_left{
    width: 50%;
    float: left;
}
.header_right{
    width: 50%;
    float: right;
    text-align: right;
}
.header_right a{
    color: white;
}
.logo img {
    width: 200px;
    height: auto;
}

/* ----------------------------------------------------------
   VIDEO FULLSCREEN
---------------------------------------------------------- */
#fullscreen-video {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    object-position: center;
    z-index: -1;
}

/* ----------------------------------------------------------
   FOOTER
---------------------------------------------------------- */
.footer {
    width: 100%;
    padding: 30px 0 20px;
    color: white;
    text-align: center;
    background: linear-gradient(to top, rgba(0,0,0,0.7), rgba(0,0,0,0));
    position: absolute;
    bottom: 0;
    left: 0;
}

.center {
    width: 100%;
    float: left;
    text-align: center;
}

.center p{
    margin: 0;
    font-size: 16px;
    line-height: 22px;
}
.tel a,
.center a,
.map,
.map a {
    color: white;
    font-weight: 700;
}

.tel a:hover,
.map:hover {
    color: #a3acb1;
}

/* ----------------------------------------------------------
   SOCIAL MEDIA ICONS
---------------------------------------------------------- */
.smm_icons {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    display: inline-block;
}

.smm_icons li {
    float: left;
    margin: 0 15px;
}

.icon_tel,
.icon_map,
.icon_fb,
.icon_insta,
.icon_youtube {
    width: 28px;
    height: 28px;
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
}

.icon_tel { background-image: url(images/phone-256.png); }
.icon_tel:hover { background-image: url(images/phone-256-grey.png); }

.icon_map { background-image: url(images/map-256.png); }
.icon_map:hover { background-image: url(images/map_256_grey.png); }

.icon_fb { background-image: url(images/facebook-256.png); }
.icon_fb:hover { background-image: url(images/facebook-256-grey.png); }

.icon_insta { background-image: url(images/instagram-256.png); }
.icon_insta:hover { background-image: url(images/instagram-256-grey.png); }

.icon_youtube { background-image: url(images/youtube-256.png); }
.icon_youtube:hover { background-image: url(images/youtube-256-grey.png); }


.all_rights {
    width: 100%;
    float: left;
    margin-top: 15px;
}

.copy {
    margin: 0;
    font-size: 14px;
    color: #ddd;
}

/* ----------------------------------------------------------
   MOBILE RESPONSIVE
---------------------------------------------------------- */
@media (max-width: 767px) {

    /* .logo img {
        width: 120px;
    } */

    .center{
        width: 100%;
        padding-bottom: 10px;
        float: none;
    }

    .left p, .center p, .right p {
        font-size: 14px;
    }

    .footer {
        padding: 20px 0 15px;
    }

    .smm_icons li {
        margin: 0 15px;
    }

    .icon_fb, .icon_insta, .icon_youtube {
        width: 24px;
        height: 24px;
    }

    .copy {
        font-size: 10px;
    }
}

@media (max-width: 324px) {
    /* .logo img {
        width: 120px;
    } */
}
