﻿/* style.css */
/* (C) Copyright 2024, WWBDPLUS. All Rights Reserved. */

@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Montserrat:300,400,500&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none; /*중복라인, 색상, 두께*/
    border: none;
    outline: none;
    scroll-behavior: smooth; /*스크롤 이동 애니메이션*/
    /*font-family: "Poppins", sans-serif;*/
    /*font-family: 'montserrat', sans-serif;*/
    font-family: Arial, sans-serif;
}

:root {
    --bg_color: #080808;
    /*--main_color: #00ffee;*/
    --main_color: #00b9ff;
    --sec_bg_color: #131313;
    --menu_txt1_color: #00b9ff; /*nav txt*/
    --menu_txt2_color: #fff;
    --menu_bar_color: rgba(0,174,255,0.8); /*nav bar*/
    --text_color: #fff;
}

html {
    font-size: 60%;
    overflow-x: hidden;
}

body {
    background: var(--bg_color);
    color: var(--text_color);
    background: url(/images/sec_bg1_05.jpg) no-repeat fixed;
    background-size: cover;
}
/* ------------------------------------------------- ::-webkit-scrollbar */
::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background-color: #414141;
}

::-webkit-scrollbar-track {
    background-color: var(--bg_color);
    width: 50px;
}

/* ================================================== start s */
.header {
    position: fixed;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.1rem 12% 2rem;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px); /*배경에 효과주기 blur, contrast, grayscale */
    justify-content: space-between;
    align-items: center;
    z-index: 2;
    border: 0px solid #f00;
}

.logo {
    /*font-size: 3rem;
    color: var(--text_color);
    font-weight: 800;*/
    cursor: pointer;
    transition: 0.3s ease;
}

    .logo img {
        width: 13vw;
        min-width: 25rem;
        margin-top: 2rem;
        border: 0px solid #f00;
    }

    .logo:hover {
        transform: scale(1.1);
    }
/* ================================================== .navslideBar area s */
.navslideBar { /* 상단 바 */
    width: 100%;
    margin-top: 3rem;
    text-align: right;
    /*border: 1px solid #f00;*/
}

    .navslideBar a { /* 상단 바 */
        position: relative;
        font-size: 1.8rem;
        font-weight: 600;
        color: var(--text_color);
        padding-bottom: 3px;
        margin-left: 4rem;
        transition: 0.4s ease;
        border-bottom: 3px solid transparent;
    }

        .navslideBar a:before,
        .navslideBar a:after {
            position: absolute;
            content: '';
            width: 100%;
            height: 3px;
            bottom: -3px;
            right: 0px;
            border-bottom: 3px solid #fff;
            opacity: 0.2;
        }

        .navslideBar a:after {
            border-bottom: 3px solid #fff;
            transform: scaleX(0);
            transform-origin: left;
            animation: animatebar 0.3s linear backwards;
            opacity: 0.3;
            /*z-index: 1;*/
        }

@keyframes animatebar {
    100% {
        transform: scaleX(1);
    }
}

.navslideBar a:hover,
.navslideBar a.active {
    color: var(--menu_txt1_color);
    padding-bottom: 3px;
    border-bottom: 3px solid var(--menu_bar_color);
    /*text-shadow: 4px 4px 30px #000;*/
    opacity: 1;
    /*border: 1px solid #f00;*/
}

