*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.containerMenu {
    padding: 0;
}

.bt-menu {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border-width: 0px;
    border-style: solid;
    border-color: #333;
    background-color: rgba(0, 0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-transition: border-width 0.5s, background-color 0.5s, height 0s 0.5s;
    transition: border-width 0.5s, background-color 0.5s, height 0s 0.5s;
}

.bt-menu.bt-menu-open {
    height: 100%;
    border-width: 70px 0px 0px 0px;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-transition: border-width 0.3s, background-color 0.3s;
    transition: border-width 0.3s, background-color 0.3s;
}

.bt-overlay {
    position: absolute;
    width: 100%;
}

.bt-menu-open .bt-overlay {
    height: 100%;
}


.bt-menu-trigger {
    position: fixed;
    top: 6px;
    right: 5%;
    z-index: 100;
    display: block;
    margin-left: -25px;
    width: 35px;
    height: 50px;
    cursor: pointer;
}

.bt-menu-trigger span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    height: 8%;
    background-color: #ca2ece;
    font-size: 0px;
    -webkit-transition: background-color 0.3s;
    transition: background-color 0.3s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.bt-menu-open .bt-menu-trigger span {
    background-color: #21dec7;
}

.bt-menu-trigger span:before,
.bt-menu-trigger span:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ca2ece;
    content: '';
    -webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
    -webkit-transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: background-color 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, background-color 0.3s;
    transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
}

.bt-menu-trigger span:before {
    -webkit-transform: translateY(-250%);
    transform: translateY(-250%);
}

.bt-menu-trigger span:after {
    -webkit-transform: translateY(250%);
    transform: translateY(250%);
}

.bt-menu-open .bt-menu-trigger span:before,
.bt-menu-open .bt-menu-trigger span:after {
    background-color: #21dec7;
}

.bt-menu-open .bt-menu-trigger span:before {
    -webkit-transform: translateY(-350%);
    transform: translateY(-350%);
}

.bt-menu-open .bt-menu-trigger span:after {
    -webkit-transform: translateY(350%);
    transform: translateY(350%);
}

/* ------------------------------------------------------------------------------------------------------ LOGO VEO */

.bt-menu-VEO {
    position: fixed;
    top: 18px;
    left: 5%;
    z-index: 100;
    display: block;
    margin-right: -25px;
    width: 50px;
    height: 50px;
    cursor: pointer;
}

.bt-menu-VEO span {
    position: absolute;
    top: 50%;
    left: 0;
    display: block;
    width: 100%;
    /*height: 8%;
	background-color: #fff;
	font-size: 0px;
	-webkit-transition: background-color 0.3s;
	transition: background-color 0.3s;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;*/
    background-image: url('../../img/logo-VEO.svg') no-repeat;
    color: white;
    height: 20px;
}

.bt-menu-open .bt-menu-VEO span {
    background-color: #2980b9;
}

/*
.bt-menu-VEO span:before,
.bt-menu-VEO span:after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0ff;
	content: '';
	-webkit-transition: -webkit-transform 0.3s, background-color 0.3s;
	transition: transform 0.3s, background-color 0.3s;
}

.bt-menu-VEO span:before {
	-webkit-transform: translateY(-250%);
	transform: translateY(-250%);
}

.bt-menu-VEO span:after {
	-webkit-transform: translateY(250%);
	transform: translateY(250%);
}

.bt-menu-open .bt-menu-VEO span:before,
.bt-menu-open .bt-menu-VEO span:after {
	background-color: #2980b9;
}

.bt-menu-open .bt-menu-VEO span:before {
	-webkit-transform: translateY(-350%);
	transform: translateY(-350%);
}

.bt-menu-open .bt-menu-VEO span:after {
	-webkit-transform: translateY(350%);
	transform: translateY(350%);
}*/

/* ------------------------------------------------------------------------------------------------------ LOGO VEO FIN */

.bt-menu ul {
    position: fixed;
    top: 0px;
    left: 0;
    margin: 0;
    padding: 0;
    width: 100%;
    list-style: none;
    text-align: center;
    white-space: nowrap;
    height: 0;
    -webkit-transition: height 0s 0.3s;
    transition: height 0s 0.3s;
}

.bt-menu.bt-menu-open ul {
    height: 70px;
    -webkit-transition: none;
    transition: none;
}

.bt-menu ul li,
.bt-menu ul li a {
    text-align: center;
}

.bt-menu ul li {
    display: inline-block;
    margin: 0 2%;
    width: 5%;
    height: 70px;
    line-height: 70px;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
}

/*---------------------------------------- lo quito para centrar el menu ------------- */

/*.bt-menu ul li:nth-child(3) {
	margin-right: 70px;
}

.bt-menu ul li:nth-child(4) {
	margin-left: 70px;
}*/
.bt-menu.bt-menu-close ul{
    opacity: 0;
}

.bt-menu.bt-menu-open ul li {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

/*.bt-menu.bt-menu-open ul li:first-child {
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}
.bt-menu.bt-menu-open ul li:nth-child(2) {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}
.bt-menu.bt-menu-open ul li:nth-child(3) {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}
.bt-menu.bt-menu-open ul li:nth-child(4) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
.bt-menu.bt-menu-open ul li:nth-child(5) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}*/

.bt-menu.bt-menu-open ul li a {
    display: block;
    outline: none;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
}

.bt-menu ul li a:before {
    display: block;
    font-size: 22px;
}

.bt-menu ul li a:hover,
.bt-menu ul li a:focus {
    color: #2980b9;
}



/*512*/
@media screen and (max-width: 32em) {
    .bt-menu-trigger {
        width: 30px;
        margin-left: -20px;
    }

    .bt-menu-VEO {
        width: 40px;
        margin-right: -20px;
    }
    
/*
    .bt-menu.bt-menu-open ul li{
       display: block;
    }
*/

    /*.bt-menu ul li {
        margin: 0 2%;
    }*/
    /*
	.bt-menu ul li:nth-child(3) {
		margin-right: 50px;
	}

	.bt-menu ul li:nth-child(4) {
		margin-left: 50px;
	}
*/
    .bt-menu ul li a:before {
        font-size: 24px;
    }
}

/*888px*/
@media screen and (max-width: 55.5em) {
    /*.bt-menu ul li {
        margin: 0 15px;
    }*/

    .bt-menu ul li a {
        font-size: 0px;
    }
    
/*
    .bt-menu.bt-menu-open ul li{
       display: inline;

    margin: 0 2%;
    width: auto;
    height: 50px;
    line-height: 50px;
    opacity: 0;
    -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
    -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    border-bottom: 1px dotted #cecece;
    }
*/

    /*.bt-menu ul li a:before {
        display: block;
    }*/
}


/*1041*/
@media screen and (max-width: 65.1em) {
    .bt-menu.bt-menu-open {
        height: 100%;
        border-width: 300px 0px 0px 0px;
    }
    .bt-menu ul{
        display: inline-block;
    }
    .bt-menu.bt-menu-open li {
        display: block;
        
        margin: 0 2%;
        width: auto;
        height: 50px;
        line-height: 50px;
        opacity: 0;
        -webkit-transition: -webkit-transform 0.3s, opacity 0.3s;
        -webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
        transition: opacity 0.3s, -webkit-transform 0.3s;
        transition: transform 0.3s, opacity 0.3s;
        transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        
        border-bottom: 1px dotted #cecece;
    }
    .bt-menu ul li a {
        font-size: 0;
        margin: 0 auto;
        text-align: center;
    }
    
    /*coloco logo VEO en escritorio
    .centrarLogoVEO{
        margin-top: 15%;
        margin-bottom: 15%;
    }*/
}