/* Minification failed. Returning unminified contents.
(225,29): run-time error CSS1046: Expect comma, found '0'
(225,33): run-time error CSS1046: Expect comma, found '/'
(394,33): run-time error CSS1046: Expect comma, found '0'
(394,37): run-time error CSS1046: Expect comma, found '/'
 */
html, body {
    padding: 0;
    margin: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #000;
    font-family: arial;
}

/*scrollbar*/
*::-webkit-scrollbar {
    height: 9px;
    width: 9px;
}

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 0px rgba(0, 0, 0, 0);
}

*::-webkit-scrollbar-thumb {
    height: 9px;
    width: 9px;
    border-radius: 4px;
    background-color: #d5ac68;
}

    *::-webkit-scrollbar-thumb:hover {
        background-color: #f1db9d;
    }

*::-webkit-scrollbar:vertical {
    /*display: none;*/
}

/*header*/
header {
    position: absolute;
    top: 0;
    left: 0;
    height: 60px;
    width: 100vw;
    background-color: #02682e;
}

    header .logo {
        position: absolute;
        background-color: #e6f5ba;
        padding: 18px 80px;
    }

        header .logo:after {
            content: "";
            position: absolute;
            left: 100%;
            top: 0;
            border-right: 80px solid transparent;
            border-top: 80px solid #e6f5ba;
        }

        header .logo img {
            height: 40px;
        }

    header h1 {
        text-align: right;
        color: #fff;
        margin: 0;
        padding: 0;
        line-height: 60px;
        font-size: 20px;
        font-weight: 500;
        padding-right: 20px;
        text-transform: uppercase;
    }

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 10px;
    width: 100vw;
    background-color: #e6f5ba;
}

    footer .menu ul {
        list-style: none;
        padding: 10px 20px;
        margin: 0;
        text-align: center;
        position: absolute;
        bottom: 0;
        right: 0;
        background-color: #e6f5ba;
        white-space: nowrap;
    }

        footer .menu ul:before {
            content: "";
            position: absolute;
            top: 0px;
            left: -60px;
            border-left: 60px solid transparent;
            border-bottom: 60px solid #e6f5ba;
        }

        footer .menu ul:after {
            content: "";
            position: absolute;
            top: 5px;
            left: -182px;
            width: 150px;
            height: 55px;
            transform: skew(-45deg);
            background: #02682e;
        }

        footer .menu ul li {
            padding: 5px 10px;
            display: inline-block;
        }

            footer .menu ul li a {
                display: inline-block;
                width: 40px;
                height: 40px;
                line-height: 40px;
                background-color: #02682e;
                border-radius: 50%;
                color: #fff;
            }

                footer .menu ul li a:hover {
                    color: #fff;
                    background-color: #138496;
                    border-color: #117a8b;
                }

                footer .menu ul li a.active, footer .menu ul li a:focus {
                    color: #fff;
                    background-color: #138496;
                    border-color: #117a8b;
                    box-shadow: 0 0 0 .2rem rgba(58,176,195,.5)
                }

/*glass-modal*/
.glass-modal {
    width: 80vw;
    max-width: 1200px;
    height: 70vh;
    border-radius: 10px;
    z-index: 30;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, #ffc6ef 30%,#fff3db 30%,#fff3db 70%,#a2efd7 70%);
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: all 1s;
    display: none;
}

    .glass-modal.show {
        box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.5);
        top: 50%;
        opacity: 1;
    }

    .glass-modal .glass-modal-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: calc(100% - 20px);
        height: calc(100% - 20px);
        background: #fff;
        overflow: auto;
    }

    .glass-modal .close-modal {
        position: absolute;
        top: -36px;
        right: -36px;
        width: 36px;
        height: 36px;
        line-height: 36px;
        text-align: center;
        border-radius: 50%;
        color: #fff;
        z-index: 40;
        border: 2px solid #fff;
        opacity: 0.3;
        cursor: pointer;
    }

        .glass-modal .close-modal:hover {
            opacity: 0.98;
            background-color: #fff;
        }

            .glass-modal .close-modal:hover i {
                color: #000;
            }

.bg-cover {
    width: 100vw;
    height: 100vh;
    z-index: 10;
    position: relative;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0;
    transition: all 0.3s;
    display: none;
}

    .bg-cover.show {
        opacity: 0.5;
    }

/*aside*/
aside {
    background-color: rgb(0 0 0 / 67%);
    border: 2px solid #00bcd4;
    border-top-width: 36px;
    border-radius: 5px;
    max-width: 460px;
    width: calc(100% - 10px);
    max-height: 600px;
    height: calc(100% - 180px);
    position: absolute;
    transition: .3s;
    right: -466px;
    bottom: 72px;
    transition-timing-function: cubic-bezier(0.9,0,1,1);
    z-index: 9;
}

    aside.show {
        right: 2px;
        transition: .3s;
        transition-timing-function: cubic-bezier(0.9,0,1,1);
    }

    aside .btn-close {
        color: #fff;
        position: absolute;
        top: -25px;
        right: 10px;
        cursor: pointer;
    }

