/*------------------------------*\
    Index stylesheet
    ver: 2024-02-06
    brief: home page
\*------------------------------*/

/* root settings are pre loaded via main.css */

/*-----------------------------------*\
    HEAD - WELCOME & ACTION BUTTONS
\*-----------------------------------*/
.homepage-head{
    display: flex;
    height: 100vh;
    padding-top: 100px;
}
.homepage-head .section-head{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 33%;
}
.homepage-head .section-head .section-head-container{
    width:270px;
}
.section-head video {
    display: none !important;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.section-head-container h1{
    font-size: 2rem;
    font-weight: 400;
    margin: 0;
}
.section-head-container .red-line{
    margin-top:20px;
    width: 70px;
    border-bottom: 0.2rem solid var(--red);
}
.section-head-container .button-group{
    margin-top: 30px;
}
.section-head-container .button-group .btn_animate {
    display:block;
    margin: 15px 5px;
    text-align: center;
    width:150px;
}
.section-head-container .button-group .btn_animate a {
    display:inline-block;
    min-width:150px;
    padding: 13px 30px;
    text-decoration:none;
    color:black;
    background-color:white;
    background-image: url('../images/black_circle.png');
    background-size:0 0;
    background-position: center top;
    background-repeat: no-repeat;
    white-space: nowrap;
    overflow:hidden;
    transition: border,color 0.5s linear;
}
.section-head-container .button-group .btn_animate a:hover {
    color:white;
    border:none !important;
}


/*-----------------------------------*\
    HEAD BANNERS
\*-----------------------------------*/
.homepage-head .section-banners{
    width: 67%;
}

/* TOP BANNER */
.section-banners .banner-wide{
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width:100%;
    height:50%;
}

.section-banners .banner-image{
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.section-banners .banner-image::before{
    content: "";
    position: absolute;
    top: 50%;
    height: 50%;
    width: 100%;
    background: linear-gradient(-180deg,rgba(0,0,0,0) 34.3%,rgba(0,0,0,.3) 100%);
}
/* TWO BANNERS GROUP */
.section-banners .banner-group{
    display: flex;
    width: 100%;
    height: 50%;
}
.section-banners .banner-group .banner-single{
    position: relative;
    cursor: pointer;
    overflow: hidden;
    width: 50%;
    height: 100%;
}

.section-banners .banner-title{
    position: absolute;
    bottom: 6vh;
    right: 0.5vw;
    color: white;
    line-height: 1.5rem;
    text-shadow: 5px 3px 8px black;
}
.section-banners .banner-title h3{
    font-size:1.1rem;
    font-weight:600;
}
.container .red-line{
    width: 30%;
    border-bottom: 0.2rem solid var(--red);
}

/*-----------------------------------*\
    MEDIA QUERIES
\*-----------------------------------*/
@media (max-width:768px){
    .homepage-head{
        flex-wrap: wrap;
        height: auto;
    }
    .homepage-head .section-head,
    .homepage-head .section-banners{
        width: 100%;
    }
    .section-head .section-head-container{
        position: absolute;
        top: 30%;
        right: 20%;
    }
    
    .section-head video {
        display: inline-block !important;
    }

    .section-head-container h1{
        color:white;
        text-shadow: 5px 3px 8px black;
        /* font-size: 2rem;
        font-weight: 400;
        margin: 0; */
    }
    .section-head-container .button-group .btn_animate a {
        display:inline-block;
        min-width:150px;
        padding: 13px 30px;
        text-decoration:none;
        color:white;
        background-color:transparent;
        background-image: url('../images/white_circle.png');
        background-size:0 0;
        background-position: center top;
        background-repeat: no-repeat;
        white-space: nowrap;
        overflow:hidden;
        transition: border,color 0.5s linear;
    }
    .section-head-container .button-group .btn_animate a:hover {
        color:black;
        border:none !important;
    }
    .section-banners .banner-wide{
        height: 350px;
    }
    .section-banners .banner-group{
        /* display: flex;
        width: 100%;
        height: 50%; */
        flex-wrap: wrap;
    }
    .section-banners .banner-group .banner-single{
        position: relative;
        cursor: pointer;
        overflow: hidden;
        width: 100%;
        height: 350px;
    }
    
    .container .red-line{
        display: none;
    }
}