.navslideBar a span {
    width: 100%;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    color: var(--menu_txt_color);
    transition: 0.4s ease;
    /*border: 1px solid #f00;*/
}
/*-------------------------------------------------- hamburger area */
#hamburgerIcon {
    font-size: 3.6rem;
    color: var(--main_color);
    display: none;
}
/* ================================================== section area */
section {
    height: 100%;
    /*min-height: 100vh;*/
    padding: 17rem 10% 17rem;
    overflow: hidden;
}
/* ================================================== .secIntro area */
.secIntro {
    position: relative;
    padding: 0;
    height: 100vh;
    background: url("/images/intro_bg_00.jpg") no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .secIntro .logo_video {
        position: absolute;
        text-align: center;
    }

        .secIntro .logo_video img {
            width: 20rem;
            opacity: 0.5;
        }

        .secIntro .logo_video h2 {
            font-size: 8rem;
            font-weight: 700;
            margin: 5rem 0 3rem 0;
            opacity: 0.7;
        }

        .secIntro .logo_video p {
            font-size: 2rem;
            font-weight: 600;
            opacity: 0.6;
        }

    .secIntro video {
        /*width: 100%;
        height: 100vh;*/
        object-fit: cover;
    }
/* ================================================== .secHome area */
.secHome {
    position: relative;
    padding: 0;
    /*height: 100.5rem;*/
    height: 100vh;
    background: url("/images/sec_01_02_5.jpg") no-repeat;
    background-size: cover;
}

.secHome_container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.secHome_content { 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0.8;
}

    .secHome_content .logo_png_wt {
        /*position: absolute;
        top: 28rem;
        border: 1px solid #f00;*/
    }

        .secHome_content .logo_png_wt img {
            width: 30rem;
            opacity: 0.8;
        }

    .secHome_content h1 {
        font-size: 7rem;
        font-weight: 700;
        margin-top: 1.5rem;
        line-height: 1;
    }

        .secHome_content h1 span {
            color: var(--main_color);
        }

    .secHome_content h3 {
        margin-bottom: 2rem;
        margin-top: 1rem;
        font-size: 3.5rem;
    }

    .secHome_content p {
        text-align: center;
        font-size: 1.5rem;
        font-weight: 500;
        line-height: 1.8;
        max-width: 1000px;
    }

.cd_Box {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    overflow: hidden;
    /*border: 1px solid #f00;*/
}

/* ================================================== .secArea01 area s */
.secArea01 {
    position: relative;
    /*
    background-color: rgba(0, 26, 56, 0.00);
    background: url("/images/sec_bg_03.jpg"), -webkit-linear-gradient(bottom, #0250c5, #d43f8d);
    
    border: 1px solid #f00*/
}

    .secArea01 .headTxt01_1 {
        font-size: 6rem;
        text-align: center;
        text-shadow: 2px 2px 2px #000;
        color: #fff;
        margin-bottom: 3rem;
        /*margin-right: 18rem;*/
        animation: 1s txt01_1 ease-out forwards;
    }

        .secArea01 .headTxt01_1 span {
            color: #4a80d5;
        }

@keyframes txt01_1 {
    from {
        margin-left: -100rem;
        opacity: 0;
    }

    to {
        margin-left: 0rem;
        opacity: 0.5;
    }
}

/*------------------.containerBox01 */
.containerBox01 {
    position: relative;
    width: 100%;
    height: 100%;
    /*border: 1px solid #f00*/
}

.contentBox01 {
    position: relative;
    width: 100%;
    height: 56rem;
    /*height: 100%;*/
}
/*------------------.contentBox01_nav*/
.contentBox01_nav {
    position: relative;
    top: 0;
    right: 10rem;
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: right;
    /*align-items: center;*/
}

    .contentBox01_nav .gapBox01 {
        display: grid;
        width: 60rem;
        grid-template-columns: repeat(4,1fr);
        gap: 2rem;
    }

        .contentBox01_nav .gapBox01 .selBox01 {
            position: relative;
            width: 15rem;
            height: 36px;
            padding: 0.5rem 0.5rem;
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 18px;
            border: 1px solid transparent;
            cursor: pointer;
            transition: 0.3s ease-in-out;
            text-align: center;
            padding-top: 0.9rem;
            color: #000;
        }

            .contentBox01_nav .gapBox01 .selBox01.active {
                background-color: #15738a;
                color: #fff;
                /*border: 2px solid var(--main_color);*/
                /*transform: scale(1.03);*/
            }

            /*.contentBox01_nav .gapBox01 .selBox01:hover .active {
                background: rgba(255, 255, 255, 0.9);
                background: #6aa0ba;
                color: #fff;
                border: 2px solid var(--main_color);
                transform: scale(1.03);
            }*/

            .contentBox01_nav .gapBox01 .selBox01 span {
                font-size: 1.6rem;
                font-weight: 500;
            }

.contentBox01_1 {
    position: relative;
    width: 100%;
    height: 100%;
    /*height: 50rem;*/
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: rgba(60,152,197,0.6), rgba(255,255,255,0.6);*/
    background-image: linear-gradient(90deg, rgba(60,152,197,0.3), rgba(255,255,255,0.7));
    border-top: 6px solid rgba(255, 255, 255, 0.8);
}

    .contentBox01_1 > p {
        position: absolute;
        top: 20px;
        left: 80px;
        font-size: 1.3rem;
        font-weight: 300;
        color: rgba(255,255,255,0.7);
        /*border: 1px solid #f00;*/
    }

    .contentBox01_1 .itemBox01 {
        position: absolute;
        width: 100%;
        height: 100%;
        padding: 30px 30px;
        transform: scale(0.9);
        transition: 0.5s ease-out;
        opacity: 0;
    }

        .contentBox01_1 .itemBox01.active {
            width: 95%;
            height: 95%;
            transform: scale(1);
            opacity: 1;
        }

        .contentBox01_1 .itemBox01 div {
            float: left;
        }

        .contentBox01_1 .itemBox01 .itemImg01 {
            width: 65%;
            height: 100%;
            overflow: hidden;
            border-radius: 1.5rem;
            border: 4px solid rgba(255,255,255,0.5);
            box-shadow: 0 0 25px rgba(255,255,255,0.7);
            /*border: 1px solid #f00;*/
        }

            .contentBox01_1 .itemBox01 .itemImg01 img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .contentBox01_1 .itemBox01 .itemTxt01 {
            width: 35%;
            height: 100%;
            -ms-overflow-style: none;
            scrollbar-width: none;
            overflow-y: auto;
            /*overflow: overlay;
            border: 1px solid #f00;
            box-sizing: border-box;*/
        }

            .contentBox01_1 .itemBox01 .itemTxt01::-webkit-scrollbar {
                display: none;
               /* width: 2px;*/
            }

            /*.contentBox01_1 .itemBox01 .itemTxt01::-webkit-scrollbar-thumb {
                background-color: #fff;
                border-radius: 2px;
            }

            .contentBox01_1 .itemBox01 .itemTxt01::-webkit-scrollbar-track {
                background-color: #c6c6c6;
            }*/

            .contentBox01_1 .itemBox01 .itemTxt01 h4 {
                font-size: 2.5em;
                font-weight: 600;
                color: #272727;
                padding: 20px 0 20px 40px;
            }

            .contentBox01_1 .itemBox01 .itemTxt01 p {
                font-size: 1.6em;
                font-weight: 400;
                line-height: 1.5em;
                color: #272727;
                padding: 20px 0 20px 40px;
                box-sizing: border-box;
            }
/* ================================================== .secArea02 area s */
.secArea02 {
    background: url("/images/sec_bg1_050.jpg");
    background-size: cover;
    /*border: 1px solid #f00;*/
}

    .secArea02 .headTxt02_1 {
        font-size: 6rem;
        text-align: center;
        text-shadow: 2px 2px 2px #000;
        color: #fff;
        margin-bottom: 3rem;
        animation: 1s txt02_1 ease-out forwards;
    }

        .secArea02 .headTxt02_1 span {
            color: #4a80d5;
        }

@keyframes txt02_1 {
    from {
        margin-left: -100rem;
        opacity: 0;
    }

    to {
        margin-left: 0rem;
        opacity: 0.5;
    }
}

.containerBox02 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #f00*/
}

