/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

#openning{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    width: 100%;
    height: 100vh;
    overflow: hidden;
    z-index: 100;

    pointer-events: none;
}

#openning .cover{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    height: 100vh;
    width: 100%;
    background: white;
    -webkit-transition: opacity 1s .2s;
    -o-transition: opacity 1s .2s;
    transition: opacity 1s .2s;
}
#openning.fadeout .cover{
    opacity: 0;
}

#openning .logo{
    left: calc( 50% - 65px );
    top: calc( 50% - 65px );
    -webkit-transition: opacity .5s .1s, top 1.2s .2s;
    -o-transition: opacity .5s .1s, top 1.2s .2s;
    transition: opacity .5s .1s, top 1.2s .2s;
    opacity: 0;
}
#openning.fadein .logo{
    opacity: 1;
}
#openning.fadeout .logo{
    top: 15px;
}

#openning .deco-line{
    position: absolute;
    border-width: 1px 0;
    margin: 0;
    width: 0;
    height: 1px;
	opacity: 1;
    background-color: #BFB8AF;
}
#openning .deco-line.top{
    top: 12%;
    left: 0;
    -webkit-transition: width .5s .1s, top 1.2s .2s, opacity 1.2s .2s;
    -o-transition: width .5s .1s, top 1.2s .2s, opacity 1.2s .2s;
    transition: width .5s .1s, top 1.2s .2s, opacity 1.2s .2s;
}
#openning .deco-line.bottom{
    bottom: 12%;
    right: 0;
    -webkit-transition: width .5s .1s, bottom 1.2s .2s, opacity 1.2s .2s;
    -o-transition: width .5s .1s, bottom 1.2s .2s, opacity 1.2s .2s;
    transition: width .5s .1s, bottom 1.2s .2s, opacity 1.2s .2s;
}

#openning.fadein .deco-line{
    width: 100%;
}

#openning.fadeout .deco-line{
	opacity: 0;
}

#openning.fadeout .deco-line.top{
    top: -1%;
}
#openning.fadeout .deco-line.bottom{
    bottom: -1%;
}


main p{
    color: #171D22;
}

main#index-main .flex-box {
    z-index: 1;
    position: relative;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 50px 20px;
    min-height: 350px;
}

main#index-main .flex-box > .img-box{
    width: 90%;
    margin: auto;

    border: white .5px solid;
}

main#index-main .flex-box > .text-box{
    width: 90%;
    margin: auto;
}







main section .deco-bar {
    position: absolute;
    height: 100%;
}

main section .deco-bar.broad{
    width: 25%;
}

main section .deco-bar.narrow{
    width: 10%;
}


main .deco-rect{
    /* display: none; */
    position: absolute;
    border: 1.5px solid #BFB8AF;
}

#deco-rect1{
    height: 80%;
    width: 350px;
    top: 10%;
    left: 40%;
}

#deco-rect2{
    height: 75%;
    width: 200px;
    top: 12.5%;
    left: 40%;
}



.icon-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    width: 90%;
    margin: 40px auto 40px auto;

}

.icon-flex > .icon-box {
    height: 60px;
    width: 60px;
    aspect-ratio: 1;
    border-radius: 65px;
    cursor: pointer;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border: 2px solid transparent;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;

    -webkit-transition: all .2s;

    -o-transition: all .2s;

    transition: all .2s;
    padding: 10px;
}

.icon-flex > .icon-box:hover,
.icon-flex > .icon-box.active{
    border-color: #BFB8AF;
}

.icon-flex > .icon-box > img {
    max-height: 80%;
    max-width: 80%;
    margin: auto;
    opacity: .55;

    -webkit-transition: all .2s;

    -o-transition: all .2s;

    transition: all .2s;
}

.icon-flex > .icon-box:hover > img,
.icon-flex > .icon-box.active > img{
    opacity: 1;
}


.info-text-con{
    width: 90%;
    margin: auto;
    padding-top: 10px;
    padding-bottom: 40px;
    min-height: 150px;
}

.info-text{
    display: none;
    text-align: center;
}

.info-text.active {
    display: block;
    min-height: 316px;
}

.info-text ul{
    text-align: left;
}

.home.bg-img-con{
    background-image: url("../img/Home Page/Home_Banner_BG.png");
}

.home.bg-img-con img{
    height: 100%;
    /* max-width: 80%; */
    object-fit: cover;
    transition: all .5s;
    user-drag: none;
    -webkit-user-drag: none;
    user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.home.parallax{
    pointer-events: none;
}

.home-banner.video-cover{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    pointer-events: all;
}

/* .home-banner.video-cover.active{
    display: none;
} */

#home-video-div{
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 99;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    pointer-events: all;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    align-items: center;
    background-color: #000;
    /* overflow-y: scroll; */
}

