@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'Gulf';
    src: url('../css/gulf/Gulf-Bold.eot');
    src: url('../css/gulf/Gulf-Bold.eot?#iefix') format('embedded-opentype'),
        url('../css/gulf/Gulf-Bold.woff2') format('woff2'),
        url('../css/gulf/Gulf-Bold.woff') format('woff'),
        url('../css/gulf/Gulf-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gulf';
    src: url('../css/gulf/Gulf-Text.eot');
    src: url('../css/gulf/Gulf-Text.eot?#iefix') format('embedded-opentype'),
        url('../css/gulf/Gulf-Text.woff2') format('woff2'),
        url('../css/gulf/Gulf-Text.woff') format('woff'),
        url('../css/gulf/Gulf-Text.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gulf';
    src: url('../css/gulf/Gulf-SemiBold.eot');
    src: url('../css/gulf/Gulf-SemiBold.eot?#iefix') format('embedded-opentype'),
        url('../css/gulf/Gulf-SemiBold.woff2') format('woff2'),
        url('../css/gulf/Gulf-SemiBold.woff') format('woff'),
        url('../css/gulf/Gulf-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gulf';
    src: url('../css/gulf/Gulf-Thin.eot');
    src: url('../css/gulf/Gulf-Thin.eot?#iefix') format('embedded-opentype'),
        url('../css/gulf/Gulf-Thin.woff2') format('woff2'),
        url('../css/gulf/Gulf-Thin.woff') format('woff'),
        url('../css/gulf/Gulf-Thin.ttf') format('truetype');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}


.menu{margin:13px 0 0 20px; float: left;}

.slide-menu-open{color:#092b4c;}

.side-menu-wrapper { /* style menu wrapper */
    overflow: hidden;
    background: rgba(29,35,47,.95);
    padding:40px 0 0 0;
    position: fixed; /* Fixed position */
    top: 0;
    right: -290px; /* Sidebar initial position. "right" for right positioned menu */
    height: 100%;
    z-index:999;
    transition: 0.5s; /* CSS transition speed */
    width: 250px;
    font:18px 'hili', Arial, Helvetica, sans-serif;
	}
	
.side-menu-wrapper > ul{ /* css ul list style */
    list-style:none;
    padding:0;
    margin:0;
    overflow-y: auto; /* enable scroll for menu items */
    width:500px; /* this width will hide scroll bar */
    height:95%;
}
.side-menu-wrapper > ul > li > a { /* links */
    display: block;
    border-bottom: 1px solid #363c48;
    padding:15px 10px 15px 15px;
    color: #fff !important;
	background:#1d232f;
    transition: 0.3s;
    text-decoration: none;
    font-family: 'Gulf', Arial, Helvetica, sans-serif !important;
    font-size: 13px;
    font-weight: bold;
	}
	
.side-menu-wrapper > ul > li > a:hover, .side-menu-wrapper > ul > li > ul > li > a:hover{
	background:#e1e1e1;
	}
	
.side-menu-wrapper > ul > li > ul{
	list-style:none;
    padding:0;
    margin:0;
    overflow-y: auto;
	}
	
.side-menu-wrapper > ul > li > ul > li > a{
	display: block;
    border-bottom: 1px solid #980012;
    padding:15px 10px 15px 15px;
    color: #fff;
	background:#ab0014;
    transition: 0.3s;
    text-decoration: none;
	}
	
.side-menu-wrapper > a.menu-close { /* close button */
    padding:10px 20px 20px 0;
    color: #fff;
    display: block;
    margin: -30px 0 -10px -20px;
    font-size: 40px;
    text-decoration: none;
	}

.side-menu-overlay { /* overlay */
    height: 100%;
    width: 0;
    position: fixed;
    z-index: 1;
    top: 0;
    left: 0;
    background-color: rgba(0,0,0,.7);
    overflow-y: auto;
    overflow-x: hidden;
    text-align: center;
    opacity: 0;
    transition: opacity 1s;
}