﻿.header {
    background: #298ccd;
}

    .header .header-logo {
        line-height: 100px;
    }

        .header .header-logo img {
            width: 220px;
        }


.header .icon-menu {
    display: none;
    float: left;
}

.header .icon-search {
    display: none;
    float: right;
}


.header-menu {
    float: right;
    margin-top:30px;
    text-align:left;
}

.header .header-menu .btn {
    width: 140px;
}

.header-menu .menu-close  {
    display: none;
}

.header-menu ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

        .header-menu ul li {
            float: left;
        }

    .header-menu .link {
        display: block;
        color: #fff;
        padding: 0px 12px;
        font-size: 15.5px;
        font-weight: 500;
        line-height: 36px;
        border-radius: 100px;
        border: 2px solid transparent;
        transition: none;
        letter-spacing: 0px;
        margin-right:2px;
    }

        .header-menu .link:hover {
            background: rgba(255,255,255,0.1);
            transition: background ease 0.2s;
        }

        .header-menu .link:active {
            background: rgba(0,0,0,0.1);
            transition: background ease 0.2s;
        }

        .header-menu .link.active {
            border: 2px solid rgba(255,255,255,0.2);
        }

    .header-menu .open .link, .header-menu .open .link:hover {
        background: rgba(0,0,0,0.1);
        border-color: transparent;
    }

    .header-menu .link .fa-search, .header-menu .link .fa-home {
        font-size: 20px;
        position: relative;
        top: 1px;
    }

    .header-menu .btn {
        margin-left: 10px;
        width: 150px;
    }



    .header-menu .dropdown-menu {
        right: 0px;
        left: auto;
        width: 210px;
        padding: 10px 0px;
        width: 210px;
    }




.header-menu .dropdown-menu li {
    float: none;
    font-size: 15px;
}

        .header-menu .dropdown-menu > li > a {
            padding: 10px 15px;
            color: #555;
            font-weight: 400;
        }

        .header-menu .dropdown-menu > li.active a {
            color: #555;
            background: #eee;
        }

        .header-menu .dropdown-menu > li.small > a {
            padding: 6px 20px;
        }

        .header-menu .dropdown-menu > li > a .fa {
            margin-right: 5px;
        }

        .header-menu .dropdown-menu > li > a .fa-external-link {
            color: #ccc;
            margin: 4px 0px 0px 0px;
        }

    .header-menu .dropdown-menu-arrow:before {
        left: 13px;
    }

    .header-menu .dropdown-menu-arrow:after {
        left: 14px;
    }


    .header-menu li.btn-wrap .svelag-btn {
        font-size: 16px;
    }

.header-menu .desktop {
    display: block;
}

.header-menu .mobile {
    display: none;
} 


    @media screen and (max-width: 991px) {

        .header-menu .desktop {
            display: none;
        }
        .header-menu .mobile {
            display: block;
        } 

        
        body {
            position: relative;
            right: 0px;
            transition: right ease 0.2s;
        }

        .header .center {
            text-align: center;
        }

            .header .header-logo {
                line-height: 80px;
                margin-bottom:0px;
            }

            .header .header-logo img {
                width: 180px;
            }


        .header .header-menu {
            position: fixed;
            z-index: 1000;
            height: 100%;
            top: 0px;
            width: 320px;
            left: -320px;
            display: block;
            clear: both;
            float: none;
            margin: 0px;
            background: #298ccd;
            overflow-y: auto;
            transition: left ease 0.2s;
        }

            .header .icon-menu, .header .icon-search {
                display: block;
                font-size: 24px;
                color: #fff;
                line-height: 80px;
            }

            .header .icon-menu:active {
                transform: scale(0.8)
            }


        .menu-open {
            position: relative;
            left: 0px;
        }

            .menu-open .header-menu {
                left: 0px;
                box-shadow: 0px 0px 30px rgba(0,0,0,0.3);
            }



        .header-menu .menu-close {
            margin: 12px 20px 0px 0px;
            font-size: 24px;
            float:right;
            color:#fff;
            display:block;
        }

            .header-menu .menu-close:active {
                transform: scale(0.8)
            }


        .header-menu ul {
            margin-top: 50px;
            margin-bottom: 20px;
        }

            .header-menu ul li {
                float: none;
                display: block;
            }

        .header-menu .link {
            font-size: 26px;
            padding: 0px 25px;
            border-radius: 0px;
            margin: 0px;
            border: none;
            line-height: 48px;
            letter-spacing: -0.4px;
        }

            .header-menu .link.link-small {
                font-size: 15px;
                line-height: 32px;
                font-weight: normal;
                letter-spacing: 0px;
            }

            .header-menu .link:active {
                opacity: 0.7;
            }


            .header-menu .link .fa {
                opacity: 0.5;
            }


            .header-menu .link:hover {
                border: none;
                background: unset;
            }

            .header-menu .link.active {
                border: none;
                color: #f1ce2a;
            }



        .header-menu li.btn-wrap {
            padding: 25px 25px 25px 25px;
        }

            .header-menu li.btn-wrap .svelag-btn {
                width: 100%;
                font-size: 18px;
            }
    }


    @media screen and (max-width: 540px) {

        .header .header-logo img {
            width: 170px;
        }
            
            .header .header-logo, .header .icon-menu, .header .icon-search {
                line-height: 60px;
            }

    }

@media screen and (max-width: 320px) {

    .header .header-logo img {
        width: 150px;
    }

}