.contentBox02_1 {
    position: relative;
    width: 100%;
    height: 56rem;
    /*height: 90%;*/
    padding: 40px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.6);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
    border-right: 2px solid rgba(0, 0, 0, 0.4);
    border-bottom: 2px solid rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

    .contentBox02_1 > p {
        position: absolute;
        top: 20px;
        left: 50px;
        font-size: 1.3rem;
        font-weight: 300;
        color: rgba(255,255,255,0.7);
        /*border: 1px solid #f00;*/
    }

.itmeBox02_1 {
    position: relative;
    width: 60%;
    height: 100%;
    border-radius: 30px;
    border: 6px solid rgba(0,0,0,0.3);
    overflow: hidden;
}

    .itmeBox02_1 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.itmeBox02_2 {
    position: relative;
    width: 40%;
    height: 100%;
    /*border: 1px solid #f00;*/
}

    .itmeBox02_2 img {
        width: 30rem;
        float: right;
        opacity: 0.6;
    }

    .itmeBox02_2 h4 {
        font-size: 2.8em;
        font-weight: 500;
        color: #fff;
        padding: 100px 0 20px 50px;
    }

    .itmeBox02_2 span {
        font-size: 2.2em;
        font-weight: 400;
        color: #fff;
        padding: 30px 0 20px 50px;
    }

    .itmeBox02_2 p {
        font-size: 1.7em;
        font-weight: 300;
        line-height: 1.6em;
        color: #fff;
        padding: 20px 0 20px 50px;
    }