#home-video-div.active{
    display: flex;
}

#home-video-div video{
    width:100%;
}

.event-btn{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    /* max-width: 381px!important;
    max-height: 63px!important; */
    display: flex;
    justify-content: center;
    align-items: center;
}


.event-btn a{
    border: 1px solid #FFFFFF;
    background: #FFFFFF33;
    border-radius: 50px;
    color:#fff;
    text-decoration: none;
    padding: 15px 0;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    pointer-events: all;
    text-align: center;
    width:75%;
    transition: all .5s;
}

.event-btn a:hover{
    background: #FFFFFF55;
}

.location-session{
    pointer-events: none;
}

.location-session .outter{
    display:flex;
    flex-direction: column;
    pointer-events: all;
}

.location-session .outter>div{
    flex:1
}

.location-session .outter .access-div{
    background-image: url("../img/Home Page/access_bg.png");
    display: flex;
    flex-direction: column;
}

.access-div .access-icons{
    display: flex;
    /* flex-direction: column; */
}

.access-div .icon-list{
    flex:1;
    display:flex;
    justify-content: center;
    align-items: center;
}

.access-div .access-content{
    flex:2;
}

.access-div .access-content .access-infos{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.access-div .access-content .access-infos .info-text{
    padding-left: 8vw;
    padding-right: 8vw;
}

.access-div .access-content .access-infos .info-text h3{
    color: #fff!important;
    text-align: left;
    font-size: 1.8em;
    letter-spacing: 4px;
    margin-bottom:40px;
}

.access-div .access-content .access-infos .info-text p{
    color: #fff!important;
    text-align: justify;
}

.access-div .access-content .access-infos .info-text p a{
    color: #fff!important;
}

.access-div .access-content .access-infos .info-text p a.highlight{
    color: #fff!important;
}

.location-session .outter .map{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.flex-con > .flex-item .label-con{
    top:auto;
    justify-content: center;
    padding-bottom: 0;
    word-spacing: 100vw;
}

*{
    -webkit-overflow-scrolling: touch;
}


/* Tablet, portrait */
@media (min-width: 576px) {
    .event-btn a{
        padding: 15px 200px;
        width: auto;
    }
}

@media ( min-width: 768px ){
    main#index-main .flex-box {
        padding: 50px 0;
    }

    main#index-main .flex-box > .img-box{
        width: 45%;
        margin: auto;
    }

    main#index-main .flex-box > .text-box{
        width: 45%;
        margin: auto;
    }

    .icon-flex {
        width: 85%;
    }


    .icon-flex > .icon-box {
        height: 65px;
        width: 65px;
    }

    .icon-flex > .icon-box {
        height: 65px;
        width: 65px;
    }

    .info-text-con{
        width: 45%;
    }

    .location-session{
        pointer-events: none;
    }
    
    .location-session .outter{
        display:flex;
        pointer-events: all;
        flex-direction: row;
    }
    
    .location-session .outter>div{
        flex:1
    }
    
    .location-session .outter .access-div{
        background-image: url("../img/Home Page/access_bg.png");
        display: flex;
        flex-direction: row;
    }
    
    .access-div .access-icons{
        display: grid;
        flex-direction: column;
        gap:20px;
    }
    
    .access-div .icon-list{
        flex:1;
        display:flex;
        justify-content: center;
        align-items: center;
    }
    
    .access-div .access-content{
        flex:2;
    }
    
    .access-div .access-content .access-infos{
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: center;
        /* padding-top:290px; */
    }
    
    .access-div .access-content .access-infos .info-text{
        padding-left: 0;
        padding-right: 8vw;
    }
    
    .access-div .access-content .access-infos .info-text h3{
        color: #fff!important;
        text-align: left;
        font-size: 1.8em;
    }
    
    .access-div .access-content .access-infos .info-text p{
        color: #fff!important;
        text-align: justify;
    }
    
    .location-session .outter .map{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

}


@media (min-width: 992px) {
      main#index-main .flex-box{
          padding: 80px 0;
      }

      #deco-rect1{
          width: 40%;
      }

      #deco-rect2{
          width: 25%;
      }

      .icon-flex {
          width: 75%;
      }
      .home.bg-img-con .bg-img-inner-con{
        max-width: 80%;
      }
      #home-video-div{
        width: 80.1%;
      }
}

@media (min-width: 1200px) {
    main#index-main .flex-box{
        padding: 120px 0;
    }

    .icon-flex {
        width: 65%;
    }

    .icon-flex > .icon-box {
        height: 65px;
        width: 65px;
    }
    
}
