﻿@font-face {
    font-family: Chasing;
    src: url("../fonts/Chasing Embers.ttf") format("truetype");
}

.navbar-site {
    display: flex;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    height: 50px;
    background-image: linear-gradient(to right, #00609C, #013064);
}

    .navbar-site > div {
        width: 100%;
        max-width: 1200px;
        height: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: auto;
    }

.navbar-site-logo {
    width: 50%;
    text-align: start;
    height: 100%;
    display: flex
}

    .navbar-site-logo > a {
        margin: auto 20px;
        height: 100%;
        display: flex;
        align-items: center;
        width: 130px;
    }

        .navbar-site-logo > a > img {
            width: 100%
        }

        .navbar-site-logo > a:hover {
        }

.navbar-menu-items {
    display: none;
    margin: auto;
    justify-content: space-between;
}

    .navbar-menu-items > li {
        margin: auto 3px;
    }

.menu-pc-item {
    color: white;
    font-size: 15px;
    padding: 3px 5px;
    border-radius: 5px;
}

    .menu-pc-item:hover {
        color: #013064;
        background-color: white;
    }

.navbar-site-menu {
    width: 50%;
    text-align: end;
}

    .navbar-site-menu > i {
        font-size: 25px;
        margin: auto 20px;
        color: white;
    }

    .navbar-site-menu > a {
        display: none;
        color: white;
        font-size: 15px;
        padding: 3px 5px;
        border-radius: 5px;
    }

        .navbar-site-menu > a:hover {
            color: #013064;
            background-color: white;
        }

.navbar-menu-mobile {
    width: 250px;
    background-color: white;
    position: fixed;
    top: 50px;
    left: 0;
    display: none;
    justify-content: space-between;
    align-items: start;
    border: 1px solid #013064;
    border-radius: 0 20px 20px 0;
    border-left: none;
    z-index: 10000;
}

    .navbar-menu-mobile > ul {
        width: 80%;
        margin: 0;
    }

    .navbar-menu-mobile > div {
        width: 50px;
        height: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .navbar-menu-mobile > div > i {
            font-size: 23px;
            color: #9b0404;
            display: flex;
            width: 25px;
            height: 25px;
            justify-content: center;
            align-items: center;
        }

.menu-mobile-item {
    display: flex;
    margin: 15px;
    color: #013064;
    border-bottom: 1px solid #013064;
    padding-bottom: 5px;
    justify-content: center;
}

@media only screen and (min-width: 992px) {
    .navbar-site {
        height: 70px;
    }

    .navbar-menu-mobile {
        display: none !important;
    }

    .navbar-site-menu > i {
        display: none;
    }

    .navbar-site-logo {
        width: 15%;
    }

    .navbar-menu-items {
        display: flex;
        width: 70%;
        justify-content: center;
    }

    .navbar-site-menu {
        width: 15%;
        text-align: end;
    }

        .navbar-site-menu > a {
            display: inline-block;
            font-size: 18px;
        }

            .navbar-site-menu > a > i {
                animation: phone 5s linear 0s infinite;
                margin-right: 10px;
                font-size: 26px;
            }

    @keyframes phone {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }
}


@media only screen and (min-width: 1100px) {
    .menu-pc-item {
        padding: 3px 10px;
    }

    .navbar-site-menu > a {
        padding: 3px 10px;
    }
}