/* ================================================== .secArea03 area s */
.secArea03 {
    position: relative;
}

    .secArea03::before {
        position: absolute;
        content: '';
        /*background: url("/images/sec_bg_03.jpg");*/
        background-size: cover;
        opacity: 1;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        z-index: -1;
    }

    .secArea03 .headTxt03_1 {
        font-size: 6rem;
        text-align: center;
        text-shadow: 2px 2px 2px #000;
        color: #fff;
        margin-bottom: 3rem;
        /*margin-right: 18rem;*/
        animation: 1s txt03_1 ease-out forwards;
    }

        .secArea03 .headTxt03_1 span {
            color: #4a80d5;
        }

@keyframes txt03_1 {
    from {
        margin-left: -100rem;
        opacity: 0;
    }

    to {
        margin-left: 0rem;
        opacity: 0.5;
    }
}

/*---------------- */
.containerBox03 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #f00*/
}

.contentBox03 {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 5rem;
    width: 100%;
    /*height: 60rem;*/
    height: 90%;
}

.itemBox03_1 {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 56rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.7);
    border: 5px solid transparent;
    cursor: pointer;
    transition: 0.4s ease-in-out;
    /*border: 1px solid #f00;*/
}

    .itemBox03_1:hover {
        background: #fff;
        /*color: #000;*/
        border: 5px solid #00c1ff;
        transform: scale(1.03);
    }

    .itemBox03_1 ul {
        position: relative;
        width: 100%;
        height: 100%;
        margin: 3rem;
    }

        .itemBox03_1 ul li {
            position: relative;
            width: 100%;
            height: 100%;
            list-style-type: none;
            overflow: hidden;
        }

            .itemBox03_1 ul li:nth-child(1) {
                height: 25%;
            }

            .itemBox03_1 ul li:nth-child(2) {
                display: flex;
                justify-content: center;
                align-items: center;
                height: 15%;
                font-size: 2rem;
                font-weight: 500;
                text-align: center;
                color: #0d456f;
                background-color: #e0e0e0;
            }

            .itemBox03_1 ul li:nth-child(3) {
                /*border: 1px solid #fff;*/
                border-left: 1px solid #fff;
                border-right: 1px solid #fff;
                border-bottom: 1px solid #fff;
                height: 50%;
            }

            .itemBox03_1 ul li img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .itemBox03_1 ul li h4 {
                font-size: 2.3rem;
                font-weight: 600;
                text-align: center;
                color: #272727;
                padding: 3rem 0 2rem 0;
            }

            .itemBox03_1 ul li hr {
                width: 30%;
                height: 1px;
                margin: 0 auto;
                margin-bottom: 2rem;
                background-color: #d5d5d5;
            }

            .itemBox03_1 ul li p {
                font-size: 1.6rem;
                font-weight: 400;
                line-height: 1.5em;
                color: #272727;
                padding: 0 2rem;
            }

