
/* Gridless adjustment */
.is-wrapper .is-section.height-auto:first-child {
    padding-top: 70px;
}
@media all and (max-width: 767px) { 
    .is-wrapper .is-section:first-child {
        padding-top: 70px;
    }
}

/* Menu */

.is-topbar {
	position:fixed;
    top:0;
    left:0;
	width:100%;
	height:70px;
	box-sizing:border-box;
    z-index: 1000;		
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
    transition: all 0.3s;
    
    font-family: sans-serif;
    font-weight: 300;

	/* default */
    background-color: rgba(255, 255, 255, 0.95);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07); 
}         
.is-topbar.shrink {
    /* height:60px; */
    background-color: rgba(255, 255, 255, 0.95);
	-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
	-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07); 
}

.is-topbar-container {
    max-width:900px;
	margin:0 auto;
	width:100%;
	height:100%;
    display:flex;
    flex-direction: row;
    justify-content: space-between;
	box-sizing:border-box;
}

.is-logo {
	display:flex;
    justify-content: center;
    align-items: center;
    padding-left: 10px;
    z-index: 2;
}
.is-logo a {
    font-family: sans-serif;
    font-weight: 500;
    color: #1b1b1b;
    letter-spacing: 2px;
    font-size: 14px;
    text-decoration: none;

    display:flex;
    align-items: center;
}
.is-logo a img {
    height:50px;
    margin-right:10px;
}

.is-menu ul {
    margin: 0;
    padding: 0;
    *zoom: 1;
    display: flex;    
    flex-direction: row;
    flex-flow:wrap;
}
.is-menu ul li {
    list-style: none;
}
 
.is-menu > div,
.is-menu > div > ul {
    height: 100%;
}

.is-menu > div > ul > li > a {
    display: flex;
    height: 100%;
    padding-left: 17px;
    padding-right: 17px;
    justify-content: center;
    align-items: center;

    font-family: sans-serif;
    font-weight: 500;
    color: #1b1b1b;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 12px;
    text-decoration: none;
}

@media all and (max-width: 768px) {
             
    .is-topbar {
        height:70px;
        background-color: rgba(255, 255, 255, 0.95);
        -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
        -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07); 
    }

    .is-logo {
        padding-left:20px
    }
    .is-menu {
        z-index:-1;
        opacity:0;
    }
    .is-menu ul li {
        padding: 15px;
    }

}

.is-menu.enlarge {
    z-index:1;
    opacity:1;
    position: fixed;
    background-color: #fff;
    display: flex;
	justify-content: center;
    width: 100%;
    height:100%;
    transition: all 0.1s;
}
.is-menu.enlarge ul {
    justify-content: center;
    flex-direction: column;
}

.is-menu-toggle {
    z-index:1000000;
    position: absolute;
    top: 0;
    right: 0;
    width:70px;
    height:70px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media all and (min-width: 768px) {
	.is-menu-toggle {display:none}
}		
.is-menu-toggle > span {
    position: relative;
    display: block;
    width: 25px;
    height: 14px;
}
.is-menu-toggle > span .line {
    display: block;
    background: #000000;
    width: 25px;
    height: 1px;
    position: absolute;
    left: 0;
    border-radius: 1px;
    transition: all 0.2s;
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
}
.is-menu-toggle > span .line.line-1 {
    top: 0;
}
.is-menu-toggle > span .line.line-2 {
    top: 50%;
}
.is-menu-toggle > span .line.line-3 {
    top: 100%;
}
.is-menu-toggle:hover > span .line-1, .is-menu-toggle:focus .line-1 {
    transform: translateY(-1px);
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
}
.is-menu-toggle:hover > span .line-3, .is-menu-toggle:focus .line-3 {
    transform: translateY(1px);
    -webkit-transform: translateY(1px);
    -moz-transform: translateY(1px);
}
.is-menu-toggle.active > span .line-1 {
    transform: translateY(7px) translateX(0) rotate(45deg);
    -webkit-transform: translateY(7px) translateX(0) rotate(45deg);
    -moz-transform: translateY(7px) translateX(0) rotate(45deg);
}
.is-menu-toggle.active > span .line-2 {
    opacity: 0;
}
.is-menu-toggle.active > span .line-3 {
    transform: translateY(-7px) translateX(0) rotate(-45deg);
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    -moz-transform: translateY(-7px) translateX(0) rotate(-45deg);
}
