
@media (min-width:1025px){

    .nav-main{
        position:absolute;
        left:0;
        right:0;
        top:30px;
        height:44px;

        z-index:9
    }
    .nav-main-mobile-toggle{
        display:none
    }
	.nav-main ul{
		display: flex;
		align-items: center;
		list-style: none;
	}
	.nav-main .column {
    position: absolute;
    top: 0;
    bottom: 0;
	padding-top: 45px;
	}
  
  
	.nav-main .column:first-child {
		left: 0;
		right: 66%;
	}
	.nav-main .column:last-child {
		left:  66%;
		right: 0;
	}
	
	
	.nav-main > ul::before, .nav-main > ul::after {
		content: " ";
		display: table;
	}	
	
	
	.nav-main > ul::after {
		clear: both;
	}

	.nav-main .column > ul {
		display: flex;
		align-items: center;
	}	
	.nav-main .column > ul > li {
		flex-grow: 1;	
		text-shadow: 2px 2px 4px #000000;
	}

	.nav-main  a {
		position: relative;
		color: #ffffff;
		text-decoration: none;
	}

	.nav > li > a:hover {
		color: #ffffff;
		background-color:	rgba(0,0,0,0);
	}


	.nav-main a:before {
		content: "";
		position: absolute;
		width: 100%;
		height: 2px;
		bottom: 0;
		left: 0;
		background-color: #ffffff;
		visibility: hidden;
		-webkit-transform: scaleX(0);
		transform: scaleX(0);
		-webkit-transition: all 0.3s ease-in-out 0s;
		transition: all 0.3s ease-in-out 0s;
	}
	.nav-main a:hover:before {
		visibility: visible;
		-webkit-transform: scaleX(1);
		transform: scaleX(1);
	}

	.col-1z3 {
		width:	33%;
	}

.layout-main-article .wrapper{
position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}	
}