/* ================================================== .secArea04 area s */
.secArea04 {
    position: relative;
}

    .secArea04::before {
        position: absolute;
        content: '';
        background: url("/images/sec_bg_03.jpg");
        background-size: cover;
        opacity: 1;
        top: 0px;
        left: 0px;
        right: 0px;
        bottom: 0px;
        z-index: -1;
    }

    .secArea04 .headTxt04_1 {
        font-size: 6rem;
        text-align: center;
        text-shadow: 2px 2px 2px #000;
        color: #fff;
        margin-bottom: 3rem;
        animation: 1s txt04_1 ease-out forwards;
    }

    .secArea04 txt04_1 span {
        color: #4a80d5;
    }

@keyframes txt04_1 {
    from {
        margin-left: -100rem;
        opacity: 0;
    }

    to {
        margin-left: 0rem;
        opacity: 0.5;
    }
}

.containerBox04 {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid #f00*/
}

.contentBox04 {
    position: relative;
    width: 100%;
    /*height: 60rem;*/
    height: 90%;
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 0 0 25px rgba(0,0,0,0.2);
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5);
    /*border: 5px solid transparent;*/
}

    .contentBox04 .itemBox04 {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 10px;
        background-color: rgba(255, 255, 255, 0.9);
    }

        .contentBox04 .itemBox04 .map_box04 {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 100%;
            height: 100%;
            padding: 30px;
        }

            .contentBox04 .itemBox04 .map_box04 .map_view04 {
                width: 60%;
                height: 100%;
                padding: 0 0 2rem 0;
                border-radius: 0 0 1em 1em;
                border-top: 3px solid #ddd;
                box-shadow: 0 0.25em 0.5em rgb(0 0 0 / 20%);
                transition: .3s;
                /*border: 1px solid #f00*/
            }

                .contentBox04 .itemBox04 .map_box04 .map_view04:hover {
                    padding: 0 0 2rem 0;
                    border-top: 3px solid #f43039;
                    border-radius: 0 0 1em 1em;
                    box-shadow: 0 0.25em 0.5em rgb(0 0 0 / 20%);
                    transition: .3s;
                    transition-delay: .3s;
                }

                .contentBox04 .itemBox04 .map_box04 .map_view04 #daumRoughmapContainer1719479171384 {
                    margin: 0 auto;
                }

                .contentBox04 .itemBox04 .map_box04 .map_view04 .hrLines {
                    display: flex;
                    align-items: baseline;
                    padding: 3rem 0 2rem 3rem;
                }

                    .contentBox04 .itemBox04 .map_box04 .map_view04 .hrLines > h4 {
                        font-size: 2.3rem;
                        font-weight: 600;
                        text-align: left;
                        color: #7a7a7a;
                    }

                    .contentBox04 .itemBox04 .map_box04 .map_view04 .hrLines > hr {
                        display: inline-block;
                        width: 50%;
                        height: 1px;
                        margin-left: 2rem;
                        background-color: #d5d5d5;
                    }

            .contentBox04 .itemBox04 .map_box04 .map_info04 {
                display: block;
                width: 40%;
                height: 100%;
                text-align: left;
                padding: 0 0 0 4em;
                margin-top: 1em;
                margin-bottom: 20px;
                background-image: url("/images/grylogo.png");
                background-size: 40rem;
                /*background-size: cover;*/
                background-repeat: no-repeat;
                background-position: 130px 0px;
                /*border: 1px solid #f00*/
            }

                .contentBox04 .itemBox04 .map_box04 .map_info04 h2 {
                    font-size: 35px;
                    font-weight: 700;
                    text-align: right;
                    color: #104065;
                    padding: 5rem 3rem 2rem 0;
                }

                .contentBox04 .itemBox04 .map_box04 .map_info04 h4 {
                    font-size: 2.3rem;
                    font-weight: 600;
                    text-align: left;
                    color: #4e4e4e;
                    padding: 3rem 0 2rem 0;
                }

                .contentBox04 .itemBox04 .map_box04 .map_info04 .map_txt04 {
                    font-size: 1.6rem;
                    font-weight: 400;
                    line-height: 1.5;
                    color: #4e4e4e;
                    /*border: 1px solid #f00*/
                }

                    .contentBox04 .itemBox04 .map_box04 .map_info04 .map_txt04 hr {
                        width: 90%;
                        height: 1px;
                        background-color: #cccccc;
                        margin: 2rem 0 2rem 0;
                    }

                    .contentBox04 .itemBox04 .map_box04 .map_info04 .map_txt04 p {
                        font-size: 1.3rem;
                        font-weight: 300;
                        line-height: normal;
                        color: #000;
                    }

