/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 2000px) {
	.main_mnu_button{
		display:none;
	}
	.calc-text{
		display:inline
	}
    .mobile-screen-menu{
        display:none;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.calc-text{
		display:inline;
	}
    .mobile-screen-menu{
        display:none;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 710px) {
	.main_mnu ul {
		background-color: #333;
		display: none;
		position: absolute;
		width: 50%;
		font-size: 14px;
		left: 55%;
		top: 39px;	
		padding: 7px 0px;
		margin:0px 0px;

	}
	.main_mnu ul li {
		display: block;
	}
	.main_mnu_button{
	display:inline-block;
	border-color: red;
}
	.calc-text{
		display:none;
	}
    .mobile-screen-menu{
        display:none;
    }

}

@media only screen and (max-width : 760px) {
		.calc-text{
		display:none;
	}
    .mobile-screen-menu{
        display:none;
    }
}
/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {
	.calc-text{
		display:none;
	}
    .mobile-screen-menu{
        display:none;
    }


}
@media only screen and (max-width : 780px) {
.full-screen-menu{
    display:none;
}
.mobile-screen-menu{
        display:block;
    }
.test{
    display:block;position:relative;
}
}
/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {
	.calc-text{
		display:none;
	}
.full-screen-menu{
    display:none;
}
}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
	
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
	.main_mnu ul {
		display: block !important;
	}
}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {

}