.grid-wrapper {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    height: 100%;
    overflow: auto;
}

    .grid-wrapper li {
        list-style-type: none;
        padding: 3rem 1rem;
        text-align: center;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        border: 1px solid #666;
        border-radius: 3px;
    }

        .grid-wrapper li:hover, .grid-wrapper li.active {
            border: 1px solid #fff;
        }

        .grid-wrapper li p {
            padding: 10px;
            background-image: radial-gradient(rgba(0,0,0,.8), rgba(0,0,0,.3), transparent, transparent);
            margin: 0;
            display: inline-block;
        }

        .grid-wrapper li a {
            color: #ffffff;
            text-transform: capitalize;
            text-decoration: none;
            text-shadow: 0 2px 3px hsla(0deg, 0%, 0%, 0.25);
        }

iframe {
    border: none;
    width: 100vw;
    height: 100vh;
}

.home {
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 100px;
    overflow: auto;
}

    .home .grid-wrapper {
        grid-gap: 20px;
        grid-template-columns: repeat(auto-fill, minmax(19rem, 1fr));
    }

        .home .grid-wrapper li {
            padding: 5rem 1rem;
        }

            .home .grid-wrapper li a {
                font-size: 22px;
            }

/*section-info*/
.section-info {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .section-info .text-wrap {
        width: calc(100% - 80px);
        max-width: 500px;
        max-height: calc(100% - 80px);
        float: right;
        margin: 20px;
        background-color: rgba(0,0,0, .6);
        border: 1px solid #fff;
        border-radius: 6px;
        padding: 20px;
        color: #f1f1f1;
        font-size: 20px;
        text-align: justify;
        line-height: 1.3;
        overflow: auto;
    }

        .section-info .text-wrap h3 {
            margin: 0;
            font-weight: 500;
        }

/*map*/
.map {
    width: 100%;
    height: 100%;
}

/*section-gallery*/
.section-gallery {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    height: 100%;
    width: 100%;
    background-color: #000;
    transition: background-image 1s ease;
}

    /*gl-caption*/
    .section-gallery .gl-caption {
        position: absolute;
        bottom: 0;
        color: #f1f1f1;
        width: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
    }

        .section-gallery .gl-caption h3, .section-gallery .gl-caption p {
            margin: 0;
            padding: 5px 20px;
            transition: all 1s ease;
        }

    /*gl-btns*/
    .section-gallery .gl-btns {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        text-align: center;
        font-size: 20px;
        background-color: rgb(0 0 0 / 60%);
        color: #aaa;
        border: 3px solid #aaa;
        cursor: pointer;
        position: absolute;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0s, opacity 0.5s linear;
    }

        .section-gallery .gl-btns:hover {
            background-color: #138496;
        }

    .section-gallery:hover .gl-btns {
        visibility: visible;
        opacity: 1;
    }

    .section-gallery .gl-btns.gl-prev {
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .section-gallery .gl-btns.gl-next {
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
    }

    .section-gallery .gl-btns.gl-play {
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
    }

/*section-video*/
.section-video {
    height: 100%;
    width: 100%;
    background-color: #000;
    overflow: hidden;
}

    .section-video video {
        width: 100%;
        height: 100%;
    }

    .section-video .video-bar {
        position: absolute;
        top: 0;
        left: 0;
        color: #fff;
        width: 100%;
        transition: opacity .5s ease-in-out;
        opacity: 0;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85), transparent);
    }

        .section-video video:hover + .video-bar, .section-video .video-bar:hover {
            opacity: 1;
        }

        .section-video .video-bar h3 {
            margin: 0;
            padding: 10px;
            font-weight: 500;
        }

        .section-video .video-bar .btn-more-video {
            position: absolute;
            top: 7px;
            right: 7px;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            border: none;
            cursor: pointer;
        }

    .section-video .video-list {
        position: absolute;
        top: 0;
        right: 0;
        width: 200px;
        height: calc(100% - 30px);
        background-color: rgba(0,0,0,.3);
        -webkit-transition: -webkit-transform .33s cubic-bezier(0,0,0.2,1);
        transition: transform .33s cubic-bezier(0,0,0.2,1),-webkit-transform .33s cubic-bezier(0,0,0.2,1);
        -webkit-transform: translateX(200px);
        transform: translateX(200px);
        border-top: 30px solid rgba(0,0,0,.7);
        display: none;
    }

        .section-video .video-list.show {
            -webkit-transform: translateX(0);
            transform: translateX(0);
            display: block;
        }

        .section-video .video-list .btn-close {
            color: #fff;
            position: absolute;
            top: -25px;
            right: 10px;
            cursor: pointer;
        }

        .section-video .video-list ul {
            margin: 0;
            padding: 0;
            list-style: none;
            height: 100%;
            overflow: auto;
        }

            .section-video .video-list ul li {
                margin: 15px;
            }

                .section-video .video-list ul li a {
                    display: block;
                    text-decoration: none;
                    color: #000;
                }

                .section-video .video-list ul li img {
                    width: 100%;
                }

                .section-video .video-list ul li h3 {
                    background-color: #fff;
                    margin-top: -4px;
                    margin-bottom: 0;
                    padding: 10px;
                    font-weight: 500;
                }