/* ================================================== .footer area s */
.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    padding: 40px 0px;
    background-color: rgba(0,28,35,0.80);
}

    .footer ul {
        margin-top: 0;
        padding: 0;
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 0;
        text-align: center;
    }

        .footer ul li a {
            color: #7878E1;
            border-bottom: 3px solid transparent;
            transition: 0.3s ease-in-out;
        }

            .footer ul li a:hover {
                /*border-bottom: 3px solid var(--main_color);*/
                color: #A0A0FF;
            }

        .footer ul li {
            display: inline-block;
            padding: 0 15px;
        }

.foolineBar {
    width: 80%;
    height: 1px;
    margin-top: 10px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.1);
}

.copyright_box {
    /*position: relative;*/
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    height: 200px;
    padding: 35px;
    /*border: 1px solid #f00;*/
}

    .copyright_box .logo_box {
        display: flex;
        flex-direction: column;
        /*border: 1px solid #f00;*/
    }

        .copyright_box .logo_box img {
            width: 8rem;
            opacity: 0.35;
        }

    .copyright_box .copy_right {
        font-size: 1rem;
        text-align: center;
        /*text-shadow: 5px 5px 5px #000;*/
        color: rgba(255, 255, 255, 0.35);
        /* border: 1px solid #f00;*/
    }

        .copyright_box .copy_right span {
            display: block;
            font-size: 1.5rem;
            font-weight: 400;
            /*text-shadow: 2px 2px 2px #000;*/
            margin: 10px 0px;
            color: rgba(255, 255, 255, 0.35);
        }

/* -- top go style s -- */
.topTy {
    position: fixed;
    display: none;
    width: 50px;
    height: 50px;
    right: 3rem;
    bottom: 5rem;
    padding-top: 15px;
    font-size: 12px;
    font-weight: 300;
    text-align: center;
    color: #fff;
    /*background-color: rgba(0, 0, 0, 0.5);*/
    background-image: linear-gradient(45deg, rgba(0,177,133,0.8), rgba(2,78,106,0.8));
    border-radius: 50%;
    /* border: 1px solid rgba(255,255,255,0.8);*/
    transition: background-color .3s, opacity .5s, visibility .5s;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
}

    .topTy:hover {
        cursor: pointer;
        opacity: 0.8;
    }

    .topTy:active {
        opacity: 0.8;
    }

.topTy {
    opacity: 0.5;
    visibility: visible;
}

    .topTy .topIcon {
        position: absolute;
        width: 22px;
        height: 22px;
        top: 18px;
        left: 14px;
        border-top: 5px solid #fff;
        border-left: 5px solid #fff;
        border-radius: 2.5px;
        transform: rotate(45deg);
    }

/* ###################################################################### END */
