
@font-face {
    font-family: 'GillSans Light'; /* Name your font family */
    src: url('../font/GillSans-Light.ttf'); /* Locate the .ttf file within your directory*/
}

:root {
    --contentSize: 1440px;
    --headWeight: 400;
    --weight300: 300;
    --h1-size: 64px;
    --text-color: black;
    --border-color: #39D872;
    --main-blue: #167FAC;
    --sub-blue: #003068;
    --footer-color: #1B5A75;
    --btnhover: rgba(50, 214, 162, 1);
}
body {
    margin: 0;
    font-family: 'GillSans Light','NotoSansSC Light','NotoSansTC Light', sans-serif;
    font-weight: 400;
}
.display {
    display: block;
}
.hidden {
    display: none !important;
}
p {
    font-style: normal;
    font-weight: 400;
}
.menu-div {
    display: none;
}
.fixed-header-larger {
    height: 100vh !important;
    background-color: var(--main-blue)!important;
    .menu-div {
        display: block;
    }
}
.menu-div {
    margin: 70px auto 30px auto;
    overflow: auto;
    max-width: 700px;
    min-width: 200px;
    height: 100%;
    ul {
        display: block;
        margin: 0 30px 15px 30px;
        border-right: 0;
        box-sizing: border-box;
        list-style: none;
        padding-left: 0;
        position: relative;
        li {
            border-bottom: 1px solid white;
            color: white;
            white-space: nowrap;
            padding-left: 20px;

            display: flex;
            align-items: center;
            box-sizing: border-box;
            font-size: 14px;
            height: 56px;
            position: relative;
        }
        li:hover span {
            color: black;
        }
        li.sub-menu {
            display: block;
            height: 100%;
            min-height: 56px;
        }
        li.sub-menu.is-opened {
            ul {
                li {
                    height: 50px;
                    border: none;
                }
            }
            div i {
                transform: rotateZ(180deg);
            }
            .el-menu--inline {
                display: block;
            }
        }
    }
    .sub-menu__title {
        cursor: pointer;
        position: relative;
        display: flex;
        height: 50px;
        span {
            margin: auto 0;
        }
        i {
            margin: 0;
            position: absolute;
            top: 50%;
            right: 0;
            transform: none;
            transition: transform .3s;
        }
    }
    .el-menu--inline {
        display: none;
    }
    .el-menu-item {
        cursor: pointer;
    }
    .el-menu-item:hover {
        color: black;
    }
}
.menu-btn {
    color: var(--main-blue);
    cursor: pointer;
    font-size: 1rem;
    width: auto;
    padding: 8px 10px 5px 10px;
    border: var(--main-blue) 2px solid;
    background-color: transparent;
}
.menu-btn:hover {
    background-color: #39d872;
}
.whole-img {
    position: fixed;
    background: linear-gradient(90deg, #eceff0, #fff 30%, #fff 70%, #eceff0);
    z-index: -99;
    width: 100%;
    height: 100vh;
}
.inter-font {
    font-family: Inter, NotoSansSC Light, NotoSansTC Light, sans-serif;
    font-weight: 300;
}

.text-center {
    text-align: center;
    justify-content: center;
    display: flex;
}

.row {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    position: relative;
}
.row +.row {
    margin-top: 30px;
}
.row.is-justify-space-between {
    justify-content: space-between;
}
.row.is-justify-space-around {
    justify-content: space-around;
}
.row.is-justify-center {
    justify-content: center;
}
.col-2, .col-3, .col-4, .col-5, .col-8, .col-9, .col-10, .col-11, .col-12, .col-24 {
    display: block;
    box-sizing: border-box;
}
.col-24, .col-m-24 {
    flex: 0 0 100%;
    max-width: 100%;
}
.co-8 {
    flex: 0 0 80%;
    max-width: 80%;
}
.col-7-5 {
    flex: 0 0 75%;
    max-width: 75%;
}
.col-7 {
    flex: 0 0 70%;
    max-width: 70%;
}
.col-6 {
    flex: 0 0 60%;
    max-width: 60%;
}
.col-5 {
    flex: 0 0 50%;
    max-width: 50%;
}
.col-4 {
    flex: 0 0 40%;
    max-width: 40%;
}
.col-3 {
    flex: 0 0 30%;
    max-width: 30%;
}
.col-2-5 {
    flex: 0 0 25%;
    max-width: 25%;
}
.col-2 {
    flex: 0 0 20%;
    max-width: 20%;
}

.col-m-16 {
    display: block;
    box-sizing: border-box;
    flex: 0 0 66.666666%;
    max-width: 66.666666%;
}

.col-m-4 {
    display: block;
    box-sizing: border-box;
    flex: 0 0 16.666666%;
    max-width: 16.666666%;
}
.link-row {
    font-family: Inter, NotoSansSC Light, NotoSansTC Light, sans-serif;
    font-weight: 300;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid  var(--border-color);
}
.link-row + .link-row {
    margin-top: 0;
}
.link {
    display: flex;
    cursor: pointer;
    font-size: 14px;
    font-weight: 300;
}
.link:hover {
    color: var(--btnhover);
}
.pdf-img {
    display: inline-block;
    width: 17px;
    height: 17px;
    margin: auto 10px auto 0;
}
.text-right {
    text-align: right;
}
.download-btn {
    font-weight: 400;
    padding: 8px 15px;
    height: auto;
    text-decoration: none;
    display: inline-block;
    color: #000;
    background-color: #2bcc8e;
    border: var(--border-color) solid 1px;
    border-radius: 0;
    font-size: 1rem;

    align-items: center;
    -webkit-appearance: none;
    box-sizing: border-box;
    cursor: pointer;
    justify-content: center;
    outline: none;
    text-align: center;
    transition: .1s;
    user-select: none;
    vertical-align: middle;
    white-space: nowrap;
}
.download-btn:hover {
    color: #4a5568;
    background-color: #32d6a2;
}

footer {
    width: 100%;
    height: 156px;
    background-color: var(--footer-color);
    display: flex;
    div {
        color: white;
        margin: auto;
        display: flex;
        height: auto;
    }
    a {
        border-left: 1px white solid;
        padding-left: 6px;
        margin-left: 6px;
        color: white;
        text-decoration: none;
    }
    a:hover {
        color: #409eff;
        text-decoration: underline;
    }
}
.mt-20 {
    margin-top: 20px;
}
@media (max-width: 1440px) {
    .margin-30 {
        margin-right: 30px;
        margin-left: 30px;
    }
}
