﻿
/* 11. hero */
/* 11.1. hero overlay */
.overlay:before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.overlay-dark-60:before,
.overlay-dark-60-video:before {
    background-color: #000000aa;
}

.overlay-dark-60:before,
.overlay-dark-40:before {
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none;
}

.overlay-dark-60-video:before,
.overlay-dark-40-video:before {
    -webkit-pointer-events: auto;
    -moz-pointer-events: auto;
    pointer-events: auto;
}

.bg_tower_img{
    background-color: var(--primary);
}


/* 11.2. hero container */
.hero-fullscreen {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    z-index: 0;
}


/* 11.3. hero bg */
.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -ms-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}


/* 11.4. hero fullscreen FIX */
.hero-fullscreen-FIX {
    width: 100%;
    height: 100%;
}


/* 11.5. hero center container */
.hero-center-container {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-center-block {
    display: table-cell;
    vertical-align: middle;
}


/* 11.6. hero home page title */
h1.home-page-title {
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: 200px;
    font-weight: 700;
    color: #fff;
    text-shadow: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0 auto;
    padding: 0 55px;
    z-index: 1;
}

h2.home-page-title {
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: 70px;
    font-weight: 700;
    color: #fff;
    text-shadow: none;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0 auto;
    padding: 0 55px;
    z-index: 1;
}

p.entry_button_desc{
    font-weight:bold;
    a{
        color:var(--secondary);
    }
}


@media all and (min-width: 1920px) {
    h1.home-page-title {
        font-size: 300px;
    }

    h2.home-page-title {
        font-size: 100px;
    }
}

@media only screen and (max-width: 1200px) {
    h1.home-page-title {
        font-size: 150px;
    }

    h2.home-page-title {
        font-size: 50px;
    }
}

@media only screen and (max-width: 995px) {
    h1.home-page-title {
        font-size: 100px;
    }

    h2.home-page-title {
        font-size: 30px;
    }
}

@media only screen and (max-width: 640px) {
    h1.home-page-title {
        font-size: 80px;
    }

    h2.home-page-title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 480px) {
    h1.home-page-title {
        font-size: 70px;
    }

    h2.home-page-title {
        font-size: 20px;
    }
}


h1.home-page-title-hide,
h1.home-page-title-show {
    -webkit-transition: all 1.5s ease;
    -moz-transition: all 1.5s ease;
    -ms-transition: all 1.5s ease;
    -o-transition: all 1.5s ease;
    transition: all 1.5s ease;
}

h1.home-page-title-hide {
    opacity: 0;
    -moz-opacity: 0;
    -webkit-opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    letter-spacing: 0.20em;
}

@media only screen and (max-width: 480px) {
    h1.home-page-title-hide {
        letter-spacing: 0.10em;
    }
}

h1.home-page-title-show {
    opacity: 1;
    -moz-opacity: 1;
    -webkit-opacity: 1;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    letter-spacing: -0.04em;
}



